/* ============================================
   PUSH & CO - Premium Visual Theme
   Brand: Orange #C76B2A | Off-white #F7F5F2
   Rich textures, depth, glassmorphism, animation.
   ============================================ */

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

:root {
  --orange: #C76B2A;
  --orange-hover: #d97a38;
  --orange-dark: #a85820;
  --orange-glow: rgba(199, 107, 42, 0.2);
  --orange-glow-strong: rgba(199, 107, 42, 0.35);
  --bg: #F7F5F2;
  --bg-alt: #EFECE8;
  --bg-card: #FFFFFF;
  --border: #E5E1DB;
  --border-hover: #D1CCC5;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.35);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   TEXTURE OVERLAY - visible grain noise
   z-index: 9 so it sits behind all interactive
   elements (lightbox 99998, loader 99999, nav 9000)
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 512px 512px;
  mix-blend-mode: multiply;
}

/* Dot grid pattern on alt sections */
.sec-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: radial-gradient(circle, var(--text) 0.8px, transparent 0.8px);
  background-size: 24px 24px;
}

::selection { background: var(--orange); color: var(--white); }

/* ============================================
   GLOBAL KEYFRAME ANIMATIONS
   ============================================ */

/* Floating bob animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero orb drift */
@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.12; }
  25% { transform: translate(40px, -30px) scale(1.1); opacity: 0.18; }
  50% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.1; }
  75% { transform: translate(30px, 40px) scale(1.05); opacity: 0.16; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.12; }
}

/* Step number pulse glow */
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 107, 42, 0.35); }
  50% { box-shadow: 0 0 20px 6px rgba(199, 107, 42, 0.15); }
}

/* Badge shimmer shine sweep */
@keyframes shimmerSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Gradient mesh animation for hero */
@keyframes meshShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pain card shimmer on hover */
@keyframes painShimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}

/* Logo strip auto-scroll for mobile */
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   VIDEO LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader.hidden { display: none !important; }

.loader-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.loader-logo {
  width: 160px;
  height: 160px;
}
.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Loading progress bar */
.loader-bar {
  width: 120px;
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-hover));
  border-radius: 4px;
  animation: loaderProgress 2.8s ease-in-out forwards;
}
@keyframes loaderProgress {
  0% { width: 0%; }
  20% { width: 25%; }
  50% { width: 60%; }
  80% { width: 90%; }
  100% { width: 100%; }
}

