/* ── Reset & Brand Tokens ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #1f2a44;
  --navy-deep:   #161e32;
  --teal:        #2F5D62;
  --teal-light:  #eef5f5;
  --coral:       #E76F51;
  --coral-dark:  #c95b3f;
  --gold:        #C2A14A;
  --gold-light:  rgba(194,161,74,.11);
  --gold-border: rgba(194,161,74,.28);
  --dark:        #2B2B2B;
  --light:       #F3F4F5;
  --white:       #FFFFFF;
  --border:      #dde2e8;
  --muted:       #6b7280;
  --ink:         #2B2B2B;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(31,42,68,.10);
  --shadow-lg:   0 12px 48px rgba(31,42,68,.18);
  --nav-h:       68px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── Scroll Animations ──────────────────────────────── */
[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1),
              transform .6s cubic-bezier(.16,1,.3,1);
}
[data-animate].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }
[data-delay="6"] { transition-delay: .48s; }

/* ── Utilities ──────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-light); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--gold-border);
}
.tag-teal {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-light); color: var(--teal);
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  border: 1px solid rgba(47,93,98,.22);
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(231,111,81,.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--light); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--light); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-lg { font-size: 16px; padding: 16px 32px; }
section { padding: 96px 0; }

/* ── Section Header ─────────────────────────────────── */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  letter-spacing: -.4px; color: var(--navy); margin: 14px 0 16px; line-height: 1.15;
}
.section-header p { font-size: 17px; color: var(--muted); }
.gold-divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  border-radius: 2px; margin: 14px auto 20px;
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(31,42,68,.10); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo-mark { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-text { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -.3px; }
.nav__logo-text em { font-style: normal; color: var(--coral); }
.nav__logo-tag { font-size: 9px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .15s; position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s ease; border-radius: 2px;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--navy); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__cta .btn { padding: 9px 18px; font-size: 14px; }
.nav__burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.nav__burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: all .25s ease; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV DROPDOWN ───────────────────────────────────── */
.nav__links li { position: relative; }
.nav__links .menu-item-has-children > a { padding-right: 18px; }
.nav__links .menu-item-has-children > a::before {
  content: '▾'; position: absolute; right: 0; top: 0;
  font-size: 11px; color: var(--muted); line-height: inherit;
  transition: transform .2s ease;
}
.nav__links .menu-item-has-children:hover > a::before { transform: rotate(180deg); }
/* Target all nested ULs (covers any class name GP might use) — !important prevents
   inline-style or dynamic-CSS overrides from the parent theme */
.nav__links ul {
  display: none !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Higher-specificity hover rule wins the !important battle — shows as floating panel */
.nav__links li:hover > ul,
.nav__links li:focus-within > ul {
  display: block !important;
  list-style: none !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: var(--white) !important;
  min-width: 200px !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 6px 0 !important;
  z-index: 300 !important;
  width: auto !important;
}
.nav__links li > ul > li { list-style: none !important; padding: 0 !important; position: static !important; }
.nav__links li > ul a {
  display: block !important; padding: 10px 18px; font-size: 13px; font-weight: 600;
  color: var(--muted) !important; white-space: nowrap; position: relative;
}
.nav__links li > ul a::after { display: none !important; }
.nav__links li > ul a:hover { color: var(--navy) !important; background: var(--light) !important; }
.nav__links li > ul a::before { display: none !important; }

/* ── MOBILE NAV LIST ─────────────────────────────────── */
.mobile-nav-list { list-style: none !important; margin: 0; padding: 0; }
.mobile-nav-list > li { border-bottom: 1px solid var(--border); }
.mobile-nav-list > li > a {
  display: flex !important; align-items: center; justify-content: space-between;
  font-size: 18px; font-weight: 600; color: var(--ink);
  padding: 14px 0; border-bottom: none;
}
.mobile-nav-list .menu-item-has-children > a::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--gold);
  line-height: 1; flex-shrink: 0;
}
.mobile-nav-list .menu-item-has-children.submenu-open > a::after { content: '×'; }
/* Match both .sub-menu and generic ul to cover any GP class override */
.mobile-nav-list .sub-menu,
.mobile-nav-list ul {
  display: none !important; list-style: none !important;
  padding: 0 0 10px 16px; margin: 0;
  border-left: 2px solid var(--gold-border);
}
.mobile-nav-list .menu-item-has-children.submenu-open > .sub-menu,
.mobile-nav-list .menu-item-has-children.submenu-open > ul { display: block !important; }
.mobile-nav-list .sub-menu li,
.mobile-nav-list ul li { border-bottom: none; list-style: none !important; }
.mobile-nav-list .sub-menu a,
.mobile-nav-list ul a {
  display: block !important; font-size: 15px; font-weight: 500;
  color: var(--muted); padding: 9px 0; border-bottom: none;
}
.mobile-nav-list .sub-menu a:hover,
.mobile-nav-list ul a:hover { color: var(--navy); }

