/* ============================================================
   HYPEVERVE — Complete Stylesheet
   Strategic Website Studio for Coaches, Consultants & Personal Brands
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy-deep:   #020A21;
  --navy-brand:  #07247D;
  --navy-mid:    #0D1F54;
  --gold:        #D4AF37;
  --gold-light:  #E8C84A;
  --teal:        #00BFA6;
  --teal-dark:   #009985;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --grey-light:  #EEF0F5;
  --grey-mid:    #8892A4;
  --grey-dark:   #4A5568;
  --text-dark:   #0D1117;
  --text-body:   #2D3748;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Instrument Serif', serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem);   font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-body); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 100px 0; }
.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 191, 166, 0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 191, 166, 0.4);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 13px 28px;
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 13px 28px;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(2, 10, 33, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 12px 1.5rem;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-cta-bar .btn { width: 100%; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 5rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.5;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2,10,33,0.35) 0%, rgba(2,10,33,0.75) 55%, rgba(2,10,33,0.98) 100%),
              linear-gradient(90deg, rgba(2,10,33,0.9) 0%, rgba(2,10,33,0.3) 60%);
}
.hero-watermark {
  position: absolute;
  right: -4%;
  bottom: -8%;
  font-family: var(--font-display);
  font-size: 42vw;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 0.8;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(7, 36, 125, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-content { padding-top: 1rem; }
.hero-content .eyebrow { color: var(--teal); margin-bottom: 1.5rem; line-height: 1.6; }
.hero-headline {
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero-headline .gold-word {
  color: var(--gold);
  position: relative;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-image img {
  width: 100%;
  max-width: 520px;
  height: 640px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
.hero-image-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  z-index: 2;
}
.hero-image-card.card-tl {
  top: 2rem;
  left: -2rem;
}
.hero-image-card.card-br {
  bottom: 3rem;
  left: -3rem;
}
.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.card-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.card-sub { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SOCIAL PROOF BAR ────────────────────────────────────── */
.proof-bar {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  white-space: nowrap;
}
.proof-brands {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--grey-mid);
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.proof-brand:hover { opacity: 1; color: var(--navy-brand); }

/* ── PROBLEM SECTION ─────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.problem-headline { margin-bottom: 1.5rem; }
.problem-headline .gold-word { color: var(--gold); }
.problem-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.problem-signs { display: flex; flex-direction: column; gap: 1.25rem; }
.problem-sign {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.problem-sign:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0, 191, 166, 0.3);
  transform: translateX(4px);
}
.sign-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.sign-title { font-weight: 600; color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.sign-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.problem-image-wrap { position: relative; }
.problem-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
}
.problem-card-float {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 260px;
}
.problem-card-float .card-label { color: var(--teal); }
.problem-card-float .card-value { font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.problem-card-float p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ── FRAMEWORK ───────────────────────────────────────────── */
.framework-section { background: var(--white); }
.framework-intro { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.framework-intro h2 { color: var(--navy-deep); margin-bottom: 1rem; }
.framework-intro p { color: var(--grey-dark); font-size: 1.05rem; }
.framework-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.framework-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.framework-card:hover { transform: translateY(-6px); }
.framework-card.authority { background: linear-gradient(135deg, #07247D 0%, #0D1F54 100%); }
.framework-card.conversion { background: linear-gradient(135deg, #006B5E 0%, #009985 100%); }
.framework-card.growth { background: linear-gradient(135deg, #7B5E00 0%, #B8921A 100%); }
.framework-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.framework-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.framework-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.framework-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.framework-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }
.framework-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.framework-result strong { color: var(--white); }

/* ── OFFER SECTION ───────────────────────────────────────── */
.offer-section { background: var(--navy-deep); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.offer-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.offer-content h2 .gold-word { color: var(--gold); }
.offer-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.offer-includes { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.offer-include {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.include-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(0, 191, 166, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.75rem;
  margin-top: 2px;
}
.include-text h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 3px; }
.include-text p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.5; }
.offer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.offer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.offer-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.offer-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}
.offer-price { margin-bottom: 2rem; }
.offer-price-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.offer-price-range {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.offer-price-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 6px; }
.offer-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.offer-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.offer-feature::before { content: '✓'; color: var(--teal); font-weight: 700; }
.offer-timeline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 191, 166, 0.08);
  border: 1px solid rgba(0, 191, 166, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}
.offer-timeline-icon { font-size: 1.25rem; }
.offer-timeline-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.offer-timeline-text strong { color: var(--teal); }

/* ── WORK SECTION ────────────────────────────────────────── */
.work-section { background: var(--off-white); }
.work-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.work-header h2 { color: var(--navy-deep); margin-bottom: 1rem; }
.work-header p { color: var(--grey-dark); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.work-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--grey-light);
}
.work-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.work-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}
.work-card-body { padding: 1.75rem; }
.work-tag {
  display: inline-block;
  background: rgba(7, 36, 125, 0.08);
  color: var(--navy-brand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.work-card-body h3 { color: var(--navy-deep); margin-bottom: 0.5rem; font-size: 1.2rem; }
.work-card-body p { color: var(--grey-dark); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--transition);
}
.work-link:hover { gap: 12px; }
.work-footer { text-align: center; margin-top: 3rem; }

/* ── PROCESS ─────────────────────────────────────────────── */
.process-section { background: var(--white); }
.process-header { text-align: center; max-width: 680px; margin: 0 auto 5rem; }
.process-header h2 { color: var(--navy-deep); margin-bottom: 1rem; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.process-steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .process-steps-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-steps-4 { grid-template-columns: 1fr; } }
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--navy-brand) 100%);
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; padding-top: 0.5rem; }
.info-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.case-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.case-gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-md); }
.case-outcome-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.case-outcome-list div { display: flex; align-items: flex-start; gap: 10px; font-size: 0.98rem; color: var(--text-body); }
.case-outcome-list svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 4px; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .framework-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.info-card h3 { color: var(--navy-deep); margin-bottom: 0.5rem; font-size: 1.05rem; }
.info-card p { color: var(--grey-dark); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 992px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .included-grid { grid-template-columns: 1fr; } }
.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.process-step h3 { color: var(--navy-deep); margin-bottom: 0.75rem; font-size: 1.1rem; }
.process-step p { color: var(--grey-dark); font-size: 0.9rem; line-height: 1.7; }

