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

:root {
  /* Brand Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0a0f1e;
  --bg-dark-accent: #111827;
  --primary: #ff6200;
  --primary-light: #ff8c38;
  --primary-hover: #e05600;
  --primary-glow: rgba(255, 98, 0, 0.35);
  --secondary: #1a3a8f;
  --secondary-light: #2d55cc;
  --secondary-hover: #122d70;
  --secondary-glow: rgba(26, 58, 143, 0.2);
  --accent-gray: #f0f4fa;
  --border-color: #e2e8f0;
  --border-subtle: rgba(226, 232, 240, 0.6);

  /* Text Colors */
  --text-dark: #0a0f1e;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --text-orange: #ff6200;

  /* Typography */
  --font-sans: 'Outfit', 'Inter', system-ui, sans-serif;

  /* Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(10, 15, 30, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 15, 30, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 15, 30, 0.12);
  --shadow-xl: 0 32px 64px rgba(10, 15, 30, 0.16);
  --shadow-primary: 0 8px 28px rgba(255, 98, 0, 0.4);
  --shadow-primary-lg: 0 16px 48px rgba(255, 98, 0, 0.5);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--bg-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea {
  font-family: inherit;
}

/* ─── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-orange { color: var(--primary); }
.text-navy { color: var(--secondary); }
.font-bold { font-weight: 700; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-spring);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-primary-lg);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-accent));
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(255, 98, 0, 0.04);
}

/* ─── Animations ──────────────────────────────────────────────── */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 98, 0, 0.65); }
  70%  { box-shadow: 0 0 0 18px rgba(255, 98, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 98, 0, 0); }
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes shine {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* pulse removed — all phone buttons have clean hover instead */

/* ─── Header ──────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(10, 15, 30, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  color: var(--bg-dark);
  white-space: nowrap;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 98, 0, 0.35);
  flex-shrink: 0;
}

.desktop-only-logo {
  display: flex;
}

.mobile-only-center-phone {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(255, 98, 0, 0.35);
  transition: var(--transition-spring);
}

.nav-phone-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-primary-lg);
}

.nav-phone-btn svg {
  stroke: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* ─── Status Indicator ────────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: dot-blink 1.8s infinite;
  flex-shrink: 0;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: #fff;
  color: var(--text-dark);
  padding: 80px 0 90px;
  overflow: hidden;
}

/* subtle grid background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226,232,240,0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,232,240,0.45) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

/* orange glow blob top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,98,0,0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 660px;
  animation: slideUp 0.7s ease both;
}

/* ── Badge ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--bg-dark), #1e2a4a);
  color: var(--text-light);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(10,15,30,0.25);
}

/* ── H1 ── */
.hero-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 10px;
  color: var(--bg-dark);
  letter-spacing: -1.5px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--primary), #ff9d45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-br { display: none; }

/* ── Subtitle (outside h1) ── */
.hero-subtitle {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.hero-subtitle strong {
  color: var(--primary);
  font-weight: 800;
}

.hero-description {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
}

/* ── CTA Phone ── */
.hero-cta-group {
  margin-bottom: 32px;
}

.hero-phone-cta {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, #fff5ee, #fff0e4);
  border: 2px solid var(--primary);
  padding: 20px 28px;
  border-radius: var(--radius-xl);
  align-items: flex-start;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255,98,0,0.12);
}

.hero-phone-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  animation: shine 3.5s infinite;
}

.hero-phone-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255,98,0,0.22);
}

.hero-phone-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.hero-phone-number {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-phone-number svg {
  width: 34px;
  height: 34px;
  stroke: var(--primary);
  flex-shrink: 0;
}

/* ── Service pills ── */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-dark);
  background: #ffffff;
  border: 1px solid rgba(14, 24, 48, 0.15);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(10, 15, 30, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.hero-service-pill svg {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  width: 16px;
  height: 16px;
}

.hero-service-pill:hover {
  border-color: var(--primary);
  background: rgba(255, 98, 0, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 98, 0, 0.1);
  color: var(--primary);
}

.hero-service-pill:hover svg {
  transform: scale(1.15) rotate(5deg);
}


/* ── Trust chips ── */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-feature-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Reviews / Rating ── */
.hero-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars span {
  font-size: 20px;
  color: #f59e0b;
  line-height: 1;
}

.hero-reviews-text {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: -0.2px;
}

.hero-reviews-text strong {
  color: var(--bg-dark);
  font-weight: 700;
}

/* ── Hero Image ── */
.hero-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUp 0.8s 0.15s ease both;
}

