﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Great+Vibes&display=swap');

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

:root {
  --navy:        #0B2D4E;
  --navy-deep:   #071E35;
  --navy-mid:    #0F3D6B;
  --blue:        #2563EB;
  --blue-bright: #3B82F6;
  --blue-light:  #DBEAFE;
  --blue-xlight: #EEF5FF;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-900:    #0F172A;
  --red-bg:      #FEF2F2;
  --red:         #EF4444;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 48px !important; width: auto !important; }
@media (min-width: 961px) { .nav-logo img { height: 56px !important; } }
.nav-logo-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Great Vibes', cursive;
  font-size: 26px;
  letter-spacing: 0px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-name { font-size:19px; font-weight:700; color:var(--navy); letter-spacing:-0.3px; white-space:nowrap; }
.nav-links {
  position: absolute; left: 46%; transform: translateX(-50%);
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: baseline;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s, background-size 0.2s ease;
  background-image: linear-gradient(var(--blue), var(--blue));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background-size: 100% 2px;
}
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--gray-400);
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: transparent;
  padding-top: 12px;
  min-width: 240px;
  z-index: 200;
}
.dropdown-menu-inner {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--blue-xlight); color: var(--navy); }
.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-bright); }
.nav-cta-claim { background:transparent; border:1.5px solid var(--gray-200); color:var(--navy); padding:9px 18px; border-radius:8px; font-size:14px; font-weight:600; text-decoration:none; white-space:nowrap; transition:border-color 0.15s, color 0.15s; display:flex; align-items:center; gap:6px; }
.nav-cta-claim:hover { border-color:var(--navy); color:var(--navy); }
.nav-phone { display: flex; align-items: center; gap: 8px; background: transparent; border: 1.5px solid var(--gray-200); color: var(--navy); padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: border-color 0.15s, color 0.15s; }
.nav-phone:hover { border-color: var(--navy); color: var(--navy); }
.nav-phone svg { flex-shrink: 0; }

/* ─── HERO ─── */
.hero {
  background: var(--blue-xlight);
  background-image:
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(37,99,235,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--blue-xlight) 0%, #F8FBFF 100%);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
/* Subtle grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gray-200);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); color: #FBBF24; }
  50% { transform: scale(1.2); color: #FDE68A; }
}
.hero h1 {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .underline-word {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 5px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0.35;
}
.hero h1 .accent { color: var(--blue); }
.hero h1 .accent-2 { color: var(--navy-mid); }
.hero h1 .accent-2.underline-word::after { background: var(--navy-mid); }
.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-dark {
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}
.btn-dark:hover { background: var(--navy); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--gray-600);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gray-200);
  transition: all 0.15s;
}
.btn-outline:hover { background: var(--gray-200); border-color: var(--gray-200); color: var(--gray-900); }
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}
.hero-stat svg { color: var(--blue); }
.hero-stat-divider {
  width: 1px;
  height: 16px;
  background: var(--gray-200);
}

/* Hero right — technical frame */
.hero-frame {
  position: relative;
}
.frame-label-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-left: 2px;
}
.frame-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.frame-label-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.frame-label-text span { color: var(--navy); }
.frame-separator { color: var(--gray-200); margin: 0 4px; }
.frame-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16/10;
}
.frame-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
/* Corner brackets */
.corner { position: absolute; width: 20px; height: 20px; }
.corner-tl { top: -8px; left: -8px; border-top: 2.5px solid var(--navy); border-left: 2.5px solid var(--navy); }
.corner-tr { top: -8px; right: -8px; border-top: 2.5px solid var(--navy); border-right: 2.5px solid var(--navy); }
.corner-bl { bottom: -8px; left: -8px; border-bottom: 2.5px solid var(--navy); border-left: 2.5px solid var(--navy); }
.corner-br { bottom: -8px; right: -8px; border-bottom: 2.5px solid var(--navy); border-right: 2.5px solid var(--navy); }
.frame-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.play-btn:hover { background: rgba(255,255,255,0.25); }
.play-btn svg { fill: #fff; margin-left: 3px; }
.frame-caption {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.frame-caption-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--gray-200);
  padding: 5px 12px;
  border-radius: 100px;
}
.frame-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.frame-placeholder-icon { font-size: 48px; opacity: 0.4; }
.frame-placeholder-text { color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 500; }

