/* ═══════════════════════════════════════════════════════════
   THE CLOSER — Marketing Website Styles
   ═══════════════════════════════════════════════════════════ */

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

/* ── Custom gold coin cursor ── */
*, *::before, *::after { cursor: none !important; }

.cursor-coin {
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #fff5a0, #f5c842 30%, #c8a030 60%, #8b6010);
  border: 2.5px solid #f0d060;
  box-shadow:
    0 0 0 1px rgba(255,220,80,0.4),
    0 0 14px 4px rgba(200,168,48,0.7),
    0 0 28px 8px rgba(200,168,48,0.25),
    inset 0 2px 4px rgba(255,255,220,0.5);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #6b4800;
  font-family: var(--font-main);
  text-shadow: 0 1px 0 rgba(255,240,160,0.6);
  will-change: transform, left, top;
  top: -100px;
  left: -100px;
}

.cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  user-select: none;
  will-change: opacity, transform;
  animation: trailFloat 0.9s ease-out forwards;
  font-size: 15px;
  line-height: 1;
  top: 0;
  left: 0;
}

@keyframes trailFloat {
  0%   { opacity: 0.9; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  60%  { opacity: 0.5; transform: translate(-50%, -80%) scale(0.8) rotate(15deg); }
  100% { opacity: 0;   transform: translate(-50%, -110%) scale(0.4) rotate(25deg); }
}

:root {
  --navy-950: #020810;
  --navy-900: #040d1a;
  --navy-800: #071428;
  --navy-700: #0a2744;
  --navy-600: #0d3a6e;
  --gold-400: #e8c87a;
  --gold-500: #c8a84a;
  --gold-600: #a07828;
  --blue: #1a6bbf;
  --blue-light: #1d78d6;
  --green: #22c55e;
  --red: #ef4444;
  --amber: #f59e0b;
  --white: #ffffff;
  --font-main: 'Fredoka One', 'Fredoka', cursive;
  --font-body: 'Fredoka', cursive;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: rgba(200,168,74,0.3); border-radius: 2px; }

/* ── Custom cursor ── */
* {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Crect x='1' y='14' width='22' height='8' rx='2' fill='%2322c55e' stroke='%23166534' stroke-width='1'/%3E%3Crect x='3' y='15.5' width='18' height='5' rx='1' fill='%2316a34a'/%3E%3Crect x='1' y='10' width='22' height='8' rx='2' fill='%2316a34a' stroke='%23166534' stroke-width='1'/%3E%3Crect x='3' y='11.5' width='18' height='5' rx='1' fill='%2315803d'/%3E%3Crect x='1' y='6' width='22' height='8' rx='2' fill='%2315803d' stroke='%23166534' stroke-width='1'/%3E%3Crect x='3' y='7.5' width='18' height='5' rx='1' fill='%23166534'/%3E%3Ctext x='12' y='12.5' font-family='Arial' font-size='5' font-weight='bold' fill='%2386efac' text-anchor='middle'%3E%24%3C/text%3E%3C/svg%3E") 4 4, auto;
}
button, a, [role="button"], select {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Crect x='1' y='15' width='24' height='9' rx='2' fill='%2322c55e' stroke='%23166534' stroke-width='1'/%3E%3Crect x='3' y='16.5' width='20' height='6' rx='1' fill='%2316a34a'/%3E%3Crect x='1' y='10' width='24' height='9' rx='2' fill='%2316a34a' stroke='%23166534' stroke-width='1'/%3E%3Crect x='3' y='11.5' width='20' height='6' rx='1' fill='%2315803d'/%3E%3Crect x='1' y='5' width='24' height='9' rx='2' fill='%2315803d' stroke='%23166534' stroke-width='1'/%3E%3Crect x='3' y='6.5' width='20' height='6' rx='1' fill='%23166534'/%3E%3Ctext x='13' y='11.5' font-family='Arial' font-size='5.5' font-weight='bold' fill='%2386efac' text-anchor='middle'%3E%24%3C/text%3E%3C/svg%3E") 4 4, pointer !important;
}
input, textarea { cursor: text !important; }

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

.gold-text { color: var(--gold-400); }
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(200,168,74,0.1);
  color: var(--gold-400);
  border: 1px solid rgba(200,168,74,0.25);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto;
}

