/* ============================================================
   THE NARRATIVE QUOTIENT — Global Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1E2160;
  --cyan:       #29C4E0;
  --purple:     #7B4FBE;
  --magenta:    #D44DA8;
  --white:      #ffffff;
  --off-white:  #F8F7FF;
  --light-grey: #f0f0f8;
  --text-dark:  #12143A;
  --text-mid:   #3a3d6e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  display: block;
}
.eyebrow--purple { color: var(--purple); }
.eyebrow--magenta { color: var(--magenta); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title--white { color: var(--white); }
.section-title--white em {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}
.section-body--white { color: rgba(255,255,255,0.7); }

.inner { max-width: 1100px; margin: 0 auto; }

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: white;
  padding: 15px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: white; }

/* ── NAV ── */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(30,33,96,0.3);
  transition: background 0.3s;
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a.active { color: var(--cyan); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: white !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}
.nav-links .nav-cta:hover { opacity: 0.88; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#home {
  background: linear-gradient(135deg, var(--navy) 0%, #252870 50%, #1a1d55 100%);
  padding: 140px 40px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#home::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(41,196,224,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#home::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,77,168,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { }
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero-text h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 28px;
  backdrop-filter: blur(8px);
}
.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── TICKER ── */
.ticker-strip {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 0 4px;
}
.ticker-dot {
  color: var(--cyan) !important;
  opacity: 1 !important;
  margin: 0 12px !important;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── WHY SECTION ── */
#why {
  background: var(--off-white);
  padding: 96px 40px;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why-header { max-width: 640px; margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 32px;
  border: 1px solid rgba(30,33,96,0.07);
  box-shadow: 0 2px 20px rgba(30,33,96,0.05);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.why-card:nth-child(1)::before { background: linear-gradient(90deg, var(--cyan), #52d4e8); }
.why-card:nth-child(2)::before { background: linear-gradient(90deg, var(--purple), var(--magenta)); }
.why-card:nth-child(3)::before { background: linear-gradient(90deg, var(--magenta), #f08060); }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.why-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── ABOUT ── */
#about {
  padding: 100px 40px;
  background: var(--white);
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-image-col { position: relative; }
.about-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(41,196,224,0.12) 0%, rgba(123,79,190,0.15) 50%, rgba(212,77,168,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30,33,96,0.08);
  overflow: hidden;
  position: relative;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-image-placeholder {
  text-align: center;
  color: rgba(30,33,96,0.3);
}
.about-image-placeholder svg { width: 56px; height: 56px; margin-bottom: 12px; opacity: 0.4; }
.about-image-placeholder p { font-size: 0.8rem; letter-spacing: 0.08em; }
.about-float-stat {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(30,33,96,0.25);
}
.about-float-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}
.about-float-stat p { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; max-width: 120px; }

.about-text-col { padding-top: 8px; }
.about-text-col .section-title { margin-bottom: 28px; }
.about-text-col p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text-col strong { color: var(--navy); font-weight: 600; }
.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.about-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.about-value:nth-child(1) .about-value-icon { background: rgba(41,196,224,0.12); color: var(--cyan); }
.about-value:nth-child(2) .about-value-icon { background: rgba(123,79,190,0.12); color: var(--purple); }
.about-value:nth-child(3) .about-value-icon { background: rgba(212,77,168,0.12); color: var(--magenta); }
.about-value-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-value-text p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ── PULL QUOTE ── */
.pull-quote-strip {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
}
.pull-quote-strip blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.35;
}
.pull-quote-strip blockquote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pull-quote-strip cite {
  display: block;
  margin-top: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── FOUNDERS ── */
#founders {
  padding: 100px 40px;
  background: var(--white);
}
.founders-inner { max-width: 1100px; margin: 0 auto; }
.founders-header { max-width: 680px; margin-bottom: 56px; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.problem-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 28px 26px;
  border-left: 3px solid var(--purple);
}
.problem-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.problem-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

.services-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.services-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid rgba(30,33,96,0.1);
  border-radius: 14px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(30,33,96,0.1); transform: translateY(-2px); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 12px;
  display: block;
}
.service-card:nth-child(1) .service-num { color: var(--cyan); }
.service-card:nth-child(2) .service-num { color: var(--purple); }
.service-card:nth-child(3) .service-num { color: var(--magenta); }
.service-card:nth-child(4) .service-num { color: var(--navy); }
.service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ── WOMEN ── */
#women {
  padding: 100px 40px;
  background: var(--off-white);
}
.women-inner { max-width: 1100px; margin: 0 auto; }
.women-header { max-width: 680px; margin-bottom: 56px; }

.patterns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.pattern-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 28px;
  border: 1px solid rgba(30,33,96,0.07);
}
.pattern-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.pattern-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

.women-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.ws-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid rgba(30,33,96,0.08);
  border-top: 3px solid var(--magenta);
  transition: box-shadow 0.2s;
}
.ws-card:hover { box-shadow: 0 8px 28px rgba(30,33,96,0.08); }
.ws-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.ws-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

.platform-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, #2a2d7a 100%);
  border-radius: 16px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.platform-teaser h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.platform-teaser p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.7; max-width: 480px; }
