/* =========================================================================
   Sunrise Strategy Group: "Sunrise, engineered"
   Design system: deep pre-dawn ink + warm sunrise gradient + Space Grotesk.
   ========================================================================= */


:root {
  /* Type */
  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Ink (dark) */
  --ink-900: #080b16;
  --ink-800: #0c1122;
  --ink-700: #141a30;

  /* Brand neutrals (light) */
  --color-bg: #ffffff;
  --cream: #fff9f1;
  --cream-2: #fff3e3;
  --color-text: #15192a;
  --color-muted: #5b6478;
  --muted-on-dark: #aab2c5;
  --color-border: #ececf1;
  --border-warm: #f0e7da;
  --color-soft: #faf8f5;

  /* Sunrise */
  --sun-pink: #ff477e;
  --sun-orange: #ff8a3d;
  --sun-gold: #ffc145;
  --accent: #ff7a3d;
  --accent-text: #bd4a12;           /* AA on white/cream */
  --accent-soft: #fff0e2;
  --sunrise: linear-gradient(100deg, #ff477e 0%, #ff7a3d 48%, #ffc145 100%);
  --sunrise-soft: linear-gradient(180deg, #fff6ec 0%, #ffffff 100%);

  /* Form */
  --max-width: 1160px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(20,26,48,.05), 0 6px 18px rgba(20,26,48,.06);
  --shadow: 0 2px 6px rgba(20,26,48,.06), 0 18px 40px rgba(20,26,48,.10);
  --shadow-lg: 0 6px 16px rgba(20,26,48,.08), 0 30px 70px rgba(20,26,48,.16);

  font-family: var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }

h1, h2, h3, .price .amount, .brand {
  font-family: var(--font-display);
  font-weight: 600;
}

a { color: var(--color-text); text-decoration: none; }
a:hover { color: var(--accent-text); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* gradient accent text (use on dark only) */
.grad {
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Accessibility helpers ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink-900); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }
a:focus-visible, summary:focus-visible,
.cta:focus-visible, .cta-ghost:focus-visible, .nav-cta:focus-visible {
  outline: 3px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 0;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: var(--color-text);
}
.brand .sun {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 50% 35%, #ffe39a 0%, var(--sun-gold) 38%, var(--sun-orange) 70%, var(--sun-pink) 100%);
  box-shadow: 0 0 0 4px rgba(255,138,61,.16), 0 4px 14px rgba(255,106,77,.45);
}
.site-header nav { display: flex; align-items: center; }
.site-header nav a {
  margin-left: 28px; padding: 12px 0; color: var(--color-muted);
  font-size: 15px; font-weight: 500; transition: color .2s ease;
}
.site-header nav a:hover { color: var(--color-text); }
.site-header nav a.nav-cta {
  margin-left: 28px;
  background: var(--ink-900); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  display: inline-flex; align-items: center; min-height: 44px;
  font-weight: 600; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.site-header nav a.nav-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(8,11,22,.28); }

/* Mobile menu toggle (hamburger). Hidden on desktop; shown at <=720px. */
.nav-toggle {
  display: none; -webkit-appearance: none; appearance: none;
  background: transparent; border: 0; cursor: pointer; color: var(--color-text);
  width: 44px; height: 44px; margin-left: 12px; padding: 0;
  align-items: center; justify-content: center; border-radius: 10px;
}
.nav-toggle svg { width: 26px; height: 26px; display: block; }
.nav-toggle .nav-ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-ic-close { display: block; }
.nav-toggle:focus-visible { outline: 3px solid var(--accent-text); outline-offset: 2px; }
body.home .site-header .nav-toggle { color: #fff; }
body.home .site-header.scrolled .nav-toggle { color: var(--color-text); }

/* Dark page base on home so the strip behind the transparent header is dark
   (every visible home section sets its own background on top of this). */
body.home { background: var(--ink-900); }

/* Transparent over the dark hero on the homepage; solidifies on scroll */
body.home .site-header {
  background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none;
}
body.home .site-header .brand { color: #fff; }
body.home .site-header nav a { color: rgba(255,255,255,.78); }
body.home .site-header nav a:hover { color: #fff; }
body.home .site-header nav a.nav-cta {
  background: rgba(255,255,255,.10); color: #fff;
  border: 1px solid rgba(255,255,255,.22); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
body.home .site-header nav a.nav-cta:hover { background: rgba(255,255,255,.18); }
body.home .site-header.scrolled {
  background: rgba(255,255,255,.85); border-bottom-color: var(--color-border);
  -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 6px 24px rgba(20,26,48,.06);
}
body.home .site-header.scrolled .brand { color: var(--color-text); }
body.home .site-header.scrolled nav a { color: var(--color-muted); }
body.home .site-header.scrolled nav a:hover { color: var(--color-text); }
body.home .site-header.scrolled nav a.nav-cta {
  background: var(--ink-900); border-color: transparent;
}
/* When the mobile menu is open on the homepage, solidify the header so the
   transparent-over-hero treatment does not bleed behind the open panel. */
body.home .site-header.nav-open {
  background: rgba(255,255,255,.98); border-bottom-color: var(--color-border);
  -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px);
}
body.home .site-header.nav-open .brand,
body.home .site-header.nav-open .nav-toggle { color: var(--color-text); }

/* =========================================================================
   Buttons
   ========================================================================= */
.cta, .cta-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 16px; font-family: var(--font-body);
  letter-spacing: -0.01em; cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.cta {
  background: var(--sunrise); color: #20100a;
  box-shadow: 0 10px 30px rgba(255,106,77,.38);
  background-size: 140% 140%; background-position: 0% 50%;
}
.cta:hover { color: #20100a; transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 16px 40px rgba(255,106,77,.48); }
.cta-ghost {
  background: #fff; color: var(--color-text); border: 1px solid #767f8d;
}
.cta-ghost:hover { border-color: var(--accent); color: var(--accent-text); transform: translateY(-2px); }

/* ghost button on dark surfaces */
.hero .cta-ghost, .contact .cta-ghost {
  background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.45);
}
.hero .cta-ghost:hover, .contact .cta-ghost:hover {
  background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.6);
}

/* =========================================================================
   Section scaffolding
   ========================================================================= */
section { scroll-margin-top: 84px; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-text);
}
.section-head .kicker { margin: 0 0 14px; }
.kicker::before {
  content: ""; width: 18px; height: 2px; border-radius: 2px;
  background: var(--sunrise);
}
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 44px); line-height: 1.08;
  letter-spacing: -0.03em; margin: 0 0 16px;
}
.section-head > p { font-size: 19px; color: var(--color-muted); margin: 0; }

/* =========================================================================
   HERO  (dark, glowing horizon)
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  padding: 150px 0 110px;
  color: #fff;
  background:
    radial-gradient(120% 80% at 50% 116%, rgba(255,138,61,.55) 0%, rgba(255,71,126,.30) 26%, rgba(120,86,255,.10) 46%, rgba(8,11,22,0) 64%),
    radial-gradient(70% 50% at 84% -10%, rgba(120,110,255,.16) 0%, rgba(8,11,22,0) 60%),
    linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 58%, #0e1430 100%);
}
.hero::before { /* fine grain for depth */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
.hero::after { /* subtle horizon glow line */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,138,61,.5), transparent);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-copy { text-align: left; }
.hero .eyebrow {
  color: #ffd9a8; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.hero .eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sun-gold); box-shadow: 0 0 10px var(--sun-orange);
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 66px); line-height: 1.04;
  letter-spacing: -0.035em; margin: 0 0 24px; max-width: 600px; font-weight: 600;
}
.hero .lede {
  font-size: 20px; line-height: 1.6; color: var(--muted-on-dark);
  max-width: 530px; margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 38px; font-size: 14.5px; color: var(--muted-on-dark);
  display: flex; gap: 14px 26px; flex-wrap: wrap;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust span::before {
  content: ""; width: 16px; height: 16px; flex: none; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23080b16' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat,
    var(--sunrise);
}

/* hero product visual */
.hero-visual { position: relative; min-height: 440px; }
.ui-card {
  position: absolute; background: #fff; color: var(--color-text);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px; box-shadow: var(--shadow-lg);
}
.ui-card--chat { top: 6px; left: 6%; right: 2%; padding: 18px 18px 20px; z-index: 2; }
.ui-card-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--color-border);
}
.ui-avatar {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff; background: var(--sunrise);
}
.ui-avatar svg { width: 21px; height: 21px; }
.ui-card-head strong { display: block; font-size: 15px; line-height: 1.2; }
.ui-status { font-size: 12px; color: var(--color-muted); display: inline-flex; align-items: center; gap: 6px; }
.ui-status i { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.ui-thread { display: flex; flex-direction: column; gap: 10px; }
.bubble { font-size: 13.5px; line-height: 1.45; padding: 10px 13px; border-radius: 14px; max-width: 86%; }
.bubble.in { background: var(--color-soft); border: 1px solid var(--color-border); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.out { background: var(--ink-800); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.ui-confirm {
  margin-top: 14px; display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #137a3b;
  background: #eafaf0; border: 1px solid #c2ebd1; padding: 10px 12px; border-radius: 12px;
}
.ui-confirm svg { width: 16px; height: 16px; }
.ui-card--alert, .ui-card--booked { display: flex; align-items: center; gap: 12px; padding: 13px 16px; z-index: 3; }
.ui-card--alert { bottom: 74px; left: -4%; width: 250px; animation: floaty 6s ease-in-out infinite; }
.ui-card--booked { bottom: 0; right: 0; width: 214px; animation: floaty 6s ease-in-out infinite 1.6s; }
.ui-mini-ico { width: 38px; height: 38px; border-radius: 11px; flex: none; display: grid; place-items: center; }
.ui-mini-ico svg { width: 20px; height: 20px; }
.ico-amber { background: var(--accent-soft); color: var(--accent-text); }
.ico-navy { background: #eef0f6; color: var(--ink-700); }
.ui-card--alert strong, .ui-card--booked strong { display: block; font-size: 14px; line-height: 1.25; }
.ui-card--alert span, .ui-card--booked span { font-size: 12.5px; color: var(--color-muted); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* =========================================================================
   Stat band (proof under hero)
   ========================================================================= */
.statband { background: var(--ink-900); padding: 0; }
.statband-inner { max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 26px; text-align: center; color: #fff; }
.stat .num { font-family: var(--font-display); font-size: 30px; font-weight: 600; letter-spacing: -0.02em; }
.stat .num .grad { font-family: inherit; }
.stat .lbl { font-size: 13.5px; color: var(--muted-on-dark); margin-top: 4px; }
.stat + .stat { box-shadow: -1px 0 0 rgba(255,255,255,.08); }

/* =========================================================================
   Services: bento grid
   ========================================================================= */
.services { padding: 110px 0; background: var(--cream); border-bottom: 1px solid var(--border-warm); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.btile {
  position: relative; background: #fff; border: 1px solid var(--border-warm);
  border-radius: var(--radius); padding: 26px 26px;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.btile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #f0d9bf; }
.btile .ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-text); margin-bottom: 16px;
}
.btile .ico svg { width: 24px; height: 24px; }
.btile h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.02em; }
.btile h3 a { color: inherit; text-decoration: none; }
.btile h3 a:hover { color: var(--accent-text); }
.btile p { margin: 0; color: var(--color-muted); font-size: 15.5px; }

/* feature tile (large, dark) spans 2 cols + 2 rows */
.btile--feature {
  grid-column: span 2; grid-row: span 2;
  color: #fff; border: 0;
  background:
    radial-gradient(120% 90% at 90% 110%, rgba(255,138,61,.5) 0%, rgba(255,71,126,.18) 34%, rgba(8,11,22,0) 62%),
    linear-gradient(160deg, var(--ink-700) 0%, var(--ink-900) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px;
}
.btile--feature:hover { border-color: transparent; }
.btile--feature .ico { background: rgba(255,255,255,.10); color: #fff; width: 50px; height: 50px; }
.btile--feature h3 { font-size: 26px; line-height: 1.15; margin-bottom: 10px; }
.btile--feature p { color: var(--muted-on-dark); font-size: 16.5px; max-width: 42ch; }
.btile--feature .feature-foot { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; font-weight: 500; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 7px 13px; border-radius: 999px;
}

/* =========================================================================
   The leak vs the system
   ========================================================================= */
.compare { padding: 110px 0; background: #fff; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.compare-card { border-radius: var(--radius-lg); padding: 36px 34px; }
.compare-card h3 { font-size: 22px; margin: 0 0 6px; letter-spacing: -0.02em; }
.compare-card .sub { font-size: 15px; margin: 0 0 22px; }
.compare-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-card li { position: relative; padding-left: 32px; font-size: 16px; line-height: 1.5; }
.compare-card li::before {
  position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.leak {
  background: var(--color-soft); border: 1px solid var(--color-border);
}
.leak h3 { color: var(--color-text); }
.leak .sub { color: var(--color-muted); }
.leak li { color: #5c6374; }
.leak li::before { content: "\00d7"; background: #fbe2e2; color: #c5482f; }
.system {
  color: #fff; border: 1px solid transparent;
  background:
    radial-gradient(110% 90% at 100% 0%, rgba(255,138,61,.5) 0%, rgba(255,71,126,.16) 36%, rgba(8,11,22,0) 64%),
    linear-gradient(155deg, var(--ink-700) 0%, var(--ink-900) 100%);
}
.system h3 { color: #fff; }
.system .sub { color: var(--muted-on-dark); }
.system li { color: #e7eaf2; }
.system li::before {
  content: ""; background: var(--sunrise);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23080b16' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"),
    var(--sunrise);
  background-size: 12px, cover; background-position: center, center; background-repeat: no-repeat;
}

/* =========================================================================
   How it works
   ========================================================================= */
.how { padding: 110px 0; background: var(--cream); border-top: 1px solid var(--border-warm); border-bottom: 1px solid var(--border-warm); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step {
  position: relative; background: #fff; border: 1px solid var(--border-warm);
  border-radius: var(--radius); padding: 32px 28px 28px;
}
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--sunrise); color: #20100a; font-family: var(--font-display);
  font-weight: 700; font-size: 19px; margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(255,106,77,.30);
}
.step h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.02em; }
.step p { margin: 0; color: var(--color-muted); font-size: 15.5px; }

/* =========================================================================
   Pricing tiers
   ========================================================================= */
.pricing { padding: 110px 0; background: #fff; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 34px 30px;
  transition: transform .18s ease, box-shadow .25s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tier.featured {
  border-color: transparent; box-shadow: var(--shadow-lg);
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--sunrise) border-box;
  border: 1.5px solid transparent;
}
.tier .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sunrise); color: #20100a;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 15px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255,106,77,.35);
}
.tier h3 { margin: 0 0 6px; font-size: 22px; letter-spacing: -0.02em; }
.tier h3 a { color: inherit; text-decoration: none; }
.tier h3 a:hover { color: var(--accent-text); }
.tier .tier-for { margin: 0 0 22px; color: var(--color-muted); font-size: 14.5px; min-height: 42px; }
.tier .price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 4px; }
.tier .price .amount { font-size: 42px; font-weight: 600; letter-spacing: -0.03em; }
.tier .price .unit { font-size: 15px; color: var(--color-muted); }
.tier .retainer { font-size: 15px; color: var(--color-text); margin: 0 0 26px; }
.tier .retainer strong { color: var(--accent-text); }
.tier ul { list-style: none; padding: 0; margin: 0 0 30px; flex: 1; }
.tier ul li { position: relative; padding: 10px 0 10px 30px; font-size: 15px; border-top: 1px solid var(--color-border); }
.tier ul li:first-child { border-top: none; }
.tier ul li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 18px; height: 18px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bd4a12' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat,
    var(--accent-soft);
}
.tier .cta, .tier .cta-ghost { width: 100%; }
.pricing-note { text-align: center; color: var(--color-muted); font-size: 14.5px; margin-top: 36px; }
.pricing-note a { color: var(--accent-text); text-decoration: underline; }

/* =========================================================================
   Add-ons
   ========================================================================= */
.addons { padding: 110px 0; background: var(--cream); border-top: 1px solid var(--border-warm); border-bottom: 1px solid var(--border-warm); }
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.addon {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--border-warm);
  border-radius: var(--radius); padding: 22px 24px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.addon:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #f0d9bf; }
.addon .ico { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-text); }
.addon .ico svg { width: 22px; height: 22px; }
.addon h3 { margin: 0 0 4px; font-size: 16.5px; letter-spacing: -0.01em; }
.addon p { margin: 0 0 8px; color: var(--color-muted); font-size: 14.5px; }
.addon .addon-price { font-size: 15px; font-weight: 600; color: var(--accent-text); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { padding: 110px 0; background: #fff; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); margin-bottom: 12px; padding: 0 24px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: #f0d9bf; box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 0; font-size: 17px; font-weight: 600;
  font-family: var(--font-display); letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bd4a12' stroke-width='2.6' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 13px, cover;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p { margin: 0 0 22px; color: var(--color-muted); font-size: 16px; }

/* =========================================================================
   Contact / CTA band
   ========================================================================= */
.contact {
  position: relative; overflow: hidden; padding: 110px 0; text-align: center; color: #fff;
  background:
    radial-gradient(90% 70% at 50% -10%, rgba(255,138,61,.5) 0%, rgba(255,71,126,.22) 32%, rgba(8,11,22,0) 62%),
    linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 100%);
}
.contact h2 { font-size: clamp(30px, 4.2vw, 46px); margin: 0 0 16px; letter-spacing: -0.03em; }
.contact > .container > p { font-size: 19px; color: var(--muted-on-dark); max-width: 600px; margin: 0 auto 36px; }
.booking-embed {
  max-width: 780px; margin: 8px auto 0; background: #fff;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.booking-embed iframe { display: block; width: 100%; min-height: 700px; border: 0; }
.booking-fallback { font-size: 14.5px; color: var(--muted-on-dark); margin: 22px auto 0; }
.booking-fallback a { color: #fff; text-decoration: underline; }

/* =========================================================================
   Legal + subpage hero
   ========================================================================= */
.page-hero {
  padding: 132px 0 60px; text-align: center;
  background:
    radial-gradient(800px 360px at 50% -120px, var(--cream-2) 0%, rgba(255,243,227,0) 70%),
    var(--sunrise-soft);
  border-bottom: 1px solid var(--border-warm);
}
.page-hero h1 { font-size: clamp(36px, 5vw, 54px); letter-spacing: -0.03em; margin: 0 0 16px; }
.page-hero p { font-size: 19px; color: var(--color-muted); max-width: 640px; margin: 0 auto; }
.legal { padding: 64px 0 96px; max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: 42px; margin-bottom: 8px; letter-spacing: -0.03em; }
.legal .meta { color: var(--color-muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 23px; letter-spacing: -0.02em; margin: 40px 0 12px; }
.legal p, .legal li { font-size: 16px; color: var(--color-text); }
.legal ul { padding-left: 24px; }
.legal a { color: var(--accent-text); text-decoration: underline; }

/* =========================================================================
   Meta Ads spend pricing
   ========================================================================= */
.ads-pricing { padding: 110px 0; }
.spend-tiers {
  max-width: 640px; margin: 0 auto; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.spend-tier { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 30px; border-top: 1px solid var(--color-border); }
.spend-tier:first-child { border-top: none; }
.spend-tier.custom { background: var(--cream); }
.spend-tier .spend { font-size: 16px; font-weight: 600; }
.spend-tier .spend small { display: block; font-size: 13px; font-weight: 400; color: var(--color-muted); margin-top: 2px; }
.spend-tier .fee { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink-800); white-space: nowrap; }
.spend-tier .fee small { font-size: 13px; font-weight: 500; color: var(--color-muted); }
.ads-note { text-align: center; color: var(--color-muted); font-size: 14.5px; max-width: 560px; margin: 24px auto 0; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--ink-900); color: var(--muted-on-dark); padding: 54px 0 40px; }
.site-footer .container { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14.5px; color: var(--muted-on-dark); margin: 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px 24px; }
.site-footer nav a { color: var(--muted-on-dark); font-size: 14.5px; min-height: 44px; display: inline-flex; align-items: center; }
.site-footer nav a:hover { color: #fff; }
.footer-legal { width: 100%; border-top: 1px solid rgba(255,255,255,.08); margin-top: 12px; padding-top: 20px; font-size: 13.5px; color: #7c8499; }

/* =========================================================================
   Service detail pages + services hub
   ========================================================================= */
.crumb { font-size: 13.5px; color: var(--color-muted); margin: 0 0 16px; }
.crumb a { color: var(--color-muted); }
.crumb a:hover { color: var(--accent-text); }
.crumb span { color: #c9cdd8; margin: 0 9px; }
.crumb span[aria-current] { color: var(--color-muted); margin: 0; }

.page-hero .svc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-text);
}
.page-hero .svc-eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--sunrise); }
.page-hero .hero-actions { justify-content: center; margin-top: 30px; }

.svc-section { padding: 96px 0; background: #fff; }
.svc-section.alt { background: var(--cream); border-top: 1px solid var(--border-warm); border-bottom: 1px solid var(--border-warm); }
.section-cta { text-align: center; margin-top: 36px; }

/* two-option pricing (e.g. consulting call: remote vs in person) */
.tiers.two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
@media (max-width: 720px) { .tiers.two { grid-template-columns: 1fr; max-width: 460px; } }

/* price callout */
.svc-price {
  max-width: 540px; margin: 0 auto; text-align: center; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 42px 36px;
}
.svc-price .amount { font-family: var(--font-display); font-size: 46px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.svc-price .unit { font-size: 16px; color: var(--color-muted); margin-left: 6px; }
.svc-price p { color: var(--color-muted); font-size: 15.5px; margin: 14px auto 26px; max-width: 42ch; }
.svc-price .hero-actions { justify-content: center; margin: 0; }

/* services hub: linked cards */
a.btile { display: block; color: inherit; }
a.btile:hover { color: inherit; }
a.btile--feature { display: flex; }
.btile .more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 14.5px; font-weight: 600; color: var(--accent-text);
}
.btile .more svg { width: 15px; height: 15px; }

/* dark CTA band action row + linked add-on titles */
.contact .hero-actions { justify-content: center; }
.addon h3 a { color: inherit; }
.addon h3 a:hover { color: var(--accent-text); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .hero { padding: 128px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 420px; max-width: 440px; width: 100%; margin: 30px auto 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .btile--feature { grid-column: span 2; grid-row: auto; }
  .compare-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .statband-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { box-shadow: none !important; border-top: 1px solid rgba(255,255,255,.08); }
}
/* Mobile nav menu: hamburger toggle + dropdown panel */
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .site-header .container { position: relative; }
  .site-header nav {
    display: none;
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    padding: 6px 18px 14px;
    background: rgba(255,255,255,.98);
    -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 14px 30px rgba(20,26,48,.12);
  }
  .site-header.nav-open nav { display: flex; }
  .site-header nav a, body.home .site-header nav a {
    margin-left: 0; padding: 14px 4px; font-size: 16px; color: var(--color-muted);
    border-bottom: 1px solid var(--color-border);
  }
  .site-header nav a:hover, body.home .site-header nav a:hover { color: var(--color-text); }
  .site-header nav a.nav-cta, body.home .site-header nav a.nav-cta {
    margin: 12px 0 0; padding: 13px 20px; justify-content: center;
    background: var(--ink-900); color: #fff; border: 0; border-radius: 999px; min-height: 44px;
  }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .brand { font-size: 16px; gap: 8px; white-space: nowrap; }
  .brand .sun { width: 20px; height: 20px; }
  /* mobile nav links are handled by the .nav-toggle menu (max-width:720px block) */
  .hero { padding: 116px 0 72px; }
  .services, .compare, .how, .pricing, .addons, .faq, .ads-pricing, .svc-section { padding: 72px 0; }
  .bento { grid-template-columns: 1fr; }
  .btile--feature { grid-column: auto; }
  .statband-inner { grid-template-columns: 1fr 1fr; }
  .ui-card--chat { left: 0; right: 0; }
  .ui-card--alert { left: -2%; width: 230px; }
  .ui-card--booked { right: -2%; }
  .compare-card { padding: 28px 24px; }
  .contact { padding: 80px 0; }
  .booking-embed iframe { min-height: 560px; }
  .site-footer .container { flex-direction: column; }
}

/* =========================================================================
   Motion preferences
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
