/* ===================================================================
   MatchSitters — Landing Page
   Bespoke stylesheet (independent of the Webflow exports)
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --coral:        #F25C4A;
  --coral-deep:   #E0432F;
  --coral-soft:   #FFE7E1;
  --indigo:       #221C46;
  --indigo-soft:  #2C2750;
  --ink:          #2A2540;
  --muted:        #6A6580;
  --cream:        #FDF6F0;
  --cream-2:      #FBEEE4;
  --blue-soft:    #E7F3FB;
  --blue:         #2FA8E0;
  --mint:         #E3F4EC;
  --mint-deep:    #2BB281;
  --yellow:       #F7B500;
  --yellow-soft:  #FFF3D4;
  --line:         #EFE8E2;
  --white:        #FFFFFF;

  --shadow-sm: 0 2px 6px rgba(34, 28, 70, .06);
  --shadow-md: 0 18px 40px -18px rgba(34, 28, 70, .22);
  --shadow-lg: 0 40px 80px -28px rgba(34, 28, 70, .30);
  --shadow-coral: 0 18px 36px -12px rgba(242, 92, 74, .45);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-pill: 999px;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 72px);

  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 10vw, 130px); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral-deep);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--coral); border-radius: 2px; }
.eyebrow.center { justify-content: center; }

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.02em; color: var(--indigo); font-weight: 700; }
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -.015em;
  line-height: 1.02;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.04;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 24px 44px -14px rgba(242,92,74,.55); }
.btn-dark { background: var(--indigo); color: #fff; }
.btn-dark:hover { background: #15102f; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: #fff; color: var(--indigo); box-shadow: inset 0 0 0 1.6px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.6px var(--coral); color: var(--coral-deep); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 1.4px rgba(255,255,255,.32); }
.btn-light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(34,28,70,.06), var(--shadow-sm);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 600; font-size: .95rem; color: var(--indigo);
  padding: 9px 14px; border-radius: var(--r-pill); transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--coral-soft); color: var(--coral-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2.4px; background: var(--indigo); border-radius: 3px;
  position: relative; transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 70% at 82% 6%, rgba(247,181,0,.16), transparent 60%),
    radial-gradient(55% 60% at 8% 30%, rgba(47,168,224,.14), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #fff 86%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: #fff;
  padding: 8px 16px 8px 10px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); font-weight: 600; font-size: .85rem; color: var(--indigo);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint-deep); box-shadow: 0 0 0 4px rgba(43,178,129,.18); }
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.0; margin-top: 22px; letter-spacing: -.025em;
}
.hero h1 .swash { color: var(--coral); font-style: italic; }
.hero p.lead { margin-top: 22px; max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-proof { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.avatars { display: flex; }
.avatars img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; margin-left: -12px; box-shadow: var(--shadow-sm);
}
.avatars img:first-child { margin-left: 0; }
.hero-proof .stars { color: var(--yellow); letter-spacing: 2px; font-size: .95rem; }
.hero-proof b { color: var(--indigo); }
.hero-proof small { color: var(--muted); display: block; font-size: .82rem; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo-frame {
  position: relative; border-radius: 40px 40px 40px 120px;
  background: linear-gradient(160deg, var(--coral) 0%, #ff7a5f 55%, var(--yellow) 130%);
  aspect-ratio: 4 / 4.3; box-shadow: var(--shadow-lg);
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.hero-photo-frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 50% 110%, rgba(0,0,0,.16), transparent 70%);
}
.hero-photo-frame img.kid { position: relative; z-index: 1; width: 92%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(0,0,0,.22)); }
.hero-decor { position: absolute; border-radius: 50%; filter: blur(.3px); }

.float-card {
  position: absolute; background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; z-index: 3;
}
.float-card .ic { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.float-card .ic svg { width: 22px; height: 22px; }
.float-card b { display: block; font-size: .92rem; color: var(--indigo); line-height: 1.2; }
.float-card small { color: var(--muted); font-size: .76rem; }
.float-card.fc-sos { top: 8%; left: -6%; }
.float-card.fc-verify { bottom: 14%; right: -8%; }
.float-card.fc-book { bottom: -3%; left: 6%; }

.ic.bg-coral { background: var(--coral-soft); color: var(--coral-deep); }
.ic.bg-mint  { background: var(--mint); color: var(--mint-deep); }
.ic.bg-blue  { background: var(--blue-soft); color: var(--blue); }
.ic.bg-yellow{ background: var(--yellow-soft); color: #C98A00; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-card { animation: floaty 5s ease-in-out infinite; }
.float-card.fc-verify { animation-delay: 1.2s; }
.float-card.fc-book { animation-delay: 2.4s; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: 26px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--indigo); font-weight: 600; font-size: .96rem; }
.trust-item svg { width: 24px; height: 24px; color: var(--coral); flex: none; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 30px); }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--coral); line-height: 1; }
.stat .lbl { margin-top: 8px; color: var(--muted); font-weight: 600; font-size: .92rem; }

/* ---------- Generic cards ---------- */
.cards { display: grid; gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic-lg { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 20px; }
.card .ic-lg svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.service {
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--line);
}
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service .media { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.service .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service:hover .media img { transform: scale(1.06); }
.service .tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.94);
  padding: 6px 14px; border-radius: var(--r-pill); font-size: .76rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--coral-deep);
}
.service .tag.sos { color: #fff; background: var(--coral); }
.service .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: .97rem; }
.service .feat { margin-top: 18px; display: grid; gap: 9px; }
.service .feat li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink); font-weight: 500; }
.service .feat svg { width: 18px; height: 18px; color: var(--mint-deep); flex: none; margin-top: 2px; }
.service .more { margin-top: auto; padding-top: 22px; }
.service .more a { font-weight: 700; color: var(--coral-deep); display: inline-flex; align-items: center; gap: 7px; }
.service .more a svg { width: 16px; height: 16px; transition: transform .2s; }
.service:hover .more a svg { transform: translateX(4px); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; position: relative; }
.step { position: relative; }
.step .num {
  width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--coral-deep);
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; box-shadow: var(--shadow-sm);
  border: 1.6px solid var(--coral-soft); margin-bottom: 22px; position: relative; z-index: 2;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }
