:root {
  --sage: #8FC1E3;
  --sage-deep: #2E6DA4;
  --sage-soft: #BEE0F5;
  --sage-pale: #E9F4FB;
  --ink: #15170F;
  --ink-soft: #5B6154;
  --ink-faint: #8A907F;
  --white: #FFFFFF;
  --cream: #FBFCF9;
  --border: #E4E9DC;
  --shadow-sm: 0 1px 2px rgba(21,23,15,0.04), 0 2px 8px rgba(21,23,15,0.05);
  --shadow-md: 0 8px 24px rgba(21,23,15,0.08);
  --shadow-lg: 0 20px 48px rgba(21,23,15,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }

/* ── Header ─────────────────────────────────────────────── */
header.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; padding: 18px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.15rem; color: var(--ink); text-decoration: none; flex-shrink: 0; }
.brand img { height: 30px; width: 30px; object-fit: contain; border-radius: 8px; }

.nav-main { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 9999px; text-decoration: none;
  color: var(--ink-soft); font-weight: 600; font-size: 0.93rem; background: none; border: 1px solid transparent;
  cursor: pointer; font-family: inherit; transition: all .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: var(--sage-pale); }
.nav-link.is-current { color: var(--ink); background: var(--white); border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-link .chev { width: 13px; height: 13px; transition: transform .18s; }
.nav-item.is-open .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.nav-item.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 12px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: 0.92rem; transition: background .12s;
}
.dropdown a:hover { background: var(--sage-pale); }
.dropdown a .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: var(--sage-deep); }

