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

:root {
  --bg:          #000000;
  --bg-2:        #080808;
  --surface:     #0e0e0e;
  --surface-2:   #141414;
  --card:        rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --amber:       #f59e0b;
  --amber-light: #fbbf24;
  --amber-dim:   rgba(245,158,11,0.1);
  --blue:        #3b82f6;
  --green:       #22c55e;
  --red:         #ef4444;
  --text:        #ffffff;
  --text-muted:  rgba(255,255,255,0.6);
  --text-dim:    rgba(255,255,255,0.32);
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1 strong, h2 strong, h3 strong { font-weight: 600; color: var(--text); }
.h-dim { color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════════════════ */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section        { padding: 140px 0; }
.section-dark   { background: var(--surface); }
.section-stats  { padding: 0; background: var(--bg); }

.section + .section,
.section-dark + .section,
.section + .section-dark { border-top: 1px solid rgba(255,255,255,0.05); }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--amber);
  color: #000;
  animation: btn-glow-pulse 3.5s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.45), 0 0 80px rgba(245,158,11,0.15);
  animation: none;
}

@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245,158,11,0.25); }
  50%       { box-shadow: 0 4px 48px rgba(245,158,11,0.5), 0 0 80px rgba(245,158,11,0.12); }
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.24);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--amber);
  color: #000;
  padding: 10px 20px;
  font-size: 14px;
  animation: none;
  box-shadow: 0 2px 16px rgba(245,158,11,0.3);
}
.btn-nav:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(245,158,11,0.5);
}

