:root {
  --orange: #E87722;
  --orange-dark: #C96A1A;
  --charcoal: #2B2F36;
  --slate: #3D4451;
  --gray: #6B7280;
  --cream: #F7F5F1;
  --white: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); line-height: 1.2; font-weight: 800; margin-bottom: 12px; }
h3 { font-size: 1.15rem; font-weight: 700; }
.accent { color: var(--orange); }
.fine { font-size: 0.85rem; color: var(--gray); margin-top: 16px; }
.fine a { color: var(--orange); }

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.15s;
}
.btn:hover { background: var(--orange-dark); }
.btn-big { font-size: 1.15rem; padding: 18px 36px; }
.btn-small { padding: 10px 18px; font-size: 0.9rem; }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.brand img { height: 48px; display: block; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--charcoal); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav a.btn { color: var(--white); }
.nav a:hover:not(.btn) { color: var(--orange); }

.hero { background: var(--cream); padding: 56px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.hero-sub { font-size: 1.15rem; color: var(--slate); margin: 18px 0 26px; max-width: 34em; }
.cta-note { font-size: 0.9rem; color: var(--gray); margin-top: 10px; }
.hero-art img { width: 100%; max-width: 420px; display: block; margin: 0 auto; border-radius: 18px; box-shadow: 0 8px 30px rgba(43,47,54,0.08); }
.trust-bar { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 28px; }
.trust-bar li { font-size: 0.9rem; font-weight: 600; color: var(--slate); }
.trust-bar li::before { content: "✓ "; color: var(--orange); font-weight: 800; }

.compare { background: var(--charcoal); color: var(--white); padding: 18px 0; text-align: center; }
.compare strong { color: #FFB577; }

.how { padding: 64px 0; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.card {
  background: var(--cream);
  border-radius: 14px;
  padding: 26px 22px;
}
.card p { font-size: 0.95rem; color: var(--slate); margin-top: 8px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.sortcheck { background: var(--cream); padding: 56px 0; }
.sortcheck p { max-width: 46em; color: var(--slate); font-size: 1.05rem; }

.pricing { padding: 64px 0; }
.pricing-sub { color: var(--gray); max-width: 40em; }
.plan { display: flex; flex-direction: column; background: var(--white); border: 1px solid #e5e2da; }
.plan.featured { border: 2px solid var(--orange); position: relative; }
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px 14px; border-radius: 99px; white-space: nowrap;
}
.price { font-size: 2.4rem; font-weight: 800; color: var(--charcoal); margin: 6px 0 10px; }
.price span { font-size: 1rem; font-weight: 600; color: var(--gray); }
.plan ul { list-style: none; margin-bottom: 20px; flex-grow: 1; }
.plan li { font-size: 0.92rem; color: var(--slate); padding: 4px 0; }
.plan li::before { content: "✓ "; color: var(--orange); font-weight: 800; }
.plan .btn { text-align: center; }

.gift { background: var(--cream); padding: 56px 0; }
.gift-inner { display: flex; gap: 32px; align-items: center; }
.gift-badge { width: 170px; flex-shrink: 0; }
.gift p { color: var(--slate); max-width: 46em; }

.team { padding: 64px 0; }
.cards.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; max-width: 760px; }
.person { text-align: center; }
.person img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 4px solid var(--orange); }
.person .role { color: var(--orange); font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
@media (max-width: 800px) { .cards.two { grid-template-columns: 1fr; } }

.area { padding: 64px 0; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.area-list li {
  background: var(--cream);
  border: 1px solid #e5e2da;
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.9rem; font-weight: 600; color: var(--slate);
}

.faq { background: var(--cream); padding: 64px 0; }
.faq details {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 12px;
}
.faq summary { font-weight: 700; cursor: pointer; color: var(--charcoal); }
.faq details p { margin-top: 10px; color: var(--slate); font-size: 0.95rem; }

.final-cta { padding: 72px 0; text-align: center; }
.final-cta h2 { margin-bottom: 24px; }

.site-footer { background: var(--charcoal); color: #cfd4dc; padding: 40px 0; }
.footer-inner { text-align: center; }
.footer-logo { max-width: 300px; width: 70%; margin-bottom: 18px; background: var(--white); border-radius: 12px; padding: 12px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 12px; }
.footer-links a { color: #cfd4dc; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange); }
.site-footer .fine { color: #8b93a1; }

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 260px; }
  .cards.three { grid-template-columns: 1fr; }
  .gift-inner { flex-direction: column; text-align: center; }
  .nav a:not(.btn) { display: none; }
}