/* ── ABOUT SNIPPET ───────────────────────────────────────── */
.about-snippet { background: var(--navy-deep); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image { position: relative; }
.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-text { font-size: 0.75rem; font-weight: 600; margin-top: 4px; }
.about-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-content .italic-accent { display: block; font-size: 1.2rem; margin-bottom: 1rem; }
.about-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.about-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.about-value::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--off-white); }
.testimonials-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.testimonials-header h2 { color: var(--navy-deep); margin-bottom: 1rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; font-size: 1.5rem; color: var(--teal); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-light);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy-deep); }
.author-role { font-size: 0.8rem; color: var(--grey-mid); }
.testimonials-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--grey-mid);
  font-style: italic;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(7, 36, 125, 0.5) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.final-cta h2 { color: var(--white); margin-bottom: 1.5rem; }
.final-cta h2 .gold-word { color: var(--gold); }
.final-cta p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.75; margin-bottom: 2.5rem; }
.final-cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-reassurance {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.cta-reassurance span { display: flex; align-items: center; gap: 6px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #010815;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand-logo { height: 40px; margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 191, 166, 0.08);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.25);
}

/* ── INNER PAGE HERO ─────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(7, 36, 125, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.15rem; line-height: 1.75; }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.services-grid { display: flex; flex-direction: column; gap: 3rem; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.service-row:hover { box-shadow: var(--shadow-md); }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.service-row h2 { color: var(--navy-deep); margin-bottom: 1rem; font-size: 2rem; }
.service-row p { color: var(--grey-dark); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.service-feature::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: 0.8rem; }
.service-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
}
.pricing-section { background: var(--navy-deep); padding: 80px 0; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.pricing-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0, 191, 166, 0.3);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: rgba(0, 191, 166, 0.08);
  border-color: rgba(0, 191, 166, 0.4);
}
.pricing-stage { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.pricing-range { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--gold); margin-bottom: 0.5rem; line-height: 1; }
.pricing-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--off-white); }
.faq-header { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-light);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--navy-deep);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--navy-deep); color: var(--white); }
.faq-icon { width: 24px; height: 24px; transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--grey-dark);
  line-height: 1.75;
  border-top: 1px solid var(--grey-light);
}
.faq-answer.open { display: block; }

/* ── WORK PAGE ───────────────────────────────────────────── */
.work-full-grid { display: flex; flex-direction: column; gap: 5rem; }
.work-full-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.work-full-item.reverse .work-full-image { order: 2; }
.work-full-item.reverse .work-full-content { order: 1; }
.work-full-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.work-full-content .eyebrow { margin-bottom: 0.75rem; }
.work-full-content h2 { color: var(--navy-deep); margin-bottom: 1rem; font-size: 2.2rem; }
.work-full-content .concept-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.work-full-content p { color: var(--grey-dark); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.work-thinking {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--teal);
}
.work-thinking-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.work-thinking p { font-size: 0.875rem; color: var(--grey-dark); line-height: 1.7; margin: 0; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-story-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
}
.about-story-content h2 { color: var(--navy-deep); margin-bottom: 1.5rem; }
.about-story-content p { color: var(--grey-dark); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.about-framework { background: var(--navy-deep); }
.about-framework-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.about-framework-header h2 { color: var(--white); margin-bottom: 1rem; }
.about-framework-header p { color: rgba(255,255,255,0.65); }
.about-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.about-value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.about-value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0, 191, 166, 0.25);
}
.about-value-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.about-value-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.about-value-card p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.7; margin: 0; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.contact-content p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(0, 191, 166, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
}
.detail-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.detail-value { font-size: 0.95rem; color: var(--white); }
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-form-wrap h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.3rem; }
.contact-form-wrap > p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; letter-spacing: 0.04em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: rgba(0, 191, 166, 0.05); }
.form-select { color: rgba(255,255,255,0.7); }
.form-select option { background: var(--navy-deep); color: var(--white); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 1rem; }

