/* ==========================================
   BOOKEDCLINIQ — MAIN STYLESHEET
   ========================================== */

:root {
  --navy: #0B1628;
  --navy-mid: #112240;
  --navy-light: #1a3a6b;
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #F5F3EE;
  --text-dark: #1a2535;
  --text-body: #374151;
  --text-mid: #4B5563;
  --text-muted: #6B7280;
  --red: #DC2626;
  --green: #16A34A;
  --border: #E5E7EB;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
section { padding: 96px 5%; }
.section-hd { margin-bottom: 56px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.78;
  font-weight: 400;
  max-width: 560px;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.35); }
.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-navy:hover { background: var(--navy-light); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 34px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.07); }
.full-btn { width: 100%; display: block; text-align: center; }
.gold-text { color: var(--gold); }
.green-text { color: var(--green); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(11,22,40,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: box-shadow 0.2s;
}
#nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.35); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 18px 5%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
.logo em { font-style: normal; color: var(--gold); }
.footer-logo { color: var(--white); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.87rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 10px 22px !important; border-radius: 4px !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mob-menu { display: none; flex-direction: column; background: var(--navy-mid); padding: 20px 5%; gap: 16px; border-top: 1px solid rgba(255,255,255,0.07); }
.mob-menu.open { display: flex; }
.mob-menu a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.mob-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 13px 20px; border-radius: 4px; text-align: center; font-weight: 700 !important; }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: var(--navy); padding: 128px 5% 84px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -180px; right: -180px; width: 660px; height: 660px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.73rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 14px; border-radius: 2px; margin-bottom: 28px; }
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 900; color: var(--white); line-height: 1.11; letter-spacing: -1px; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.78; margin-bottom: 28px; font-weight: 400; }
.hero-proof { background: rgba(255,255,255,0.05); border-left: 3px solid var(--gold); padding: 16px 20px; border-radius: 0 6px 6px 0; margin-bottom: 36px; }
.hero-proof p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item strong { display: block; color: var(--gold); font-size: 0.88rem; font-weight: 700; }
.trust-item span { font-size: 0.7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; }
.trust-div { width: 1px; height: 30px; background: rgba(255,255,255,0.12); }