.steps::before {
  content: ""; position: absolute; top: 27px; left: 7%; right: 7%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--coral-soft) 0 10px, transparent 10px 20px);
  z-index: 1;
}

/* ---------- Why / differentiators (dark) ---------- */
.why { background: var(--indigo); color: #fff; border-radius: clamp(24px, 4vw, 46px); }
.why h2, .why h3 { color: #fff; }
.why .eyebrow { color: #FFC8BD; }
.why .eyebrow::before { background: var(--coral); }
.why .lead { color: rgba(255,255,255,.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 28px; transition: background .25s, transform .25s, border-color .25s;
}
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); border-color: rgba(255,255,255,.22); }
.why-card .ic-lg { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(242,92,74,.18); color: #FF9482; }
.why-card .ic-lg svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.66); font-size: .95rem; }

/* ---------- Split / safety ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 5.4;
}
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.split-media .blob { position: absolute; inset: -8% -8% auto auto; width: 56%; aspect-ratio: 1; background: var(--yellow-soft); border-radius: 50%; z-index: -1; }
.checklist { display: grid; gap: 16px; margin-top: 28px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ck { width: 30px; height: 30px; border-radius: 9px; background: var(--mint); color: var(--mint-deep); display: grid; place-items: center; flex: none; }
.checklist .ck svg { width: 17px; height: 17px; }
.checklist b { display: block; color: var(--indigo); font-size: 1.02rem; }
.checklist span { color: var(--muted); font-size: .93rem; }

/* verification ladder */
.ladder { display: grid; gap: 14px; margin-top: 30px; }
.rung {
  display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.rung:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.rung .step-n { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--coral); width: 36px; flex: none; }
.rung b { color: var(--indigo); }
.rung p { color: var(--muted); font-size: .9rem; }

/* ---------- Use cases ---------- */
.usecases { background: var(--cream); }
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.uc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start; transition: transform .22s, box-shadow .22s;
}
.uc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.uc .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.uc .ic svg { width: 23px; height: 23px; }
.uc h3 { font-size: 1.05rem; margin-bottom: 5px; }
.uc p { color: var(--muted); font-size: .9rem; }

