/*
Theme Name: Davor Dolinar
Theme URI: https://davordolinar.com
Author: Davor Dolinar
Author URI: https://davordolinar.com
Description: Premium personal brand theme — dark, editorial, performance marketing expert.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: davordolinar
Tags: custom, dark, modern, editorial, personal-brand
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:            #f4f6fb;
  --bg-subtle:     #e8edf5;
  --bg-card:       #ffffff;
  --bg-section:    #eef1f8;
  --text:          #0f111a;
  --text-muted:    #555d6e;
  --text-dim:      #8b95a8;
  --accent-blue:   #2563eb;
  --accent-gold:   #2563eb;
  --accent:        #2563eb;
  --border:        rgba(15, 17, 26, 0.10);
  --border-accent: rgba(37, 99, 235, 0.30);
  --font-heading:  'DM Serif Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --max-width:     1280px;
  --sp:            120px;
  --sp-sm:         72px;
  --radius:        3px;
  --radius-lg:     8px;
  --t:             0.3s ease;
  --shadow:        0 8px 48px rgba(15, 17, 26, 0.10);
  --glow-blue:     0 0 60px rgba(37, 99, 235, 0.15);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body { overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 400;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw,  5.25rem); }
h2 { font-size: clamp(2rem,   4vw,  3.75rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

section { padding: var(--sp) 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(28, 26, 23, 0.22);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--t), gap var(--t);
}
.link-arrow:hover { color: var(--text); gap: 0.6rem; }
.link-arrow::after { content: '→'; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 16px 0;
  background: rgba(244, 246, 251, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  color: var(--text);
}
.nav-logo .dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 5px 4px;
  overflow: hidden;
}
.lang-opt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--t);
}
.lang-opt.active {
  background: var(--accent);
  color: #0d0d0d;
}
.lang-opt:not(.active):hover { color: var(--text-muted); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 4rem);
  color: var(--text);
  transition: color var(--t);
  line-height: 1;
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-nav-lang {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.mobile-lang-btn {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all var(--t);
}
.mobile-lang-btn.active {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse 80% 70% at 65% 35%, rgba(37,99,235,0.10) 0%, transparent 65%),
              radial-gradient(ellipse 50% 60% at 5% 85%, rgba(37,99,235,0.06) 0%, transparent 55%),
              var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 { margin-bottom: 1.5rem; line-height: 1.1; }

.hero-headline-highlight {
  display: inline;
  color: var(--accent);
  font-style: italic;
  position: relative;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.35);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-image {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
/* hero photo slides in from right on load */
.hero-image.fade-in {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.hero-image.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* wrapper keeps position context for the badges */
.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 520px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
}

/* subtle inner border + bottom fade */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--border-accent);
  background: linear-gradient(to top, rgba(244,246,251,0.18) 0%, transparent 30%);
  pointer-events: none;
}