/* Call Card */
.call-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; }
.call-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.call-status { font-size: 0.74rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 7px; }
.live-dot { width: 7px; height: 7px; background: #3ecc70; border-radius: 50%; animation: pulse 1.5s infinite; }
.call-time { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.bubbles { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.bub { max-width: 88%; padding: 11px 15px; border-radius: 12px; font-size: 0.85rem; line-height: 1.55; color: var(--white); }
.bub.ai { background: rgba(201,168,76,0.18); border-radius: 12px 12px 12px 2px; align-self: flex-start; color: rgba(255,255,255,0.9); }
.bub.pt { background: rgba(255,255,255,0.1); border-radius: 12px 12px 2px 12px; align-self: flex-end; color: rgba(255,255,255,0.8); }
.call-win { background: rgba(62,204,112,0.12); border: 1px solid rgba(62,204,112,0.3); border-radius: 8px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.win-icon { width: 28px; height: 28px; background: #3ecc70; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.78rem; font-weight: 700; flex-shrink: 0; }
.win-text { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
.win-text strong { color: #3ecc70; display: block; font-size: 0.76rem; }

/* ===== PROBLEM ===== */
.problem { background: var(--off-white); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #D1D5DB; border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.stat-card { background: var(--white); padding: 44px 32px; text-align: center; transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-4px); z-index: 2; box-shadow: 0 20px 44px rgba(0,0,0,0.1); }
.stat-big { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,5vw,4.2rem); font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 14px; }
.stat-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.65; }
.stat-card p strong { color: var(--navy); font-weight: 600; }
.prob-banner { background: var(--navy); border-radius: 10px; padding: 36px 44px; text-align: center; }
.prob-banner p { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: rgba(255,255,255,0.85); line-height: 1.65; max-width: 780px; margin: 0 auto; }

/* ===== SOLUTION ===== */
.solution { background: var(--white); }
.sol-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sol-left .section-title { margin-top: 8px; }
.benefits { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.benefit { display: flex; gap: 18px; align-items: flex-start; }
.ben-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.benefit h4 { font-size: 0.97rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.benefit p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }
.dark-card { background: var(--navy); border-radius: 16px; padding: 40px; position: sticky; top: 100px; }
.dark-quote { font-family: 'Playfair Display', serif; font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.72; margin-bottom: 34px; }
.dark-quote strong { color: var(--gold); }
.perf-bars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.perf-row { display: flex; align-items: center; gap: 14px; }
.perf-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); width: 190px; flex-shrink: 0; line-height: 1.3; }
.bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.bar { height: 100%; background: var(--gold); border-radius: 2px; width: 0; transition: width 1.2s ease; }
.perf-pct { font-size: 0.82rem; font-weight: 600; color: var(--gold); width: 36px; text-align: right; flex-shrink: 0; }
.gdpr-note { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.gdpr-note strong { color: rgba(255,255,255,0.85); }

/* ===== HOW IT WORKS ===== */
.how { background: var(--off-white); }
.steps-row { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; background: #D1D5DB; border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.step-card { background: var(--white); padding: 44px 32px; }
.step-arrow { background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); padding: 0 8px; }
.step-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 14px; }
.step-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.step-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.step-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }
.reassurance { max-width: 1160px; margin: 0 auto; text-align: center; padding: 22px 32px; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; font-size: 0.92rem; color: var(--text-body); line-height: 1.6; }
.reassurance strong { color: var(--navy); }

/* ===== BONUSES ===== */
.bonuses { background: var(--navy); padding: 96px 5%; }
.bonuses .section-title { color: var(--white); }
.bonus-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; margin-top: 48px; }
.bonus-card { background: var(--navy-mid); padding: 38px 30px; }
.bonus-value { font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.bonus-value s { color: rgba(255,100,100,0.7); }
.bonus-free { color: var(--gold); font-weight: 700; }
.bonus-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.bonus-card h4 { font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.bonus-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 16px; }
.bonus-solves { font-size: 0.75rem; color: var(--gold); font-weight: 600; padding: 7px 12px; background: rgba(201,168,76,0.1); border-radius: 4px; display: inline-block; }
.bonus-total { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 28px; }

/* ===== DEMO SECTION ===== */
.demo-sec { background: var(--navy-mid); position: relative; overflow: hidden; padding: 96px 5%; }
.demo-sec::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,22,40,0.9) 0%, rgba(26,58,107,0.45) 100%); }
.demo-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.demo-label { display: inline-block; background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; margin-bottom: 22px; }
.demo-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.demo-left p { font-size: 0.97rem; color: rgba(255,255,255,0.7); line-height: 1.78; margin-bottom: 28px; }
.demo-checks { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.demo-checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.5; }
.demo-checks li::before { content: '✓'; width: 20px; height: 20px; background: rgba(201,168,76,0.14); border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.65rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.demo-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 36px; }
.demo-card-lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.demo-cname { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 4px; }
.demo-csub { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.demo-phone-row { display: flex; align-items: center; gap: 14px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; padding: 14px 18px; margin-bottom: 20px; }
.demo-ph-icon { font-size: 1.3rem; flex-shrink: 0; }
.demo-ph-hint { font-size: 0.78rem; color: rgba(255,255,255,0.45); display: block; margin-bottom: 3px; }
.demo-ph-num { color: var(--gold); font-size: 1rem; font-weight: 600; letter-spacing: 0.5px; }
.demo-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.65; text-align: center; margin-top: 16px; }

/* ===== CALCULATOR ===== */
.calc-sec { background: var(--off-white); }
.ghl-calc-wrap { font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, #0b1a33 0%, #0f2044 100%); border-radius: 20px; padding: 48px 40px; max-width: 720px; margin: 0 auto; border: 1px solid rgba(212,175,55,0.35); box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
.ghl-calc-wrap input[type="range"] { display: block; width: 100%; }
.ghl-calc-wrap input[type="number"] { display: block; }

/* ===== PRICING ===== */
.pricing { background: var(--white); }
.countdown-box { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 12px; padding: 28px 40px; max-width: 620px; margin: 0 auto 56px; text-align: center; }
.cd-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.countdown-box p { font-size: 0.92rem; color: rgba(255,255,255,0.78); margin-bottom: 18px; line-height: 1.6; }
.countdown-box p strong { color: var(--white); }
.timer-row { display: flex; justify-content: center; align-items: center; gap: 12px; }
.timer-unit { text-align: center; }
.timer-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; min-width: 56px; }
.timer-lbl { font-size: 0.62rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.timer-sep { font-size: 2rem; color: var(--gold); opacity: 0.45; align-self: flex-start; padding-top: 4px; }

.pricing-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #D1D5DB; border-radius: 12px; overflow: hidden; margin-bottom: 24px; max-width: 1160px; margin-left: auto; margin-right: auto; }
.price-card { background: var(--white); padding: 44px 32px; position: relative; transition: transform 0.2s; }
.price-card:hover { transform: translateY(-4px); z-index: 2; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.price-card.feat { background: var(--navy); }
.price-card.no-brainer { border-top: 3px solid var(--gold); }

/* No-brainer ribbon */
.nb-ribbon { position: absolute; top: -1px; left: 0; right: 0; background: var(--gold); color: var(--navy); font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px; text-align: center; }
.popular-tag { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 0 0 6px 6px; }

.price-tier { font-size: 0.68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; margin-top: 24px; }
.price-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--navy); line-height: 1.25; }
.feat .price-name { color: var(--white); }
.price-amt { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.feat .price-amt { color: var(--gold); }
.price-amt span { font-size: 0.88rem; font-weight: 400; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.feat .price-amt span { color: rgba(255,255,255,0.4); }

.price-guarantee-line { font-size: 0.82rem; color: var(--green); font-weight: 600; margin-bottom: 8px; padding: 8px 12px; background: rgba(22,163,74,0.08); border-radius: 4px; line-height: 1.4; }
.feat-g { background: rgba(22,163,74,0.15); color: #4ade80; }

.price-setup { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.price-setup s { color: var(--red); }
.light-text { color: rgba(255,255,255,0.5) !important; }

.price-div { height: 1px; background: var(--border); margin-bottom: 20px; }
.light-div { background: rgba(255,255,255,0.1); }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 18px; }
.price-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.9rem; color: var(--text-body); line-height: 1.45; }
.light-features li { color: rgba(255,255,255,0.72); }
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.price-logic { font-size: 0.85rem; color: var(--text-mid); font-weight: 500; margin-bottom: 14px; padding: 12px 14px; background: rgba(201,168,76,0.06); border-radius: 6px; line-height: 1.5; }
.feat .price-logic { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); }
.price-best { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.55; }
.light-best { color: rgba(255,255,255,0.45) !important; }

.pilot-box { background: #F0FDF4; border: 1px solid #86EFAC; border-radius: 12px; padding: 30px 36px; display: flex; align-items: flex-start; gap: 22px; margin-bottom: 18px; max-width: 1160px; margin-left: auto; margin-right: auto; }
.pilot-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 4px; }
.pilot-text h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #166534; margin-bottom: 8px; }
.pilot-text p { font-size: 0.9rem; color: #166534; line-height: 1.65; }
.pilot-text p strong { font-weight: 600; }

.guarantee-box { background: var(--navy); border-radius: 12px; padding: 30px 36px; display: flex; align-items: flex-start; gap: 22px; margin-bottom: 22px; max-width: 1160px; margin-left: auto; margin-right: auto; }
.guarantee-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 4px; }
.guarantee-text h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 8px; }
.guarantee-text p { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.65; }
.guarantee-text p strong { color: var(--white); }

.intl-note { text-align: center; font-size: 0.85rem; color: var(--text-muted); padding: 14px; border: 1px solid var(--border); border-radius: 6px; max-width: 580px; margin: 0 auto; }
.intl-note strong { color: var(--navy); }

/* ===== COST OF INACTION ===== */
.inaction { background: linear-gradient(135deg, #0B1628 0%, #1a2f50 100%); padding: 80px 5%; }
.inaction-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.inaction h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.4rem); color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.inaction p { font-size: 0.97rem; color: rgba(255,255,255,0.72); line-height: 1.78; margin-bottom: 20px; }
.inaction-maths { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; margin: 36px 0; }
.im-card { background: rgba(255,255,255,0.04); padding: 28px 20px; text-align: center; }
.im-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.im-lbl { font-size: 0.74rem; color: rgba(255,255,255,0.5); line-height: 1.4; text-transform: uppercase; letter-spacing: 0.5px; }
.inaction-close { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 32px; }
.inaction-close em { color: var(--gold); font-style: normal; font-weight: 700; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1160px; margin: 0 auto; }
.testi-card { background: var(--white); border-radius: 12px; padding: 32px 28px; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testi-stars { font-size: 1.1rem; color: #F59E0B; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.72; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; background: var(--navy); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 600; margin-bottom: 3px; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--navy); text-align: center; position: relative; overflow: hidden; padding: 100px 5%; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 380px; background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,2.9rem); font-weight: 900; color: var(--white); line-height: 1.14; margin-bottom: 18px; letter-spacing: -0.5px; }
.cta-inner p { font-size: 0.97rem; color: rgba(255,255,255,0.68); line-height: 1.78; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-small { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== FOOTER ===== */
footer { background: #060e1a; padding: 56px 5% 28px; }
.footer-grid { max-width: 1160px; margin: 0 auto 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.72; margin-top: 16px; max-width: 280px; }
.footer-reg { font-size: 0.74rem; color: rgba(255,255,255,0.28); margin-top: 10px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-btm { max-width: 1160px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-btm p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-grid, .sol-grid, .demo-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid, .pricing-row, .bonus-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .inaction-maths { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 104px 5% 60px; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 68px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-btm { flex-direction: column; text-align: center; }
  .cta-btns, .hero-btns { flex-direction: column; align-items: flex-start; }
  .pilot-box, .guarantee-box { flex-direction: column; gap: 14px; }
  .ghl-calc-wrap { padding: 32px 20px; }
  .inaction-maths { grid-template-columns: repeat(2,1fr); }
}