/* ---------- For sitters ---------- */
.sitters { background: linear-gradient(165deg, var(--blue-soft), #fff 70%); }
.sitter-perks { display: grid; gap: 14px; margin-top: 26px; }
.sitter-perks li { display: flex; gap: 13px; align-items: center; font-weight: 600; color: var(--indigo); }
.sitter-perks .ic { width: 38px; height: 38px; border-radius: 11px; background: #fff; color: var(--blue); display: grid; place-items: center; box-shadow: var(--shadow-sm); flex: none; }
.sitter-perks .ic svg { width: 20px; height: 20px; }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.tcard .stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.55; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tcard .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.tcard .who b { display: block; color: var(--indigo); font-size: .96rem; }
.tcard .who small { color: var(--muted); font-size: .82rem; }
.tcard.feature { background: var(--coral); color: #fff; border-color: transparent; }
.tcard.feature blockquote, .tcard.feature .who b { color: #fff; }
.tcard.feature .who small { color: rgba(255,255,255,.8); }
.tcard.feature .stars { color: #fff; }

/* ---------- Pricing teaser ---------- */
.pricing-band {
  background: var(--cream-2); border-radius: clamp(24px, 4vw, 46px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 60px); align-items: center;
  padding: clamp(36px, 5vw, 64px);
}
.plan-card {
  background: #fff; border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.plan-card .price { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 4px; }
.plan-card .price .amt { font-family: var(--font-display); font-weight: 600; font-size: 3rem; color: var(--indigo); line-height: 1; }
.plan-card .price .per { color: var(--muted); font-weight: 600; }
.plan-card ul { display: grid; gap: 11px; margin: 22px 0; }
.plan-card li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink); }
.plan-card li svg { width: 18px; height: 18px; color: var(--mint-deep); flex: none; margin-top: 3px; }
.plan-card .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 50px auto 0; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-weight: 700; color: var(--indigo); font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; flex: none; transition: transform .25s, background .25s; }
.faq-item .chev svg { width: 16px; height: 16px; color: var(--coral-deep); }
.faq-item[open] .chev { transform: rotate(45deg); background: var(--coral); }
.faq-item[open] .chev svg { color: #fff; }
.faq-item .ans { padding: 0 26px 24px; color: var(--muted); font-size: .98rem; }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; overflow: hidden; }
.cta-box {
  position: relative; background: linear-gradient(155deg, var(--coral) 0%, var(--coral-deep) 70%);
  border-radius: clamp(28px, 4vw, 50px); padding: clamp(44px, 7vw, 90px) var(--gut);
  text-align: center; color: #fff; box-shadow: var(--shadow-lg); overflow: hidden;
}
.cta-box::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.1); top: -140px; right: -90px; }
.cta-box::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(34,28,70,.16); bottom: -140px; left: -70px; }
.cta-box h2 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 5vw, 3.4rem); position: relative; }
.cta-box p { color: rgba(255,255,255,.9); max-width: 560px; margin: 18px auto 0; position: relative; font-size: 1.1rem; }
.cta-box .hero-actions { justify-content: center; position: relative; }
.cta-box .btn-ghost { background: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--indigo); color: rgba(255,255,255,.7); padding-block: clamp(56px, 7vw, 84px) 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .brand img { height: 30px; filter: brightness(0) invert(1); opacity: .96; }
.footer-about p { margin-top: 18px; max-width: 32ch; font-size: .94rem; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--coral); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.66); font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .hero p.lead { max-width: 46ch; }
  .service-grid, .why-grid, .uc-grid, .tcards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px); background: #fff; z-index: 99;
    transform: translateX(100%); transition: transform .32s cubic-bezier(.16,1,.3,1);
    box-shadow: var(--shadow-lg); padding: 96px 28px 28px; display: flex; flex-direction: column; gap: 6px;
  }
  body.nav-open .mobile-menu { transform: none; }
  .mobile-menu a { padding: 14px 16px; border-radius: 14px; font-weight: 600; color: var(--indigo); font-size: 1.05rem; }
  .mobile-menu a:hover { background: var(--cream); }
  .mobile-menu .btn { margin-top: 14px; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(34,28,70,.4); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 98; }
  body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .pricing-band { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .service-grid, .why-grid, .uc-grid, .tcards, .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { justify-content: center; }
  .hero-actions .btn, .cta-box .btn { width: 100%; }
  .float-card.fc-sos { left: 0; top: 2%; }
  .float-card.fc-verify { right: 0; }
  .float-card { transform: scale(.92); }
}
.mobile-menu { display: none; }
@media (max-width: 860px) { .mobile-menu { display: flex; } }

/* ===================================================================
   Inner pages — shared components
   =================================================================== */

/* Page hero / banner */
.page-hero { position: relative; padding-block: clamp(54px, 8vw, 96px) clamp(40px, 6vw, 70px); overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(50% 60% at 88% 0%, rgba(247,181,0,.16), transparent 60%),
    radial-gradient(46% 55% at 4% 30%, rgba(47,168,224,.13), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #fff 92%);
}
.page-hero .wrap { position: relative; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--coral-deep); }
.breadcrumb span { opacity: .5; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(2.3rem, 5.2vw, 3.7rem); line-height: 1.03; max-width: 16ch;
}
.page-hero.center h1, .page-hero.center .lead, .page-hero.center .breadcrumb { margin-inline: auto; }
.page-hero.center { text-align: center; }
.page-hero.center .breadcrumb { justify-content: center; }
.page-hero .lead { margin-top: 18px; max-width: 54ch; }
.page-hero .hero-actions { margin-top: 28px; }
.page-hero.center .hero-actions { justify-content: center; }

/* Prose */
.prose { max-width: 760px; }
.prose.center { margin-inline: auto; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 44px; }
.prose h3 { font-size: 1.25rem; margin-top: 30px; }
.prose p { color: var(--muted); font-size: 1.05rem; }
.prose strong { color: var(--ink); }
.prose ul.ticks { display: grid; gap: 12px; }
.prose ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.prose ul.ticks svg { width: 20px; height: 20px; color: var(--mint-deep); flex: none; margin-top: 4px; }