/* Loader animated gradient background */
.loader-bg-anim {
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #F7F5F2, #EFECE8, #fcebd8, #F7F5F2, #e8ddd0);
  background-size: 400% 400%;
  animation: meshShift 6s ease infinite;
}

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.nav-brand svg { height: 38px; width: 38px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
/* Nav Book a Call — white bold text that pops */
.nav-menu .btn-cta {
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: var(--orange);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(199, 107, 42, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.btn-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--text);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.btn-white:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   LAYOUT
   ============================================ */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.wrap-lg { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

section { padding: 80px 0; position: relative; }

/* Alt sections: warm subtle gradient, not flat */
.sec-alt {
  background: linear-gradient(180deg, #EFECE8 0%, #ebe7e1 40%, #EFECE8 100%);
  position: relative;
}

/* Dark accent section — clean black */
.sec-dark {
  background: linear-gradient(180deg, #111111 0%, #1a1a1a 50%, #111111 100%);
  color: #f0f0f0;
  position: relative;
}
.sec-dark .sh h2, .sec-dark h2, .sec-dark h3 { color: #f5f5f5; }
.sec-dark .sh p, .sec-dark p { color: rgba(240, 240, 240, 0.7); }
.sec-dark .badge { background: rgba(199, 107, 42, 0.2); }
.sec-dark .stat-lbl { color: rgba(240, 240, 240, 0.5); }
.sec-dark .step-num { box-shadow: 0 0 30px rgba(199, 107, 42, 0.3); }
.sec-dark .step ul li { color: rgba(240, 240, 240, 0.6); }
.sec-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}
.sec-dark .card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
}
.sec-dark .card h3 { color: #f5f5f5; }
.sec-dark .card p { color: rgba(240, 240, 240, 0.6); }
.sec-dark .card-icon { background: rgba(199, 107, 42, 0.15); }
.sec-dark .steps-grid::before {
  background: linear-gradient(90deg, transparent, rgba(199, 107, 42, 0.5), transparent);
}

/* Warm cream section — subtle warmth contrast */
.sec-warm {
  background: linear-gradient(180deg, #f5ede4 0%, #f0e6d9 50%, #f5ede4 100%);
  position: relative;
}

.sec-orange { background: var(--orange); }

/* Dark section dot grid pattern */
.sec-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 0.5px, transparent 0.5px);
  background-size: 28px 28px;
}

/* Section headers */
.sh { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.sh-left { text-align: left; max-width: none; }

/* Badge with animated shimmer shine */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(199, 107, 42, 0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 107, 42, 0.18), transparent);
  animation: shimmerSweep 3.5s ease-in-out infinite;
}

.sh h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}
.sh p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Accent text - clean orange */
.accent {
  color: var(--orange);
}

/* ============================================
   WAVE DIVIDER between sections
   ============================================ */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  margin-top: -1px;
  margin-bottom: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}
.wave-divider.wave-flip svg {
  transform: scaleX(-1);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  /* Richer gradient with more warmth and depth */
  background: linear-gradient(160deg, #f0e8de 0%, #f5ede4 25%, #faf6f1 50%, #f2e9dd 75%, #ede5d9 100%);
}
.hero > .wrap {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Animated floating orange glow orb */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 110%;
  background: radial-gradient(ellipse at center, rgba(199, 107, 42, 0.14) 0%, rgba(199, 107, 42, 0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: orbDrift 12s ease-in-out infinite;
  filter: blur(40px);
}

/* Second animated gradient mesh blob behind hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(199, 107, 42, 0.08) 0%, rgba(239, 236, 232, 0.06) 50%, transparent 70%);
  pointer-events: none;
  animation: orbDrift 16s ease-in-out infinite reverse;
  filter: blur(60px);
  z-index: 0;
}

/* Animated gradient orb - extra glow element */
.hero-orb {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 107, 42, 0.18) 0%, rgba(199, 107, 42, 0.06) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: orbDrift 10s ease-in-out infinite 2s;
  z-index: 0;
}

/* Hero 2-col layout — text left, wall right */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero photos column — clean 2x2 grid, no fade/mask */
.hero-photos {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero h1 clean text — scales fluidly with viewport height */
.hero-text h1 {
  font-size: clamp(2rem, 5vh, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--text);
}
/* Tagline below h1 with spacing */
.hero-tagline {
  font-size: clamp(2rem, 5vh, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: clamp(6px, 1.5vh, 16px);
  margin-bottom: clamp(8px, 2vh, 20px);
}
/* Hero line — allow natural wrapping */
.hero-line {
  display: block;
}
.hero-text .sub {
  font-size: clamp(0.85rem, 1.4vh, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: clamp(12px, 3vh, 32px);
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  margin-top: clamp(12px, 3vh, 40px);
  padding-top: clamp(10px, 2.5vh, 32px);
  border-top: 1px solid var(--border);
}

/* Hero wall — image height scales with viewport */
.hero-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(6px, 1vh, 14px);
  width: 100%;
}
.hero-wall img {
  width: 100%;
  height: clamp(150px, 26vh, 300px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hero-wall img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* Stat values with gradient fill — fluid sizing */
.stat-val {
  font-size: clamp(1.2rem, 3vh, 2.5rem);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--orange) 20%, #d9944a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl {
  font-size: clamp(0.55rem, 1vh, 0.82rem);
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Video embed */
.hero-vid {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}
.hero-vid iframe, .hero-vid video { width: 100%; height: 100%; }
.vid-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-icon {
  width: 68px;
  height: 68px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(199, 107, 42, 0.4);
  animation: pulse 2.5s infinite;
  transition: transform 0.3s;
}
.play-icon:hover { transform: scale(1.08); }
.play-icon svg { width: 24px; height: 24px; fill: var(--white); margin-left: 3px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(199, 107, 42, 0.4); }
  70% { box-shadow: 0 0 0 24px rgba(199, 107, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 107, 42, 0); }
}

/* ============================================
   SCROLLING TICKER
   ============================================ */
.ticker {
  padding: 18px 0;
  background: var(--orange);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
}
.ticker span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ticker span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================
   LOGO STRIP / TRUST BAR
   ============================================ */
.logo-strip-section {
  padding: 48px 0;
  background: var(--bg);
  position: relative;
}
.logo-strip-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 28px;
}
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logo-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s var(--ease);
}
.logo-strip-item svg {
  width: 40px;
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease), transform 0.3s var(--ease);
}
.logo-strip-item span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s var(--ease);
}
.logo-strip-item:hover svg {
  opacity: 1;
  transform: scale(1.12);
}
.logo-strip-item:hover span {
  color: var(--text-muted);
}
.logo-strip-item:hover {
  transform: translateY(-2px);
}

/* ============================================
   CARDS (elevated, glassmorphism on hover)
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  /* Default subtle shadow for depth */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
}
.card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(199, 107, 42, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* Gradient border pseudo-element on hover */
.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(199, 107, 42, 0), rgba(199, 107, 42, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s var(--ease);
  z-index: 1;
}
.card:hover::after {
  background: linear-gradient(135deg, rgba(199, 107, 42, 0.5), rgba(199, 107, 42, 0.1), rgba(199, 107, 42, 0.3));
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(199, 107, 42, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Pain point cards with shimmer on hover */
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.pain-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
}
/* Shimmer sweep light on hover */
.pain-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 107, 42, 0.06), transparent);
  pointer-events: none;
  transition: none;
}
.pain-card:hover::after {
  animation: painShimmer 0.8s ease-out forwards;
}
.pain-card:hover {
  border-color: rgba(199, 107, 42, 0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(199, 107, 42, 0.06);
}
.pain-icon {
  width: 40px;
  height: 40px;
  background: rgba(199, 107, 42, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--orange);
}
.pain-icon svg { width: 20px; height: 20px; }
.pain-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.pain-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ============================================
   TILT CLASS - CSS perspective tilt on hover
   ============================================ */
.tilt {
  transition: transform 0.4s var(--ease);
  transform-style: preserve-3d;
  perspective: 800px;
}
.tilt:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
}