/* floating stat badges */
.hero-img-badge {
  position: absolute;
  right: 1.25rem;
  top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  box-shadow: 0 8px 32px rgba(37,99,235,0.14), 0 2px 8px rgba(15,17,26,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 2;
}
.hero-img-badge--bottom {
  top: auto;
  bottom: 2.5rem;
  right: auto;
  left: 1.25rem;
  animation-delay: 2s;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero-img-badge-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-img-badge-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.hero-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 460px;
}
.hero-logo-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 28px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.hero-logo-badge img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: brightness(0);
  opacity: 0.4;
  transition: opacity 0.25s ease;
}
.hero-logo-badge:hover {
  border-color: var(--border-accent);
  box-shadow: 0 4px 16px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.hero-logo-badge:hover img {
  filter: brightness(0);
  opacity: 1;
}

/* ============================================================
   CLIENTS STRIP
   ============================================================ */
.clients-section {
  padding: 3.5rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.clients-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: clientsScroll 28s linear infinite;
}
.clients-track:hover {
  animation-play-state: paused;
}
.clients-track img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.clients-track img:hover {
  opacity: 1;
}
/* white logos need inversion to show on light bg */
.clients-track img.logo-invert {
  mix-blend-mode: normal;
  filter: invert(1);
}
.clients-track img.logo-invert:hover {
  filter: invert(1);
}
@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-section {
  background: linear-gradient(160deg, #e8edf5 0%, #edf1f9 60%, #e8edf5 100%);
  position: relative;
  overflow: hidden;
}
.pain-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pain-inner h2 { margin-bottom: 1rem; }
.pain-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* 6-card pain grid */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 3.5rem;
}
.pain-card {
  padding: 2rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.pain-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.pain-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.pain-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.pain-item:hover {
  border-color: var(--border-accent);
  background: rgba(22, 22, 22, 0.9);
}

.pain-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pain-check svg {
  width: 10px; height: 10px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
}

.pain-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.pain-conclusion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-family: var(--font-heading);
  color: var(--text);
  font-style: italic;
}
.pain-arrow {
  font-size: 1.5rem;
  color: var(--accent);
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.solution-image {
  position: relative;
}
.solution-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
}
.solution-image::before {
  content: '';
  position: absolute;
  top: 22px; left: 22px;
  right: -22px; bottom: -22px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  z-index: -1;
}

.solution-content h2 { margin-bottom: 1.5rem; }
.solution-content p { margin-bottom: 2rem; max-width: 480px; }

/* ============================================================
   HOW I WORK
   ============================================================ */
.how-section {
  background: linear-gradient(160deg, #e8edf5 0%, #edf1f9 50%, #e8edf5 100%);
}

.how-header {
  text-align: center;
  margin-bottom: 5rem;
}
.how-header h2 { margin-top: 0.5rem; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.how-step {
  background: var(--bg-card);
  padding: 3rem 2.75rem;
  transition: background var(--t), box-shadow var(--t);
}
.how-step:hover {
  background: #f0f4fc;
  box-shadow: inset 0 1px 0 rgba(37,99,235,0.25);
}

.how-step-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: rgba(37, 99, 235, 0.18);
  line-height: 1;
  margin-bottom: 1.75rem;
  transition: color var(--t);
  display: block;
}
.how-step:hover .how-step-num { color: rgba(37, 99, 235, 0.55); }

.how-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.how-step p { font-size: 0.95rem; margin: 0; }

/* ============================================================
   CLIENT LOGOS MARQUEE
   ============================================================ */
.logos-section {
  padding: 56px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}

.logos-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.marquee-wrapper { overflow: hidden; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-set {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 0 1.75rem;
}

.logo-badge {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all var(--t);
}
.logo-badge:hover {
  color: var(--text-muted);
  border-color: var(--border-accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STATS / NUMBERS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #eaeffa 0%, #e4ecf8 40%, #e8eef9 70%, #eaeffa 100%);
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.stats-header {
  text-align: center;
  margin-bottom: 5rem;
}
.stats-header h2 { margin-top: 0.5rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 2rem;
  text-align: center;
  transition: background var(--t);
}
.stat-item:hover { background: rgba(255, 255, 255, 0.92); }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.9rem;
  display: block;
}
.stat-number .count { color: var(--accent); }

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-header { margin-bottom: 4rem; }
.testimonials-header h2 { margin-top: 0.5rem; }

.testimonial-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.video-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.video-wrapper video { width: 100%; display: block; }
.video-caption {
  padding: 1.25rem 1.5rem;
}
.video-caption strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}
.video-caption span {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.testimonial-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.quote-block {
  border-left: 2px solid var(--accent);
  padding-left: 2.25rem;
}
.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.quote-block cite {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: normal;
}
.quote-block cite strong {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  background: linear-gradient(180deg, #e8edf5 0%, #e4eaf4 50%, #e8edf5 100%);
}

.services-header {
  margin-bottom: 4rem;
}
.services-header h2 { margin-top: 0.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 2.75rem 2.5rem;
  transition: background var(--t), box-shadow var(--t);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.service-card:hover { background: #f0f4fc; }
.service-card:hover::after { opacity: 1; }

.service-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #0d1224 0%, #111a35 40%, #0f1830 70%, #0d1224 100%);
  border-top: 1px solid rgba(37,99,235,0.3);
  border-bottom: 1px solid rgba(37,99,235,0.3);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37, 99, 235, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: #eef2ff; }
.cta-section .cta-sub { color: #8b9ab8; }
.cta-section .btn-outline {
  border-color: rgba(200, 215, 255, 0.2);
  color: #eef2ff;
}
.cta-section .btn-outline:hover {
  border-color: #60a5fa;
  color: #60a5fa;
}

.cta-inner { position: relative; }
.cta-inner h2 { margin-bottom: 1rem; }

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 6rem;
  align-items: center;
}
.about-hero-image img {
  width: 100%;
  height: 72vh;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
}
.about-hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-size: clamp(2rem, 3.5vw, 3rem);
  max-width: 540px;
}
.about-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Story */
.story-section { background: var(--bg-subtle); }
.story-inner {
  max-width: 780px;
  margin: 0 auto;
}
.story-inner p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0;
}

/* Values */
.values-section {}
.values-header { margin-bottom: 4rem; }
.values-header h2 { margin-top: 0.5rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-card {
  background: var(--bg-card);
  padding: 3rem 3.25rem;
  transition: background var(--t);
}
.value-card:hover { background: var(--bg-subtle); }
.value-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.value-card h3 { font-size: 1.4rem; margin-bottom: 0.9rem; }
.value-card p { font-size: 0.95rem; margin: 0; }

/* Work */
.work-section { background: var(--bg-subtle); }
.work-header { margin-bottom: 4rem; }
.work-header h2 { margin-top: 0.5rem; }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.work-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.work-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card);
}
.work-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.work-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.work-card p { font-size: 0.9rem; margin: 0; }

/* Personal */
.personal-section {}
.personal-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.personal-inner h2 { margin-bottom: 1.5rem; }
.personal-inner p { margin-bottom: 3rem; }
.personal-hobbies {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hobby-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 30px;
  transition: border-color var(--t);
}
.hobby-item:hover { border-color: var(--border-accent); }
.hobby-icon { font-size: 1rem; }

/* About CTA */
.about-cta-section {
  background: var(--bg-subtle);
  text-align: center;
}
.about-cta-section h2 { margin-bottom: 2.75rem; }
.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================================
   COACHING PAGE
   ============================================================ */
.coaching-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
}
.coaching-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.coaching-hero-content h1 { margin-bottom: 1.5rem; font-size: clamp(2rem, 3.5vw, 3rem); max-width: 520px; line-height: 1.15; }
.coaching-hero-content .hero-sub { margin-bottom: 2.75rem; }
.coaching-hero-image img {
  width: 100%;
  height: 78vh;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
}

/* Coaching hero badges */
.coaching-hero-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.coaching-hero-img-wrap img {
  width: 100%;
  height: 78vh;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  display: block;
}
.coaching-hero-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
}
.coaching-hero-badge--top { top: 2rem; right: -1.5rem; }
.coaching-hero-badge--bottom { bottom: 2.5rem; left: -1.5rem; }
.chb-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
}
.chb-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Opportunity chart */
.opp-chart-wrap {
  margin-top: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.opp-chart-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.opp-chart { display: flex; flex-direction: column; gap: 1.25rem; }
.opp-chart-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 1.5rem;
}
.opp-chart-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: right;
}
.opp-chart-bar-wrap { position: relative; height: 42px; }
.opp-chart-bar {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.opp-chart-bar--demand { background: var(--accent); }
.opp-chart-bar--supply { background: #94a3b8; }
.opp-chart-bar--salary { background: #10b981; }
.opp-chart-note {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* Pain cards grid */
.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.pain-card-new {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--t), transform var(--t);
}
.pain-card-new:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pain-card-icon { display: block; width: 36px; height: 36px; color: var(--accent); }
.pain-card-icon svg { width: 100%; height: 100%; }
.pain-card-new p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .pain-cards-grid { grid-template-columns: 1fr 1fr; }
  .opp-chart-row { grid-template-columns: 120px 1fr; }
  .coaching-hero-badge--top { right: 0; }
  .coaching-hero-badge--bottom { left: 0; }
}
@media (max-width: 480px) {
  .pain-cards-grid { grid-template-columns: 1fr; }
}

/* Why me */
.coaching-whyme { padding: var(--sp) 0; background: var(--bg); }
.whyme-inner {
  max-width: 820px;
  margin: 0 auto;
}
.whyme-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  display: block;
}
.whyme-content h2 { margin: 0.75rem 0 1.25rem; }
.whyme-content > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.whyme-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.whyme-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.whyme-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 1px;
}
.whyme-icon svg { width: 100%; height: 100%; }
@media (max-width: 860px) {
  .whyme-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .whyme-image img { height: 320px; }
}

