* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --bg: #FDFCFA;
  --surface: #F6F3EE;
  --border: #E8E2D9;
  --brown: #8B5E3C;
  --brown-bg: #F0E8DF;
  --sage: #8FA888;
  --sage-bg: #E9EFE6;
  --text: #1C1410;
  --muted: #7A7068;
  --hint: #B0A89E;
  --dark: #2A1F16;
}
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); }
.site { max-width: 1100px; margin: 0 auto; }

/* NAV */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 40px; background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.logo { font-size: 18px; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; text-decoration: none; }
.logo em { font-style: normal; color: var(--brown); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--dark); }
.nav-cta { background: var(--dark); color: var(--bg) !important; padding: 9px 20px; border-radius: 7px; font-weight: 500 !important; }

/* HERO */
.hero { padding: 80px 40px 64px; background: var(--bg); position: relative; overflow: hidden; }
.hero-blob { position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; background: var(--sage-bg); border-radius: 50%; opacity: 0.6; z-index: 0; }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--brown); background: var(--brown-bg); border: 1px solid var(--border); padding: 6px 14px; border-radius: 20px; margin-bottom: 26px; }
.hero h1 { font-size: 44px; font-weight: 700; line-height: 1.16; color: var(--dark); letter-spacing: -1.2px; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--brown); }
.hero p { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 40px; }
.btn-dark, .btn-ghost { font-size: 14px; font-weight: 500; padding: 13px 26px; border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
.btn-dark { background: var(--dark); color: var(--bg); border: none; }
.btn-dark:hover { opacity: 0.85; }
.btn-ghost { background: transparent; color: var(--dark); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface); }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; font-weight: 500; }
.trust-pill i { font-size: 15px; color: var(--brown); }
.trust-pill.sage i { color: var(--sage); }

/* STATS */
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { text-align: center; padding: 30px 20px; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat-num { font-size: 24px; font-weight: 700; color: var(--dark); }
.stat-label { font-size: 12px; color: var(--hint); margin-top: 4px; }

/* SECTIONS */
.section { padding: 70px 40px; background: var(--bg); }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 70px 40px; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--brown); margin-bottom: 12px; }
.eyebrow.sage { color: var(--sage); }
.section h2 { font-size: 28px; font-weight: 700; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 10px; }
.sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 500px; margin-bottom: 40px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 26px; }
.card-icon { width: 38px; height: 38px; background: var(--brown-bg); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--brown); font-size: 19px; }
.card-icon.sage { background: var(--sage-bg); color: var(--sage); }
.card h3 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cat { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 20px 14px; text-align: center; }
.cat i { font-size: 22px; color: var(--brown); margin-bottom: 10px; display: block; }
.cat:nth-child(even) i { color: var(--sage); }
.cat-name { font-size: 12px; font-weight: 500; color: var(--text); line-height: 1.4; }

/* ABOUT BLOCK */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.about-text p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; max-width: 480px; }
.about-list { display: flex; flex-direction: column; gap: 16px; }
.about-item { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 18px; }
.about-item-icon { width: 34px; height: 34px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--brown); font-size: 16px; flex-shrink: 0; }
.about-item:nth-child(even) .about-item-icon { color: var(--sage); }
.about-item-text h4 { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.about-item-text p { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.step { text-align: center; padding: 0 20px; position: relative; }
.step-num { width: 42px; height: 42px; border-radius: 50%; background: var(--sage-bg); color: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; margin: 0 auto 16px; border: 1px solid var(--border); }
.step:nth-child(2) .step-num { background: var(--brown-bg); color: var(--brown); }
.step h3 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 220px; margin: 0 auto; }
.step-line { position: absolute; top: 21px; left: calc(50% + 38px); width: calc(100% - 76px); height: 1px; background: var(--border); z-index: 0; }
.step:last-child .step-line { display: none; }

/* CTA / CONTACT */
.cta-band { background: var(--dark); padding: 56px 40px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-size: 22px; font-weight: 700; color: #FAF8F4; letter-spacing: -0.3px; margin-bottom: 8px; }
.cta-band p { font-size: 14px; color: #A89888; }
.contact-grid { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item i { font-size: 16px; color: #A8C4A0; width: 20px; }
.contact-item a, .contact-item span { font-size: 14px; color: #E8DDD4; text-decoration: none; }
.contact-item a:hover { color: #fff; }

/* FOOTER */
.footer { padding: 28px 40px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 14px; font-weight: 600; color: var(--dark); }
.footer-logo em { font-style: normal; color: var(--brown); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--dark); }
.footer p { font-size: 12px; color: var(--hint); }
.footer-bottom { width: 100%; text-align: center; padding-top: 16px; border-top: 1px solid var(--border); margin-top: 16px; }

/* LEGAL / POLICY PAGES */
.legal { padding: 60px 40px 90px; max-width: 760px; margin: 0 auto; }
.legal .eyebrow { margin-bottom: 14px; }
.legal h1 { font-size: 32px; font-weight: 700; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 10px; }
.legal .updated { font-size: 13px; color: var(--hint); margin-bottom: 40px; }
.legal h2 { font-size: 17px; font-weight: 600; color: var(--dark); margin: 34px 0 12px; }
.legal p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 20px; }
.legal li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.legal a { color: var(--brown); text-decoration: none; }
.legal a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 880px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero h1 { font-size: 32px; }
  .cards { grid-template-columns: 1fr; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step-line { display: none; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--border); }
  .cta-band { text-align: center; justify-content: center; }
  .contact-grid { align-items: center; }
  .footer { justify-content: center; text-align: center; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}