/* ============================================
   STEPS (How it works)
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.steps-grid::before {
  display: none;
}
.step {
  text-align: left;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

/* Step number with subtle pulse glow */
.step-num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: stepPulse 3s ease-in-out infinite;
}
.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #f5f5f5; }
.step p { color: rgba(240, 240, 240, 0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 4px; }
.step ul {
  list-style: none;
  margin-top: 16px;
}
.step ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(240, 240, 240, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
}
.step ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS — STICKY LEFT + SCROLLING CARDS
   ============================================ */

.hiw { padding: 80px 0; }

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

/* Left column — sticky while cards scroll */
.hiw-left {
  position: sticky;
  top: 120px;
}
.hiw-left h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f5f5f5;
  margin-bottom: 16px;
}
.hiw-left p {
  color: rgba(240, 240, 240, 0.6);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Right column — stacked cards */
.hiw-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Individual card */
.hiw-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color 0.3s ease;
}
.hiw-card:hover {
  border-color: rgba(199, 107, 42, 0.25);
}

/* Card text side */
.hiw-card-text {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

/* Card header — number + title inline */
.hiw-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.hiw-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.hiw-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f5f5f5;
  line-height: 1.25;
}
.hiw-card > p,
.hiw-card-text > p {
  color: rgba(240, 240, 240, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Card image — square */
.hiw-card-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.hiw-card-img img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.hiw-card:hover .hiw-card-img img {
  transform: scale(1.03);
}

/* ---- Ad Mockups for Step 2 (Facebook + Instagram) ---- */
.hiw-card-img.hiw-ad-mockups {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 4px;
  overflow: visible;
  background: transparent;
}
.ad-mockup {
  width: 48%;
  max-width: 195px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 1px 4px rgba(0,0,0,0.15);
}
.ig-mockup {
  transform: translateY(14px);
}

/* Shared header */
.ad-mock-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px 5px;
  position: relative;
}
.ad-mock-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ig-avatar {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.ad-mock-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
}
.ad-mock-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: #1a1a1a;
}
.ad-mock-sub {
  font-size: 0.5rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 2px;
}
.ad-mock-logo {
  margin-left: auto;
  flex-shrink: 0;
}
.ad-mock-dots {
  margin-left: auto;
  flex-shrink: 0;
}