.hero-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10,15,30,0.18);
  border: none;
  background: var(--bg-dark);
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* orange accent strip */
.hero-image-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 0;
}

.hero-img-src {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ─── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2545 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 40px
  );
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(255,98,0,0.15);
  border-color: rgba(255,98,0,0.3);
  transform: translateY(-4px);
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255,98,0,0.35);
}

.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.trust-text {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ─── Sections ────────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-secondary {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #f0f5ff 100%);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  background: rgba(255,98,0,0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,98,0,0.2);
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Services ────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition-spring);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 98, 0, 0.15);
}

.service-icon {
  background: linear-gradient(135deg, rgba(26,58,143,0.08), rgba(26,58,143,0.04));
  color: var(--secondary);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-spring);
  border: 1px solid rgba(26,58,143,0.08);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255,98,0,0.35);
  transform: scale(1.05);
}

.service-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 0;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ─── How It Works ────────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.how-connector {
  position: absolute;
  top: 52px;
  left: calc(33.33% - 8px);
  width: calc(66.66% - 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(255,98,0,0.2) 100%);
  z-index: 1;
}

.how-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-spring);
}

.how-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.how-number {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 24px rgba(255,98,0,0.4);
  transition: var(--transition-spring);
}

.how-step:hover .how-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(255,98,0,0.5);
}

.how-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.how-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Lead Section ────────────────────────────────────────────── */
.lead-section {
  position: relative;
  overflow: hidden;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.lead-info-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.lead-info-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.lead-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(255,98,0,0.3);
}

.lead-info-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.lead-info-text {
  font-size: 13px;
  color: var(--text-muted);
}

.lead-map-wrap {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.lead-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  border: 0;
}

.lead-form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary-light));
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  font-size: 15px;
  background-color: var(--bg-secondary);
  transition: var(--transition);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 98, 0, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-terms {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}

.form-terms input {
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-btn {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 28px;
  border: 2px solid rgba(34,197,94,0.3);
}

/* ─── Pricing ─────────────────────────────────────────────────── */
.price-table {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  transition: background 0.2s ease;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:not(.price-header-row):hover {
  background: rgba(255,98,0,0.03);
}

.price-header-row {
  background: linear-gradient(135deg, var(--bg-dark), #1a2545);
  color: var(--text-light);
  font-weight: 700;
  border-bottom: none;
}

.price-service {
  font-weight: 600;
}

.price-value {
  color: var(--primary);
  font-weight: 800;
  font-size: 17px;
}

.price-time {
  color: var(--text-muted);
  font-size: 13px;
}

.price-header-row .price-value,
.price-header-row .price-time {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.price-info-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ─── Coverage Tabs ───────────────────────────────────────────── */
.coverage-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-spring);
  color: var(--text-muted);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--bg-dark), #1a2545);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.area-item {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-spring);
  color: var(--text-dark);
}

.area-item::before {
  content: '⚡';
  font-size: 12px;
  flex-shrink: 0;
}

.area-item:hover {
  border-color: var(--primary);
  background: rgba(255,98,0,0.04);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255,98,0,0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(255,98,0,0.1);
}

.faq-question {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-dark);
  gap: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.faq-answer-inner {
  padding-bottom: 22px;
  line-height: 1.7;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gray);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition-spring);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0e1830 100%);
  color: var(--text-light);
  padding: 72px 0 24px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary-light));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-info .logo {
  color: #fff;
  margin-bottom: 20px;
}

.footer-text {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-link::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--primary);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ─── Mobile Sticky Bottom CTA ────────────────────────────────── */
.mobile-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 2px solid rgba(255,98,0,0.2);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -8px 32px rgba(10,15,30,0.15);
}

.mobile-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  font-size: 22px;
  font-weight: 900;
  box-shadow: var(--shadow-primary);
  letter-spacing: -0.5px;
  transition: var(--transition-spring);
}

.mobile-bottom-btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-primary-lg);
}