/* Coaching pain */
/* coaching opportunity section */
.coaching-opportunity {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.opp-header { text-align: center; margin-bottom: 3rem; }
.opp-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.opp-screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.opp-screenshot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.opp-screenshot-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.opp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.opp-stat {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
}
.opp-stat-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.opp-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Recognition section */
.coaching-recognition { padding: var(--sp) 0; background: var(--bg-section); }
.recognition-inner {
  max-width: 760px;
  margin: 0 auto;
}
.recognition-inner .section-label { display: block; margin-bottom: 2.5rem; }
.recognition-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.recognition-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.55;
}
.recognition-item:first-child { border-top: 1px solid var(--border); }
.recognition-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
}
.recognition-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%) rotate(45deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.recognition-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
}

.coaching-pain { background: var(--bg-subtle); }
.coaching-pain-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.coaching-pain-inner h2 { margin-bottom: 3.5rem; }

/* Curriculum */
.curriculum-header { margin-bottom: 4rem; }
.curriculum-header h2 { margin-top: 0.5rem; }
.module-list {
  display: flex;
  flex-direction: column;
}
.module-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background var(--t);
}
.module-item:first-child { border-top: 1px solid var(--border); }
.module-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--border);
  line-height: 1;
  padding-top: 6px;
  transition: color var(--t);
}
.module-item:hover .module-num { color: var(--accent); }
.module-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}
.module-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.module-bullet {
  font-size: 0.75rem;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.module-outcome {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: var(--accent);
  font-style: italic;
  line-height: 1.5;
}

.testimonial-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0077b5;
  text-decoration: none;
  margin-top: 0.35rem;
  transition: opacity var(--t);
}
.testimonial-linkedin:hover { opacity: 0.75; }