/* Two-column feature row (image + text) */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,80px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(48px, 7vw, 96px); }
.feature-row.reverse .fr-media { order: 2; }
.fr-media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; }
.fr-media .frame img { width: 100%; height: 100%; object-fit: cover; }

/* Stat band (reusable, on cream) */
.value-band { background: var(--indigo); color: #fff; border-radius: clamp(24px,4vw,46px); padding: clamp(40px,6vw,68px); }
.value-band h2, .value-band .stat .num { color: #fff; }
.value-band .stat .num { color: #FF9482; }
.value-band .stat .lbl { color: rgba(255,255,255,.66); }

/* Team / avatars grid */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 50px; }
.member { text-align: center; }
.member .ph { aspect-ratio: 1; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 16px; }
.member .ph img { width: 100%; height: 100%; object-fit: cover; }
.member b { color: var(--indigo); display: block; }
.member small { color: var(--muted); }

/* Pricing tiers */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tier.featured { border-color: transparent; box-shadow: var(--shadow-lg); background: linear-gradient(180deg,#fff, #fff); }
.tier.featured::before { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); padding: 2px; background: linear-gradient(160deg, var(--coral), var(--yellow)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.tier .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-coral); }
.tier h3 { font-size: 1.25rem; }
.tier .price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.tier .price .amt { font-family: var(--font-display); font-weight: 600; font-size: 2.8rem; color: var(--indigo); line-height: 1; }
.tier .price .per { color: var(--muted); font-weight: 600; }
.tier > p { color: var(--muted); font-size: .95rem; }
.tier ul { display: grid; gap: 11px; margin: 22px 0 26px; }
.tier li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink); }
.tier li svg { width: 18px; height: 18px; color: var(--mint-deep); flex: none; margin-top: 3px; }
.tier .btn { width: 100%; margin-top: auto; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: start; }
.contact-cards { display: grid; gap: 16px; margin-top: 28px; }
.contact-card { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.contact-card .ic svg { width: 23px; height: 23px; }
.contact-card b { color: var(--indigo); display: block; }
.contact-card span { color: var(--muted); font-size: .94rem; }

/* Forms */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,4vw,38px); box-shadow: var(--shadow-md); }
.form .field { margin-bottom: 18px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: block; font-weight: 600; font-size: .9rem; color: var(--indigo); margin-bottom: 7px; }
.form input, .form select, .form textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.6px solid var(--line); border-radius: 14px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(242,92,74,.12); }
.form .btn { width: 100%; margin-top: 6px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 52px; }
.post {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post .media { aspect-ratio: 16/10; overflow: hidden; }
.post .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post:hover .media img { transform: scale(1.06); }
.post .body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.post .cat { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-deep); }
.post h3 { font-size: 1.18rem; margin: 10px 0; line-height: 1.25; }
.post p { color: var(--muted); font-size: .94rem; flex: 1; }
.post .meta { margin-top: 18px; color: var(--muted); font-size: .82rem; font-weight: 600; }
.post.feature { grid-column: 1 / -1; flex-direction: row; }
.post.feature .media { aspect-ratio: auto; flex: 1; min-width: 0; }
.post.feature .body { flex: 1; justify-content: center; padding: clamp(28px,4vw,46px); }
.post.feature h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-family: var(--font-display); font-weight: 600; }

/* Jobs / careers */
.jobs { display: grid; gap: 16px; margin-top: 44px; max-width: 880px; }
.job {
  display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 22px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.job:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.job .info { flex: 1; }
.job h3 { font-size: 1.12rem; margin-bottom: 4px; }
.job .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.job .tags span { font-size: .78rem; font-weight: 600; color: var(--muted); background: var(--cream); border-radius: var(--r-pill); padding: 4px 12px; }
.job .btn { flex: none; }

/* Apply steps (numbered) */
.apply-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 50px; }
.apply-step .n { width: 50px; height: 50px; border-radius: 16px; background: var(--coral-soft); color: var(--coral-deep); display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; margin-bottom: 18px; }
.apply-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.apply-step p { color: var(--muted); font-size: .92rem; }

/* CTA inline (compact) */
.cta-inline { text-align: center; }

/* Responsive — inner pages */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .apply-steps { grid-template-columns: repeat(2,1fr); gap: 30px 22px; }
}
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .fr-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .post.feature { flex-direction: column; }
  .job { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .team-grid, .blog-grid, .apply-steps { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
}

/* Active nav state (inner pages) */
.nav-links a[aria-current="page"] { color: var(--coral-deep); background: var(--coral-soft); }
