/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --navy:       #0B1628;
  --navy-mid:   #132040;
  --navy-light: #1B2E55;
  --gold:       #C9952A;
  --gold-light: #E8B84B;
  --gold-pale:  #F5D98A;
  --white:      #FFFFFF;
  --off-white:  #F2EDE4;
  --muted:      #8A97B0;
  --border:     rgba(201,149,42,0.2);
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.gold { color: var(--gold); }
.eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.divider {
  width: 56px; height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,149,42,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--large {
  font-size: 18px;
  padding: 20px 48px;
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement {
  background: var(--gold);
  padding: 10px 32px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.announcement span { opacity: 0.7; margin: 0 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,22,40,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__phone {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--gold); }
.nav__cta {
  font-size: 13px;
  padding: 11px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a:hover { color: var(--gold); }
.nav__drawer .drawer-cta {
  margin-top: 20px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 16px;
  font-weight: 900;
  border-radius: 3px;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(90vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 80px 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,149,42,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 5% 50%, rgba(19,32,64,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,149,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,149,42,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,149,42,0.12);
  border: 1px solid rgba(201,149,42,0.3);
  border-radius: 2px;
  padding: 7px 16px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero__headline--gold {
  color: var(--gold);
  font-style: italic;
  font-size: clamp(56px, 8vw, 104px);
}
.hero__subhead {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 28px 0 16px;
  line-height: 1.7;
}
.hero__subhead strong { color: var(--white); font-weight: 600; }
.hero__price-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero__price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
}
.hero__price-context {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-left: 1px solid var(--border);
  padding-left: 20px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero__cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.hero__cta-note span { color: var(--gold); font-weight: 600; }

/* Hero right panel */
.hero__panel {
  background: rgba(19,32,64,0.7);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hero__panel-head {
  background: rgba(201,149,42,0.1);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__panel-body { padding: 24px; }
.hero__panel-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero__panel-stat:last-child { border-bottom: none; }
.hero__panel-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__panel-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}
.hero__panel-footer {
  background: rgba(201,149,42,0.07);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.hero__panel-guarantee {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stats__item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: rgba(201,149,42,0.05); }
.stats__number {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stats__label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--navy);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-bar__label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.proof-bar__agencies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.proof-bar__tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 2px;
  transition: all 0.2s;
}
.proof-bar__tag:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--navy-mid);
  padding: 96px 0;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}
.problem__body {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
  line-height: 1.75;
}
.problem__pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.problem__pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.pain-icon {
  width: 22px; height: 22px;
  min-width: 22px;
  border: 1.5px solid rgba(255,80,80,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 11px;
  color: #ff6b6b;
}
.problem__callout {
  background: rgba(201,149,42,0.08);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 36px;
  border-radius: 3px;
}
.callout-stat {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.callout-stat--sm { font-size: 44px; }
.callout-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.callout-text {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.callout-divider {
  margin: 28px 0;
  border: none;
  border-top: 1px solid var(--border);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--navy);
  padding: 96px 0;
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.how__step {
  background: var(--navy);
  padding: 48px 40px;
  transition: background 0.2s;
}
.how__step:hover { background: var(--navy-mid); }
.how__step-num {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(201,149,42,0.12);
  margin-bottom: -12px;
}
.how__step-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.how__step-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.how__step-detail {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.how__cta-wrap {
  text-align: center;
  margin-top: 60px;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases {
  background: var(--navy-mid);
  padding: 96px 0;
}
.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-bottom: 64px;
}
.case {
  background: var(--navy);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
}
.case::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
}
.case__type {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.case__company {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.case__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.case__cert-pill {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(138,151,176,0.12);
  border: 1px solid rgba(138,151,176,0.25);
  padding: 3px 10px;
  border-radius: 2px;
}
.case__result-big {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.case__result-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.case__wins {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.case__win {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.case__win::before { content: '→'; color: var(--gold); font-weight: 700; font-size: 14px; }
.case__quote {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.case__quote-attr {
  margin-top: 12px;
  font-style: normal;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--navy);
  padding: 96px 0;
}
.services__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.services__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}
.services__body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}
.services__monthly-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.services__deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services__deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
}
.services__deliverables li strong { color: var(--white); font-weight: 600; }
.services__deliverables li span { color: rgba(255,255,255,0.6); }
.del-icon {
  min-width: 32px; height: 32px;
  background: rgba(201,149,42,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  margin-top: 1px;
  border-radius: 2px;
}
.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--navy-mid);
  padding: 40px 36px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--navy-light); }
.service-card__icon { font-size: 28px; margin-bottom: 16px; }
.service-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card__body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.services__bottom-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: rgba(201,149,42,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.services__bottom-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}
.services__bottom-cta strong { color: var(--gold); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--navy-mid);
  padding: 96px 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-bottom: 48px;
}
.pricing__col {
  background: var(--navy);
  padding: 48px 40px;
}
.pricing__col--featured {
  background: var(--navy-light);
  position: relative;
}
.pricing__col--featured::before {
  content: '★ RECOMMENDED';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 5px 18px;
  white-space: nowrap;
}
.pricing__col-head {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing__price {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing__price--dim { color: rgba(255,255,255,0.3); }
.pricing__price-sub {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.pricing__features li.bad {
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.feat-yes { color: var(--gold); font-weight: 700; min-width: 16px; }
.feat-no  { color: rgba(255,255,255,0.2); min-width: 16px; }
.pricing__total {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.pricing__total .amount { font-size: 26px; color: var(--gold); }
.pricing__total .amount--dim { color: rgba(255,255,255,0.25); font-size: 22px; text-decoration: line-through; }
.pricing__note { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; line-height: 1.6; }
.pricing__note--gold { color: var(--gold-pale); }
.pricing__guarantee-strip {
  background: rgba(201,149,42,0.08);
  border: 1px solid var(--border);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 3px;
}
.pricing__guarantee-strip .seal { font-size: 48px; min-width: 56px; text-align: center; }
.pricing__guarantee-strip p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65; }
.pricing__guarantee-strip strong { color: var(--gold); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  background: var(--navy);
  padding: 96px 0;
}
.guarantee__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.guarantee__seal-wrap { text-align: center; }
.guarantee__seal {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}
.guarantee__seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,42,0.3);
}
.guarantee__seal-number {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.guarantee__seal-word {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.guarantee__seal-month {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.guarantee__tagline {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.guarantee__headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}
.guarantee__body {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 20px;
}
.guarantee__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.guarantee__points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.guarantee__star { color: var(--gold); font-size: 16px; margin-top: 2px; }
.guarantee__commission {
  background: rgba(201,149,42,0.07);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin-top: 28px;
  border-radius: 3px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.guarantee__commission strong { color: var(--gold); }

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--navy-mid);
  padding: 96px 0;
}
.team__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.team__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}
.team__body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}
.team__creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cred-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,149,42,0.1);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
}
.founder-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 40px;
  border-radius: 3px;
}
.founder-card__eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.founder-card__name {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-card__role {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.founder-card__bio {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.team__card {
  background: var(--navy);
  padding: 36px 28px;
  transition: background 0.2s;
}
.team__card:hover { background: var(--navy-light); }
.team__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 16px;
}
.team__name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.team__role {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team__bio { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--navy);
  padding: 96px 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.testimonial {
  background: var(--navy-mid);
  padding: 44px 36px;
  position: relative;
  transition: background 0.2s;
}
.testimonial:hover { background: var(--navy-light); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  font-size: 120px;
  color: rgba(201,149,42,0.07);
  line-height: 1;
}
.testimonial__stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial__result {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.1;
}
.testimonial__text {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial__attr {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial__name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
}
.testimonial__company {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--navy-mid);
  padding: 96px 0;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  max-width: 960px;
  margin: 0 auto;
}
.faq__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.faq__q {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq__item:hover .faq__q { color: var(--gold); }
.faq__q-toggle {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  min-width: 22px;
  user-select: none;
  transition: transform 0.25s ease;
}
.faq__a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  display: none;
  padding-top: 14px;
}
.faq__item.open .faq__a { display: block; }
.faq__item.open .faq__q-toggle { transform: rotate(45deg); }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking {
  background: var(--navy);
  padding: 96px 0;
}
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking__headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
}
.booking__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.booking__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.booking__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.booking__checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
}
.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.booking__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.booking__contact a:hover { color: var(--gold); }
.booking__contact-icon {
  width: 32px; height: 32px;
  background: rgba(201,149,42,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  font-size: 14px;
}
/* Booking form */
.booking__form-wrap {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 3px;
  overflow: hidden;
}
.booking__form-head {
  padding: 24px 32px;
  background: rgba(201,149,42,0.08);
  border-bottom: 1px solid var(--border);
}
.booking__form-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.booking__form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.booking__form { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.booking__form-wrap .wpcf7-form { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,149,42,0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9952A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-select option { background: var(--navy-mid); color: var(--white); }
.form-textarea { resize: vertical; min-height: 100px; max-height: 200px; }
.form-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  text-align: center;
}
.form-privacy a { color: var(--gold); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
}
.form-success__icon { font-size: 48px; margin-bottom: 16px; }
.form-success__title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-success__body { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ============================================================
   FINAL CTA BAR
   ============================================================ */
.final-cta {
  background: var(--gold);
  padding: 56px 0;
  text-align: center;
}
.final-cta__headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.final-cta__sub {
  font-size: 17px;
  color: rgba(11,22,40,0.65);
  margin-bottom: 28px;
}
.final-cta__btn {
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  padding: 20px 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.final-cta__btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(11,22,40,0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #070F1A;
  padding: 64px 0 36px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__brand-logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__contact a {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  transition: all 0.2s;
}
.footer__social a:hover {
  background: rgba(201,149,42,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.footer__col-head {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__vehicles { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__vehicles li {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer__legal a:hover { color: var(--gold); }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 200;
  gap: 12px;
  align-items: center;
}
.mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
  font-size: 14px;
  padding: 14px 20px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__layout { grid-template-columns: 1fr; gap: 48px; }
  .hero__panel { max-width: 480px; }
}
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__item:nth-child(4), .stats__item:nth-child(5) { border-top: 1px solid var(--border); }
  .problem__grid, .services__intro, .guarantee__inner,
  .team__intro, .cases__grid, .pricing__grid,
  .booking__inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing__col--featured::before { display: none; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .how__steps { grid-template-columns: 1fr; }
  .services__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 40px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(5) { grid-column: span 2; }
  .proof-bar__inner { gap: 16px; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .booking { overflow: hidden; }
  .booking__inner { max-width: 100%; overflow: hidden; }
  .booking__form-wrap { max-width: 100%; width: 100%; overflow: hidden; box-sizing: border-box; margin-left: 0; margin-right: 0; }
  .booking__form-wrap .wpcf7-form { padding: 16px; box-sizing: border-box; width: 100%; }
  .booking__form-head { padding: 16px; }
  .form-input, .form-select, .form-textarea { box-sizing: border-box; width: 100%; padding: 10px 12px; font-size: 14px; }
  .form-row { box-sizing: border-box; gap: 12px; }
  .form-group { gap: 6px; }
  .btn--full { font-size: 14px; padding: 14px 20px; white-space: normal; line-height: 1.3; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .form-row { grid-template-columns: 1fr; }
  .services__cards { grid-template-columns: 1fr; }
  .case { padding: 36px 28px; }
}