/* Media */
.ad-mock-media { width: 100%; }
.hiw-card-img.hiw-ad-mockups .ad-mock-media img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: none;
  border-radius: 0;
}

/* Facebook footer */
.ad-mock-footer { padding: 5px 9px; }
.fb-footer .ad-mock-reactions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fb-reaction-icons { font-size: 0.6rem; }
.ad-mock-count {
  font-size: 0.55rem;
  color: #65676b;
}
.ad-mock-comments {
  font-size: 0.5rem;
  color: #65676b;
  float: right;
}
.fb-actions {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #e4e6ea;
  padding: 5px 0;
  margin: 0 9px;
}
.fb-actions span {
  font-size: 0.5rem;
  color: #65676b;
  font-weight: 600;
}

/* Instagram footer */
.ig-footer { padding: 6px 9px 8px; }
.ig-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.ig-actions svg { width: 14px; height: 14px; }
.ig-likes {
  font-size: 0.55rem;
  font-weight: 600;
  color: #262626;
}

/* ---- HIW Responsive ---- */
@media (max-width: 1280px) {
  .hiw-layout { gap: 40px; grid-template-columns: 320px 1fr; }
  .hiw-left h2 { font-size: 2.25rem; }
}
@media (max-width: 1024px) {
  .hiw { padding: 52px 0; }
  .hiw-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hiw-left {
    position: relative;
    top: 0;
    text-align: center;
  }
  .hiw-left p { margin: 0 auto; }
  .hiw-left h2 { font-size: 2rem; }
  .hiw-cards { gap: 20px; }
  .hiw-card { padding: 24px; }
}
@media (max-width: 768px) {
  .hiw { padding: 40px 0; }
  .hiw-left h2 { font-size: 1.75rem; }
  .hiw-left p { font-size: 0.92rem; }
  .hiw-cards { gap: 16px; }
  .hiw-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .hiw-card h3 { font-size: 1.05rem; }
  .hiw-card-text > p { font-size: 0.85rem; }
  .hiw-num { width: 36px; height: 36px; font-size: 0.8rem; }
  .hiw-card-head { gap: 10px; }
  .hiw-card-img img { aspect-ratio: 16/10; }
  .hiw-card-img.hiw-ad-mockups .ad-mock-media img { aspect-ratio: 1/1; object-fit: cover; }
}
@media (max-width: 480px) {
  .hiw { padding: 32px 0; }
  .hiw-card { padding: 18px; gap: 16px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.testi-card:hover {
  border-color: rgba(199, 107, 42, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* Gradient border on hover for testi-card */
.testi-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(199, 107, 42, 0), rgba(199, 107, 42, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s var(--ease);
  z-index: 1;
}
.testi-card:hover::after {
  background: linear-gradient(135deg, rgba(199, 107, 42, 0.4), rgba(199, 107, 42, 0.05), rgba(199, 107, 42, 0.25));
}
.testi-card .stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-card .stars svg { width: 18px; height: 18px; fill: #f59e0b; }
.testi-card blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.testi-author strong { font-size: 0.9rem; display: block; color: var(--text); }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }

/* Avatar placeholder initials */
.testi-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.testi-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

/* Reviews wall — shows first 9 cards, expandable */
.reviews-wall {
  max-height: 1200px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s var(--ease);
}
.reviews-wall.expanded {
  max-height: 6000px;
}
.reviews-wall:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}
.reviews-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 2px solid var(--text);
  color: var(--text);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.reviews-toggle:hover {
  background: var(--text);
  color: var(--white);
}

/* Featured testimonial avatar placeholder */
.testi-featured-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(199, 107, 42, 0.12), rgba(199, 107, 42, 0.06));
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Large featured testimonial */
.testi-featured {
  background: linear-gradient(135deg, var(--bg-card), rgba(199, 107, 42, 0.04));
  border: 1px solid rgba(199, 107, 42, 0.15);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(199, 107, 42, 0.05);
}
.testi-featured img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}
.testi-featured blockquote {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

/* Proof photo cards — image tiles in review section */
.proof-photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.proof-photo-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.proof-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

/* ============================================
   VIDEO TESTIMONIAL
   ============================================ */
.vid-testi {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.vid-testi:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.vid-testi iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   PHOTO GRID (Masonry)
   ============================================ */
.photo-grid {
  columns: 3;
  column-gap: 16px;
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
}
.photo-item:hover {
  transform: scale(1.02);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(199, 107, 42, 0.12);
}
.photo-item img { width: 100%; display: block; }

/* Screenshot grid */
.shot-grid {
  columns: 3;
  column-gap: 12px;
}
.shot-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.shot-item:hover {
  transform: scale(1.02);
  border-color: var(--orange);
}
.shot-item img { width: 100%; display: block; }

/* Result graphic cards — large client success images */
.result-graphic {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.result-graphic:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.result-graphic img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Results strip — horizontal scrollable row of result graphics */
.results-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.results-strip .result-graphic img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .results-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .results-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ============================================
   IMAGE SHOWCASE STRIP — between sections
   ============================================ */
.img-showcase {
  padding: 32px 0;
  overflow: hidden;
}
.img-showcase .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.img-showcase-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.img-showcase-item:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.img-showcase-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width: 768px) {
  .img-showcase .wrap { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .img-showcase .wrap { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================
   GRIDS
   ============================================ */
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.about-img img { width: 100%; display: block; }
.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-block {
  text-align: center;
  padding: 80px 40px 40px;
  border-radius: var(--radius-xl);
  background: var(--orange);
  position: relative;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}
.cta-block h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  color: var(--white);
}
.cta-block p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

/* Form embed placeholder */
.form-embed {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */
.vault-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.vault-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(199, 107, 42, 0.08);
}
.vault-visual {
  background: linear-gradient(135deg, var(--bg-alt), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vault-visual svg { width: 56px; height: 56px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.vault-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vault-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vault-tag {
  display: inline-block;
  background: rgba(199, 107, 42, 0.08);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  align-self: flex-start;
}
.vault-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.vault-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.6; }
.vault-locked { position: relative; opacity: 0.4; pointer-events: none; }
.vault-locked::after {
  content: 'COMING SOON';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: var(--orange);
  color: var(--white);
  padding: 6px 24px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 4px;
  z-index: 10;
  opacity: 1;
}

/* ============================================
   CLIENT PHOTOS SCROLLING TICKER
   ============================================ */
.client-ticker {
  padding: 32px 0 24px;
  overflow: hidden;
  background: var(--bg);
}
.client-ticker-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 20px;
}
.client-ticker-track {
  display: flex;
  gap: 16px;
  animation: clientScroll 60s linear infinite;
  width: max-content;
}
.client-ticker-track img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.client-ticker-track img:hover {
  border-color: var(--orange);
  transform: scale(1.08);
}
@keyframes clientScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .client-ticker-track img { width: 72px; height: 72px; }
  .client-ticker-track { gap: 12px; }
  .client-ticker { padding: 24px 0 16px; }
}
@media (max-width: 480px) {
  .client-ticker-track img { width: 60px; height: 60px; border-width: 2px; }
  .client-ticker-track { gap: 10px; }
}

/* Ticker inside hero — transparent, full-width at bottom, scales with vh */
.hero-ticker {
  background: transparent;
  padding: clamp(4px, 1vh, 12px) 0 clamp(8px, 1.5vh, 20px);
  width: 100%;
  flex-shrink: 0;
}
.hero-ticker .client-ticker-track img {
  width: clamp(44px, 8vh, 100px);
  height: clamp(44px, 8vh, 100px);
}
.hero-ticker .client-ticker-label {
  font-size: clamp(0.6rem, 1.1vh, 0.78rem);
}

/* ============================================
   VIDEO TESTIMONIALS
   ============================================ */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.video-testi {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.video-testi iframe {
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .video-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }
}

/* Google Reviews Embed */
.google-reviews-embed {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   HOLISTIC COMPARISON SECTION
   ============================================ */
.holistic-compare {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

/* Shared column styles */
.hc-col {
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

/* Other Agencies column */
.hc-them {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.hc-them .hc-header h3 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
}
.hc-them ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.hc-them li {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
}
.hc-them li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #dc2626;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18' stroke='black' stroke-width='3'/%3E%3Cline x1='6' y1='6' x2='18' y2='18' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18' stroke='black' stroke-width='3'/%3E%3Cline x1='6' y1='6' x2='18' y2='18' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Push & Co column */
.hc-us {
  background: linear-gradient(135deg, #141414, #1e1e1e);
  border: 1px solid rgba(199,107,42,0.3);
  box-shadow: 0 8px 40px rgba(199,107,42,0.08);
}
.hc-us .hc-header h3 {
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 800;
}

/* Column headers */
.hc-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hc-us .hc-header {
  border-color: rgba(255,255,255,0.08);
}
.hc-icon-bad, .hc-icon-good {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.hc-icon-bad {
  background: rgba(220,38,38,0.1);
  color: #dc2626;
}
.hc-icon-good {
  background: rgba(199,107,42,0.15);
  color: var(--orange);
}
.hc-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}
.hc-us .hc-tagline {
  color: rgba(255,255,255,0.45);
}

/* Pillars inside Push & Co column */
.hc-pillar {
  margin-top: 20px;
}
.hc-pillar-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(199,107,42,0.1);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.hc-pillar-label svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}
.hc-pillar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hc-pillar li {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(240,240,240,0.7);
  padding-left: 24px;
  position: relative;
}
.hc-pillar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='black' stroke-width='3' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='black' stroke-width='3' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hc-pillar li strong {
  color: #fff;
}

/* Guarantee tag at bottom */
.hc-guarantee-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(199,107,42,0.1);
  border: 1px solid rgba(199,107,42,0.2);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
}
.hc-guarantee-tag svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* Responsive */
@media (max-width: 768px) {
  .holistic-compare { grid-template-columns: 1fr; gap: 16px; }
  .hc-col { padding: 28px; }
  .hc-header h3 { font-size: 1.15rem; }
  .hc-them li, .hc-pillar li { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .hc-col { padding: 22px; }
  .hc-them li, .hc-pillar li { font-size: 0.82rem; }
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-sec { padding: 80px 0; }
.guarantee-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.guarantee-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(199, 107, 42, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--orange);
}
.guarantee-block h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 8px;
}
.guarantee-sub {
  color: rgba(240,240,240,0.6);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.guarantee-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.guarantee-item { text-align: center; }
.guarantee-val {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange) 20%, #f0a060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.guarantee-label {
  color: rgba(240,240,240,0.5);
  font-size: 0.95rem;
}
.guarantee-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .guarantee-block h2 { font-size: 2rem; }
  .guarantee-val { font-size: 2rem; }
  .guarantee-items { gap: 24px; }
  .guarantee-divider { width: 60px; height: 1px; }
}
@media (max-width: 480px) {
  .guarantee-block h2 { font-size: 1.65rem; }
  .guarantee-val { font-size: 1.75rem; }
  .guarantee-label { font-size: 0.85rem; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-sec { padding: 80px 0; }
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open {
  border-color: rgba(199, 107, 42, 0.3);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.faq-q span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .faq-q { padding: 16px 20px; }
  .faq-q span { font-size: 0.92rem; }
  .faq-a p { font-size: 0.88rem; }
  .faq-item.open .faq-a { padding: 0 20px 16px; }
}

/* ============================================
   SOCIAL CTA (Follow Us)
   ============================================ */
.social-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 40px auto 0;
}
.social-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.social-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(199,107,42,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.social-cta-card:hover {
  border-color: rgba(199,107,42,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.social-cta-card:hover::before {
  opacity: 1;
}
.social-cta-card svg {
  color: var(--orange);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.social-cta-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.social-cta-handle {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .social-cta-grid { grid-template-columns: 1fr; gap: 14px; max-width: 360px; }
  .social-cta-card { flex-direction: row; padding: 20px 24px; gap: 14px; }
  .social-cta-card svg { width: 28px; height: 28px; }
}
@media (max-width: 480px) {
  .social-cta-grid { gap: 10px; }
  .social-cta-card { padding: 16px 20px; }
}

/* ============================================
   FOOTER - darker, patterned, orange accent top
   ============================================ */
.footer {
  padding: 0 0 32px;
  background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
  color: #d4d4d4;
  position: relative;
}
.footer-brand p { color: rgba(212, 212, 212, 0.6) !important; }
.footer h4 { color: var(--orange) !important; }
.footer ul a { color: rgba(212, 212, 212, 0.65) !important; }
.footer ul a:hover { color: var(--orange) !important; }
/* Orange accent line at top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hover), var(--orange));
}
/* Subtle pattern overlay on footer */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 20px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
.footer .nav-brand { color: #f0f0f0; }
.footer-brand p { color: rgba(212, 212, 212, 0.6); font-size: 0.88rem; margin-top: 12px; line-height: 1.6; }
.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(212, 212, 212, 0.4);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
}
.lightbox-x {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FLOATING ANIMATION UTILITY
   ============================================ */
.float {
  animation: float 4s ease-in-out infinite;
}
.float-slow {
  animation: float 6s ease-in-out infinite;
}
.float-delay {
  animation: float 4s ease-in-out infinite 1s;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Stagger children start hidden, JS adds .vis with delay */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger > *.vis { opacity: 1; transform: translateY(0); }

/* Typed text cursor blink */
.typed-text {
  display: inline-block;
  color: var(--orange);
  border-right: 2px solid var(--orange);
  padding-right: 4px;
  animation: cursorBlink 0.75s steps(2) infinite;
}
@keyframes cursorBlink {
  0%, 100% { border-color: var(--orange); }
  50% { border-color: transparent; }
}

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

/* Hero laptop/desktop scaling is now handled by clamp() in default styles — no breakpoint needed */

/* ---- Small laptops / large tablets (landscape) ---- */
@media (max-width: 1280px) {
  .hero-grid { gap: 24px; }
  .hero-text h1 { font-size: 2.5rem; }
  .hero-tagline { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 320px 1fr; gap: 48px; }
  .sh h2 { font-size: 2.5rem; }
  .cta-block h2 { font-size: 2.25rem; }
  .footer-grid { gap: 32px; }
}

/* ---- Tablets / small laptops ---- */
@media (max-width: 1024px) {
  .wrap { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text .sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-photos { margin-top: 28px; }
  .hero-tagline { font-size: 2.5rem; }
  .hero-text h1 { font-size: 2.75rem; }
  .hero-wall { max-width: 480px; margin: 0 auto; }
  .sh h2 { font-size: 2.25rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .about-img { max-width: 360px; margin: 0 auto; }
  .about-text h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .photo-grid { columns: 2; }
  .testi-featured { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 36px; }
  .vault-card { grid-template-columns: 1fr; }
  .vault-visual { height: 140px; }
  .logo-strip { gap: 32px; }
  .hero-orb { width: 350px; height: 350px; }
  .stat-val { font-size: 2rem; }
  .cta-block { padding: 60px 32px 32px; }
  .cta-block h2 { font-size: 2rem; }
  section { padding: 64px 0; }
  .pain-card { padding: 24px; }
  .testi-card { padding: 24px; }
}

/* ---- Tablets portrait / large phones ---- */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px 32px;
    gap: 16px;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  section { padding: 52px 0; }
  .wrap { padding: 0 20px; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 0; }
  .hero-text h1 { font-size: 2.25rem; }
  .hero-tagline { font-size: 2.25rem; }
  .hero-text .sub { font-size: 1rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stats > div { min-width: 100px; }
  .stat-val { font-size: 1.75rem; }
  .hero-wall { max-width: 380px; gap: 10px; }
  .g2, .g4 { grid-template-columns: 1fr; gap: 16px; }
  .g3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid, .steps-4 { grid-template-columns: 1fr; }
  .photo-grid { columns: 1; }
  .shot-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div { text-align: center; }
  .footer-brand { text-align: center; }
  .footer .nav-brand { justify-content: center; }
  .sh { margin-bottom: 40px; }
  .sh h2 { font-size: 2rem; }
  .sh p { font-size: 1rem; }
  .about-text h2 { font-size: 1.75rem; }
  .about-grid { gap: 24px; }
  .about-img { max-width: 300px; }
  .cta-block { padding: 48px 24px 24px; border-radius: var(--radius-lg); }
  .cta-block h2 { font-size: 1.75rem; }
  .cta-block p { font-size: 1rem; }
  .pain-card { padding: 20px; }
  .pain-card h3 { font-size: 1rem; }
  .pain-card p { font-size: 0.85rem; }
  .testi-card { padding: 20px; }
  .testi-card blockquote { font-size: 0.88rem; margin-bottom: 16px; }
  .testi-featured { padding: 28px; gap: 24px; }
  .testi-featured blockquote { font-size: 1.05rem; }
  .vault-body { padding: 24px; }
  .vault-body h3 { font-size: 1.05rem; }

  /* Logo strip on mobile */
  .logo-strip { gap: 24px; }
  .logo-strip-item svg { width: 32px; height: 32px; }
  .logo-strip-section { padding: 32px 0; }
  .hero-orb { width: 250px; height: 250px; }

  /* Wave dividers thinner on mobile */
  .wave-divider svg { height: 32px; }

  /* Reviews grid 2-col on tablet */
  .reviews-wall { max-height: 900px; }

  /* Ad mockups stack on mobile */
  .hiw-card-img.hiw-ad-mockups { flex-direction: column; align-items: center; }
  .ad-mockup { width: 80%; max-width: 240px; }
  .ig-mockup { transform: none; }

  /* Nav menu backdrop on mobile */
  .nav-menu { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  section { padding: 40px 0; }
  .hero { padding-top: 88px; padding-bottom: 0; }
  .hero-text h1 { font-size: 1.85rem; }
  .hero-tagline { font-size: 1.85rem; }
  .hero-text .sub { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-white,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; margin-top: 28px; padding-top: 24px; }
  .stat-val { font-size: 1.5rem; }
  .stat-lbl { font-size: 0.72rem; }
  .hero-wall { max-width: 320px; gap: 8px; }
  .sh h2 { font-size: 1.65rem; }
  .sh p { font-size: 0.9rem; }
  .sh { margin-bottom: 32px; }
  .shot-grid { columns: 1; }
  .g3 { grid-template-columns: 1fr; }
  .cta-block { padding: 36px 20px 20px; }
  .cta-block h2 { font-size: 1.5rem; }
  .cta-block p { font-size: 0.9rem; margin-bottom: 24px; }
  .about-text h2 { font-size: 1.5rem; }
  .about-text p { font-size: 0.9rem; }
  .about-img { max-width: 260px; }
  .badge { font-size: 0.72rem; padding: 5px 12px; }
  .pain-card { padding: 18px; }
  .testi-card { padding: 18px; }
  .hero-orb { width: 180px; height: 180px; }
  .footer-grid { gap: 24px; }
  .footer { padding-bottom: 24px; }
  .footer-grid { padding-top: 40px; }

  /* Reviews wall shorter on phone */
  .reviews-wall { max-height: 700px; }

  /* Reviews single column */
  .reviews-wall.g3 { grid-template-columns: 1fr; }

  /* Testi author smaller on phone */
  .testi-avatar-placeholder, .testi-avatar-img { width: 40px; height: 40px; }
  .testi-author { gap: 10px; }
  .testi-author strong { font-size: 0.82rem; }
  .testi-author span { font-size: 0.72rem; }

  /* Ad mockups smaller on phone */
  .ad-mockup { width: 90%; max-width: 200px; }

  /* Smaller wave dividers on small phones */
  .wave-divider svg { height: 24px; }
}