/* ═══════ BUTTONS ═══════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(200,168,74,0.35);
  transition: all 0.2s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,168,74,0.5);
}

.btn-gold.btn-xl {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 14px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.2s ease;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 14px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-main);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

/* ═══════ NAVBAR ═══════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(4,13,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(4,13,26,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-blitz { width: 32px; height: 32px; }
.nav-brand { display: flex; flex-direction: column; }
.nav-title {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav-sub {
  font-size: 7px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  transition: all 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.25s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200,168,74,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(200,168,74,0.1);
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(200,168,74,0.2);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,74,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(200,168,74,0); }
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  border: 2px solid var(--navy-900);
  margin-left: -8px;
}
.proof-avatar:first-child { margin-left: 0; }
.hero-social-proof p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.hero-social-proof strong { color: var(--white); }

/* Hero phone mockup */
.hero-phone {
  position: absolute;
  right: max(40px, calc(50% - 580px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.phone-frame {
  width: 240px;
  height: 480px;
  background: var(--navy-800);
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: var(--navy-900);
  border-radius: 9px;
  z-index: 10;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-topbar {
  background: var(--navy-700);
  padding: 28px 10px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.phone-badge {
  margin-left: auto;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  background: rgba(200,168,74,0.15);
  color: var(--gold-400);
  border: 1px solid rgba(200,168,74,0.3);
}

.phone-content {
  flex: 1;
  padding: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.phone-blitz-bar {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: linear-gradient(135deg, rgba(10,39,68,0.8), rgba(13,58,110,0.8));
  border: 1px solid rgba(26,107,191,0.3);
  border-radius: 10px;
  padding: 8px;
}
.phone-blitz-bar p {
  font-size: 8px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.phone-blitz-bar strong { color: var(--gold-400); }

.phone-pills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.ppill {
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.ppill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.phone-input-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 7px 9px;
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.phone-rebuttals {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.prebuttal {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 7px 8px;
}
.pre-badge {
  display: block;
  font-size: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  padding: 1px 5px;
  border-radius: 20px;
  display: inline-block;
}
.soft .pre-badge { background: rgba(26,107,191,0.2); color: #7ab0e8; }
.direct .pre-badge { background: rgba(100,100,250,0.2); color: #a0a0ff; }
.pre-closer {
  display: block;
  font-size: 7px;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 3px;
}
.prebuttal p {
  font-size: 7px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ═══════ STATS BAR ═══════ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border-top: 1px solid rgba(200,168,74,0.15);
  border-bottom: 1px solid rgba(200,168,74,0.15);
  padding: 32px 24px;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  max-width: 160px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* ═══════ FEATURES ═══════ */
.features {
  padding: 100px 24px;
  background: var(--navy-900);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,168,74,0.2);
}

.card-glow-blue:hover { box-shadow: 0 20px 60px rgba(26,107,191,0.15); }
.card-glow-gold:hover { box-shadow: 0 20px 60px rgba(200,168,74,0.12); }
.card-glow-green:hover { box-shadow: 0 20px 60px rgba(34,197,94,0.1); }
.card-glow-purple:hover { box-shadow: 0 20px 60px rgba(139,92,246,0.12); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-main);
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li::before {
  content: '✓';
  color: var(--gold-400);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════ TRAINING MODES ═══════ */
.modes-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.modes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.modes-text .section-tag { margin-bottom: 16px; }
.modes-text h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.modes-text > p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.modes-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mode-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.mode-item:hover, .mode-item.active {
  background: rgba(200,168,74,0.06);
  border-color: rgba(200,168,74,0.2);
}
.mode-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mode-item h4 {
  font-family: var(--font-main);
  font-size: 15px;
  margin-bottom: 3px;
}
.mode-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Call mockup */
.call-mockup {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.call-header {
  background: var(--navy-700);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: livePulse 1.2s infinite;
  flex-shrink: 0;
}
@keyframes livePulse { 0%,100%{opacity:1}50%{opacity:0.3} }
.live-label {
  font-size: 9px;
  font-weight: 700;
  color: #ff7777;
  letter-spacing: 0.08em;
}
.call-timer {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  margin: 0 auto;
}
.call-end {
  padding: 5px 10px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-body);
}
.tone-bar-section {
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.tone-row span { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 700; }
.tone-track { flex: 1; height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.tone-fill {
  height: 100%;
  width: 72%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.5s ease;
}
.tone-pct { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--green); }
.tone-status { font-size: 9px; color: rgba(255,255,255,0.35); font-style: italic; }
.prospect-card {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prospect-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.prospect-name { font-size: 13px; font-weight: 700; color: white; }
.prospect-role { font-size: 10px; color: rgba(255,255,255,0.4); }
.mood-chip {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
}
.mood-chip.warming { background: rgba(34,197,94,0.15); color: #4ade80; }
.call-messages {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
}
.cmsg { display: flex; flex-direction: column; max-width: 85%; }
.cmsg.bot { align-self: flex-start; }
.cmsg.usr { align-self: flex-end; }
.cmsg-label { font-size: 9px; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.usr .cmsg-label { text-align: right; }
.cmsg-bubble {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.5;
}
.bot .cmsg-bubble { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.usr .cmsg-bubble { background: var(--blue); color: white; }
.cmsg.typing .cmsg-bubble { display: flex; gap: 3px; align-items: center; padding: 10px 12px; }
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: dotBounce 1.2s infinite;
}
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce { 0%,80%,100%{transform:scale(0.6)}40%{transform:scale(1)} }
.call-input-row {
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
}
.call-mic-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,107,191,0.4);
}
.call-mic-label { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ═══════ PSYCHOLOGY ═══════ */
.psychology-section {
  padding: 100px 24px;
  background: var(--navy-900);
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.zone-card {
  background: linear-gradient(135deg, var(--navy-800), rgba(13,37,69,0.8));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
}
.zone-card:hover { transform: translateY(-4px); }
.zone-card.locked { opacity: 0.6; }
.zone-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.zone-icon { font-size: 24px; flex-shrink: 0; }
.zone-top h4 { font-family: var(--font-main); font-size: 15px; margin-bottom: 2px; }
.zone-top p { font-size: 11px; color: rgba(255,255,255,0.4); }
.zone-acts {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  flex-shrink: 0;
}
.locked-tag {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.25);
}
.zone-quote {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.5;
}
.zone-attr {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.zone-progress {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.zp-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}

/* ═══════ CLOSERS ═══════ */
.closers-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
}
.closers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.closer-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.closer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,168,74,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.closer-initial {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.closer-card h4 {
  font-family: var(--font-main);
  font-size: 16px;
  margin-bottom: 8px;
}
.closer-card p {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 12px;
}
.closer-tag {
  display: block;
  font-size: 10px;
  font-style: italic;
  color: var(--gold-500);
  line-height: 1.4;
}

/* ═══════ PRICING ═══════ */
.pricing-section {
  padding: 100px 24px;
  background: var(--navy-900);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(26,107,191,0.08), var(--navy-800));
  box-shadow: 0 0 40px rgba(26,107,191,0.12);
}
.plan-elite {
  border-color: var(--gold-500);
  background: linear-gradient(135deg, rgba(200,168,74,0.06), var(--navy-800));
  box-shadow: 0 0 40px rgba(200,168,74,0.1);
}
.plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  background: var(--blue);
  color: white;
}
.elite-popular {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}
.plan-name {
  font-family: var(--font-main);
  font-size: 20px;
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.5);
}
.plan-price span { font-size: 14px; color: rgba(255,255,255,0.3); }
.pro-price { color: var(--blue); }
.elite-price { color: var(--gold-400); }
.plan-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li.on::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan-features li.off { color: rgba(255,255,255,0.25); text-decoration: line-through; }
.plan-features li.off::before { content: '✕'; color: rgba(255,255,255,0.2); flex-shrink: 0; }
.plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.plan-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}
.plan-btn-outline:hover { border-color: rgba(255,255,255,0.35); color: white; }
.plan-btn-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(26,107,191,0.3);
}
.plan-btn-blue:hover { background: var(--blue-light); box-shadow: 0 6px 24px rgba(26,107,191,0.45); }
.plan-btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 4px 16px rgba(200,168,74,0.3);
}
.plan-btn-gold:hover { box-shadow: 0 6px 28px rgba(200,168,74,0.5); transform: translateY(-1px); }
.elite-note {
  font-size: 11px;
  color: var(--gold-500);
  background: rgba(200,168,74,0.08);
  border: 1px solid rgba(200,168,74,0.2);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ═══════ AGENCY ═══════ */
.agency-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  position: relative;
  overflow: hidden;
}
.agency-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,74,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.agency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.agency-text h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.agency-text > p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.7;
}
.agency-tiers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.tier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.tier-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.tier-badge.blue { background: rgba(26,107,191,0.2); color: #7ab0e8; }
.tier-badge.amber { background: rgba(245,158,11,0.15); color: #fbbf24; }
.tier-badge.gold { background: rgba(200,168,74,0.15); color: var(--gold-400); }
.tier-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  font-size: 13px;
}
.tier-info span { color: rgba(255,255,255,0.6); }
.tier-pct { font-family: var(--font-mono); font-weight: 700; color: var(--gold-400); }
.agency-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  line-height: 1.5;
}
/* Agency visual card */
.agency-card {
  background: linear-gradient(135deg, rgba(13,37,69,0.9), rgba(7,20,40,0.9));
  border: 1px solid rgba(200,168,74,0.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.ac-header { margin-bottom: 8px; }
.ac-code {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 3px;
  background: rgba(200,168,74,0.08);
  border: 1px solid rgba(200,168,74,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.ac-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.ac-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ac-val { font-family: var(--font-mono); font-size: 18px; font-weight: 700; }
.ac-lbl { font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.06em; }
.ac-blitz {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(26,107,191,0.08);
  border: 1px solid rgba(26,107,191,0.15);
  border-radius: 12px;
  padding: 12px;
}
.ac-blitz p { font-size: 11px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ═══════ TESTIMONIALS ═══════ */
.testimonials-section {
  padding: 100px 24px;
  background: var(--navy-900);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(200,168,74,0.15); }
.testi-stars { color: var(--gold-400); font-size: 14px; margin-bottom: 16px; }
.testi-card > p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; }
.testi-author span { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ═══════ FINAL CTA ═══════ */
.final-cta {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-top: 1px solid rgba(200,168,74,0.1);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,168,74,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-blitz {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: block;
  animation: blitzFloat 2s ease-in-out infinite alternate;
}
@keyframes blitzFloat {
  from { transform: translateY(0) rotate(-1deg); }
  to { transform: translateY(-8px) rotate(1deg); }
}
.final-cta h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.final-cta > p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.cta-note { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 260px; }
.footer-col h5 {
  font-family: var(--font-main);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ═══════ ANIMATIONS ═══════ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .hero-phone { display: none; }
  .modes-inner { grid-template-columns: 1fr; }
  .agency-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-title { font-size: 36px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn-gold.btn-xl, .btn-ghost { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
