/* ========================================
   STEPH FORWARD — V2.3 (Apple Liquid Glass)
   ======================================== */

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

:root {
  --font: 'DM Sans', sans-serif;
  --font-logo: 'Tiny5', monospace;
  --bg: #08081a;
  --white: #e8e6f0;
  --muted: rgba(232, 230, 240, 0.65);
  --dim: rgba(232, 229, 240, 0.5);
  --placeholder: rgba(232, 230, 240, 0.3);
  --radius: 40px;
  --purple: #c084fc;
  --gradient-title: linear-gradient(97deg, rgb(110, 148, 220) 0%, rgb(180, 140, 210) 50%, rgb(255, 155, 232) 108%);
  --gradient-cta: linear-gradient(106deg, #2890ef 18%, #5e5fd3 49%, #f6ace8 118%);
  --gradient-link: linear-gradient(101deg, rgb(140, 163, 223) 0%, rgb(255, 155, 232) 108%);
  --shadow-cta: 0 4px 24px rgba(168, 85, 247, 0.25);
  --max-w: 1100px;
  --section-pad: 100px;
}

html { -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  color: var(--muted); background: var(--bg);
  overflow-x: hidden; position: relative;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* =======================================
   APPLE LIQUID GLASS — 5 Dimensions
   1. Rim Light (edge glow)
   2. Saturation Boost (vibrant backdrop)
   3. Specular Highlights (surface shine)
   4. Depth & Layering (multi-shadow)
   5. Noise Grain (material texture)
   ======================================= */

/* Hidden SVG noise source */
.noise-svg {
  position: absolute; width: 0; height: 0; overflow: hidden;
}

.glass-card {
  position: relative;
  /* Fill — subtle tint */
  background: rgba(255, 255, 255, 0.04);
  /* Deep frosted glass blur */
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  /* Light border */
  border: 1px solid rgba(255, 255, 255, 0.14);
  /* Cascading shadows + subtle inner glow */
  box-shadow:
    0 6px 6px rgba(0, 0, 0, 0.015),
    0 12px 12px rgba(0, 0, 0, 0.02),
    0 24px 24px rgba(0, 0, 0, 0.04),
    0 48px 48px rgba(0, 0, 0, 0.06),
    inset 0 8px 10px rgba(255, 255, 255, 0.07),
    inset 0 -6px 8px rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: visible;
}

/* Gradient border overlay (simulates Figma's gradient stroke) */
.glass-card::before {
  content: '';
  position: absolute; inset: -1.5px; border-radius: calc(var(--radius) + 1.5px);
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.06) 30%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0.06) 70%,
    rgba(255,255,255,0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* Specular highlight + top rim light */
.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background:
    radial-gradient(ellipse 50% 40% at 30% 0%, rgba(255,255,255,0.1) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  border-radius: var(--radius) var(--radius) 0 0;
  pointer-events: none;
  z-index: 0;
}

/* 5. Noise Grain overlay (applied via box-shadow trick + filter) */
/* Using a subtle repeating-conic-gradient for grain effect */

/* --- GLOW BLOBS --- */
.glow-container {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.glow-blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.25; will-change: transform;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #5e5fd3 0%, transparent 70%);
  top: -100px; left: -150px; animation: blob1 25s ease-in-out infinite;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 40%; right: -200px; animation: blob2 30s ease-in-out infinite;
}
.blob-3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #e879a8 0%, transparent 70%);
  bottom: -100px; left: 30%; animation: blob3 28s ease-in-out infinite;
}
@keyframes blob1 {
  0%,100%{transform:translate(0,0) scale(1)} 25%{transform:translate(80px,120px) scale(1.1)}
  50%{transform:translate(150px,50px) scale(.95)} 75%{transform:translate(40px,180px) scale(1.05)}
}
@keyframes blob2 {
  0%,100%{transform:translate(0,0) scale(1)} 25%{transform:translate(-100px,-80px) scale(1.08)}
  50%{transform:translate(-60px,100px) scale(.92)} 75%{transform:translate(-140px,30px) scale(1.04)}
}
@keyframes blob3 {
  0%,100%{transform:translate(0,0) scale(1)} 25%{transform:translate(60px,-100px) scale(1.06)}
  50%{transform:translate(-80px,-60px) scale(.97)} 75%{transform:translate(100px,-120px) scale(1.1)}
}

/* --- SHARED --- */
.section-title {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); font-weight: 800; letter-spacing: -2px;
  color: #ffffff; text-align: center;
}
.section-header { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.section-subtitle { font-size: 16px; font-weight: 400; color: var(--muted); text-align: center; text-wrap: balance; }
.section-subline { font-size: 16px; font-weight: 400; color: var(--muted); text-align: center; margin-top: 8px; }
.hero-accent {
  background: linear-gradient(94deg, rgb(83, 123, 228) 0%, rgb(140, 163, 223) 40%, rgb(255, 155, 232) 108%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  background: var(--gradient-link);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.card-link {
  font-size: 14px; font-weight: 600;
  background: var(--gradient-link);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  padding-bottom: 1px; border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.card-link:hover { border-bottom-color: rgba(200, 160, 230, 0.6); }

.btn {
  display: inline-block; font-weight: 600; border-radius: 100px;
  color: #fff; background: var(--gradient-cta); box-shadow: var(--shadow-cta);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary { font-size: 16px; padding: 14px 32px; }
.btn-sm { font-size: 14px; padding: 12px 24px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(168,85,247,0.35); }
.btn-outline {
  display: inline-block; font-size: 16px; font-weight: 600;
  padding: 14px 32px; border-radius: 100px;
  border: none; background: transparent;
  position: relative;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  padding: 1px;
  background: linear-gradient(106deg, rgb(83,123,228) 0%, rgb(140,163,223) 37%, rgb(255,155,232) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.btn-outline span {
  background: linear-gradient(101deg, rgb(83,123,228) 0%, rgb(140,163,223) 37%, rgb(255,155,232) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(168,85,247,0.35); }
.btn-outline-sm { font-size: 14px; padding: 12px 28px; }

.pill {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 500; letter-spacing: 0.48px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(232,229,240,0.7); white-space: nowrap;
}
.pill-sm {
  padding: 4px 12px; font-size: 11px; letter-spacing: 0.6px;
  text-transform: uppercase; cursor: default;
  color: rgba(232, 229, 240, 0.9); /* improved accessibility */
}
.pill-gradient {
  background: rgba(255,255,255,0.04); border: none;
  color: transparent;
  -webkit-background-clip: text; background-clip: text;
  background-image: var(--gradient-link); -webkit-text-fill-color: transparent;
  position: relative; padding: 6px 16px;
}
.pill-gradient::before {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  padding: 1px; background: var(--gradient-link);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}

/* --- NAV (Full Liquid Glass) --- */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000; border-radius: 100px;
  padding: 12px 28px;
  max-width: calc(var(--max-w) - 48px); width: calc(100% - 48px);
  /* Liquid Glass nav */
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 6px 6px rgba(0, 0, 0, 0.015),
    0 12px 12px rgba(0, 0, 0, 0.02),
    0 24px 24px rgba(0, 0, 0, 0.04),
    inset 0 4px 6px rgba(255, 255, 255, 0.06),
    inset 0 -3px 5px rgba(255, 255, 255, 0.03);
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-logo); font-size: 22px; font-weight: 700;
  background: linear-gradient(101deg, rgb(131,164,255) 0%, rgb(255,155,232) 94%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 1px;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: #fff; text-shadow: 0 0 12px rgba(168,85,247,0.4); }
.nav-cta {
  font-size: 12px; font-weight: 600; color: #fff;
  background: var(--gradient-cta); padding: 10px 20px; border-radius: 100px;
  transition: transform 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO + SOUND FAMILIAR (seamless wrapper) --- */
.hero-wrapper {
  position: relative; z-index: 1;
}

.hero {
  position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: transparent;
}
.hero canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-glow {
  position: absolute; width: 1084px; height: 1084px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,95,211,0.15) 0%, transparent 70%);
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; padding-top: 20px;
}
.pill-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-headline {
  margin-top: 28px; font-size: clamp(2.75rem, 5vw + 1rem, 3.5rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -1.5px; color: #f7f7f9;
}
.hero-sub { margin-top: 24px; font-size: 16px; font-weight: 400; color: var(--muted); line-height: 28px; text-wrap: balance; }
.hero-ctas { margin-top: 48px; display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; align-items: center; }
.hero-ctas-stacked { flex-direction: column; width: 320px; }
.hero-ctas-stacked .btn, .hero-ctas-stacked .btn-outline { width: 100%; text-align: center; }
.hero-link {
  font-size: 16px; font-weight: 600; color: var(--muted);
  transition: color 0.2s;
}
.hero-link:hover { color: var(--white); }
.scroll-hint {
  margin-top: 28px; font-size: 24px; font-weight: 400;
  background: var(--gradient-link);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: bounce 1.6s ease-in-out infinite; display: inline-block;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

/* --- SECTIONS --- */
.section { position: relative; z-index: 1; padding: var(--section-pad) 0; }

/* --- SOUND FAMILIAR (no hover on cards) --- */
.section-problem .container {
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.pain-cards { display: flex; gap: 32px; width: 100%; }
.pain-card {
  flex: 1; border-radius: var(--radius);
  padding: 49px;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
}
/* NO hover effect on pain cards */
.pain-icon { font-size: 42px; position: relative; z-index: 3; filter: saturate(1.3); line-height: 1; }
.pain-title { font-size: 20px; font-weight: 700; color: var(--white); position: relative; z-index: 1; letter-spacing: -0.6px; }
.pain-desc { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 22px; position: relative; z-index: 1; text-wrap: balance; }
.bridge-text {
  font-size: 16px; font-weight: 500; text-align: center;
  background: var(--gradient-title);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* --- SERVICE CARDS --- */
.section-services .container { display: flex; flex-direction: column; align-items: center; gap: 64px; }

.service-cards {
  display: flex; gap: 24px; width: 100%;
  align-items: stretch; /* all same height — turnaround/dividers align */
}

.service-card {
  flex: 1; border-radius: var(--radius);
  padding: 49px;
  min-height: 560px;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s;
}
.service-card:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 6px rgba(0,0,0,0.02), 0 12px 12px rgba(0,0,0,0.03),
    0 24px 24px rgba(0,0,0,0.05), 0 48px 48px rgba(0,0,0,0.08),
    inset 0 8px 10px rgba(255,255,255,0.1),
    inset 0 -6px 8px rgba(255,255,255,0.05);
  z-index: 2;
}

.service-card-popular {
  border: 1.5px solid rgba(192, 132, 252, 0.3);
  transform: scale(1.05);
  z-index: 3;
  box-shadow:
    0 0 24px rgba(192, 132, 252, 0.25),
    0 0 48px rgba(192, 132, 252, 0.18),
    0 0 80px rgba(192, 132, 252, 0.12),
    0 24px 24px rgba(0,0,0,0.04),
    inset 0 8px 10px rgba(255,255,255,0.07),
    inset 0 -6px 8px rgba(255,255,255,0.04);
}
.service-card-popular:hover {
  border-color: rgba(168,85,247,0.5);
  box-shadow:
    0 0 50px rgba(168,85,247,0.25),
    0 0 100px rgba(168,85,247,0.12),
    0 6px 6px rgba(0,0,0,0.02), 0 12px 12px rgba(0,0,0,0.03),
    0 24px 24px rgba(0,0,0,0.05), 0 48px 48px rgba(0,0,0,0.08),
    inset 0 8px 10px rgba(255,255,255,0.1),
    inset 0 -6px 8px rgba(255,255,255,0.05);
}

.card-header {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  min-height: 140px; width: 100%;
}
.card-name { font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: -0.96px; }
.card-pricing { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 8px; }
.price-old { font-size: 14px; font-weight: 400; color: var(--muted); text-decoration: line-through; }
.price-new { font-size: 24px; font-weight: 600; color: var(--white); }
.card-tagline { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 20px; text-align: left; text-wrap: balance; }

.card-features {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 20px; width: 100%;
  padding: 24px 0 48px; position: relative; z-index: 1;
}
.feature { display: flex; gap: 12px; align-items: center; font-size: 14px; width: 100%; }
.check { color: var(--purple); font-weight: 700; flex-shrink: 0; font-size: 12px; }
.feature span:last-child { font-weight: 500; color: var(--muted); line-height: 20px; text-align: left; text-wrap: balance; }

.card-bottom {
  width: 100%; display: flex; flex-direction: column; align-items: stretch;
  position: relative; z-index: 1;
  margin-top: auto;
}
.card-cta { width: 100%; text-align: center; }
.card-cta-secondary { width: 100%; text-align: center; margin-top: 12px; font-size: 14px; }

.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.8px;
  padding: 5px 14px; border-radius: 100px;
  background: var(--gradient-cta);
  box-shadow: 0 0 20px 2px rgba(94,94,212,0.4);
  white-space: nowrap; z-index: 10;
}

.services-bottom { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.not-sure { font-size: 14px; font-weight: 400; color: var(--muted); text-align: center; }

/* --- YOUTUBE --- */
.section-youtube .container { display: flex; flex-direction: column; align-items: center; }
.section-subtitle-yt {
  font-size: 16px; font-weight: 400; color: var(--muted);
  text-align: center; line-height: 24px; margin-top: 12px;
}
.yt-spacer { height: 32px; }
.youtube-grid { display: flex; gap: 24px; width: 100%; }

.youtube-card {
  flex: 1; border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s;
  transform-origin: center center;
}
.youtube-card:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 0 24px rgba(168,85,247,0.1), inset 0 1px 1px rgba(255,255,255,0.3);
  z-index: 2;
}

.yt-thumbnail {
  position: relative; height: 190px;
  background: rgba(8,8,26,0.5); overflow: hidden; flex-shrink: 0;
}
.yt-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.45); border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: rgba(255,255,255,0.9); z-index: 2;
  padding-left: 3px; transition: transform 0.2s, background 0.2s;
}
.youtube-card:hover .yt-play {
  background: rgba(0,0,0,0.65); transform: translate(-50%,-50%) scale(1.1);
}
.yt-info {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 20px 20px 24px; text-align: center;
  position: relative; z-index: 1;
}
.yt-title {
  font-size: 15px; font-weight: 600; color: var(--white); line-height: 20px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis; min-height: 40px;
}
.yt-link {
  font-size: 14px; font-weight: 600;
  background: var(--gradient-link);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  padding-bottom: 1px; border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.youtube-card:hover .yt-link { border-bottom-color: rgba(200, 160, 230, 0.6); }
.yt-bottom-cta { margin-top: 40px; text-align: center; }

/* --- ABOUT --- */
.section-about .container { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.about-card {
  max-width: var(--max-w); width: 100%; border-radius: var(--radius);
  padding: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.about-photo { display: flex; justify-content: center; }
.photo-ring {
  width: 118px; height: 118px; border-radius: 50%;
  padding: 3px; background: var(--gradient-cta);
}
.photo-img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
}
.about-name { font-size: 24px; font-weight: 700; color: #fff; text-align: center; }
.about-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.about-text {
  max-width: 800px; text-align: center;
  font-size: 16px; font-weight: 400; color: var(--muted); line-height: 26px;
  text-wrap: pretty;
}
.about-text p { margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }

/* --- CONTACT --- */
.section-contact { padding-bottom: 40px; }
.section-contact .container { display: flex; flex-direction: column; align-items: center; }
.contact-content {
  display: flex; flex-direction: column; align-items: center; gap: 60px; width: 100%;
}
.contact-top {
  display: flex; flex-direction: column; align-items: center; gap: 40px; width: 100%;
}
.contact-cards { display: flex; gap: 24px; width: 100%; }
.contact-card {
  flex: 1; border-radius: var(--radius); padding: 40px 28px;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center; cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s;
}
.contact-card:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 30px rgba(168,85,247,0.1),
    0 16px 48px rgba(0,0,0,0.2),
    inset 0 10px 12px rgba(255,255,255,0.18),
    inset 0 -8px 10px rgba(255,255,255,0.08);
  z-index: 2;
}
.contact-card:hover .card-link { border-bottom-color: rgba(200, 160, 230, 0.6); }
.contact-icon { font-size: 32px; line-height: 1; position: relative; z-index: 1; }
.contact-card h4 { font-size: 20px; font-weight: 700; color: var(--white); position: relative; z-index: 1; }
.contact-card p { font-size: 16px; font-weight: 400; color: var(--muted); line-height: 22px; position: relative; z-index: 1; text-wrap: pretty; }

/* --- EMAIL CAPTURE --- */
.email-capture {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 40px 48px; width: 100%; border-radius: var(--radius);
}
.capture-title { font-size: 20px; font-weight: 700; color: #f7f7f9; text-align: center; }
.capture-intro { font-size: 16px; font-weight: 400; color: var(--muted); text-align: center; text-wrap: balance; }
.capture-form {
  display: flex; gap: 12px; align-items: center;
  width: 754px; max-width: 100%; justify-content: center;
}
.capture-input {
  width: 305px; height: 44px; padding: 0 20px; border-radius: 100px;
  border: 0.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--white); font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.capture-input::placeholder { color: var(--placeholder); }
.capture-input:focus { border-color: rgba(192,132,252,0.4); }

/* --- FOOTER --- */
.footer { width: 100%; padding: 40px 0 24px; position: relative; z-index: 1; }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 400;
}
.footer-left { color: var(--muted); }
.footer-right { display: flex; gap: 50px; }
.footer-right a { color: var(--dim); transition: color 0.2s; }
.footer-right a:hover { color: var(--white); }

/* --- CTA GLOW PULSE --- */
.btn-primary { animation: ctaGlow 3s ease-in-out infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(168,85,247,0.25); }
  50% { box-shadow: 0 4px 32px rgba(168,85,247,0.45), 0 0 48px rgba(94,95,211,0.2); }
}
.btn-primary:hover { animation: none; }

/* --- CARD SPOTLIGHT (dim siblings on hover) --- */
.pain-cards:has(.pain-card:hover) .pain-card:not(:hover) { opacity: 0.5; transition: opacity 0.3s; }
.pain-card { transition: opacity 0.3s, transform 0.3s; }
.service-cards:has(.service-card:hover) .service-card:not(:hover) { opacity: 0.5; }
.youtube-grid:has(.youtube-card:hover) .youtube-card:not(:hover) { opacity: 0.5; }
.contact-cards:has(.contact-card:hover) .contact-card:not(:hover) { opacity: 0.5; }

/* --- SECTION TITLE GLOW --- */
.section-title { text-shadow: 0 0 40px rgba(180, 140, 210, 0.15); }

/* --- FADE-IN --- */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }
  .nav {
    top: 0; border-radius: 0; width: 100%; left: 0; transform: none;
    padding: 12px 16px; max-width: 100%;
  }
  .nav-inner { justify-content: space-between; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(8,8,26,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06); padding: 16px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 120px 24px 64px; }
  /* fluid clamp() handles hero + title sizing now */
  .section-services .container { gap: 32px; }
  .section-problem .container { gap: 24px; }
  .pain-cards { flex-direction: column; align-items: stretch; }
  .pain-card { height: auto; min-height: 180px; width: 100%; }
  .service-cards { flex-direction: column; align-items: stretch; }
  .service-card { min-height: auto; width: 100%; }
  .service-card:hover { transform: none; }
  .youtube-card { width: 100%; }
  .youtube-card:hover { transform: none; }
  .contact-card { width: 100%; }
  .contact-card:hover { transform: none; }
  .service-card-popular { min-height: auto; margin-top: 16px; transform: none; width: 100%; }
  .service-card-popular:hover { transform: none; }
  .youtube-grid { flex-direction: column; align-items: stretch; }
  .contact-cards { flex-direction: column; align-items: stretch; }
  .contact-content { gap: 40px; }
  .contact-top { gap: 24px; }
  .about-card { max-width: 100%; }
  .footer-row { flex-direction: column; gap: 16px; align-items: center; text-align: center; }
  .footer-right { gap: 24px; }
  .footer { padding: 24px 0 20px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px; --radius: 28px; }
  .hero { padding: 100px 20px 48px; }
  /* fluid clamp() handles hero sizing */
  .hero-sub { font-size: 14px; line-height: 22px; }
  .hero-sub br { display: none; }
  .hero-ctas { margin-top: 32px; }
  .hero-ctas-stacked { width: 100%; max-width: 300px; }
  .scroll-hint { font-size: 20px; }
  /* fluid clamp() handles title sizing */
  .container { padding: 0 16px; }
  .about-card { padding: 32px 20px; }
  .about-text { font-size: 14px; }
  .about-tags { gap: 8px; }
  .capture-form { flex-direction: column; width: 100%; }
  .capture-input { width: 100%; }
  .glow-blob { filter: blur(80px); opacity: 0.15; }
  .blob-1 { width: 350px; height: 350px; }
  .blob-2 { width: 300px; height: 300px; }
  .blob-3 { width: 280px; height: 280px; }
  .yt-thumbnail { height: 160px; }
  .pain-desc br { display: none; }
}