/* ── BLOG / CATEGORY ARCHIVE ────────────────────────── */
.blog-archive { background: var(--light); padding: 80px 0; min-height: 60vh; }
.blog-archive__header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.blog-archive__header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  color: var(--navy); margin: 14px 0 16px; line-height: 1.15;
}
.blog-archive__header p { font-size: 17px; color: var(--muted); }
.blog-post-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); border-top: 3px solid var(--gold);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.blog-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-post-card__cat {
  display: inline-block; background: var(--gold-light); color: var(--gold);
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
  border: 1px solid var(--gold-border); align-self: flex-start;
}
.blog-post-card__title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.blog-post-card__excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-post-card__link {
  display: inline-flex; align-items: center; padding: 9px 16px; border-radius: 8px;
  border: 2px solid var(--navy); font-size: 13px; font-weight: 700;
  color: var(--navy); background: transparent; align-self: flex-start;
  transition: all .18s; cursor: pointer;
}
.blog-post-card__link:hover { background: var(--navy); color: var(--white); }
.blog-archive__nav { margin-top: 48px; text-align: center; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--white); z-index: 190;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
  border-top: 1px solid var(--border); overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; font-size: 18px; font-weight: 600; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu__cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu__cta .btn { width: 100%; justify-content: center; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(155deg, #edf0f8 0%, #F3F4F5 50%, #eef5f5 100%);
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute;
  width: 520px; height: 520px; border-radius: 50%;
  border: 64px solid rgba(194,161,74,.05);
  right: -130px; top: -120px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 2px; height: 220px;
  background: linear-gradient(180deg, var(--gold), transparent);
  left: 0; top: 100px; pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero__content { max-width: 560px; }
.hero__tag { margin-bottom: 22px; }
.hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 58px); font-weight: 900;
  line-height: 1.06; letter-spacing: -.4px; color: var(--navy); margin-bottom: 22px;
}
.hero__h1 em { font-style: normal; color: var(--coral); }
.hero__sub { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero__sub strong { color: var(--dark); }
.hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero__trust { margin-top: 28px; display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.hero__avatars { display: flex; }
.hero__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: white;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__visual { position: relative; }
.hero__visual::before {
  content: ''; position: absolute; inset: -30px -20px -50px -20px;
  background: radial-gradient(ellipse at center, rgba(194,161,74,.07), transparent 70%);
  pointer-events: none;
}
.founder-card {
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
  background: linear-gradient(160deg, var(--navy), var(--teal));
  position: relative; aspect-ratio: 4/5; max-height: 480px;
}
.founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--gold), var(--coral));
}
.founder-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.founder-card__placeholder {
  width: 100%; height: 100%; min-height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  padding: 32px;
}
.founder-card__placeholder-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(194,161,74,.15); border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.founder-card__placeholder p { color: rgba(255,255,255,.35); font-size: 12px; text-align: center; line-height: 1.6; }
.founder-card__badge {
  position: absolute; bottom: 18px; left: 16px; right: 16px;
  background: rgba(22,30,50,.88); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border); border-radius: 10px;
  padding: 12px 16px; z-index: 3;
}
.founder-card__name { font-size: 14px; font-weight: 700; color: var(--white); }
.founder-card__title { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; letter-spacing: .4px; }
.hero-stat-float {
  position: absolute; bottom: -20px; right: -20px;
  width: 200px; background: var(--white);
  border-radius: 14px; box-shadow: 0 8px 32px rgba(31,42,68,.18);
  border: 1px solid var(--border); overflow: hidden; z-index: 4;
}
.hero-stat-float__header {
  background: var(--navy); padding: 8px 12px;
  display: flex; align-items: center; gap: 5px;
}
.hsf-dot { width: 7px; height: 7px; border-radius: 50%; }
.hero-stat-float__body { padding: 10px 12px; }
.hsf-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 0; border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.hsf-row:last-child { border-bottom: none; }
.hsf-label { color: var(--muted); }
.hsf-val { font-weight: 700; color: var(--navy); }
.hsf-val.gold  { color: var(--gold); }
.hsf-val.teal  { color: var(--teal); }