/* Coaching single video */
.coaching-testimonial-video {
  max-width: 720px;
  margin: 0 auto;
}

/* Coaching testimonial grid */
.coaching-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.coaching-testimonial-card {
  background: var(--bg-card, #fff);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.coaching-testimonial-card video {
  width: 100%;
  display: block;
  background: #000;
}
@media (max-width: 900px) {
  .coaching-testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* Outcomes */
.outcomes-section { background: var(--bg-section); padding: var(--sp) 0; }
.outcomes-header { margin-bottom: 3.5rem; }
.outcomes-header h2 { margin-top: 0.5rem; }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.outcome-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}
.outcome-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}
@media (max-width: 640px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* Details card */
.details-section { background: var(--bg-subtle); }
.details-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.details-card-header {
  padding: 2.75rem 3rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.details-card-header h2 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.details-card-header p { font-size: 0.9rem; margin: 0; }
.details-body { padding: 0 3rem; }
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.detail-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.detail-value.price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
}
.details-card-footer {
  padding: 2.25rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* For who / not for who */
.forwho-section {}
.forwho-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.forwho-col {
  background: var(--bg-card);
  padding: 3.5rem;
}
.forwho-col.not-for { background: var(--bg-subtle); }
.forwho-col h3 { font-size: 1.3rem; margin-bottom: 2.25rem; }
.forwho-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.forwho-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.forwho-col .forwho-icon {
  background: rgba(37, 99, 235, 0.10);
  color: var(--accent);
}
.forwho-col.not-for .forwho-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Process steps */
.process-section { background: var(--bg-subtle); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header h2 { margin-top: 0.5rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.process-step {
  background: var(--bg-card);
  padding: 2.75rem 2.25rem;
  text-align: center;
  transition: background var(--t);
  position: relative;
}
.process-step:hover { background: var(--bg-subtle); }
.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: opacity var(--t);
}
.process-step:hover .process-step-num { opacity: 0.6; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.875rem; margin: 0; }

/* Testimonials placeholder */
.coaching-testimonials-header { text-align: center; margin-bottom: 1.25rem; }
.coaching-testimonials-header h2 { margin-top: 0.5rem; }
.coming-soon-text {
  text-align: center;
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
}
.placeholder-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.placeholder-card {
  min-height: 220px;
  border: 1px dashed rgba(240, 237, 232, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 22, 22, 0.5);
}
.placeholder-card span {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Apply form */
.apply-section { background: var(--bg-subtle); }
.apply-inner {
  max-width: 680px;
  margin: 0 auto;
}
.apply-inner h2 { margin-bottom: 0.9rem; }
.apply-sub { margin-bottom: 3rem; }

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  padding: 14px 18px;
  transition: border-color var(--t), background var(--t);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-subtle);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 148px; }
.form-submit { margin-top: 0.5rem; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #1a1f2e 0%, #111624 100%);
  border-top: 1px solid rgba(37, 99, 235, 0.25);
  padding: 64px 0 36px;
}
.site-footer .footer-logo { color: #eef2ff; }
.site-footer .footer-nav a { color: #6b7fa8; }
.site-footer .footer-nav a:hover { color: #eef2ff; }
.site-footer .footer-copy { color: #3d4f72; }
.site-footer .social-link { border-color: rgba(100, 140, 255, 0.18); color: #6b7fa8; }
.site-footer .social-link:hover { border-color: #60a5fa; color: #60a5fa; }
.site-footer .lang-toggle { border-color: rgba(100, 140, 255, 0.18); }
.site-footer .lang-opt { color: #3d4f72; }
.site-footer .lang-opt:not(.active):hover { color: #6b7fa8; }
.site-footer .footer-bottom { border-top-color: rgba(100, 140, 255, 0.1); }

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1;
}
.footer-logo .dot { color: var(--accent); }

.footer-nav {
  display: flex;
  gap: 2.25rem;
}
.footer-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
  letter-spacing: 0.03em;
}
.footer-nav a:hover { color: var(--text); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.social-link svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sp: 80px; --sp-sm: 56px; }
  .container { padding: 0 28px; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { display: flex; order: -1; }
  .hero-img-wrap { height: 56vh; min-height: 360px; max-height: 520px; }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }

  .solution-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .solution-image::before { display: none; }
  .solution-image img { height: 420px; }

  .how-steps { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-videos { grid-template-columns: 1fr; }
  .testimonial-quotes { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .about-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero-image { display: none; }

  .values-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }

  .coaching-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .coaching-hero-image { display: block; order: -1; }
  .coaching-hero-image img,
  .coaching-hero-img-wrap img { height: 56vh; min-height: 360px; max-height: 520px; }

  .forwho-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .placeholder-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --sp: 60px; }
  .container { padding: 0 20px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .module-item { grid-template-columns: 50px 1fr; gap: 1.25rem; }
  .module-num { font-size: 2rem; }

  .forwho-col { padding: 2.5rem 2rem; }
  .details-card-header,
  .details-body,
  .details-card-footer { padding-left: 2rem; padding-right: 2rem; }

  .footer-main { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; gap: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .about-cta-buttons { flex-direction: column; align-items: center; }
  .personal-hobbies { flex-direction: column; align-items: center; }
  .coaching-hero-content .hero-ctas { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   RESULTS TICKER
   ============================================================ */
.ticker-section {
  background: var(--accent);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-set {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 2.5rem;
}
.ticker-sep {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  line-height: 1;
  margin: 0 0.25rem;
}
.ticker-item strong { color: #ffffff; }


/* ============================================================
   CASE STUDY CARDS
   ============================================================ */
.cases-section {}
.cases-header { margin-bottom: 4rem; }
.cases-header h2 { margin-top: 0.5rem; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(37,99,235,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.case-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12), 0 4px 20px rgba(0,0,0,0.06);
}
.case-card:hover::before { transform: scaleX(1); }

.case-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.case-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.case-tag {
  font-size: 0.62rem;
  color: var(--text-dim);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.case-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-subtle);
  border-radius: var(--radius);
}
.case-metric-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-metric-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.case-old { color: var(--text-dim); text-decoration: line-through; font-weight: 400; }
.case-arrow { color: var(--accent); font-size: 0.75rem; }
.case-new { color: var(--accent); }
.case-single { color: var(--text); }

.case-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}


/* ============================================================
   FACEBOOK REVIEWS
   ============================================================ */
.fb-reviews-section {
  background: linear-gradient(180deg, #e8edf5 0%, #ecf0f9 50%, #e8edf5 100%);
}
.fb-reviews-header { margin-bottom: 1.25rem; }
.fb-reviews-header h2 { margin-top: 0.5rem; }

.fb-aggregate {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 380px;
}
.fb-score {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  color: var(--text);
  line-height: 1;
  flex-shrink: 0;
}
.fb-stars-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stars {
  display: flex;
  gap: 3px;
}
.star { color: #f5a623; font-size: 1.1rem; }
.fb-count {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.fb-platform-badge {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.fb-platform-badge svg {
  width: 28px; height: 28px;
  fill: #1877f2;
}
.fb-platform-badge span {
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fb-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.fb-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.fb-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.fb-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fb-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.fb-profile-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
}
.fb-profile-info span {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.fb-logo-icon svg {
  width: 18px; height: 18px;
  fill: #1877f2;
  opacity: 0.6;
}

.fb-recommends {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}
.fb-card-stars { margin-bottom: 0.85rem; }
.fb-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
  color: var(--text-muted);
}
.fb-date {
  margin-top: 0.85rem;
  font-size: 0.7rem;
  color: var(--text-dim);
}


/* ============================================================
   PROOF WALL (masonry)
   ============================================================ */
.proof-wall-section {
  background: linear-gradient(180deg, #f4f6fb 0%, #e8edf5 40%, #e4eaf4 60%, #f4f6fb 100%);
}
.proof-wall-header { margin-bottom: 3.5rem; }
.proof-wall-header h2 { margin-top: 0.5rem; }

.proof-wall {
  columns: 3;
  column-gap: 1.25rem;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  break-inside: avoid;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.proof-card blockquote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-style: italic;
}
.proof-card blockquote.pull {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.proof-card-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.proof-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.proof-info { flex: 1; }
.proof-name {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.2;
}
.proof-role {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.proof-platform {
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.proof-stars { margin-bottom: 0.85rem; }
.proof-stars .star { font-size: 0.85rem; }


/* ============================================================
   VS COMPARISON TABLE
   ============================================================ */
.vs-section {
  background: linear-gradient(160deg, #edf1f9 0%, #e8edf5 50%, #edf1f9 100%);
}
.vs-header { text-align: center; margin-bottom: 4rem; }
.vs-header h2 { margin-top: 0.5rem; }

.vs-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.vs-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vs-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: #eef1f9;
  border-bottom: 2px solid var(--border);
}
.vs-head-cell {
  padding: 1.1rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}
.vs-head-cell:first-child { text-align: left; }
.vs-head-cell.hl {
  background: rgba(37,99,235,0.12);
  color: var(--accent);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
}

.vs-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.vs-row:last-child { border-bottom: none; }
.vs-row:hover { background: rgba(255,255,255,0.025); }

.vs-cell {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-cell:first-child {
  text-align: left;
  justify-content: flex-start;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.vs-cell.hl {
  background: rgba(37,99,235,0.06);
  border-left: 1px solid rgba(37,99,235,0.18);
  border-right: 1px solid rgba(37,99,235,0.18);
  color: var(--text);
  font-weight: 500;
}
.ic-yes  { color: #22c55e; font-size: 1.1rem; }
.ic-no   { color: #ef4444; font-size: 1.1rem; }
.ic-meh  { color: var(--text-dim); font-size: 1rem; }


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {}
.faq-section.on-dark { background: var(--bg-subtle); }
.faq-header { margin-bottom: 3.5rem; }
.faq-header h2 { margin-top: 0.5rem; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 1.25rem;
  background: none;
  border: none;
  transition: color var(--t);
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--text-dim);
  transition: all 0.35s ease;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0d0d;
  transform: rotate(45deg);
}
.faq-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--text-dim);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease, stroke 0.25s ease;
}
.faq-q:hover .faq-arrow { stroke: var(--accent); }
.faq-item.open .faq-arrow { transform: rotate(180deg); stroke: var(--accent); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
  color: var(--text-muted);
}


/* ============================================================
   SPOTS BADGE (coaching urgency)
   ============================================================ */
.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #f87171;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.spots-dot {
  width: 7px; height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: spots-pulse 1.6s ease infinite;
  flex-shrink: 0;
}
@keyframes spots-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}


/* ============================================================
   STICKY FLOATING CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 97;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  pointer-events: none;
}
.sticky-cta.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0f1224;
  color: #eef2ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 26px;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.sticky-cta a:hover {
  transform: scale(1.04) translateY(-2px);
  background: #2563eb;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
}
.sticky-pulse {
  width: 7px; height: 7px;
  background: #60a5fa;
  border-radius: 50%;
  animation: spots-pulse 2s ease infinite;
  flex-shrink: 0;
}


/* ============================================================
   NEW RESPONSIVE — additions
   ============================================================ */
@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .fb-reviews-grid { grid-template-columns: 1fr 1fr; }
  .proof-wall { columns: 2; }
  .vs-table-head,
  .vs-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .cases-grid { grid-template-columns: 1fr; }
  .fb-reviews-grid { grid-template-columns: 1fr; }
  .proof-wall { columns: 1; }
  .vs-table-head,
  .vs-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .vs-cell, .vs-head-cell { padding: 0.9rem 0.6rem; font-size: 0.75rem; }
  .sticky-cta { bottom: 20px; right: 16px; }
  .fb-aggregate { max-width: 100%; }
}

/* ============================================================
   MOBILE OVERFLOW FIXES
   ============================================================ */

/* Global overflow prevention */
html, body { overflow-x: hidden; max-width: 100vw; }
* { box-sizing: border-box; }
.container { padding-left: 1.25rem; padding-right: 1.25rem; }

@media (max-width: 640px) {
  /* Coaching - opp stats 3col → 1col */
  .opp-stats { grid-template-columns: 1fr; }
  .opp-screenshots { grid-template-columns: 1fr; }

  /* Coaching - pain cards 3col → 1col */
  .pain-cards-grid { grid-template-columns: 1fr; }

  /* Coaching - outcomes 2col → 1col */
  .outcomes-grid { grid-template-columns: 1fr; }

  /* Home - stats grid */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Home - pain cards 3col → 1col */
  .pain-cards { grid-template-columns: 1fr !important; }

  /* Home - services 3col → 1col */
  .services-grid { grid-template-columns: 1fr; }

  /* Home - cases 3col → 1col */
  .cases-grid { grid-template-columns: 1fr; }

  /* Ticker — prevent overflow */
  .ticker-section { overflow: hidden; }

  /* Clients strip — prevent overflow */
  .clients-track-wrap { overflow: hidden; }

  /* VS table — hide on mobile, too wide */
  .vs-section { overflow-x: auto; }
  .vs-table { min-width: 480px; }

  /* Form row → stack */
  .form-row { grid-template-columns: 1fr; }

  /* Module chart row */
  .opp-chart-row { grid-template-columns: 100px 1fr; gap: 0.75rem; }

  /* Forwho section → 1col */
  .forwho-inner { grid-template-columns: 1fr; }

  /* Section padding reduce */
  :root { --sp: 64px; --sp-sm: 40px; }
}

/* ============================================================
   COMPREHENSIVE MOBILE FIX v2
   ============================================================ */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 640px) {
  .container { padding-left: 1rem; padding-right: 1rem; width: 100%; }

  /* Home pain cards → 1 col */
  .pain-cards { grid-template-columns: 1fr !important; gap: 1rem; }

  /* Home stats → 2 col */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Home services → 1 col */
  .services-grid { grid-template-columns: 1fr; }

  /* Home cases → 1 col */
  .cases-grid { grid-template-columns: 1fr; }

  /* Home how steps → 1 col */
  .how-steps { grid-template-columns: 1fr; }

  /* Ticker */
  .ticker-section { overflow: hidden; width: 100%; }

  /* Clients strip */
  .clients-track-wrap { overflow: hidden; width: 100%; }

  /* Coaching opp stats → 1 col */
  .opp-stats { grid-template-columns: 1fr; }
  .opp-screenshots { grid-template-columns: 1fr; }

  /* Coaching pain cards → 1 col */
  .pain-cards-grid { grid-template-columns: 1fr; }

  /* Coaching outcomes → 1 col */
  .outcomes-grid { grid-template-columns: 1fr; }

  /* Coaching forwho → 1 col */
  .forwho-inner { grid-template-columns: 1fr !important; }

  /* VS table scroll */
  .vs-wrap { overflow-x: auto; }
  .vs-table { min-width: 500px; }

  /* Form row → stack */
  .form-row { grid-template-columns: 1fr !important; }

  /* Reduce heading sizes */
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem) !important; }
  h2 { font-size: clamp(1.4rem, 5.5vw, 2rem) !important; }

  /* Section spacing */
  :root { --sp: 56px; --sp-sm: 36px; }
}

@media (max-width: 640px) {
  .pain-section, .stats-section, .solution-section,
  .how-section, .cases-section, .testimonials-section,
  .vs-section, .services-section, .cta-section,
  .coaching-hero, .coaching-recognition, .coaching-opportunity,
  .coaching-pain, .coaching-whyme, .curriculum-section,
  .outcomes-section, .details-section, .forwho-section,
  .process-section, .coaching-testimonials-section,
  .faq-section, .apply-section, .clients-section,
  .about-hero, .about-story, .about-values { overflow: hidden; width: 100%; }
}
