/* ========================================
   GetAIEducated - Premium Landing Page
   ======================================== */

:root {
  --bg: #0c0c0e;
  --bg-elevated: #111114;
  --bg-card: #16161a;
  --bg-card-hover: #1b1b20;

  --border: rgba(255, 255, 255, 0.05);
  --border-accent: rgba(196, 163, 90, 0.2);

  --text-heading: #f0ede6;
  --text-body: #b0ada5;
  --text-muted: #6a6760;

  --accent: #c4a35a;
  --accent-hover: #d4b36a;
  --accent-muted: rgba(196, 163, 90, 0.1);

  --green: #4aba6a;
  --green-muted: rgba(74, 186, 106, 0.1);
  --green-border: rgba(74, 186, 106, 0.25);

  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'DM Serif Display', 'Georgia', serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* clip avoids horizontal bleed without breaking position:sticky (overflow:hidden on ancestors can). */
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.028;
  pointer-events: none;
  z-index: 10000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */

h1, h2 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-body);
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

.accent-text {
  color: var(--accent);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border-radius: var(--radius);
  padding: 14px 32px;
}

.btn-primary {
  background: var(--accent);
  color: #0c0c0e;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 24px rgba(196, 163, 90, 0.15);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-full { width: 100%; }

/* ===== SITE HEADER ===== */

.site-header {
  padding: 28px 0;
}

.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

/* ===== HERO ===== */

.hero {
  text-align: center;
  padding: 48px 0 64px;
}

.hero-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196, 163, 90, 0.25);
  margin: 0 auto 16px;
  display: block;
}

.hero-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 620px;
  margin: 0 auto 8px;
}

.hero h1 .hero-asterisk {
  font-size: 0.55em;
  font-weight: 500;
  margin-left: 0.06em;
  vertical-align: super;
  color: var(--text-muted);
  position: relative;
  top: -0.2em;
  line-height: 0;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 auto 20px;
  max-width: 620px;
  text-align: center;
  line-height: 1.45;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta-group {
  margin-bottom: 48px;
}

.hero-micro {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.hero-trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.hero-trust-item {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-trust-item strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ===== PAIN SECTION ===== */

.pain-section {
  padding: 80px 0;
  text-align: center;
}

.pain-section .section-label {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.pain-built-reveal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(32vh, 260px);
  padding: 32px 0 16px;
  perspective: 1100px;
}

.pain-built-reveal::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(140%, 620px);
  aspect-ratio: 1.45;
  transform: translate(-50%, -50%) scale(0.45);
  background: radial-gradient(
    ellipse 48% 42% at 50% 50%,
    rgba(196, 163, 90, 0.55) 0%,
    rgba(196, 163, 90, 0.18) 38%,
    transparent 72%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  filter: blur(36px);
}

.pain-built-reveal.is-visible::before {
  animation: pain-built-bloom 1.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pain-built-hook {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 1.05rem + 4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-align: center;
  margin: 0 auto;
  max-width: min(22rem, 92vw);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--accent) 50%, var(--accent-hover) 100%);
  background-size: 120% 120%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(2.85rem) scale(0.9) rotateX(14deg);
  transform-origin: 50% 100%;
  filter: blur(14px) drop-shadow(0 4px 36px rgba(196, 163, 90, 0));
}

.pain-built-reveal.is-visible .pain-built-hook {
  animation: pain-built-epic 1.55s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.pain-built-rule {
  display: block;
  width: min(220px, 58vw);
  height: 2px;
  margin: 1.35rem auto 0;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 163, 90, 0.15) 20%,
    rgba(196, 163, 90, 0.95) 50%,
    rgba(196, 163, 90, 0.15) 80%,
    transparent 100%
  );
  transform: scaleX(0);
  opacity: 0;
  position: relative;
  z-index: 1;
}

.pain-built-reveal.is-visible .pain-built-rule {
  animation: pain-built-rule-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

@keyframes pain-built-bloom {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
    filter: blur(48px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(28px);
  }
}

@keyframes pain-built-epic {
  0% {
    opacity: 0;
    transform: translateY(2.85rem) scale(0.88) rotateX(16deg);
    filter: blur(16px) drop-shadow(0 4px 40px rgba(196, 163, 90, 0));
    letter-spacing: -0.055em;
  }
  52% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 8px 52px rgba(196, 163, 90, 0.42));
    transform: translateY(-8px) scale(1.04) rotateX(0deg);
    letter-spacing: -0.035em;
  }
  72% {
    filter: blur(0) drop-shadow(0 12px 64px rgba(196, 163, 90, 0.5));
    transform: translateY(2px) scale(1.01) rotateX(0deg);
  }
  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 5px 38px rgba(196, 163, 90, 0.3));
    transform: translateY(0) scale(1) rotateX(0deg);
    letter-spacing: -0.035em;
  }
}