/* ─── Responsive: Tablet (max 1024px) ────────────────────────── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 50px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info {
    grid-column: span 2;
  }

  .section-title {
    font-size: 34px;
  }
}

/* ─── Responsive: Mobile (max 768px) ─────────────────────────── */
@media (max-width: 768px) {
  /* ── NAV ── */
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 12px 20px;
    gap: 10px;
    position: relative;
  }

  .desktop-only-logo {
    display: none !important;
  }

  /* Big orange call button in nav */
  .mobile-only-center-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-primary);
    width: 100%;
    white-space: nowrap;
    letter-spacing: -0.5px;
    transition: var(--transition-spring);
  }

  .mobile-only-center-phone svg {
    stroke: #fff;
    flex-shrink: 0;
  }

  .menu-toggle-only {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    box-shadow: var(--shadow-xl);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 28px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }

  .menu-toggle .line {
    display: block;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, width 0.3s ease;
  }

  .menu-toggle .line-long {
    width: 100%;
  }

  .menu-toggle .line-medium {
    width: 75%;
  }

  .menu-toggle .line-short {
    width: 50%;
  }

  /* When active menu */
  .menu-toggle.active .line-long {
    transform: translateY(7.75px) rotate(45deg);
  }

  .menu-toggle.active .line-medium {
    opacity: 0;
    transform: scale(0);
  }

  .menu-toggle.active .line-short {
    width: 100%;
    transform: translateY(-7.75px) rotate(-45deg);
  }

  .nav-actions {
    position: absolute;
    right: 60px;
    top: 16px;
  }

  .nav-phone-btn {
    display: none;
  }

  .mobile-nav-phone {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    animation: pulse 2.2s infinite;
    background: rgba(255,98,0,0.06);
    width: 100%;
    justify-content: center;
  }

  /* ── HERO ── */
  .hero {
    min-height: unset;
    height: auto;
    padding: 0 0 28px;
    display: block;
    overflow: visible;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
    gap: 0;
  }

  /* Image on top */
  .hero-image-side {
    order: -1;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    height: 42vw;
    min-height: 200px;
    max-height: 260px;
    display: block;
    flex-shrink: 0;
  }

  .hero-image-card {
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    width: 100%;
    max-width: none;
  }

  .hero-image-card::after {
    display: none;
  }

  .hero-img-src {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }

  /* Badge overlapping image */
  .hero-tag {
    margin-top: -28px;
    margin-bottom: 12px;
    align-self: center;
    z-index: 20;
    position: relative;
    font-size: 11px;
  }

  /* Content */
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding-top: 6px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1.2px;
    text-align: center;
  }

  .mobile-br { display: block; }

  .hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-align: center;
  }

  .hero-description {
    display: none; /* hide on mobile to save space */
  }

  .hero-cta-group {
    margin-bottom: 10px;
  }

  .hero-phone-cta {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
  }

  .hero-phone-cta::before {
    display: none;
  }

  .hero-phone-label {
    display: none;
  }

  .hero-phone-number {
    font-size: 28px;
  }

  .hero-phone-number svg {
    width: 26px;
    height: 26px;
  }

  /* service pills on mobile – always 2 per row */
  .hero-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-service-pill {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-service-pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }



  .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .hero-feature-item {
    font-size: 11px;
    padding: 5px 10px;
  }

  .hero-reviews {
    justify-content: center;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .services-grid { grid-template-columns: 1fr; }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-connector { display: none; }

  .area-grid { grid-template-columns: repeat(2, 1fr); }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 20px;
  }

  .price-header-row { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-info { grid-column: span 1; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .mobile-bottom-cta {
    display: block;
  }

  body {
    padding-bottom: 88px;
  }
}

/* ─── Responsive: Small Mobile (max 480px) ────────────────────── */
@media (max-width: 480px) {
  .mobile-only-center-phone {
    font-size: 20px !important;
    padding: 14px 16px !important;
  }

  .mobile-bottom-btn {
    font-size: 24px;
    padding: 16px;
  }

  .hero {
    height: auto;
    min-height: unset;
    overflow: visible;
  }

  .hero-image-side {
    height: 34vh;
    min-height: 190px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-phone-number {
    font-size: 24px;
  }

  .hero-tag {
    font-size: 10px;
    padding: 5px 12px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 12px;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .coverage-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn { text-align: center; }

  .lead-form-card {
    padding: 28px 18px;
  }

  .section-title {
    font-size: 24px;
  }
}