/* ── BRAND STRIP ────────────────────────────────────── */
.brand-strip {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 0;
}
.brand-strip__inner {
  display: grid; grid-template-columns: repeat(3,1fr);
}
.brand-pillar {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.brand-pillar:last-child { border-right: none; }
.brand-pillar__icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.bp-build    { background: rgba(194,161,74,.14); }
.bp-automate { background: rgba(47,93,98,.24); }
.bp-scale    { background: rgba(231,111,81,.14); }
.brand-pillar__text strong { display: block; font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: .3px; }
.brand-pillar__text span { font-size: 11px; color: rgba(255,255,255,.38); }

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar { background: var(--navy-deep); padding: 44px 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.stat-item {
  padding: 24px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 900; color: var(--white);
  letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px;
}
.stat-item__value span { color: var(--gold); }
.stat-item__label { font-size: 11px; color: #64748B; font-weight: 500; text-transform: uppercase; letter-spacing: .6px; }

/* ── PROOF BAR ──────────────────────────────────────── */
.proof-bar { padding: 26px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.proof-bar__inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.proof-bar__label { font-size: 11px; color: var(--muted); font-weight: 700; white-space: nowrap; text-transform: uppercase; letter-spacing: 1.2px; }
.proof-bar__logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.proof-logo { font-size: 11px; font-weight: 700; color: #C8D0DA; letter-spacing: .8px; white-space: nowrap; text-transform: uppercase; }
.proof-bar__divider { width: 1px; height: 20px; background: var(--border); }

/* ── PAIN ───────────────────────────────────────────── */
.pain { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.pain::before {
  content: ''; position: absolute;
  width: 440px; height: 440px; border-radius: 50%;
  border: 55px solid rgba(194,161,74,.04);
  right: -100px; top: -100px; pointer-events: none;
}
.pain::after {
  content: ''; position: absolute;
  width: 2px; height: 180px;
  background: linear-gradient(180deg, var(--gold), transparent);
  right: 80px; bottom: 60px; pointer-events: none;
}
.pain__header { text-align: center; max-width: 640px; margin: 0 auto 56px; position: relative; z-index: 1; }
.pain__header .tag { background: rgba(194,161,74,.12); color: var(--gold); border-color: var(--gold-border); }
.pain__h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  letter-spacing: -.4px; margin: 16px 0; line-height: 1.12;
}
.pain__sub { color: rgba(255,255,255,.45); font-size: 17px; }
.pain__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border-radius: var(--radius); overflow: hidden; position: relative; z-index: 1; }
.pain__card {
  background: rgba(255,255,255,.04); padding: 28px 24px;
  border-top: 2px solid rgba(194,161,74,.14);
  transition: background .2s;
}
.pain__card:hover { background: rgba(255,255,255,.07); }
.pain__card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(194,161,74,.12); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.pain__card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pain__card p  { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.65; }
.pain__bridge {
  margin-top: 48px; text-align: center; padding: 36px 32px;
  background: linear-gradient(135deg, rgba(194,161,74,.10), rgba(47,93,98,.18));
  border-radius: var(--radius); border: 1px solid var(--gold-border);
  position: relative; z-index: 1;
}
.pain__bridge p { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.pain__bridge span { color: rgba(255,255,255,.42); font-size: 15px; }

/* ── FOUNDER SECTION ────────────────────────────────── */
.founder-section { background: var(--light); padding: 88px 0; position: relative; overflow: hidden; }
.founder-section::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  border: 40px solid rgba(194,161,74,.06);
  right: -70px; bottom: -70px; pointer-events: none;
}
.founder-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.founder-section__img-wrap { position: relative; }
.founder-photo {
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 3px solid var(--gold);
  aspect-ratio: 3/4; max-height: 520px;
  background: linear-gradient(160deg, var(--navy), var(--teal));
  position: relative;
}
.founder-photo::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--gold), var(--coral));
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-photo__placeholder {
  width: 100%; height: 100%; min-height: 420px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; padding: 40px;
}
.founder-photo__placeholder-av {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(194,161,74,.14); border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; color: var(--gold);
}
.founder-photo__placeholder p { color: rgba(255,255,255,.3); font-size: 12px; text-align: center; line-height: 1.6; }
.founder-photo-accent {
  position: absolute; bottom: -18px; left: -18px;
  width: 88px; height: 88px; border-radius: 14px;
  background: var(--gold-light); border: 2px solid var(--gold-border); z-index: 0;
}
.founder-section__content .tag { margin-bottom: 20px; }
.founder-section__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 900;
  color: var(--navy); line-height: 1.12; margin-bottom: 20px;
}
.founder-section__content h2 em { font-style: normal; color: var(--coral); }
.founder-section__content p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.ops-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.ops-pillar {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 10px; padding: 16px 12px; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.ops-pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ops-pillar.tl  { border-top-color: var(--teal); }
.ops-pillar.cr  { border-top-color: var(--coral); }
.ops-pillar__icon { font-size: 22px; margin-bottom: 8px; }
.ops-pillar__word { font-size: 11px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 1.2px; }
.ops-pillar__desc { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.45; }
.founder-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding: 16px 20px;
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
}
.founder-meta__av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--white); flex-shrink: 0;
}
.founder-meta__name { font-size: 14px; font-weight: 700; color: var(--navy); }
.founder-meta__role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── FEATURES ───────────────────────────────────────── */
.features { background: var(--white); }
.features__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--border); border-top: 3px solid transparent;
  transition: border-color .2s, border-top-color .2s, box-shadow .2s, transform .2s;
}
.feature-card:hover { border-color: var(--teal); border-top-color: var(--gold); box-shadow: 0 4px 24px rgba(31,42,68,.09); transform: translateY(-3px); }
.feature-card__icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ───────────────────────────────────── */
.how { background: var(--light); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.step { background: var(--white); padding: 36px 28px; position: relative; }
.step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.step:nth-child(1)::before { background: linear-gradient(90deg, var(--gold), rgba(194,161,74,.2)); }
.step:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), rgba(47,93,98,.2)); }
.step:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), rgba(231,111,81,.2)); }
.step__num { font-family: 'Playfair Display', serif; font-size: 68px; font-weight: 900; color: #ECEFF4; line-height: 1; margin-bottom: 16px; letter-spacing: -3px; }
.step__title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step__body  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step__badge { display: inline-block; margin-top: 16px; background: var(--teal-light); color: var(--teal); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; border: 1px solid rgba(47,93,98,.18); }

/* ── PRICING ────────────────────────────────────────── */
.pricing { background: var(--white); }
.pricing__single { display: flex; justify-content: center; }
.price-card { border-radius: var(--radius); border: 2px solid var(--border); padding: 32px 28px; display: flex; flex-direction: column; transition: transform .2s; }
.price-card:hover { transform: translateY(-3px); }
.price-card--featured { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(194,161,74,.10); position: relative; }
.price-card--solo { width: 100%; max-width: 600px; }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 800; padding: 4px 16px; border-radius: 999px; white-space: nowrap; letter-spacing: .5px; border: 1.5px solid var(--gold); }
.price-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; justify-content: center; }
.price-card__amount { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 900; color: var(--navy); line-height: 1; }
.price-card__period { font-size: 16px; color: var(--muted); }
.price-card__promise { font-size: 15px; font-style: italic; color: var(--ink); border-left: 3px solid var(--gold); padding-left: 12px; margin-bottom: 28px; line-height: 1.6; text-align: left; }
.price-card__features { list-style: none; flex: 1; margin-bottom: 28px; }
.price-card__features--two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.price-card__features li { font-size: 14px; color: var(--ink); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; }
.price-card__features li::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.price-card__cta { margin-top: auto; width: 100%; text-align: center; border-radius: 10px; padding: 16px; font-size: 16px; font-weight: 700; border: 2px solid var(--coral); color: var(--white); transition: all .18s; cursor: pointer; background: var(--coral); font-family: inherit; }
.price-card__cta:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(231,111,81,.35); }