.nav-cta {
  padding: 11px 24px; border-radius: 9999px; background: var(--ink); color: #fff !important;
  font-weight: 700; font-size: 0.9rem; text-decoration: none; white-space: nowrap;
  transition: all .15s; border: 1px solid var(--ink);
}
.nav-cta:hover { background: var(--sage-deep); border-color: var(--sage-deep); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 9999px; border: 1px solid var(--border);
  background: var(--white); cursor: pointer; flex-shrink: 0; margin-left: auto;
}
.hamburger span { display: block; height: 2px; width: 18px; margin: 0 auto; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel { display: none; max-height: 0; overflow: hidden; transition: max-height .25s ease; border-top: 1px solid var(--border); background: var(--white); }
.mobile-panel.is-open { max-height: 640px; overflow-y: auto; }
.mobile-panel .wrap { padding: 14px 24px 22px; }
.m-link { display: flex; align-items: center; justify-content: space-between; padding: 13px 4px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1rem; border-bottom: 1px solid var(--border); background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left; cursor: pointer; font-family: inherit; }
.m-link .chev { width: 16px; height: 16px; transition: transform .18s; flex-shrink: 0; }
.m-group.is-open .m-link .chev { transform: rotate(180deg); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .22s ease; }
.m-group.is-open .m-sub { max-height: 260px; }
.m-sub a { display: flex; align-items: center; gap: 10px; padding: 11px 4px 11px 14px; text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.94rem; border-bottom: 1px solid var(--border); }
.m-sub a .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: var(--sage-deep); }
.m-cta { display: block; margin-top: 16px; text-align: center; padding: 14px; border-radius: 9999px; background: var(--ink); color: #fff !important; font-weight: 700; text-decoration: none; }

@media (max-width: 860px) {
  .nav-main, .nav-cta.desktop-only { display: none; }
  .hamburger { display: flex; }
  .mobile-panel { display: block; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 9999px; font-weight: 700; font-size: 0.96rem;
  text-decoration: none; transition: all .15s; border: none; cursor: pointer; font-family: inherit;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sage { background: var(--sage); color: var(--ink); }
.btn-sage:hover { background: var(--sage-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: var(--white); color: var(--ink); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--ink-faint); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb svg { width: 15px; height: 15px; }
.breadcrumb a { text-decoration: none; color: var(--ink-faint); font-weight: 600; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); font-weight: 700; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; padding: 48px 0 0;
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 38%, var(--sage-pale) 78%, var(--sage-soft) 100%);
}
.hero-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-note { max-width: 320px; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; padding-top: 6px; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 44px; align-items: center; padding-bottom: 56px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-top { flex-direction: column; } }
h1.display { font-size: clamp(2.3rem, 5vw, 3.4rem); line-height: 1.06; margin-bottom: 20px; }
.hero-photo-wrap { position: relative; }
.hero-photo { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.3; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.avatar-stack { display: flex; align-items: center; margin-left: 4px; }
.avatar-stack img, .avatar-stack .plus {
  width: 36px; height: 36px; border-radius: 50%; border: 3px solid var(--white);
  margin-left: -12px; object-fit: cover; background: var(--sage-soft);
}
.avatar-stack .plus {
  display: flex; align-items: center; justify-content: center; background: var(--ink); color: #fff;
  font-size: 0.9rem; font-weight: 700;
}
.avatar-stack img:first-child, .avatar-stack .plus:first-child { margin-left: 0; }
.hero-cta-row { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.float-pill {
  position: absolute; background: var(--white); border-radius: 9999px; box-shadow: var(--shadow-md);
  padding: 9px 16px; font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.float-pill svg { width: 15px; height: 15px; color: var(--sage-deep); }

.rating-card {
  position: absolute; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 14px 16px; width: 168px;
}
.rating-card .stars { color: var(--sage-deep); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 8px; }
.rating-card .bottom { display: flex; align-items: center; justify-content: space-between; }
.rating-card b { font-size: 1rem; }
.rating-card span { font-size: 0.72rem; color: var(--ink-faint); }

/* ── Trust strip ──────────────────────────────────────────── */
.trust-strip { padding: 34px 0 56px; }
.trust-strip .label { font-size: 0.85rem; color: var(--ink-faint); font-weight: 700; margin-bottom: 20px; }
.trust-row { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.trust-row .wordmark { font-weight: 800; font-size: 1.15rem; color: var(--ink-soft); opacity: 0.75; letter-spacing: -0.01em; white-space: nowrap; }

/* ── Sections ─────────────────────────────────────────────── */
section { padding: 76px 0; }
.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-block; color: var(--ink-faint); font-weight: 700; font-size: 0.86rem; margin-bottom: 10px; letter-spacing: 0.01em; }
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 0 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; margin: 0; }

.split { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.split.rev { grid-template-columns: 1fr 0.85fr; }
.split.rev .split-photo { order: 2; }
@media (max-width: 900px) { .split, .split.rev { grid-template-columns: 1fr; } .split.rev .split-photo { order: 0; } }
.split-photo { position: relative; }
.split-photo .ph { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--sage-pale); aspect-ratio: 4/4.6; }
.split-photo .ph img { width: 100%; height: 100%; object-fit: cover; }
.split-tags { position: absolute; bottom: 26px; left: -18px; display: flex; flex-direction: column; gap: 10px; }
.split-tags .float-pill { position: static; }
.split-tags .float-pill:nth-child(1) { transform: rotate(-3deg); }
.split-tags .float-pill:nth-child(2) { transform: rotate(2deg); align-self: flex-end; margin-right: -30px; }
.split-tags .float-pill:nth-child(3) { transform: rotate(-2deg); }
@media (max-width: 640px) { .split-tags { left: 0; } .split-tags .float-pill:nth-child(2) { margin-right: 0; } }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 780px) { .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 22px;
  padding: 30px 26px; transition: all .18s; text-decoration: none; color: inherit; display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white); }
.card h3 { margin: 16px 0 8px; font-size: 1.12rem; font-weight: 800; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; }
.card .go { margin-top: 16px; font-size: 0.86rem; font-weight: 700; display: flex; align-items: center; gap: 5px; color: var(--sage-deep); }

.icon-badge { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--sage-soft); color: var(--ink); }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--ink); line-height: 1.55; }
.feature-list .check { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; background: var(--sage); color: var(--ink); }
.feature-list .check svg { width: 13px; height: 13px; }