/* ── BLOG PAGE ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-brand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
}
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 191, 166, 0.08);
  padding: 3px 10px;
  border-radius: 50px;
}
.blog-date { font-size: 0.75rem; color: var(--grey-mid); }
.blog-card h3 { color: var(--navy-deep); margin-bottom: 0.5rem; font-size: 1.05rem; line-height: 1.4; }
.blog-card p { color: var(--grey-dark); font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.25rem; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-brand);
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 12px; color: var(--teal); }
.blog-cta { background: var(--navy-deep); padding: 80px 0; text-align: center; }
.blog-cta h2 { color: var(--white); margin-bottom: 1rem; }
.blog-cta p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 2rem; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 1.05rem; line-height: 1.85; color: var(--text-body); margin-bottom: 1.5rem; }
.article-body h3 { color: var(--navy-deep); margin: 2.5rem 0 1rem; font-size: 1.3rem; }
.blog-cta .newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: nowrap;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
}
.blog-cta .newsletter-form input {
  flex: 1;
  min-width: 0;
  width: auto;
  background: transparent;
  border: none;
  padding: 10px 0;
  color: var(--white);
  font-size: 0.9rem;
}
.blog-cta .newsletter-form input:focus { outline: none; }
.blog-cta .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.blog-cta .newsletter-form button {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 20px;
}
@media (max-width: 480px) {
  .blog-cta .newsletter-form { flex-wrap: wrap; border-radius: var(--radius-md); padding: 14px; }
  .blog-cta .newsletter-form input { width: 100%; padding: 8px 0; }
  .blog-cta .newsletter-form button { width: 100%; justify-content: center; }
}
.newsletter-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 1rem; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ── UTILITIES ───────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── TRUST BAR (hero) ────────────────────────────────────── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ── FOUNDER STRIP ───────────────────────────────────────── */
.founder-strip {
  background: var(--off-white);
  padding: 56px 0;
  border-bottom: 1px solid var(--grey-light);
}
.founder-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}
.founder-strip-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.founder-strip-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-strip-text p { font-size: 1rem; color: var(--text-body); margin: 0; }
.founder-strip-text .founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
}

/* ── COST OF INACTION ────────────────────────────────────── */
.cost-section { background: var(--navy-mid); color: var(--white); padding: 80px 0; }
.cost-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cost-inner h2 { color: var(--white); margin-bottom: 1.25rem; }
.cost-inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.cost-chain {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.cost-chain span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

/* ── SOLUTION OUTCOMES LIST ──────────────────────────────── */
.solution-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin: 2rem 0;
}
.solution-outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.solution-outcome svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.section-dark .solution-outcome { color: rgba(255,255,255,0.85); }

/* ── 3-COL WORK GRID + PLACEHOLDER CARD ──────────────────── */
.work-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.work-card-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
}
.work-card-placeholder svg { width: 40px; height: 40px; color: var(--gold); }
.work-card-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2, .hero-inner, .problem-grid, .offer-grid, .about-grid,
  .about-story, .contact-grid, .work-full-item { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3, .framework-cards, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-watermark { font-size: 60vw; }
  .about-badge { right: 0; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .work-full-item { grid-template-columns: 1fr; }
  .work-full-item.reverse .work-full-image, .work-full-item.reverse .work-full-content { order: unset; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: block; }
  .grid-3, .framework-cards, .process-steps, .blog-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .grid-4, .pricing-cards { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .work-grid-3 { grid-template-columns: 1fr; }
  .case-gallery { grid-template-columns: 1fr; }
  .solution-outcomes { grid-template-columns: 1fr; }
  .founder-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .hero-image-card { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-content .eyebrow { font-size: 0.65rem; letter-spacing: 0.08em; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .grid-4, .pricing-cards { grid-template-columns: 1fr; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions .btn { justify-content: center; }
}