.w-full { width: 100%; }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 24px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  backdrop-filter: blur(20px);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav-mobile a { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.nav-mobile a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(245,158,11,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(59,130,246,0.04) 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(0,0,0,0.9) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}

.hero-content { position: relative; }

/* ─── SECTION TAG (pill badge — used everywhere) ─ */
.section-tag {
  display: inline-block;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.22);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

/* Hero-specific badge (identical style, kept for clarity) */
.badge {
  display: inline-block;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.22);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-headline .accent {
  font-weight: 600;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 45%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── CONSTRUCTION STATS STRIP ──────────────────── */
.hero-gc-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.gc-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gc-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.gc-stat-val  { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.gc-stat-name { font-size: 12px; color: var(--text-muted); font-weight: 300; }

/* ─── HERO VISUAL ─────────────────────────────── */
.hero-visual {
  position: relative;
  padding: 20px 80px 120px 10px;
}

@keyframes float-device {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.device-browser {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.025),
    0 20px 60px rgba(0,0,0,0.8),
    0 0 120px rgba(245,158,11,0.04);
  position: relative;
  z-index: 2;
  animation: float-device 8s ease-in-out infinite;
}

.device-chrome {
  background: #1a1a1a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.chrome-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red   { background: #ff5f57; }
.dot-amber { background: #febc2e; }
.dot-green { background: #28c840; }
.chrome-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 5px;
  height: 22px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.device-screen { position: relative; height: 310px; overflow: hidden; }

.mock-site {
  position: absolute;
  inset: 0;
  background: #070707;
  display: flex;
  flex-direction: column;
}

.mock-nav-bar {
  height: 30px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  flex-shrink: 0;
}
.mock-logo-bar  { width: 64px; height: 9px; background: var(--amber); border-radius: 3px; opacity: 0.9; }
.mock-nav-spacer { flex: 1; }
.mock-nav-link  { width: 32px; height: 5px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.mock-nav-btn   { width: 52px; height: 16px; background: rgba(245,158,11,0.75); border-radius: 3px; }
.mock-hero-bg {
  background: linear-gradient(130deg, #080808 0%, #0e1117 100%);
  padding: 16px 14px 12px;
  flex-shrink: 0;
}
.mock-badge-pill { width: 110px; height: 9px; background: rgba(245,158,11,0.15); border-radius: 100px; margin-bottom: 10px; border: 1px solid rgba(245,158,11,0.2); }
.mock-h1-a { width: 88%; height: 11px; background: rgba(255,255,255,0.7); border-radius: 3px; margin-bottom: 7px; }
.mock-h1-b { width: 70%; height: 11px; background: rgba(255,255,255,0.2); border-radius: 3px; margin-bottom: 7px; }
.mock-h1-c { width: 80%; height: 11px; background: var(--amber); border-radius: 3px; margin-bottom: 13px; opacity: 0.85; }
.mock-sub-a { width: 96%; height: 5px; background: rgba(255,255,255,0.18); border-radius: 2px; margin-bottom: 5px; }
.mock-sub-b { width: 78%; height: 5px; background: rgba(255,255,255,0.18); border-radius: 2px; margin-bottom: 14px; }
.mock-cta-row { display: flex; gap: 7px; }
.mock-cta-fill { width: 82px; height: 20px; background: var(--amber); border-radius: 4px; opacity: 0.9; }
.mock-cta-out  { width: 72px; height: 20px; background: transparent; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; }
.mock-trust-row {
  background: rgba(255,255,255,0.012);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mock-trust-txt  { width: 55px; height: 5px; background: rgba(255,255,255,0.1); border-radius: 2px; flex-shrink: 0; }
.mock-trust-sep  { width: 1px; height: 14px; background: rgba(255,255,255,0.06); }
.mock-logos-row  { display: flex; gap: 10px; align-items: center; }
.mock-logo-chip  { width: 38px; height: 7px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.mock-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 10px 14px;
  flex: 1;
}
.mock-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 5px;
  padding: 9px;
}
.mock-card-icon { width: 18px; height: 18px; border-radius: 4px; margin-bottom: 7px; }
.mock-card-icon-blue  { background: rgba(59,130,246,0.3); }
.mock-card-icon-amber { background: rgba(245,158,11,0.3); }
.mock-card-t  { width: 68%; height: 6px; background: rgba(255,255,255,0.5); border-radius: 2px; margin-bottom: 5px; }
.mock-card-l  { width: 92%; height: 4px; background: rgba(255,255,255,0.14); border-radius: 2px; margin-bottom: 3px; }
.mock-card-l2 { width: 75%; height: 4px; background: rgba(255,255,255,0.14); border-radius: 2px; }
.mock-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #070707);
  pointer-events: none;
}

/* Phone mockup */
.device-phone {
  position: absolute;
  bottom: 38px;
  right: 14px;
  width: 118px;
  height: 224px;
  background: #111;
  border-radius: 22px;
  border: 6px solid #1c1c1c;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.9);
  overflow: hidden;
  z-index: 3;
  animation: float-phone 8s ease-in-out infinite 1.5s;
}
.phone-screen { position: absolute; inset: 0; background: #070707; }
.phone-notch {
  width: 36px; height: 8px;
  background: #111;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.phone-mock-nav { height: 22px; background: #0a0a0a; border-bottom: 1px solid rgba(255,255,255,0.04); margin-top: 1px; }
.phone-mock-hero { padding: 10px 8px; background: linear-gradient(130deg, #080808, #0e1117); }
.phone-h1-a { width: 90%; height: 8px; background: rgba(255,255,255,0.65); border-radius: 2px; margin-bottom: 5px; }
.phone-h1-b { width: 72%; height: 8px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-bottom: 5px; }
.phone-h1-c { width: 82%; height: 8px; background: var(--amber); border-radius: 2px; margin-bottom: 10px; opacity: 0.8; }
.phone-sub  { width: 88%; height: 4px; background: rgba(255,255,255,0.18); border-radius: 2px; margin-bottom: 10px; }
.phone-cta  { width: 70%; height: 16px; background: var(--amber); border-radius: 3px; opacity: 0.85; }

/* Guarantee Badge — hidden */
.guarantee-badge { display: none; }

/* ─── old badge spin (unused now) ─── */
@keyframes badge-outer-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes badge-inner-counter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.guarantee-badge {
  position: absolute;
  top: -2px; right: 2px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(#f59e0b 0deg, #fbbf24 90deg, #d97706 180deg, #f59e0b 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1), 0 8px 40px rgba(245,158,11,0.5);
  z-index: 4;
  animation: badge-outer-spin 20s linear infinite;
}
.guarantee-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #000;
}
.badge-inner {
  position: relative; z-index: 1; text-align: center; line-height: 1.15;
  animation: badge-inner-counter 20s linear infinite;
}
.badge-pct  { display: block; font-size: 19px; font-weight: 800; color: var(--amber); letter-spacing: -0.03em; }
.badge-line { display: block; font-size: 7px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.04em; }

/* Mini testimonial */
.hero-mini-review {
  position: absolute;
  bottom: 4px; left: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 14px 16px;
  width: 268px;
  z-index: 4;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06);
}
.mini-review-stars  { color: var(--amber); font-size: 11px; letter-spacing: 1px; margin-bottom: 7px; }
.mini-review-text   { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.55; margin-bottom: 8px; font-style: italic; }
.mini-review-author { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35); }

/* Trust Strip — Marquee */
.trust-strip {
  position: relative; z-index: 2;
  padding: 28px 0;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.trust-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: nowrap; overflow: hidden;
}
.trust-label {
  font-size: 11px; font-weight: 600; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0;
}
.trust-logos-overflow {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-logos-track {
  display: flex; gap: 60px; width: max-content;
  animation: marquee-scroll 24s linear infinite;
}
.trust-logos-track:hover { animation-play-state: paused; }
.trust-logo-item {
  font-size: 13px; font-weight: 600; color: var(--text-dim);
  letter-spacing: 0.05em; white-space: nowrap; text-transform: uppercase;
  transition: color var(--transition);
}
.trust-logo-item:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 80px; }
.section-title {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px; font-weight: 300;
  color: var(--text-muted);
  max-width: 480px; margin: 0 auto; line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   PROBLEM / SOLUTION — PAIRED ROWS
═══════════════════════════════════════════════════ */
.ps-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

/* Column headers */
.ps-col-header {
  padding: 44px 48px 36px;
}
.ps-col-problem {
  background: rgba(239,68,68,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ps-col-solution {
  background: rgba(245,158,11,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ps-label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 16px;
}
.ps-label-problem { color: rgba(239,68,68,0.75); }
.ps-label-solution { color: var(--amber); }

.ps-headline {
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 300; letter-spacing: -0.025em; line-height: 1.2;
  color: var(--text);
}

/* Paired items — direct grid children */
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 48px;
  font-size: 15px; font-weight: 300; line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ps-item:nth-last-child(1),
.ps-item:nth-last-child(2) { border-bottom: none; }

.ps-item.ps-bad {
  background: rgba(239,68,68,0.02);
  color: rgba(255,255,255,0.55);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ps-item.ps-good {
  background: rgba(34,197,94,0.02);
  color: rgba(255,255,255,0.6);
}

.ps-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.ps-icon-bad  { background: rgba(239,68,68,0.12); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.ps-icon-good { background: rgba(245,158,11,0.12); color: var(--amber); border: 1px solid rgba(245,158,11,0.25); }

/* ═══════════════════════════════════════════════════
   WHAT YOU GET — FEATURES
═══════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 60px;
}

.feature-card {
  background: var(--surface-2);
  padding: 52px 48px;
  transition: background var(--transition);
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: rgba(255,255,255,0.04); }

/* Blue accent — website card */
.feature-card-blue {
  background: rgba(59,130,246,0.04);
}
.feature-card-blue:hover { background: rgba(59,130,246,0.07); }

.feature-card-accent {
  background: rgba(245,158,11,0.04);
  border-right: none;
}
.feature-card-accent:hover { background: rgba(245,158,11,0.07); }

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
}
.feature-icon-blue {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.2);
  color: #3b82f6;
}
.feature-icon-accent {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.15);
  color: var(--amber);
}

.feature-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px;
}
.feature-tag-blue   { color: #3b82f6; }
.feature-tag-accent { color: var(--amber); }

.feature-title {
  font-size: clamp(19px, 1.7vw, 27px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 28px; color: var(--text);
}

.feature-list { display: flex; flex-direction: column; gap: 13px; flex: 1; }
.feature-list li {
  font-size: 15px; color: var(--text-muted);
  padding-left: 18px; position: relative;
  line-height: 1.6; font-weight: 300;
}
.feature-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--text-dim); font-size: 13px;
}

.feature-pricing {
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 10px;
}
.feature-pricing-main {
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.pricing-free {
  font-size: 13px; font-weight: 700; color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 2px 10px; border-radius: 100px;
}
.pricing-then { font-size: 13px; color: var(--text-muted); }
.pricing-amount { font-size: 20px; font-weight: 700; color: var(--amber); letter-spacing: -0.03em; }
.pricing-period { font-size: 13px; color: var(--text-muted); }
.pricing-note { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

.feature-badge {
  position: absolute; top: 28px; right: 28px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--amber); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; padding: 5px 12px;
  border-radius: 100px; text-transform: uppercase;
}

.section-callout {
  text-align: center; font-size: 17px;
  color: var(--text-muted); font-weight: 300;
  line-height: 1.75; max-width: 640px; margin: 0 auto;
  padding: 40px 0 0; border-top: 1px solid rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════ */
.stats-section-wrapper {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
}
.stat-card { padding: 80px 48px; text-align: center; }
.stat-number {
  font-size: clamp(64px, 7vw, 108px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 12px;
}
.stat-unit { font-size: 0.45em; font-weight: 300; color: var(--amber); vertical-align: super; margin-left: 2px; }
.stat-label {
  font-size: 14px; color: var(--text-muted); font-weight: 300;
  max-width: 180px; margin: 0 auto; line-height: 1.5;
}
.stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.07); align-self: center; }

/* ═══════════════════════════════════════════════════
   CASE STUDY
═══════════════════════════════════════════════════ */
.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.case-study-content {
  background: var(--surface);
  padding: 56px 52px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.case-study-company {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 24px;
}
.case-study-quote {
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.8; margin-bottom: 36px;
  font-style: italic;
  border-left: 2px solid rgba(245,158,11,0.3);
  padding-left: 24px;
}
.case-study-author { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.case-study-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--amber); flex-shrink: 0;
}
.case-study-name  { font-size: 15px; font-weight: 600; color: var(--text); }
.case-study-title { font-size: 13px; color: var(--text-muted); font-weight: 300; margin-top: 2px; }
.case-study-stat  { display: flex; align-items: center; gap: 18px; }
.case-stat-number {
  font-size: 52px; font-weight: 800; color: var(--amber);
  letter-spacing: -0.04em; line-height: 1;
}
.case-stat-label {
  font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.5; max-width: 180px;
}

.case-study-visual {
  background: var(--surface-2);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.case-visual-card {
  flex: 1; padding: 28px 24px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.case-visual-card-after {
  background: rgba(34,197,94,0.04);
  border-color: rgba(34,197,94,0.14);
}
.case-visual-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px;
}
.case-visual-metric { display: flex; flex-direction: column; margin-bottom: 16px; }
.metric-val  { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.metric-name { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.case-visual-metric.bad  .metric-val { color: rgba(239,68,68,0.75); }
.case-visual-metric.good .metric-val { color: #22c55e; }
.case-visual-arrow { font-size: 22px; color: var(--text-dim); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}
.step-card { padding: 0 32px; }
.step-card:first-child { padding-left: 0; }
.step-card:last-child  { padding-right: 0; }

.step-number {
  font-size: 72px; font-weight: 800; color: var(--text-dim);
  letter-spacing: -0.05em; line-height: 1; margin-bottom: 24px;
  transition: color 0.3s ease;
}
.step-card:hover .step-number { color: rgba(245,158,11,0.3); }
.step-title { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); margin-bottom: 12px; }
.step-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.step-connector { font-size: 18px; color: var(--text-dim); padding-top: 28px; flex-shrink: 0; align-self: start; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--surface-2);
  padding: 48px 44px;
  transition: background var(--transition), border-color var(--transition);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* last two in bottom row: remove bottom border */
.testimonial-card:nth-child(3),
.testimonial-card:nth-child(4) { border-bottom: none; }
/* last in each row: remove right border */
.testimonial-card:nth-child(2),
.testimonial-card:nth-child(4) { border-right: none; }

.testimonial-card:hover {
  background: rgba(245,158,11,0.04);
  border-color: rgba(245,158,11,0.1);
}

.testimonial-stars  { color: var(--amber); font-size: 13px; letter-spacing: 2px; margin-bottom: 24px; }
.testimonial-text {
  font-size: 15px; font-weight: 300; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 28px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--text-muted); flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 13px; color: var(--text-dim); font-weight: 300; margin-top: 2px; }
.testimonials-cta { text-align: center; }

/* ═══════════════════════════════════════════════════
   DECISION / VS
═══════════════════════════════════════════════════ */
.section-decision { background: var(--bg); }
.decision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.decision-visual {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.decision-visual-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px;
  align-self: flex-start;
}

/* SaaS competitor items */
.saas-list { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.saas-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}
.saas-name { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 400; }
.saas-price { font-size: 13px; font-weight: 600; }
.saas-price s { color: rgba(239,68,68,0.75); text-decoration: line-through; }

.saas-total {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.saas-total-label { font-weight: 600; color: rgba(255,255,255,0.55); }
.saas-total-val   { font-size: 15px; font-weight: 700; }
.saas-total-val s { color: rgba(239,68,68,0.75); }

.decision-vs {
  display: flex; align-items: center; gap: 16px;
  width: 100%; justify-content: center;
}
.decision-vs-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.decision-vs-text { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--text-dim); }

.systematik-win {
  padding: 20px 28px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  text-align: center;
  width: 100%;
  box-shadow: 0 0 40px rgba(245,158,11,0.06);
}
.systematik-win-row {
  display: flex; justify-content: space-between; align-items: center;
}
.sw-label { font-size: 18px; font-weight: 700; color: var(--amber); letter-spacing: -0.01em; }
.sw-price {
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.sw-price span { font-size: 24px; font-weight: 800; color: var(--amber); }
.sw-sub { display: block; font-size: 12px; color: rgba(245,158,11,0.5); font-weight: 300; margin-top: 6px; text-align: left; }

.decision-copy { }
.decision-title {
  font-size: clamp(26px, 2.8vw, 44px); font-weight: 300;
  letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 36px; color: var(--text);
}
.decision-sub {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 24px;
}
.decision-copy p {
  font-size: 16px; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 18px;
}
.decision-closer { font-size: 18px !important; color: var(--text) !important; margin-bottom: 36px !important; }
.decision-copy .btn { margin-top: 8px; }

/* ═══════════════════════════════════════════════════
   BOOK A CALL
═══════════════════════════════════════════════════ */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.booking-copy { padding-top: 20px; }
.booking-title {
  font-size: clamp(28px, 2.8vw, 46px); font-weight: 300;
  letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 20px; color: var(--text);
}
.booking-sub { font-size: 16px; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 36px; }
.booking-bullets { display: flex; flex-direction: column; gap: 14px; }
.booking-bullet { display: flex; gap: 14px; font-size: 15px; color: var(--text-muted); font-weight: 300; line-height: 1.5; }
.bullet-icon { color: var(--amber); flex-shrink: 0; font-size: 14px; }
.booking-calendar {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}

/* ═══════════════════════════════════════════════════
   BOOKING CALENDAR WIDGET
═══════════════════════════════════════════════════ */
.cal-widget {
  padding: 24px;
  min-height: 360px;
}

/* Header */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-month-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.cal-nav {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  border-radius: 7px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.cal-nav:hover {
  background: var(--amber-dim);
  border-color: rgba(245,158,11,0.3);
  color: var(--amber);
}

/* Day labels row */
.cal-day-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 5px;
}
.cal-day-labels span {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  padding: 4px 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Day grid */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  cursor: default;
  transition: background var(--transition), color var(--transition);
}
.cal-day--empty {}
.cal-day--unavail { color: rgba(255,255,255,0.18); }
.cal-day--avail {
  color: var(--text);
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.cal-day--avail:hover {
  background: var(--amber-dim);
  color: var(--amber);
  border-color: rgba(245,158,11,0.25);
}
.cal-day--selected {
  background: var(--amber) !important;
  color: #000 !important;
  font-weight: 700;
  border-color: transparent !important;
}
.cal-day--today {
  outline: 1px solid rgba(245,158,11,0.35);
  outline-offset: -1px;
}

/* Slots area */
.slot-area {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cal-back {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  padding: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.cal-back:hover { color: var(--text); }
.slot-date-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.slot-date-label {
  font-size: 13px;
  color: var(--text-muted);
}
.slot-date-label strong { color: var(--text); font-weight: 600; }
.slot-tz {
  font-size: 11px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.slot-btn {
  padding: 10px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text-muted);
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  font-family: inherit;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.slot-btn:hover {
  background: var(--amber-dim);
  border-color: rgba(245,158,11,0.3);
  color: var(--amber);
}
.slot-btn--selected {
  background: rgba(245,158,11,0.12);
  border-color: var(--amber);
  color: var(--amber);
  font-weight: 600;
}
.slot-no-avail {
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  padding: 16px 0;
}

/* Booking form */
.cal-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cal-selected-slot {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cal-selected-slot strong { color: var(--amber); font-weight: 600; }
.cal-form-row { margin-bottom: 10px; }
.cal-form input,
.cal-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
}
.cal-form input::placeholder,
.cal-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.cal-form input:focus,
.cal-form textarea:focus { border-color: rgba(245,158,11,0.4); }
.cal-form textarea { resize: vertical; min-height: 72px; }
.cal-submit {
  width: 100%;
  padding: 13px;
  background: var(--amber);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 6px;
  transition: background var(--transition);
  letter-spacing: -0.01em;
}
.cal-submit:hover { background: var(--amber-light); }
.cal-submit:disabled { opacity: 0.6; cursor: default; }
#cal-form-error {
  color: #f87171;
  font-size: 12px;
  margin-top: 8px;
  min-height: 18px;
}

/* Loading */
.cal-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-dim);
  font-size: 13px;
}

/* Success */
.cal-success {
  text-align: center;
  padding: 40px 20px;
}
.cal-success-icon {
  width: 48px;
  height: 48px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #22c55e;
  margin: 0 auto 16px;
}
.cal-success h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.cal-success p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}
.cal-success strong { color: var(--text); font-weight: 600; }

/* Book page — add top padding to clear fixed nav */
.book-page-section {
  padding-top: 120px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 60px; align-items: start; margin-bottom: 52px;
}
.footer-brand .logo-img { height: 22px; margin-bottom: 14px; }
.footer-tagline { font-size: 14px; color: var(--text-dim); font-weight: 300; max-width: 260px; line-height: 1.6; }
.footer-links  { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
  font-size: 14px; color: var(--text-dim); font-weight: 400; transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--text-muted); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; }
.footer-manifesto { font-size: 14px; color: var(--text-dim); font-weight: 300; line-height: 1.7; max-width: 600px; margin-bottom: 16px; font-style: italic; }
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-copy a { color: var(--text-dim); transition: color var(--transition); }
.footer-copy a:hover { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; padding: 120px 0 60px; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .ps-comparison { grid-template-columns: 1fr; }
  .ps-col-problem { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ps-col-solution { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ps-item.ps-bad { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .ps-item.ps-good { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .ps-item:nth-last-child(1) { border-bottom: none; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .feature-card:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .step-connector { display: none; }
  .case-study-card { grid-template-columns: 1fr; }
  .case-study-content { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .case-study-visual { flex-direction: column; }
  .decision-inner, .booking-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stat-card { padding: 48px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stat-card:last-child { border-bottom: none; }
  .hero-gc-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 768px) {
  .container, .nav-inner { padding: 0 24px; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 100px 0; }
  .section-stats  { padding: 0; }
  .hero-headline { font-size: clamp(34px, 7vw, 52px); }
  .section-title  { font-size: clamp(26px, 5vw, 38px); }
  .step-number    { font-size: 52px; }
  .steps-grid     { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { border-right: none; }
  .testimonial-card:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ps-col-header { padding: 32px 28px 24px; }
  .ps-item { padding: 16px 28px; }
  .feature-card { padding: 36px 28px; }
  .hero-mini-review { position: relative; width: 100%; bottom: auto; left: auto; margin-top: 16px; }

  /* ── Hero: tighten gap between nav and badge ── */
  #hero { padding-top: 64px; }
  .hero-grid { padding: 72px 0 48px; }

  /* ── Trust strip: stack label above carousel ── */
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 24px; }
  .trust-logos-overflow { width: 100%; }

  /* ── Situation: thicker separators between each pair ── */
  .ps-item.ps-bad { border-top: 2px solid rgba(255,255,255,0.07); }
  /* Thicker line between header row and first content row (left col only) */
  .ps-comparison > .ps-item.ps-bad:nth-child(3) { border-top: 2px solid rgba(255,255,255,0.18); }

  /* ── Stats: reduce padding top/bottom ── */
  .stat-card { padding: 36px 24px; }

  /* ── Case study: stretch both cards, arrow points down ── */
  .case-study-visual { align-items: stretch; }
  .case-visual-card  { width: 100%; flex: unset; }
  .case-visual-arrow { transform: rotate(90deg); text-align: center; padding: 4px 0; align-self: center; }

  /* ── Process: remove per-card padding that causes indent ── */
  .step-card { padding-left: 0 !important; padding-right: 0 !important; }

}