.platform-teaser .btn-primary { white-space: nowrap; }

/* ── CASE STUDIES ── */
#work {
  padding: 100px 40px;
  background: var(--white);
}
.work-inner { max-width: 1100px; margin: 0 auto; }
.work-header { max-width: 640px; margin-bottom: 56px; }

.cs-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.cs-filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(30,33,96,0.2);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.cs-filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.cs-filter-btn.active { background: var(--navy); color: white; border-color: var(--navy); }

.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.cs-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30,33,96,0.07);
  box-shadow: 0 2px 20px rgba(30,33,96,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cs-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(30,33,96,0.12); }
.cs-card.hidden { display: none; }
.cs-card-header {
  padding: 32px 32px 28px;
  position: relative;
}
.cs-card-header--truebeacon  { background: linear-gradient(135deg, #0d1040 0%, var(--navy) 100%); }
.cs-card-header--valueonshore{ background: linear-gradient(135deg, #0d2a1a 0%, #1a6040 100%); }
.cs-card-header--chegg       { background: linear-gradient(135deg, #2a0a40 0%, var(--purple) 100%); }
.cs-card-header--euler       { background: linear-gradient(135deg, #1a0830 0%, var(--magenta) 100%); }
.cs-card-header--rebel       { background: linear-gradient(135deg, #1a0a00 0%, #b03000 100%); }
.cs-card-header--infeedo     { background: linear-gradient(135deg, #0a1a35 0%, #1a4080 100%); }
.cs-card-header--uflex       { background: linear-gradient(135deg, #081a10 0%, #0e5c30 100%); }
.cs-client {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.cs-sector {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.cs-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  border-left: 2px solid rgba(255,255,255,0.3);
  padding-left: 14px;
}
.cs-bucket-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.cs-bucket-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.tag--pr { background: rgba(41,196,224,0.15); color: var(--cyan); border: 1px solid rgba(41,196,224,0.3); }
.tag--investor { background: rgba(212,77,168,0.15); color: #e870c0; border: 1px solid rgba(212,77,168,0.3); }
.tag--b2b { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); }
.tag--influencer { background: rgba(123,79,190,0.2); color: #c09fff; border: 1px solid rgba(123,79,190,0.3); }
.cs-card-body { padding: 24px 32px 28px; background: var(--white); }
.cs-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.cs-card-body p:last-child { margin-bottom: 0; }
.cs-result-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
  display: block;
}

/* programmatic grid */
.prog-intro-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 32px; max-width: 640px; }
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.prog-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(30,33,96,0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.prog-card:hover { transform: translateY(-2px); }
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.prog-card--tourism::before { background: linear-gradient(90deg, var(--cyan), #52c97a); }
.prog-card--entertainment::before { background: linear-gradient(90deg, var(--purple), var(--magenta)); }
.prog-card--consumer::before { background: linear-gradient(90deg, var(--magenta), #f0800a); }
.prog-card-sector {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  opacity: 0.6;
  margin-bottom: 6px;
}
.prog-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.prog-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }

/* ── PACKAGES ── */
#services {
  padding: 100px 40px;
  background: var(--off-white);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { max-width: 640px; margin-bottom: 56px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.package-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(30,33,96,0.08);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.package-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(30,33,96,0.1); }
.package-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 40px rgba(30,33,96,0.3);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.package-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.package-card.featured h3 { color: var(--white); }
.package-card > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.package-card.featured > p { color: rgba(255,255,255,0.65); }
.package-divider { height: 1px; background: rgba(30,33,96,0.08); margin: 20px 0; }
.package-card.featured .package-divider { background: rgba(255,255,255,0.1); }
.package-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.package-includes li {
  font-size: 0.86rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.package-card.featured .package-includes li { color: rgba(255,255,255,0.72); }
.package-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}
.package-timeline {
  font-size: 0.8rem;
  color: var(--text-mid);
  opacity: 0.65;
  font-style: italic;
}
.package-card.featured .package-timeline { color: rgba(255,255,255,0.45); }

.faq-section { max-width: 720px; }
.faq-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 28px;
}
.faq-item {
  border-bottom: 1px solid rgba(30,33,96,0.1);
  padding: 20px 0;
  cursor: pointer;
}
.faq-item:first-of-type { border-top: 1px solid rgba(30,33,96,0.1); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(30,33,96,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--navy);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 14px; }

/* ── BOOK A CALL ── */
#book {
  padding: 100px 40px;
  background: var(--white);
}
.book-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.book-text .section-title { margin-bottom: 20px; }
.book-text p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.book-what {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.book-what-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.book-what-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  margin-top: 6px;
  flex-shrink: 0;
}
.book-what-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
.book-widget {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(30,33,96,0.08);
  box-shadow: 0 4px 32px rgba(30,33,96,0.08);
}
.book-cta-card {
  background: var(--white);
  border-radius: 16px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.book-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(41,196,224,0.12), rgba(123,79,190,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}
.book-cta-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.book-cta-card > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
}
.book-cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.book-cta-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.book-cta-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 600;
}
.book-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px 32px;
}
.book-cta-note {
  font-size: 0.78rem !important;
  color: rgba(30,33,96,0.4) !important;
  margin: 0 !important;
}
.book-placeholder {
  width: 100%;
  height: 660px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 16px;
}
.book-placeholder svg { width: 48px; height: 48px; opacity: 0.3; color: var(--navy); }
.book-placeholder h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--navy);
}
.book-placeholder p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; max-width: 280px; }
.book-placeholder .setup-note {
  font-size: 0.78rem;
  color: var(--purple);
  font-style: italic;
  border: 1px dashed rgba(123,79,190,0.3);
  padding: 12px 20px;
  border-radius: 8px;
  line-height: 1.6;
  max-width: 320px;
}

/* ── WAITLIST ── */
#waitlist {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, #252870 50%, #1a1d55 100%);
  position: relative;
  overflow: hidden;
}
#waitlist::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(41,196,224,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.waitlist-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.waitlist-text .section-title { margin-bottom: 24px; }
.waitlist-text p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 18px; }
.waitlist-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wf-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 20px;
}
.wf-item h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.wf-item p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.waitlist-form-col { }
.waitlist-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px 40px;
  backdrop-filter: blur(8px);
}
.waitlist-form-card--tally {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: none;
}
.waitlist-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.waitlist-form-card > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: border 0.2s;
  outline: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus,
.form-field select:focus { border-color: var(--cyan); }
.form-field select { color: rgba(255,255,255,0.7); }
.form-field select option { background: var(--navy); color: white; }
.form-submit { width: 100%; margin-top: 8px; padding: 15px; font-size: 0.95rem; }
.privacy-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 60px 40px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 34px; width: auto; display: block; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.42); font-size: 0.86rem; line-height: 1.75; max-width: 300px; }
.footer-nav h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-nav ul a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-sidebar { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1 1 200px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-col { max-width: 400px; }
  .about-float-stat { bottom: 16px; right: 16px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .book-inner { grid-template-columns: 1fr; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 48px; }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav#main-nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    z-index: 199;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  #home { padding: 110px 24px 80px; min-height: auto; }
  #why, #about, #founders, #women, #work, #services, #book, #waitlist { padding: 72px 24px; }
  .why-grid, .problems-grid { grid-template-columns: 1fr; }
  .patterns-grid, .services-grid, .women-services-grid, .cs-grid { grid-template-columns: 1fr; }
  .platform-teaser { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .prog-grid { grid-template-columns: 1fr; }
  .waitlist-features { grid-template-columns: 1fr; }
  .cs-filter-bar { gap: 8px; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-sidebar { flex-direction: column; }
  .waitlist-form-card { padding: 28px 24px; }
}