/* ── RESOURCES ──────────────────────────────────────── */
.resources { background: var(--light); }
.res-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px; justify-content: center;
}
.res-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  border: 2px solid var(--border); background: var(--white);
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: all .18s ease;
}
.res-tab:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.res-tab--active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.res-tab--active:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.res-tab__icon { font-size: 16px; }
.res-panel { display: none; }
.res-panel--active { display: block; }
.res-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.res-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); border-top: 3px solid var(--gold);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.res-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.res-card__icon { font-size: 28px; }
.res-card__badge {
  display: inline-block; align-self: flex-start;
  background: var(--gold-light); color: var(--gold);
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
  border: 1px solid var(--gold-border);
}
.res-card__title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.res-card__desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.res-card__btn {
  margin-top: 6px; padding: 10px 18px; border-radius: 8px;
  border: 2px solid var(--border); background: transparent;
  font-family: inherit; font-size: 13px; font-weight: 700;
  color: var(--muted); cursor: not-allowed; align-self: flex-start;
  transition: all .18s;
}
.res-card__btn:not(:disabled) { cursor: pointer; color: var(--navy); border-color: var(--navy); }
.res-card__btn:not(:disabled):hover { background: var(--light); }

/* ── BOOK ───────────────────────────────────────────── */
.book-section {
  background: var(--navy-deep); color: var(--white);
  text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.book-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(194,161,74,.08), transparent 65%);
  pointer-events: none;
}
.book-section__inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.book-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; letter-spacing: -.3px; margin: 14px 0 16px; line-height: 1.12; }
.book-section p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 32px; line-height: 1.7; }
.book-slots { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.book-slot { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 12px 20px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); }
.book-slot strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 2px; }