/* ── Photo band ───────────────────────────────────────────── */
.photo-band { border-radius: 32px; overflow: hidden; position: relative; aspect-ratio: 21/8; box-shadow: var(--shadow-lg); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; }
.photo-band .overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,23,15,0.72) 0%, rgba(21,23,15,0.35) 55%, transparent 100%); display: flex; align-items: center; }
.photo-band .overlay-content { color: #fff; padding: 0 52px; max-width: 460px; }
.photo-band .overlay-content h2 { color: #fff; margin-bottom: 10px; }
.photo-band .overlay-content p { color: rgba(255,255,255,0.85); margin: 0 0 20px; }
@media (max-width: 780px) { .photo-band { aspect-ratio: 4/5; } .photo-band .overlay-content { padding: 0 28px; max-width: 320px; } }

/* ── Dark band ────────────────────────────────────────────── */
.band-dark { background: var(--ink); color: #fff; border-radius: 32px; padding: 56px 46px; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: #C7CFC0; }
@media (max-width: 640px) { .band-dark { padding: 38px 24px; } }
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; }
.stat b { display: block; font-size: 1.8rem; font-weight: 800; }
.stat span { font-size: 0.84rem; opacity: 0.75; }

/* ── Footer ───────────────────────────────────────────────── */
footer.site-footer { border-top: 1px solid var(--border); padding: 52px 0 32px; margin-top: 20px; background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; margin-bottom: 36px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 1.1rem; text-decoration: none; margin-bottom: 12px; }
.footer-brand img { height: 26px; width: 26px; border-radius: 7px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint); margin: 0 0 14px; font-weight: 700; }
.footer-col a { display: block; text-decoration: none; color: var(--ink); font-size: 0.92rem; font-weight: 600; margin-bottom: 11px; }
.footer-col a:hover { color: var(--sage-deep); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; color: var(--ink-faint); font-size: 0.82rem; }

/* ── Home page: hero highlight + floating chips ──────────────── */
.highlight { color: var(--sage-deep); }
.chip-float {
  position: absolute; width: 52px; height: 52px; border-radius: 16px;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep);
}
.chip-float svg { width: 24px; height: 24px; }
@media (max-width: 640px) { .chip-float { display: none; } }

/* ── Home page: dual dark panels ─────────────────────────────── */
.dual-panel .panel { display: flex; flex-direction: column; gap: 14px; }
.panel-graphic {
  width: 100%; height: 96px; border-radius: 16px; margin-bottom: 6px;
  background: linear-gradient(135deg, rgba(143,193,227,0.18), rgba(143,193,227,0.04));
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding: 14px; align-items: center;
}
.panel-graphic span { width: 100%; aspect-ratio: 1; border-radius: 6px; background: rgba(143,193,227,0.35); }
.panel-graphic span:nth-child(3n) { background: var(--sage); }
.panel-graphic span:nth-child(5n) { opacity: 0.4; }
.btn-outline-dark {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3);
  align-self: flex-start; margin-top: 4px;
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ── Home page: FAQ accordion ─────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 780px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { border: 1px solid var(--border); border-radius: 18px; background: var(--white); overflow: hidden; transition: background .15s, border-color .15s; }
.faq-item.is-open { background: var(--sage-pale); border-color: var(--sage-soft); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-weight: 700; font-size: 0.98rem; color: var(--ink);
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; transition: transform .2s; color: var(--sage-deep); }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .22s ease; }
.faq-item.is-open .faq-a { max-height: 200px; }
.faq-a p { margin: 0; padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }

/* ── Home page: testimonials ──────────────────────────────────── */
.testimonial-card { background: var(--cream); border: 1px solid var(--border); border-radius: 22px; padding: 28px 26px; display: flex; flex-direction: column; gap: 18px; }
.testimonial-card .stars { color: var(--sage-deep); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card p.quote { margin: 0; color: var(--ink); font-size: 0.98rem; line-height: 1.65; }
.testimonial-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--sage-soft); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
}
.testimonial-who b { display: block; font-size: 0.9rem; }
.testimonial-who span { display: block; font-size: 0.8rem; color: var(--ink-faint); }
