/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2332;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: #1e6091; text-decoration: none; transition: color 0.15s; }
a:hover { color: #0f3a5c; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15; margin: 0 0 0.6em; color: #0f1f33; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; }

/* ============ Reveal Animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn:hover::before { transform: translateX(100%); }
.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f1f33;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245,158,11,0.5);
  color: #0f1f33;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-white {
  background: #fff;
  color: #1e6091;
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); background: #f1f5f9; color: #0f3a5c; }
.btn-dark {
  background: #0f1f33;
  color: #fbbf24;
  border-color: #0f1f33;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.btn-dark:hover { background: #1a2a3f; transform: translateY(-2px); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ============ Mobile Call Bar ============ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f1f33 !important;
  padding: 14px;
  font-weight: 700;
  text-align: center;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mobile-call-bar svg { vertical-align: -4px; }

/* ============ Header ============ */
.site-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,31,51,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1e6091, #0f3a5c);
  color: #fbbf24;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(15,31,51,0.15);
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #0f1f33;
  letter-spacing: -0.01em;
}
.logo-text strong { color: #1e6091; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #475569; font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: #1e6091; }
.nav-phone { color: #0f1f33 !important; font-weight: 700 !important; display: inline-flex; align-items: center; gap: 6px; }
.nav-phone svg { color: #1e6091; }

/* ============ Hero ============ */
.hero {
  background: linear-gradient(135deg, #0a2540 0%, #1e6091 100%);
  color: #fff;
  padding: 84px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.22;
  filter: saturate(0.7) contrast(1.05);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.85) 0%, rgba(30,96,145,0.65) 60%, rgba(10,37,64,0.92) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(245,158,11,0.18), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(30,96,145,0.4), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-content { padding-top: 12px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
  padding: 7px 16px;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(251,191,36,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(251,191,36,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(251,191,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); }
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.05;
  font-weight: 800;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.5;
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.value-list li {
  padding-left: 32px;
  position: relative;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  font-size: 15px;
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
}
.value-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #0f1f33;
  border-bottom: 2px solid #0f1f33;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.trust-stars { display: inline-flex; gap: 2px; }
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  z-index: 1;
}

/* ============ Lead Form Card ============ */
.lead-form-card {
  background: #fff;
  color: #0f1f33;
  border-radius: 16px;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}
.form-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(22,163,74,0.35);
}
.lead-form-card h2 {
  font-size: 28px;
  color: #0f1f33;
  margin-bottom: 6px;
}
.form-sub { color: #64748b; margin-bottom: 22px; font-size: 15px; }
.lead-form-card form label {
  display: block;
  margin-bottom: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row label { margin-bottom: 14px; }
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
.lead-form-card form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.lead-form-card form label span em {
  color: #94a3b8;
  font-style: normal;
  font-weight: 400;
}
.lead-form-card input,
.lead-form-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #f8fafc;
  transition: all 0.2s;
}
.lead-form-card input:focus,
.lead-form-card textarea:focus {
  outline: none;
  border-color: #1e6091;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30,96,145,0.1);
}
.form-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.form-disclaimer svg { color: #16a34a; }
.hp { position: absolute; left: -9999px; }

/* ============ Accent Trust Band ============ */
.band-accent {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f1f33;
  padding: 36px 0;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.trust-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(15,31,51,0.2);
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: #0f1f33;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(15,31,51,0.75);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============ Generic Sections ============ */
section { padding: 88px 0; position: relative; }
.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1e6091;
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-size: clamp(30px, 3.4vw, 42px);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 800;
}
.section-title-left { text-align: left; }
.section-sub {
  text-align: center;
  color: #64748b;
  font-size: 18px;
  margin-bottom: 56px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ============ Intro ============ */
.intro { padding: 72px 0; background: #f8fafc; }
.intro .container { max-width: 880px; }
.intro-quote-mark {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: #fbbf24;
  font-weight: 900;
  margin-bottom: -20px;
  opacity: 0.4;
}
.intro p {
  font-size: 18px;
  color: #334155;
  line-height: 1.75;
  margin: 0;
}

/* ============ How It Works ============ */
.how-it-works { background: #fff; }
.how-img {
  display: flex;
  justify-content: center;
  margin: -16px auto 40px;
  max-width: 320px;
}
.how-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15,31,51,0.18);
  border: 6px solid #fff;
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
.how-img img:hover { transform: rotate(0deg) scale(1.02); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 88px;
  left: 17%;
  right: 17%;
  height: 2px;
  background: repeating-linear-gradient(to right, #cbd5e1 0, #cbd5e1 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 40px 28px 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15,31,51,0.05);
  border: 1px solid #e5e7eb;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15,31,51,0.1);
}
.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e6091, #0a2540);
  color: #fbbf24;
  border-radius: 20px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(30,96,145,0.25);
  position: relative;
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: #64748b; margin: 0; }

/* ============ Situations ============ */
.situations { background: #f8fafc; }
.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.sit-card {
  background: #fff;
  padding: 22px 22px 22px 64px;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  font-weight: 500;
  color: #1a2332;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sit-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.sit-card .sit-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  color: #f59e0b;
}
.sit-card p { margin: 0; line-height: 1.4; }
.sit-card strong { color: #0f1f33; font-weight: 700; }
.situations-note {
  text-align: center;
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 17px;
  color: #475569;
  font-style: italic;
  padding: 24px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  border-left: 4px solid #1e6091;
}

/* ============ Why Us ============ */
.why-us { background: #fff; }
.why-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-us .section-eyebrow { text-align: left; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #334155;
  font-size: 16px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-radius: 50%;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.why-us-card {
  background: linear-gradient(135deg, #0a2540, #1e6091);
  color: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15,31,51,0.25);
  position: relative;
  overflow: hidden;
}
.why-us-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251,191,36,0.15), transparent 70%);
  pointer-events: none;
}
.why-us-card h3 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 24px;
  text-align: center;
  position: relative;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.compare-col {
  background: rgba(255,255,255,0.06);
  padding: 22px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.compare-us {
  background: rgba(251,191,36,0.12);
  border-color: rgba(251,191,36,0.3);
}
.compare-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f1f33;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}
.compare-badge-alt {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.compare-col ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.compare-col li {
  padding: 7px 0;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-col .ck {
  color: #fbbf24;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.compare-col .xk {
  color: #ef4444;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============ Testimonial ============ */
.testimonial {
  background: #0a2540;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.6);
  z-index: 0;
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(30,96,145,0.7), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(245,158,11,0.18), transparent 60%),
    linear-gradient(180deg, rgba(10,37,64,0.6), rgba(10,37,64,0.85));
  z-index: 1;
}
.testimonial .container { position: relative; z-index: 2; }
.testimonial-quote-mark {
  color: #fbbf24;
  opacity: 0.4;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.testimonial blockquote { margin: 0 auto; max-width: 760px; }
.testimonial p {
  font-size: clamp(22px, 2.4vw, 28px);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  line-height: 1.5;
  font-weight: 400;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial cite {
  color: rgba(255,255,255,0.85);
  font-style: normal;
  font-size: 15px;
}
.testimonial cite strong { color: #fbbf24; font-weight: 700; }

/* ============ FAQ ============ */
.faq { background: #f8fafc; }
.faq .container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 26px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq details:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.faq details[open] { border-color: #cbd5e1; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: #0f1f33;
  list-style: none;
  position: relative;
  padding-right: 40px;
  font-family: 'Poppins', sans-serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #f1f5f9;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231e6091'><path d='M12 5v14m-7-7h14'/><path d='M12 5v14m-7-7h14' stroke='%231e6091' stroke-width='2.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  transition: transform 0.25s, background-color 0.25s;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(135deg);
  background-color: #fbbf24;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 5v14m-7-7h14' stroke='%230f1f33' stroke-width='2.5' stroke-linecap='round'/></svg>");
}
.faq details[open] summary { margin-bottom: 14px; color: #1e6091; }
.faq details p { margin: 0; color: #475569; line-height: 1.7; }

/* ============ Final CTA ============ */
.cta-final {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f1f33;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.2), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(15,31,51,0.1), transparent 50%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 {
  color: #0f1f33;
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 14px;
}
.cta-final p { font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.cta-final-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ Footer ============ */
.site-footer {
  background: #0a2540;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo strong { color: #fbbf24; }
.footer-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1e6091, #fbbf24);
}
.footer-tagline { color: rgba(255,255,255,0.55); max-width: 280px; }
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.site-footer a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.site-footer a:hover { color: #fbbf24; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.15s;
}
.social-link:hover {
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.3);
}
.footer-bottom {
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .why-us-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .trust-stat:nth-child(2)::after { display: none; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding: 56px 0 96px; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 56px; }
  .nav-links a:not(.btn):not(.nav-phone) { display: none; }
  .nav-links { gap: 12px; }
  .nav-phone { font-size: 14px !important; }
  .value-list { grid-template-columns: 1fr; }
  .lead-form-card { padding: 28px 22px 22px; }
  .compare { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .cta-final-buttons .btn { width: 100%; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .trust-stat::after { display: none !important; }
}