/* ─── HERO FORM (right column) ─── */
.hero-right {
  display: flex;
  align-items: baseline;
}
.hero-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 48px rgba(11,45,78,0.12);
  width: 100%;
}
.hero-form h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.5px; }

/* ─── SECTIONS COMMON ─── */
section { padding: 96px 48px; }
.container { max-width: 1100px; margin: 0 auto; }

.pill-tag {
  display: inline-block;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pill-tag-dark {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ─── PROBLEM SECTION ─── */
.problem { background: #fff; }
.problem-header { text-align: center; max-width: 1100px; margin: 0 auto 56px; }
.problem-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.problem-header h2 .faded { color: var(--gray-400); }
.problem-header h2 .accent { color: var(--blue); }
.problem-header h2 .underline-word { position: relative; display: inline-block; }
.problem-header h2 .underline-word::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 4px; background: var(--blue); border-radius: 2px; opacity: 0.35; }
.problem-header p { font-size: 17px; color: var(--gray-600); line-height: 1.7; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.problem-card {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.problem-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.problem-icon-box {
  width: 44px; height: 44px;
  background: var(--red-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.problem-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.problem-card p  { font-size: 14px; color: var(--gray-400); line-height: 1.6; }

/* ─── SOLUTION SECTION (DARK) ─── */
.solution {
  background: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 55% 60% at 100% 100%, rgba(37,99,235,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 0%, rgba(59,130,246,0.1) 0%, transparent 60%);
  padding: 96px 48px;
}
.solution-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.solution-header h2 {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}
.solution-header h2 .accent { color: var(--blue-bright); }
.solution-header h2 .underline-word { position: relative; display: inline-block; }
.solution-header h2 .underline-word::after { content: ''; position: absolute; bottom: 1px; left: 0; right: 0; height: 4px; background: #fff; border-radius: 2px; opacity: 0.4; }
.solution-header h2 .accent.underline-word::after { background: var(--blue-bright); }
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.solution-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}
.solution-card:hover { background: rgba(255,255,255,0.08); }
.solution-icon-box {
  width: 42px; height: 42px;
  background: rgba(59,130,246,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.solution-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.solution-card p  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.solution-footer {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.solution-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 600;
}
.solution-check-icon { color: var(--blue-bright); font-size: 16px; }

/* ─── PROOF SECTION ─── */
.proof {
  background: #ffffff;
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.proof-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.proof-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}
.proof-header h2 .accent { color: var(--blue); }
.proof-underline {
  width: 64px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin: 16px auto 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}
.proof-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
}
.proof-icon-box {
  width: 44px; height: 44px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.proof-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.5px; }
.proof-card p  { font-size: 13px; color: var(--gray-400); font-weight: 500; }
.proof-quote {
  text-align: center;
  max-width: 700px;
  margin: 48px auto 0;
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}
.proof-quote strong { color: var(--navy); }

/* ─── REVIEWS ─── */
.reviews {
  background: var(--gray-50);
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(59,130,246,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 100% 105%, rgba(37,99,235,0.05) 0%, transparent 60%);
  padding: 96px 48px;
}
.reviews-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.reviews-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.reviews-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.score-num { font-size: 52px; font-weight: 900; color: var(--navy); letter-spacing: -2px; }
.score-right { text-align: left; }
.score-stars { color: #F59E0B; font-size: 22px; letter-spacing: 2px; }
.score-sub { font-size: 13px; color: var(--gray-400); margin-top: 2px; }
.score-sub a { color: var(--blue); text-decoration: none; font-weight: 600; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
}
.review-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.reviewer-meta { font-size: 12px; color: var(--gray-400); }
.reviews-cta { text-align: center; margin-top: 48px; }
.trustindex-wrap { max-width: 1100px; margin: 0 auto; }

/* ─── REVIEW CAROUSEL ─── */
.review-carousel { max-width: 720px; margin: 0 auto; }
.review-carousel-track { position: relative; min-height: 220px; }
.review-slide { display: none; animation: reviewFadeIn 0.5s ease; }
.review-slide.active { display: block; }
@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-slide .review-card {
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 40px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(11,45,78,0.06);
}
.review-slide .review-card blockquote {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--navy); transform: scale(1.3); }

/* ─── SERVICES ─── */
.services-sec {
  background: var(--gray-50);
  background-image:
    linear-gradient(rgba(11,45,78,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,45,78,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 96px 48px;
}
.services-header { text-align: center; max-width: 900px; margin: 0 auto 56px; }
.services-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.services-header p { font-size: 16px; color: var(--gray-600); line-height: 1.7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(11,45,78,0.1); border-color: var(--blue); transform: translateY(-2px); }
.service-icon { font-size: 32px; margin-bottom: 16px; }
.service-from { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card h3 .service-underline { background: linear-gradient(transparent 72%, rgba(59,130,246,0.45) 70%); border-radius: 3px; padding: 0 2px; }
.service-card p  { font-size: 14px; color: var(--gray-400); line-height: 1.65; flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
/* Stretched link — entire card becomes clickable */
.service-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
}

/* ─── QUOTE / CTA SECTION ─── */
.cta-section {
  background: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 55% 60% at 100% 100%, rgba(37,99,235,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 0%, rgba(59,130,246,0.1) 0%, transparent 60%);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-left h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-left h2 .accent { color: var(--blue-bright); }
.cta-left p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; }
.cta-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta-perks li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 500; }
.perk-check { color: var(--blue-bright); font-size: 16px; }
.cta-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px;
}
.cta-form h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.5px; }
.form-time { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; }
.form-time strong { color: #22C55E; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group select,
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  color: var(--gray-900);
  font-family: inherit;
  background: var(--gray-50);
  transition: border 0.15s;
}
.form-group select:focus,
.form-group input:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
  transition: background 0.15s;
}
.form-submit:hover { background: var(--navy-mid); }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 10px; }

/* ─── GET IN TOUCH ─── */
.get-in-touch { background: var(--gray-100); padding: 96px 48px; text-align: center; }
.get-in-touch h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; color: var(--navy); letter-spacing: -1.5px; margin-bottom: 14px; line-height: 1.1; }
.get-in-touch .section-sub { font-size: 17px; color: var(--gray-600); max-width: 480px; margin: 0 auto 48px; line-height: 1.7; }
.git-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; padding: 16px 36px; border-radius: 100px; font-size: 16px; font-weight: 700; text-decoration: none; margin-top: 8px; transition: background 0.15s; }
.git-cta:hover { background: var(--navy-mid); }
.git-note { font-size: 13px; color: var(--gray-400); margin-top: 14px; }
.footer-phone-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 10px 20px 10px 14px; margin-top: 16px; text-decoration: none; transition: background 0.15s; }
.footer-phone-pill:hover { background: rgba(255,255,255,0.12); }
.footer-phone-pill svg { flex-shrink: 0; }
.footer-phone-pill span { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.3px; }

/* ─── HOW IT WORKS ─── */
.how-it-works { background: #fff; padding: 96px 48px; }
.how-it-works .container { max-width: 1100px; margin: 0 auto; }
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; margin-top: 48px; }
.steps-row::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--blue), var(--blue-bright)); }
.step { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--blue-xlight); border: 2px solid var(--blue); color: var(--blue); font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; position: relative; z-index: 1; }
.step h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
@media (max-width: 960px) { .how-it-works { padding: 64px 20px; } .steps-row { grid-template-columns: 1fr 1fr; } .steps-row::before { display: none; } }
@media (max-width: 640px) { .how-it-works { padding: 48px 16px; } .steps-row { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
footer { background: #111827; padding: 40px 48px; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
.footer-logo-name { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -0.3px; margin-bottom: 4px; }
.footer-brand-link { text-decoration:none; color:inherit; display:block; }
.footer-logo-sub { font-size:11px; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:0.5px; }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-social-btn { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; text-decoration: none; outline: none; border: none; cursor: pointer; transition: background 0.15s; }
.footer-social-btn:hover { background: rgba(255,255,255,0.18); }
.footer-social-btn svg { display: block; overflow: visible; }
.footer-col-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-hours-row { display: flex; gap: 32px; margin-bottom: 6px; }
.footer-hours-row span:first-child { font-size: 13px; color: rgba(255,255,255,0.55); min-width: 130px; }
.footer-hours-row span:last-child { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-contact-row svg { display: block; flex-shrink: 0; }
.footer-contact-row a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; overflow-wrap: break-word; word-break: break-word; }
.footer-icon { font-size:15px; width:22px; text-align:center; flex-shrink:0; line-height:1; }
.footer-contact-row a:hover { color: #fff; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ─── LUCIDE ICONS ─── */
[data-lucide] { display: block; }
.problem-icon-box [data-lucide]  { width: 20px; height: 20px; color: #EF4444; stroke-width: 2; }
.solution-icon-box [data-lucide] { width: 20px; height: 20px; color: var(--blue-bright); stroke-width: 2; }
.proof-icon-box [data-lucide]    { width: 22px; height: 22px; color: var(--navy); stroke-width: 1.75; }
.service-icon [data-lucide]      { width: 30px; height: 30px; color: var(--navy); stroke-width: 1.5; }
.perk-check [data-lucide]        { width: 16px; height: 16px; color: var(--blue-bright); stroke-width: 2.5; display: inline-block; vertical-align: middle; }
.solution-check-icon [data-lucide] { width: 16px; height: 16px; color: var(--blue-bright); stroke-width: 2.5; display: inline-block; vertical-align: middle; }
.frame-placeholder-icon [data-lucide] { width: 48px; height: 48px; color: rgba(255,255,255,0.3); stroke-width: 1; }
.badge-award [data-lucide] { width: 14px; height: 14px; color: var(--blue); stroke-width: 2; display: inline-block; vertical-align: middle; }
.form-meta [data-lucide] { width: 14px; height: 14px; display: inline-block; vertical-align: middle; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-logo-name { font-size:16px; }
  .nav-links { display: none; }
  .nav-cta-claim { display: none; }
  .nav-phone { display: none; }
  section, .solution, .proof, .reviews, .services-sec, .cta-section { padding: 64px 20px; }
  .hero { padding: 56px 20px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-frame { display: none; }
  .hero-form { padding: 28px; }
  .problem-grid, .solution-grid, .reviews-grid, .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 32px 20px; flex-direction: column; text-align: left; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-phone { display: none; }
  section, .solution, .proof, .reviews, .services-sec, .cta-section, .get-in-touch { padding: 48px 16px; }
  .hero { padding: 48px 16px; }
  .hero-badge { font-size:9px; letter-spacing:0.2px; padding:5px 10px 5px 8px; }
  .hero h1 { letter-spacing: -1.5px; word-break: break-word; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-stat-divider { display: none; }
  .problem-grid, .solution-grid, .proof-grid, .reviews-grid, .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { gap: 32px; }
  footer { padding: 32px 16px; flex-direction: column; text-align: left; }
  .footer-logo-name { font-size:16px; }
  .footer-socials { justify-content: flex-start !important; }
  .footer-copy { text-align: left; }
  div[style*="text-align:right"] { text-align: left !important; }
  .problem-header h2 { white-space: normal !important; }
  .services-header h2 { white-space: normal !important; }
}
@media (max-width: 400px) {
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .nav-cta-claim { padding: 9px 12px; font-size: 12px; }
}

/* ── HAMBURGER / MOBILE MENU ── */
.nav-hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; background:none; border:none; cursor:pointer; padding:4px; margin-left:8px; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--navy); border-radius:2px; transition:all 0.2s; }
.mobile-menu { display:none; position:fixed; top:64px; left:0; right:0; background:#fff; border-bottom:1px solid var(--gray-200); padding:12px 16px 20px; z-index:99; box-shadow:0 8px 24px rgba(0,0,0,0.08); }
.mobile-menu.open { display:flex; flex-direction:column; }
.mobile-menu a { padding:12px 16px; font-size:15px; font-weight:500; color:var(--gray-600); text-decoration:none; border-radius:8px; display:block; }
.mobile-menu a:hover { background:var(--blue-xlight); color:var(--navy); }
.mobile-menu .mobile-divider { height:1px; background:var(--gray-200); margin:8px 0; }
.mobile-menu .mobile-cta { background:var(--blue); color:#fff !important; text-align:center; border-radius:8px; margin-top:4px; font-weight:700; padding:14px 16px; }
.mobile-menu .mobile-cta:hover { background:var(--navy-mid); }
.mobile-dropdown-toggle { width:100%; text-align:left; padding:12px 16px; font-size:15px; font-weight:500; color:var(--gray-600); background:none; border:none; cursor:pointer; border-radius:8px; display:flex; justify-content:space-between; align-items:center; font-family:inherit; }
.mobile-dropdown-toggle:hover { background:var(--blue-xlight); color:var(--navy); }
.mobile-dropdown-toggle .toggle-arrow { font-size:11px; transition:transform 0.2s; }
.mobile-dropdown-items { display:none; padding-left:8px; flex-direction:column; }
.mobile-dropdown-items a { padding:9px 16px; font-size:14px; color:var(--gray-600); border-radius:8px; display:block; text-decoration:none; }
.mobile-dropdown-items a:hover { background:var(--blue-xlight); color:var(--navy); }
.mobile-nav-dropdown.open .mobile-dropdown-items { display:flex; }
.mobile-nav-dropdown.open .toggle-arrow { transform:rotate(180deg); }
@media (max-width:960px) { .nav-hamburger { display:flex; } }

/* ── FREE CLEAN MODAL ── */
.modal-backdrop { display:none; position:fixed; inset:0; background:rgba(7,30,53,0.6); z-index:500; align-items:center; justify-content:center; padding:20px; backdrop-filter:blur(4px); }
.modal-backdrop.open { display:flex; }
.modal-card { background:#fff; border-radius:24px; padding:36px 32px 24px; max-width:500px; width:100%; position:relative; box-shadow:0 32px 80px rgba(0,0,0,0.22); animation:modalIn 0.25s ease; max-height:90vh; overflow-y:auto; -webkit-overflow-scrolling:touch; }
@keyframes modalIn { from { opacity:0; transform:translateY(16px) scale(0.97); } to { opacity:1; transform:none; } }
.modal-close { position:absolute; top:16px; right:16px; width:32px; height:32px; border-radius:50%; background:var(--gray-100); border:none; cursor:pointer; font-size:18px; color:var(--gray-600); display:flex; align-items:center; justify-content:center; transition:background 0.15s; }
.modal-close:hover { background:var(--gray-200); }
.modal-offer-badge { display:inline-flex; align-items:center; gap:6px; background:var(--blue-xlight); color:var(--blue); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; padding:5px 12px; border-radius:100px; margin-bottom:16px; }
.modal-title { font-size:26px; font-weight:800; color:var(--navy); letter-spacing:-0.8px; line-height:1.15; margin-bottom:10px; }
.modal-title span { color:var(--blue); }
.modal-sub { font-size:14px; color:var(--gray-600); line-height:1.6; margin-bottom:24px; }
.modal-terms { font-size:11px; color:var(--gray-400); text-align:center; margin-top:10px; padding-bottom:4px; }
@media (max-width:480px) {
  .modal-card { padding:24px 16px 16px; border-radius:16px; }
  .modal-title { font-size:22px; }
}

/* ── QUOTE MODAL ── */
.quote-modal-card { background:#fff; border-radius:20px; max-width:600px; width:100%; max-height:88vh; overflow-y:auto; position:relative; box-shadow:0 32px 80px rgba(0,0,0,0.22); animation:modalIn 0.25s ease; -webkit-overflow-scrolling:touch; display:flex; flex-direction:column; }
.quote-modal-top { position:sticky; top:0; background:#fff; z-index:10; padding:28px 32px 22px; border-bottom:1px solid var(--gray-200); flex-shrink:0; }
.quote-modal-title { font-size:28px; font-weight:900; color:var(--navy); letter-spacing:-1px; line-height:1.15; margin:12px 0 6px; }
.quote-modal-title span { color:var(--blue); }
.quote-modal-sub { font-size:14px; color:var(--gray-600); line-height:1.5; }
.quote-modal-close { position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%; background:var(--gray-100); border:none; cursor:pointer; font-size:18px; color:var(--gray-600); display:flex; align-items:center; justify-content:center; transition:background 0.15s; flex-shrink:0; }
.quote-modal-close:hover { background:var(--gray-200); }
.quote-modal-body { flex:1; overflow-y:auto; }
@media (max-width:600px) {
  .quote-modal-card { max-height:94vh; border-radius:16px 16px 0 0; }
  .modal-backdrop.quote-open { align-items:flex-end; padding:0; }
}