@keyframes pain-built-rule-in {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pain-built-reveal::before {
    animation: none !important;
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.95);
    filter: blur(32px);
  }

  .pain-built-reveal.is-visible::before {
    opacity: 0.55;
  }

  .pain-built-reveal.is-visible .pain-built-hook,
  .pain-built-reveal.is-visible .pain-built-rule {
    animation: none !important;
  }

  .pain-built-reveal.is-visible .pain-built-hook {
    opacity: 1;
    transform: none;
    filter: drop-shadow(0 4px 28px rgba(196, 163, 90, 0.2));
  }

  .pain-built-reveal.is-visible .pain-built-rule {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

/* Pain section: side-by-side layout (used elsewhere if extended) */
.pain-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.pain-phone-col {
  flex-shrink: 0;
  text-align: left;
}

/* Scroll runway + viewport-centred phone (sticky) */
.pain-pin-stage {
  min-height: 520vh;
  position: relative;
  overscroll-behavior-y: contain;
}

.pain-pin-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

/* Let JS win vertical pan while the pain journey is active. touch-action is not inherited — children default to auto and iOS will scroll the page. */
.pain-pin-sticky.pain-journey-lock,
.pain-pin-sticky.pain-journey-lock * {
  touch-action: none;
}

.pain-pin-inner {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.pain-phone-col--pin {
  --pain-phone-half: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: min(100%, 320px);
  max-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  box-sizing: border-box;
}

.pain-phone-col--pin .pain-narrative--above,
.pain-phone-col--pin .pain-narrative--below {
  position: absolute;
  left: 0;
  right: 0;
  width: min(320px, 92vw);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  z-index: 2;
}

.pain-phone-col--pin .pain-narrative--above {
  bottom: calc(50% + var(--pain-phone-half) + clamp(10px, 2.5vw, 18px));
}

.pain-phone-col--pin .pain-narrative--below {
  top: calc(50% + var(--pain-phone-half) + clamp(10px, 2.5vw, 18px));
}

.pain-phone-col--pin .phone-mockup {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.pain-story-wrap {
  padding: 48px 0 32px;
}

.pain-narrative {
  font-size: clamp(0.95rem, 0.82rem + 1.1vw, 1.18rem);
  line-height: 1.45;
  color: var(--text-body);
  max-width: min(320px, 92vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pain-narrative--above {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.pain-narrative--below {
  color: var(--text-muted);
  font-size: clamp(0.88rem, 0.78rem + 1vw, 1.05rem);
}

.pain-narrative.is-updating {
  opacity: 0.25;
  transform: translateY(4px);
}

@keyframes pain-narrative-pop {
  from {
    opacity: 0.35;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pain-narrative.is-fresh {
  animation: pain-narrative-pop 0.55s ease forwards;
}

/* Stronger beat typography on the pinned phone story */
.pain-phone-col--pin .pain-narrative--above {
  margin-bottom: 0;
  font-size: clamp(1.06rem, 0.92rem + 1.35vw, 1.38rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.pain-phone-col--pin .pain-narrative--below {
  margin-top: 0;
  font-size: clamp(0.98rem, 0.86rem + 1.15vw, 1.14rem);
  color: rgba(176, 173, 165, 0.92);
}

/* ===== INSTAGRAM MOCK SITE (dark mode feed) ===== */

.mock-site.mock-site-ig {
  position: relative;
  background: #000;
  color: #f5f5f5;
  text-align: left;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  scroll-behavior: smooth;
  /* Space under notch; must match --ig-feed-notch-gap for scroll snaps (see script.js) */
  --ig-feed-notch-gap: 22px;
  padding-top: var(--ig-feed-notch-gap);
  box-sizing: border-box;
}

/* --- Post --- */

.ig-post {
  padding-bottom: 4px;
}

.ig-post-user {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
}

.ig-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid #333;
}

.ig-av-1 { background: linear-gradient(135deg, #2c3e50, #4ca1af); }
.ig-av-2 { background: linear-gradient(135deg, #834d9b, #d04ed6); }
.ig-av-3 { background: linear-gradient(135deg, #e65c00, #f9d423); }
.ig-av-4 { background: linear-gradient(135deg, #1a2a6c, #b21f1f); }

.ig-post-user strong {
  font-size: 8px;
  color: #f5f5f5;
  font-weight: 600;
}

.ig-verified {
  font-size: 6px;
  color: #3897f0;
}

.ig-sponsored {
  font-size: 6px;
  color: #8e8e8e;
  margin-left: -2px;
}

.ig-post-dots {
  margin-left: auto;
  color: #f5f5f5;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ig-post-img {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}

/* User-provided feed images — ~4:5 like Instagram portrait posts */
.ig-img-1 {
  aspect-ratio: 4 / 5;
  background: url('ig-feed-entrepeneur.png') center / cover no-repeat;
}

.ig-img-2 {
  aspect-ratio: 4 / 5;
  background: url('ig-feed-betterthanu.png') center / cover no-repeat;
}
.ig-img-3 {
  aspect-ratio: 4 / 5;
  background: url('ig-feed-moneyking.png') center / cover no-repeat;
}
.ig-img-4 {
  aspect-ratio: 4 / 5;
  background: url('ig-feed-andrewbait.png') center / cover no-repeat;
}

.ig-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
}

.ig-actions-left {
  font-size: 11px;
  letter-spacing: 6px;
}

.ig-action-save {
  font-size: 10px;
}

.ig-likes {
  padding: 0 12px;
  font-size: 7.5px;
  color: #f5f5f5;
  margin-bottom: 4px;
  text-align: left;
}

.ig-likes strong {
  font-weight: 600;
}

.ig-caption {
  padding: 0 12px;
  font-size: 7.5px;
  color: #f5f5f5;
  line-height: 1.5;
  margin-bottom: 4px;
  text-align: left;
}

.ig-caption strong {
  font-weight: 600;
}

.ig-comments {
  padding: 0 12px 6px;
  font-size: 7px;
  color: #8e8e8e;
  text-align: left;
}

.ig-divider {
  height: 1px;
  background: #2a2a2a;
  margin: 0;
  flex-shrink: 0;
}

/* ===== BRIDGE ===== */

.bridge-section {
  padding: 80px 0 120px;
  text-align: center;
}

.bridge-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.bridge-section h2 {
  max-width: 680px;
  margin: 0 auto 32px;
}

.bridge-text {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

/* ===== PRODUCT / MODULES ===== */

.product-section {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-elevated);
}

.pain-section + .product-section {
  padding-top: 56px;
}

.product-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 12px;
  color: var(--accent);
  background-image: linear-gradient(
    135deg,
    #f0e6c8 0%,
    #e0c97a 22%,
    var(--accent) 52%,
    #a8843a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 22px rgba(196, 163, 90, 0.3));
}

.product-subtitle {
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.product-subtitle:last-of-type {
  margin-bottom: 64px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 56px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.3s ease;
}

.module-card:hover {
  border-color: var(--border-accent);
}

.module-card h3 {
  margin-bottom: 10px;
}

.module-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.module-outcome {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-muted);
  padding: 5px 14px;
  border-radius: 100px;
}

.skills-label {
  margin-top: 0;
  margin-bottom: 24px;
}

.business-label {
  margin-top: 64px;
  margin-bottom: 24px;
}

/* ===== BUSINESS MODEL CARDS ===== */

.business-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: left;
  margin-top: 48px;
  margin-bottom: 56px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.business-card {
  padding: 0;
}

.business-card + .business-card {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.offering-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.offering-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: 12px;
}

.product-section .product-value-list {
  margin-top: 28px;
  margin-bottom: 8px;
}

.product-value-list li strong {
  color: var(--text-heading);
  font-weight: 600;
}

.business-card h3 {
  margin-bottom: 12px;
}

.business-card > p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.business-card > p:last-of-type {
  margin-bottom: 20px;
}

.business-includes {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.business-includes li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.business-includes li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* ===== RECEIPTS LIST ===== */

.receipts {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.receipts .section-label {
  margin-bottom: 16px;
}

.receipts-list {
  list-style: none;
}

.receipts-list li {
  font-size: 0.92rem;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.receipts-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.receipts-list strong {
  color: var(--text-heading);
}

.cta-block {
  text-align: center;
}

/* ===== ABOUT ===== */

/* ===== BENJAMIN PHOTO ===== */

.benjamin-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.benjamin-photo span {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.5;
}

.benjamin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benjamin-photo-lg {
  width: 200px;
  height: 200px;
}

.benjamin-photo-lg span {
  font-size: 4.5rem;
}

/* ===== WHY NOW ===== */

.why-now-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.why-now-section h2 {
  margin-bottom: 40px;
}

.why-now-body {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.why-now-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
}

.why-now-kicker {
  font-weight: 600;
  color: var(--accent) !important;
  margin-top: 32px !important;
  font-size: 1.05rem !important;
}

/* ===== ABOUT SECTION (HOMEPAGE) ===== */

.about-section {
  padding: 100px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo-col {
  padding-top: 36px;
}

.about-content h2 {
  margin-bottom: 28px;
}

.about-content p {
  margin-bottom: 24px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.about-content strong {
  color: var(--text-heading);
}

/* ===== HIGHLIGHT STRIP ===== */

.highlight-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.highlight-item {
  text-align: center;
  flex: 1;
}

.highlight-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  margin-bottom: 6px;
}

.highlight-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.highlight-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== STAT CARDS (SIDEBAR / ABOUT) ===== */

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.about-stat-card:hover {
  border-color: var(--border-accent);
}

.about-stat-card-featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(196, 163, 90, 0.04) 100%);
}

.about-stat-card-featured .about-stat-num {
  font-size: 2.4rem;
}

.about-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.about-stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== RECEIPT CARDS (ABOUT PAGE) ===== */

.receipt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.receipt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.3s ease;
}

.receipt-card:hover {
  border-color: var(--border-accent);
}

.receipt-card-featured {
  grid-column: 1 / -1;
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(196, 163, 90, 0.04) 100%);
}

.receipt-stat {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.receipt-card-featured .receipt-stat {
  font-size: 2.4rem;
}

.receipt-desc {
  font-size: 0.88rem;
  line-height: 1.6;
}

.receipt-extras {
  margin: 24px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.receipt-extras p {
  margin-bottom: 0;
}

/* ===== PHONE MOCKUP ===== */

.business-card-showcase {
  overflow: visible;
}

/* Phone carousel */
.phone-carousel-section {
  padding: 20px 0;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: contain;
}

.phone-carousel {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  max-width: 100%;
  min-width: 0;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}

.phone-carousel::-webkit-scrollbar {
  display: none;
}

.phone-carousel-track {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 0 calc(50% - 130px);
  width: max-content;
}

.phone-carousel-hint {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 10vw, 4rem);
  margin-top: 14px;
  padding: 0 16px;
  color: var(--text-muted);
  pointer-events: none;
  user-select: none;
}

.phone-hint-arrow {
  display: inline-flex;
  align-items: center;
  opacity: 0.38;
  transition: opacity 0.25s ease;
}

.phone-hint-arrow-bar {
  display: block;
  width: clamp(56px, 22vw, 104px);
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.phone-hint-arrow-head {
  display: block;
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-style: solid;
  border-color: transparent;
}

.phone-hint-arrow-left .phone-hint-arrow-head {
  border-width: 3px 5px 3px 0;
  border-right-color: currentColor;
  margin-right: -1px;
}

.phone-hint-arrow-right .phone-hint-arrow-head {
  border-width: 3px 0 3px 5px;
  border-left-color: currentColor;
  margin-left: -1px;
}

.phone-mockup {
  position: relative;
  flex: 0 0 240px;
  width: 240px;
  background: #000;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  scroll-snap-align: center;
}

.phone-notch {
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  height: 480px;
  position: relative;
  overscroll-behavior: contain;
}

.mock-site {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  font-size: 9px;
  line-height: 1.5;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  background: #fff;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  max-width: 100%;
}

.mock-site::-webkit-scrollbar {
  display: none;
}

.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 14px 10px;
  background: #fff;
}

.mock-logo {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.02em;
  color: #1b3a4b;
}

.mock-nav-links {
  color: #666;
  font-size: 6.5px;
}

.mock-hero-img {
  height: 160px;
  background-size: cover;
  background-position: center 30%;
}

.mock-hero-img-roofing {
  background-image: url('roofing-hero.png');
}

/* Dave's Roofing — full-bleed hero with name overlay */
.roofing-hero {
  position: relative;
  height: 220px;
  background: url('roofing-hero.png') center 30% / cover no-repeat;
}

.roofing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.roofing-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.roofing-hero-overlay p {
  font-size: 8px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}

.roofing-cta {
  display: inline-block;
  padding: 6px 16px;
  background: #e8a735;
  color: #1a1a1a;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
}

.mock-body {
  padding: 16px 14px 18px;
  background: #fff;
}

.mock-badge {
  display: inline-block;
  background: #1b3a4b;
  color: #fff;
  border-radius: 20px;
  padding: 3px 8px;
  font-size: 5.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.mock-body h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.mock-body p {
  font-size: 7.5px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.6;
}

.mock-cta {
  display: block;
  background: #e8a838;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 9px;
  padding: 9px 14px;
  border-radius: 8px;
  text-align: center;
}

.mock-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 4px 12px 14px;
  background: #fff;
}

.mock-service {
  text-align: center;
  padding: 10px 4px;
  background: #f5f7f9;
  border-radius: 8px;
}

.mock-icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-icon svg {
  width: 13px;
  height: 13px;
}

.mock-icon-repairs {
  background: linear-gradient(135deg, #e8a838, #d4922a);
}

.mock-icon-new {
  background: linear-gradient(135deg, #1b3a4b, #2d5f7a);
}

.mock-icon-inspect {
  background: linear-gradient(135deg, #3a7d5c, #5aad7c);
}

.mock-service strong {
  display: block;
  font-size: 7px;
  color: #1a1a1a;
}

/* Reviews carousel */
.mock-reviews-section {
  padding: 14px 0 16px;
  background: #fff;
  overflow: hidden;
}

.mock-reviews-section h4 {
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 14px;
}

.mock-reviews-track {
  overflow: hidden;
  width: 100%;
}

.mock-reviews-slide {
  display: flex;
  gap: 8px;
  animation: mock-scroll 20s linear infinite;
  width: max-content;
}

@keyframes mock-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mock-review-card {
  flex: 0 0 auto;
  width: 120px;
  background: #f5f7f9;
  border-radius: 8px;
  padding: 10px;
  text-align: left;
}

.mock-review-card .mock-stars {
  color: #e8a838;
  font-size: 7px;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 5px;
}

.mock-review-card p {
  font-size: 6px;
  color: #444;
  font-style: italic;
  margin-bottom: 5px;
  line-height: 1.5;
}

.mock-review-card strong {
  font-size: 6px;
  color: #888;
  font-weight: 600;
}

/* Why choose section */
.mock-why {
  padding: 16px 14px;
  background: #f5f7f9;
}

.mock-why h4 {
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.mock-why-grid {
  display: flex;
  gap: 6px;
}

.mock-why-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 10px 6px 8px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.mock-why-num {
  font-size: 13px;
  font-weight: 700;
  color: #1b3a4b;
  line-height: 1;
  margin-bottom: 3px;
}

.mock-why-label {
  font-size: 5px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.mock-why-bar {
  height: 3px;
  background: #e8ecf0;
  border-radius: 2px;
  overflow: hidden;
}

.mock-why-fill {
  height: 100%;
  border-radius: 2px;
}

.mock-why-fill-1 {
  width: 95%;
  background: linear-gradient(90deg, #e8a838, #d4922a);
}

.mock-why-fill-2 {
  width: 75%;
  background: linear-gradient(90deg, #1b3a4b, #2d5f7a);
}

.mock-why-fill-3 {
  width: 98%;
  background: linear-gradient(90deg, #3a7d5c, #5aad7c);
}

/* ===== Cafe theme: "morning." — dark moody, minimal ===== */
.mock-site-cafe {
  background: #1c1714 !important;
}

.cafe-hero {
  background: linear-gradient(180deg, #2a2118 0%, #1c1714 100%);
  padding: 36px 16px 20px;
}

.cafe-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.cafe-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: #e8d5b7;
  letter-spacing: -0.02em;
}

.cafe-nav-pill {
  font-size: 8px;
  color: #e8d5b7;
  border: 1px solid rgba(232, 213, 183, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cafe-hero-img-wrap {
  text-align: center;
  margin-bottom: 12px;
}

.cafe-hero-photo {
  width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: center 85%;
  border-radius: 8px;
}

.cafe-hero-text h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #f5efe6;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 400;
}

.cafe-hero-text p {
  font-size: 8px;
  color: rgba(232, 213, 183, 0.6);
  line-height: 1.5;
}

.cafe-menu-section {
  padding: 16px;
}

.cafe-menu-section h5 {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 213, 183, 0.4);
  margin-bottom: 8px;
  margin-top: 4px;
}

.cafe-menu-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(232, 213, 183, 0.08);
  font-size: 9px;
  color: #e8d5b7;
}

.cafe-menu-item span:last-child {
  color: rgba(232, 213, 183, 0.5);
  font-size: 8px;
}

.cafe-quote {
  padding: 16px;
  margin: 8px 12px;
  background: rgba(232, 213, 183, 0.05);
  border-radius: 8px;
  text-align: center;
}

.cafe-quote .mock-stars {
  color: #d4a574;
  font-size: 8px;
  display: block;
  margin-bottom: 6px;
}

.cafe-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: 9px;
  color: #e8d5b7;
  font-style: italic;
  margin-bottom: 4px;
}

.cafe-quote strong {
  font-size: 7px;
  color: rgba(232, 213, 183, 0.4);
  font-weight: 400;
}

.cafe-visit {
  padding: 16px;
  text-align: center;
}

.cafe-visit h5 {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 213, 183, 0.4);
  margin-bottom: 8px;
}

.cafe-visit p {
  font-size: 8px;
  color: rgba(232, 213, 183, 0.6);
  margin-bottom: 2px;
}

.cafe-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 20px;
  background: #d4a574;
  color: #1c1714;
  font-size: 8px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.cafe-footer {
  padding: 12px 16px;
  text-align: center;
  font-size: 6px;
  color: rgba(232, 213, 183, 0.2);
  border-top: 1px solid rgba(232, 213, 183, 0.06);
}

/* ===== Law theme: "WHITFIELD" — clean corporate, serif, trust-first ===== */
.mock-site-law {
  background: #f8f7f5 !important;
}

.law-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 16px 12px;
  border-bottom: 1px solid #e5e2dc;
}

.law-logo {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #1a1a2e;
  line-height: 1.2;
}

.law-logo span {
  font-weight: 400;
  font-size: 6px;
  letter-spacing: 0.15em;
  color: #8a8778;
  display: block;
}

.law-hamburger {
  font-size: 16px;
  color: #1a1a2e;
  cursor: pointer;
}

.law-hero-img-wrap {
  text-align: center;
  padding: 0;
}

.law-hero-photo {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.law-hero {
  padding: 16px 16px 20px;
  text-align: center;
}

.law-tagline {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8778;
  margin-bottom: 10px;
  display: block;
}

.law-hero h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 400;
}

.law-cta {
  display: inline-block;
  padding: 7px 22px;
  background: #1a1a2e;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.law-trust-bar {
  display: flex;
  justify-content: space-around;
  padding: 14px 12px;
  background: #1a1a2e;
}

.law-trust-stat {
  text-align: center;
}

.law-trust-stat strong {
  display: block;
  font-size: 12px;
  color: #c9b98a;
  font-weight: 700;
}

.law-trust-stat span {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.law-services-section {
  padding: 16px;
}

.law-services-section h5 {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8778;
  margin-bottom: 8px;
}

.law-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #e5e2dc;
  font-size: 9px;
  color: #1a1a2e;
  font-weight: 500;
  cursor: pointer;
}

.law-service-row span:last-child {
  color: #8a8778;
  font-size: 10px;
}

.law-testimonial {
  padding: 16px;
  margin: 8px 12px;
  background: #f0eee9;
  border-radius: 6px;
  text-align: center;
  border-left: 3px solid #c9b98a;
}

.law-testimonial .mock-stars {
  color: #c9b98a;
  font-size: 8px;
  display: block;
  margin-bottom: 6px;
}

.law-testimonial p {
  font-family: 'DM Serif Display', serif;
  font-size: 9px;
  color: #1a1a2e;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 4px;
}

.law-testimonial strong {
  font-size: 7px;
  color: #8a8778;
  font-weight: 500;
}

.law-bottom-cta {
  padding: 18px 16px;
  text-align: center;
  background: #f0eee9;
  margin: 0 12px 12px;
  border-radius: 6px;
}

.law-bottom-cta h5 {
  font-size: 10px;
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 4px;
}

.law-bottom-cta p {
  font-size: 7px;
  color: #8a8778;
  margin-bottom: 10px;
}

.law-footer {
  padding: 12px 16px;
  text-align: center;
  font-size: 6px;
  color: #8a8778;
  border-top: 1px solid #e5e2dc;
}

/* Generic mock sections */
.mock-section {
  padding: 16px 14px;
  background: #fff;
}

.mock-section h4 {
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-align: center;
}

.mock-section p {
  font-size: 7px;
  color: #555;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.6;
}

.mock-section-dark {
  background: #1b3a4b;
}

.mock-section-dark h4 {
  color: #fff;
}

.mock-section-dark p {
  color: rgba(255,255,255,0.75);
}

.mock-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.mock-gallery-item {
  height: 60px;
  background-size: cover;
  background-position: center;
}

.mock-gallery-1 { background: linear-gradient(135deg, #c4a882, #d4b896); }
.mock-gallery-2 { background: linear-gradient(135deg, #8ba4b8, #a0bdd4); }
.mock-gallery-3 { background: linear-gradient(135deg, #a0bdd4, #8ba4b8); }
.mock-gallery-4 { background: linear-gradient(135deg, #d4b896, #c4a882); }

.mock-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-input {
  background: #f5f7f9;
  border: 1px solid #e0e4e8;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 6.5px;
  color: #999;
}

.mock-input-tall {
  min-height: 36px;
}

.mock-footer {
  background: #111;
  color: #fff;
  padding: 14px;
  text-align: center;
}

.mock-footer strong {
  display: block;
  font-size: 8px;
  margin-bottom: 3px;
}

.mock-footer span {
  font-size: 6px;
  color: #666;
}

.mock-link {
  cursor: pointer;
}

.mock-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mock-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mock-overlay-back {
  padding: 28px 14px 8px;
  font-size: 7px;
  font-weight: 600;
  color: #1b3a4b;
  cursor: pointer;
}

.mock-overlay-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 20px;
  text-align: center;
}

.mock-overlay-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #e8e4dc;
}

.mock-overlay-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.mock-overlay-content p {
  font-size: 7px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 6px;
}

.mock-overlay-highlight {
  font-weight: 600;
  color: #1b3a4b !important;
}

.mock-overlay-hint {
  margin-top: 8px;
  font-size: 6px !important;
  color: #999 !important;
}

.mockup-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 12px 0 24px;
  font-style: italic;
}

/* ===== IMAGE COMPARISON (autoplay, no drag UI) ===== */

.image-compare-shell {
  padding: 20px 0 24px;
  margin: 6px 0 0;
  max-width: 100%;
}

.image-compare {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  isolation: isolate;
}

.compare-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
}

.compare-img-after {
  z-index: 1;
}

.compare-img-before {
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  animation: compare-autoplay 1.5s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

@keyframes compare-autoplay {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .compare-img-before {
    animation: none;
    clip-path: inset(0 50% 0 0);
  }
}

.compare-label {
  position: absolute;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #fff;
  z-index: 5;
  pointer-events: none;
}

.compare-label-left {
  left: 12px;
}

.compare-label-right {
  right: 12px;
}

/* ===== SOCIAL PROOF ===== */

.proof-section {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-elevated);
}

.proof-intro {
  max-width: 500px;
  margin: 0 auto 12px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-top: 44px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
}

.proof-card:hover {
  border-color: var(--border-accent);
}

.proof-quote {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.75;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.proof-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-heading);
}

.proof-author span {
  font-size: 0.78rem;
  color: var(--green);
}

/* ===== BONUSES ===== */

.bonuses-section {
  padding: 120px 0;
  text-align: center;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}

.bonus-card {
  padding: 36px 28px;
  border-top: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.bonus-card:hover {
  border-top-color: var(--accent);
}

.bonus-card h3 {
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}


/* ===== PRICING ===== */

.pricing-section {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-elevated);
}

.pricing-card {
  max-width: 480px;
  margin: 56px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: var(--accent);
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pricing-original {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
  opacity: 0.6;
}

.pricing-currency {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-muted);
}

.pricing-number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--text-heading);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-save {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-heading);
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.countdown-sep {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-muted);
  opacity: 0.4;
  padding-bottom: 14px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-features li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-guarantee {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.pricing-after {
  font-size: 0.82rem;
  color: var(--text-body);
  margin-top: 14px;
  line-height: 1.6;
  opacity: 0.7;
}

/* ===== GUARANTEE ===== */

.guarantee-section {
  padding: 100px 0;
}

.guarantee-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
  padding: 56px 40px;
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(74, 186, 106, 0.03) 100%);
}

.guarantee-card h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 24px;
  text-align: center;
}

.guarantee-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.guarantee-body p:last-child {
  margin-bottom: 0;
}

.guarantee-note {
  margin-top: 8px;
  font-size: 0.88rem !important;
  color: var(--green) !important;
  font-weight: 500;
  border-left: 2px solid var(--green);
  padding-left: 14px;
}

/* ===== FAQ ===== */

.faq-section {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-elevated);
}

.faq-section h2 {
  margin-bottom: 56px;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 24px 0;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 0.92rem;
  padding-bottom: 24px;
  line-height: 1.8;
}

/* ===== FINAL CTA ===== */

.final-cta-section {
  padding: 140px 0;
  text-align: center;
}

.final-cta-section h2 {
  margin-bottom: 16px;
}

.final-cta-section > .container > p {
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1.02rem;
}

/* ===== EMAIL MODAL ===== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-heading);
}

.modal-content {
  text-align: center;
}

.modal-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.modal-content > p {
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-form input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.email-form input:focus {
  border-color: var(--accent);
}

.email-form input::placeholder {
  color: var(--text-muted);
}

.modal-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== STICKY MOBILE CTA ===== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* ===== FOOTER ===== */

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-heading);
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.about-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 8px;
  transition: opacity 0.2s ease;
}

.about-link:hover {
  opacity: 0.8;
}

/* ===== ABOUT PAGE ===== */

.about-hero {
  padding: 80px 0 60px;
}

.about-hero-layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-hero-text {
  flex: 1;
}

.about-hero h1 {
  margin-bottom: 24px;
}

.about-hero-sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  max-width: 560px;
  line-height: 1.8;
}

.about-story {
  padding: 80px 0 140px;
}

.about-story-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-top: 48px;
  margin-bottom: 20px;
}

.about-story-content h2:first-child {
  margin-top: 0;
}

.about-story-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-story-content strong {
  color: var(--text-heading);
}

.about-sidebar {
  position: sticky;
  top: 40px;
}

.about-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ===== ENROL PAGE ===== */

.enrol-hero {
  text-align: center;
  padding: 80px 0 60px;
}

.enrol-hero h1 {
  margin-bottom: 20px;
}

.enrol-hero-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  max-width: 540px;
  margin: 0 auto 10px;
  line-height: 1.8;
}

.enrol-hero-sub:last-of-type {
  margin-bottom: 0;
}

.enrol-contents {
  padding: 60px 0 140px;
}

.enrol-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.enrol-details h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 36px;
}

.enrol-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.enrol-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.enrol-block-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
}

.enrol-block h3 {
  margin-bottom: 24px;
}

.enrol-list {
  list-style: none;
}

.enrol-list li {
  font-size: 0.92rem;
  line-height: 1.7;
  padding: 12px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.enrol-list li:last-child {
  border-bottom: none;
}

.enrol-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.enrol-list strong {
  color: var(--text-heading);
}

/* Revenue paths (numbered) */
.enrol-revenue-paths {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enrol-path {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.enrol-path-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-muted);
  border: 1px solid rgba(196, 163, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--accent);
  margin-top: 2px;
}

.enrol-path strong {
  display: block;
  color: var(--text-heading);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.enrol-path p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

/* Bonus grid */
.enrol-bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.enrol-bonus-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.3s ease;
}

.enrol-bonus-item:hover {
  border-color: var(--border-accent);
}

.enrol-bonus-item strong {
  display: block;
  color: var(--text-heading);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.enrol-bonus-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* Guarantee */
.enrol-guarantee {
  border-bottom: none !important;
}

.enrol-guarantee-inner {
  border: 1px solid var(--green-border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: var(--green-muted);
}

.enrol-guarantee-inner h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.enrol-guarantee-inner p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

.enrol-sidebar {
  position: sticky;
  top: 40px;
}

.enrol-pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 24px;
}

.enrol-pricing-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.enrol-pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.enrol-pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.enrol-pricing-list li {
  padding: 9px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}

.enrol-pricing-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.enrol-pricing-list li:last-child {
  border-bottom: none;
}

.enrol-instructor {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.enrol-instructor-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196, 163, 90, 0.25);
  margin: 0 auto 14px;
}

.enrol-instructor h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.enrol-instructor p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ===== GROWTH CHART ===== */

.growth-chart {
  margin-top: 48px;
  padding: 24px 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.growth-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.growth-chart-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.growth-chart-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent);
}

.growth-chart-area {
  height: 100px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.growth-chart.visible .growth-chart-area {
  clip-path: inset(0 0% 0 0);
}

.growth-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.growth-chart-axis {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 2px;
}

.growth-chart-axis span {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ===== ANIMATIONS ===== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-trust-strip {
    gap: 16px;
  }

  .hero-trust-divider {
    height: 16px;
  }

  .hero-trust-item {
    font-size: 0.72rem;
  }

  .pain-section {
    padding: 60px 0;
  }

  /* IG beats: ~30% less document scroll per step than desktop (520vh runway). */
  .pain-pin-stage {
    min-height: 394vh;
  }

  .bridge-section {
    padding: 60px 0 80px;
  }

  .product-section {
    padding: 80px 0;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .module-card {
    padding: 28px 24px;
  }

  .business-grid {
    gap: 36px;
    margin-top: 36px;
    padding-top: 36px;
  }

  .business-card {
    padding: 0;
  }

  .business-card + .business-card {
    padding-top: 36px;
  }

  .business-label {
    margin-top: 48px;
  }

  .phone-mockup {
    flex: 0 0 210px;
    width: 210px;
    border-radius: 36px;
    padding: 8px;
  }

  /* Carousel uses row flex — flex-basis = width. Pain pin column uses column flex — same rule would set HEIGHT. Reset. */
  .pain-phone-col--pin .phone-mockup {
    flex: 0 0 auto;
    width: min(240px, 78vw);
    align-self: center;
  }

  .phone-carousel-track {
    padding: 0 calc(50% - 113px);
    gap: 16px;
  }

  .phone-notch {
    width: 72px;
    height: 20px;
    border-radius: 0 0 12px 12px;
    top: 8px;
  }

  .phone-screen {
    border-radius: 28px;
    height: 420px;
  }

  .about-sidebar {
    display: none;
  }

  .about-section {
    padding: 64px 0;
  }

  .why-now-section {
    padding: 64px 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-photo-col {
    padding-top: 0;
    display: flex;
    justify-content: center;
  }

  .benjamin-photo {
    width: 120px;
    height: 120px;
  }

  .benjamin-photo span {
    font-size: 2.5rem;
  }

  .growth-chart {
    margin-top: 36px;
    padding: 20px 20px 12px;
  }

  .growth-chart-area {
    height: 80px;
  }

  .highlight-strip {
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
    margin-top: 48px;
  }

  .highlight-item {
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: 100%;
  }

  .highlight-divider {
    display: none;
  }

  .highlight-num {
    font-size: 1.6rem;
  }

  .about-card-stack {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-stat-card {
    flex: 1;
    padding: 20px 12px;
    min-width: 100px;
  }

  .about-stat-num {
    font-size: 1.5rem;
  }

  .about-stat-card-featured .about-stat-num {
    font-size: 1.8rem;
  }

  .about-hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .benjamin-photo-lg {
    width: 160px;
    height: 160px;
  }

  .benjamin-photo-lg span {
    font-size: 3.5rem;
  }

  .receipt-cards {
    grid-template-columns: 1fr;
  }

  .receipt-card-featured {
    grid-column: auto;
  }

  .receipt-stat {
    font-size: 1.5rem;
  }

  .receipt-card-featured .receipt-stat {
    font-size: 1.8rem;
  }

  .proof-section {
    padding: 80px 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bonuses-section {
    padding: 80px 0;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bonus-card {
    padding: 28px 0;
  }

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-card {
    padding: 36px 24px;
    margin-top: 40px;
  }

  .pricing-card::before {
    left: 24px;
    right: 24px;
  }

  .guarantee-section {
    padding: 60px 0;
  }

  .guarantee-card {
    padding: 36px 24px;
  }

  .faq-section {
    padding: 80px 0;
  }

  .final-cta-section {
    padding: 80px 0 120px;
  }

  .sticky-cta {
    display: block;
  }

  .footer {
    padding: 32px 0 100px;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .about-story-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-sidebar {
    position: static;
  }

  .enrol-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enrol-sidebar {
    position: static;
    order: -1;
  }

  .enrol-pricing-card {
    padding: 32px 24px;
  }

  .enrol-bonus-grid {
    gap: 12px;
  }

  .modal {
    padding: 36px 24px;
    margin: auto 12px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 15px 28px;
    font-size: 0.95rem;
  }

  .about-card-stack {
    flex-direction: column;
  }

  .hero-trust-strip {
    flex-direction: column;
    gap: 8px;
  }

  .hero-trust-divider {
    display: none;
  }
}

/* ===== DESKTOP ENHANCEMENTS (≥769px) ===== */

@media (min-width: 769px) {
  .hero {
    padding: 72px 0 96px;
  }

  /* Pain section: side-by-side on desktop */
  .pain-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }

  .pain-phone-col {
    position: sticky;
    top: 40px;
  }

  .pain-phone-col--pin {
    position: relative;
    top: auto;
  }

  /* Phone carousel: display all 3 phones inline, no horizontal scroll */
  .phone-carousel {
    overflow: visible;
  }

  .phone-carousel-track {
    width: auto;
    padding: 0;
    justify-content: center;
  }

  .phone-mockup {
    scroll-snap-align: none;
  }

  .phone-mockup-featured {
    transform: translateY(-8px);
  }

  .phone-carousel-hint {
    display: none;
  }

  /* Image comparison: constrain width so it doesn't fill the 1080px container */
  .image-compare-shell {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center offering descriptions within the centered product section */
  .offering-desc {
    margin-left: auto;
    margin-right: auto;
  }

  /* Constrain standalone business-includes in the product section */
  .product-section > .container > .business-includes {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Business grid: side-by-side on desktop */
  .business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .business-card + .business-card {
    border-top: none;
    padding-top: 0;
  }

  /* Proof cards: balanced height */
  .proof-card {
    min-height: 260px;
  }
}

/* ===== LARGE DESKTOP (≥1200px) ===== */

@media (min-width: 1200px) {
  .phone-mockup {
    flex: 0 0 280px;
    width: 280px;
  }

  .phone-screen {
    height: 540px;
  }

  .phone-carousel-track {
    gap: 32px;
  }

  .phone-mockup-featured {
    flex: 0 0 300px;
    width: 300px;
  }

  .phone-mockup-featured .phone-screen {
    height: 580px;
  }
}