/* ── CONTACT ────────────────────────────────────────── */
.contact-section { background: var(--white); padding: 80px 0; }
.contact-section__inner { max-width: 680px; margin: 0 auto; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.contact-form__full { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border); font-family: inherit; font-size: 15px;
  color: var(--ink); background: var(--white); transition: border-color .18s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--teal); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form__submit { grid-column: 1 / -1; }

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials { background: var(--light); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); border-top: 3px solid var(--gold); transition: transform .2s, box-shadow .2s; }
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testi-card__stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testi-card__quote { font-size: 15px; line-height: 1.65; color: var(--ink); margin-bottom: 20px; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testi-card__name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-card__role { font-size: 12px; color: var(--muted); }
.testi-card__result { margin-top: 14px; padding: 10px 14px; background: var(--teal-light); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--teal); border: 1px solid rgba(47,93,98,.15); }

/* ── FAQ ────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; }
.faq-item__question { font-size: 16px; font-weight: 600; color: var(--navy); transition: color .15s; }
.faq-item__btn:hover .faq-item__question { color: var(--teal); }
.faq-item__icon { width: 28px; height: 28px; border-radius: 50%; background: var(--light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.faq-item__icon svg { transition: transform .3s; }
.faq-item.open .faq-item__icon { background: var(--teal-light); }
.faq-item.open .faq-item__icon svg { transform: rotate(45deg); }
.faq-item__body { overflow: hidden; max-height: 0; transition: max-height .38s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-item__body { max-height: 300px; }
.faq-item__answer { font-size: 15px; color: var(--muted); line-height: 1.7; padding-bottom: 20px; }

/* ── TRUST BAR ──────────────────────────────────────── */
.trust-bar { background: var(--white); padding: 40px 0; border-top: 1px solid var(--border); }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.trust-item svg { flex-shrink: 0; }

/* ── FINAL CTA ──────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white); text-align: center; padding: 96px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(194,161,74,.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--coral), var(--teal));
}
.final-cta__tagline { font-size: 11px; color: rgba(255,255,255,.38); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 8px; }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 900; letter-spacing: -.4px; margin-bottom: 16px; line-height: 1.12; }
.final-cta p  { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; }
.final-cta__actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.final-cta__note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.42); }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.38); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer__logo-text { font-size: 18px; font-weight: 800; color: var(--white); }
.footer__logo-text em { font-style: normal; color: var(--gold); }
.footer__tagline { font-size: 14px; line-height: 1.65; max-width: 240px; color: rgba(255,255,255,.32); }
.footer__ops { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.footer__ops-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.footer__col h4 { font-size: 11px; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 8px; }
.footer__col a { font-size: 13px; color: rgba(255,255,255,.32); transition: color .15s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer__bottom .brand { color: var(--gold); font-weight: 700; }

/* ── Notice / success message ───────────────────────── */
.contact-notice {
  padding: 14px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; margin-bottom: 20px;
}
.contact-notice--success { background: var(--teal-light); color: var(--teal); border: 1px solid rgba(47,93,98,.2); }
.contact-notice--error   { background: #fef2f2; color: #dc2626; border: 1px solid rgba(220,38,38,.2); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .brand-strip__inner { grid-template-columns: 1fr; }
  .brand-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .brand-pillar:last-child { border-bottom: none; }
  .pain__grid, .features__grid, .steps, .testi-grid, .res-cards { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2,1fr); }
  .founder-section__inner { grid-template-columns: 1fr; }
  .founder-section__img-wrap { display: none; }
  .ops-pillars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .price-card__features--two-col { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form__full, .contact-form__submit { grid-column: 1; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 20px; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .ops-pillars { grid-template-columns: repeat(3,1fr); }
  .pain__grid, .features__grid, .steps, .testi-grid, .res-cards { grid-template-columns: 1fr; }
  .res-tabs { gap: 6px; }
  .res-tab { font-size: 13px; padding: 9px 14px; }
}
