/* ================================================================
   VANTAGE AIR SOLUTIONS — Main Stylesheet
   Palette: Graphite #2B2E33 | Ice Blue #5FB4D9 | Amber #F2A93B
   Fonts: Barlow Condensed (headings) | Inter (body)
   ================================================================ */

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

:root {
  --graphite:    #2B2E33;
  --graphite-lt: #383C42;
  --graphite-md: #404650;
  --graphite-dk: #1C1F23;
  --ice:         #5FB4D9;
  --ice-lt:      #7DC9E8;
  --ice-dk:      #4A9DBE;
  --amber:       #F2A93B;
  --amber-dk:    #D4902A;
  --white:       #ffffff;
  --off-white:   #F7F9FB;
  --light:       #EEF2F5;
  --mid:         #CDD5DE;
  --gray:        #8A9099;
  --gray-dk:     #5A6070;
  --red:         #E8394A;
  --font-head:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:   'Courier New', monospace;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.16);
  --transition:  0.25s ease;
  --glow-ice:    0 0 24px rgba(95,180,217,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 60px 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1rem; font-weight: 600; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--graphite-dk); }
.btn-primary:hover {
  background: var(--amber-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(242,169,59,0.35);
}
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--ice); }
.btn-outline:hover { background: var(--ice); color: var(--graphite-dk); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-dark { background: var(--graphite); color: var(--white); }
.btn-dark:hover { background: var(--graphite-lt); }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--ice); display: inline-block; }
.section-title { margin-bottom: 16px; color: var(--graphite-dk); }
.section-title--white { color: var(--white); }
.section-subtitle { max-width: 600px; color: var(--gray-dk); font-size: 1.05rem; margin: 0 auto; font-weight: 300; }
.section-subtitle--white { color: rgba(255,255,255,0.6); }

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
#navbar.transparent { background: transparent; border-bottom: 1px solid rgba(255,255,255,0.08); }
#navbar.scrolled {
  background: var(--graphite-dk);
  border-bottom: 1px solid rgba(95,180,217,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.nav-inner { display: flex; align-items: center; height: 70px; gap: 0; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--ice);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800; font-size: 0.9rem;
  color: var(--graphite-dk);
  letter-spacing: 0.02em;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); line-height: 1;
}
.logo-text span { display: block; font-size: 0.55rem; font-weight: 400; letter-spacing: 0.16em; color: var(--ice); margin-top: 2px; }
.nav-links { display: flex; align-items: center; margin: 0 auto; gap: 0; }
.nav-links a {
  display: block; padding: 8px 11px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--ice); }
.nav-cta { margin-left: 16px; flex-shrink: 0; }
.nav-emergency {
  display: flex; align-items: center; gap: 7px;
  margin-left: 10px; flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--red);
}
.emg-dot {
  width: 7px; height: 7px;
  background: var(--red); border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,57,74,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(232,57,74,0); }
}

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--graphite-dk);
  border-bottom: 1px solid rgba(95,180,217,0.2);
  padding: 12px 24px 24px;
  display: flex; flex-direction: column; gap: 2px;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block; padding: 11px 0;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.btn-primary { color: var(--graphite-dk); text-align: center; margin-top: 10px; border-bottom: none; }

/* ── HOME HERO ── */
.hero {
  min-height: 100vh;
  background: var(--graphite-dk);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(95,180,217,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,180,217,0.045) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-img-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat;
  opacity: 0.09;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,31,35,0.97) 0%, rgba(43,46,51,0.88) 55%, rgba(28,31,35,0.65) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(95,180,217,0.35);
  border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice);
  margin-bottom: 22px;
  background: rgba(95,180,217,0.06);
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--ice); border-radius: 50%; }
.hero h1 { color: var(--white); margin-bottom: 14px; }
.hero h1 em { color: var(--ice); font-style: normal; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.55);
  max-width: 520px; margin-bottom: 38px;
  font-weight: 300; line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-emg-link {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(232,57,74,0.4); border-radius: 8px;
  background: rgba(232,57,74,0.07); color: var(--white);
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition);
}
.hero-emg-link:hover { background: rgba(232,57,74,0.15); border-color: var(--red); }
.hero-emg-link i { color: var(--red); }
.hero-stats {
  display: flex; gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { }
.hstat-num {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hstat-num em { color: var(--ice); font-style: normal; }
.hstat-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-top: 5px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--graphite);
  border-top: 1px solid rgba(95,180,217,0.12);
  border-bottom: 1px solid rgba(95,180,217,0.12);
  padding: 14px 0;
}
.trust-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.trust-item i { color: var(--ice); font-size: 0.9rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--graphite-dk); position: relative;
  padding: 128px 0 68px; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(95,180,217,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,180,217,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ice) 50%, transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.breadcrumb a { color: var(--ice); }
.breadcrumb i { font-size: 0.5rem; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero h1 em { color: var(--ice); font-style: normal; }
.page-hero > .container > .page-hero-content > p {
  color: rgba(255,255,255,0.5); font-size: 1.05rem;
  max-width: 560px; font-weight: 300;
}

/* ── HOME SERVICES GRID ── */
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--light);
  border: 1px solid var(--light); border-radius: var(--radius-lg); overflow: hidden;
}
.svc-card {
  background: var(--white); padding: 34px 28px;
  position: relative; transition: background var(--transition);
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--ice); transition: height 0.35s ease;
}
.svc-card:hover::before { height: 100%; }
.svc-card:hover { background: var(--off-white); }
.svc-num {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.18em; color: var(--ice); margin-bottom: 14px;
}
.svc-icon {
  width: 46px; height: 46px;
  background: rgba(95,180,217,0.08);
  border: 1px solid rgba(95,180,217,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--ice); margin-bottom: 16px;
}
.svc-card h3 { font-size: 1.1rem; margin-bottom: 9px; color: var(--graphite-dk); }
.svc-card p { font-size: 0.86rem; color: var(--gray-dk); line-height: 1.68; margin-bottom: 18px; }
.svc-link {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ice-dk);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.svc-card:hover .svc-link { gap: 10px; }

/* ── WHY SECTION ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.why-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--graphite-dk);
  border: 1px solid rgba(95,180,217,0.3);
  border-radius: 12px; padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}
.why-badge-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--ice); line-height: 1; }
.why-badge-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; }
.why-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.why-feat { display: flex; align-items: flex-start; gap: 12px; }
.why-feat-icon {
  width: 34px; height: 34px; min-width: 34px;
  background: rgba(95,180,217,0.1);
  border: 1px solid rgba(95,180,217,0.22);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ice); font-size: 0.85rem;
}
.why-feat h4 { font-size: 0.85rem; color: var(--white); font-family: var(--font-head); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.why-feat p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ── STATS STRIP ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--mid); }
.stat-block { background: var(--off-white); padding: 36px 20px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--graphite-dk); line-height: 1; letter-spacing: 0.02em; }
.stat-num span { color: var(--ice); }
.stat-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-top: 8px; }

/* ── PLAN PREVIEW (home) ── */
.plan-preview-strip {
  background: var(--graphite);
  padding: 72px 0;
}
.plan-preview-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.plan-preview-text h2 { color: var(--white); margin-bottom: 10px; }
.plan-preview-text p { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 460px; }
.plan-tiers-preview { display: flex; gap: 12px; }
.ptier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(95,180,217,0.2);
  border-radius: var(--radius);
  padding: 16px 20px; text-align: center; min-width: 120px;
}
.ptier.featured { border-color: var(--ice); background: rgba(95,180,217,0.1); }
.ptier-name { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ptier.featured .ptier-name { color: var(--ice); }
.ptier-price { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1.1; margin: 4px 0; }
.ptier-period { font-family: var(--font-mono); font-size: 0.62rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; }

/* ── REVIEW MINI (home) ── */
.review-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-mini {
  background: var(--white); border: 1px solid var(--light);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.review-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(95,180,217,0.3); }
.rm-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.rm-stars i { color: var(--amber); font-size: 0.82rem; }
.rm-text { font-size: 0.87rem; color: var(--gray-dk); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.rm-author { display: flex; align-items: center; gap: 10px; }
.rm-avatar {
  width: 36px; height: 36px;
  background: var(--graphite);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--ice);
}
.rm-name { font-weight: 600; font-size: 0.84rem; color: var(--graphite-dk); }
.rm-loc { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gray); }

/* ── SERVICE DETAIL ── */
.service-detail { padding: 80px 0; border-bottom: 1px solid var(--light); }
.service-detail:nth-child(even) { background: var(--off-white); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-detail-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.svc-detail-body h2 { margin-bottom: 16px; color: var(--graphite-dk); }
.svc-detail-body > p { color: var(--gray-dk); margin-bottom: 12px; font-size: 0.94rem; }
.feature-list { margin: 18px 0 26px; display: flex; flex-direction: column; gap: 9px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--graphite);
}
.feature-list li::before {
  content: '';
  width: 16px; height: 16px; min-width: 16px;
  background: rgba(95,180,217,0.12);
  border: 1px solid var(--ice-dk);
  border-radius: 50%;
  position: relative; top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%235FB4D9' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

/* ── MAINTENANCE PLANS ── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.plan-card {
  background: var(--white); border: 1px solid var(--light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); box-shadow: var(--shadow);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--ice); box-shadow: var(--glow-ice); }
.plan-card.featured:hover { box-shadow: var(--glow-ice), var(--shadow-lg); }
.plan-header { padding: 28px; background: var(--off-white); border-bottom: 1px solid var(--light); }
.plan-card.featured .plan-header { background: var(--graphite-dk); border-color: rgba(95,180,217,0.2); }
.plan-tier { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ice); margin-bottom: 5px; }
.plan-name { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; text-transform: uppercase; color: var(--graphite-dk); margin-bottom: 14px; }
.plan-card.featured .plan-name { color: var(--white); }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--graphite-dk); line-height: 1; }
.plan-card.featured .plan-price-num { color: var(--amber); }
.plan-price-period { font-size: 0.82rem; color: var(--gray); }
.plan-body { padding: 24px 28px 28px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: var(--graphite); }
.plan-feature i.fa-check { color: var(--ice); font-size: 0.85rem; margin-top: 2px; }
.plan-feature i.fa-xmark { color: var(--mid); font-size: 0.85rem; margin-top: 2px; }
.plan-feature.dim { color: var(--gray); }
.plan-badge {
  display: inline-block;
  background: rgba(95,180,217,0.1); border: 1px solid rgba(95,180,217,0.3);
  border-radius: 4px; padding: 1px 7px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--ice);
  margin-left: 5px; vertical-align: middle;
}
.popular-badge {
  display: inline-block;
  background: var(--amber); color: var(--graphite-dk);
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle;
}

/* ── COMPARE TABLE ── */
.compare-wrap { overflow-x: auto; margin-top: 48px; }
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.compare-table th {
  background: var(--graphite); color: var(--white); padding: 16px 20px;
  text-align: left; font-family: var(--font-head); font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 2px solid rgba(95,180,217,0.25);
}
.compare-table th.ice-col { background: var(--ice-dk); }
.compare-table td { padding: 13px 20px; border-bottom: 1px solid var(--light); font-size: 0.88rem; color: var(--graphite); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) td { background: var(--off-white); }
.compare-table .fa-check { color: var(--ice); }
.compare-table .fa-xmark { color: var(--mid); }

/* ── REVIEWS ── */
.rating-overview {
  background: var(--graphite); border-radius: var(--radius-lg);
  padding: 36px 40px; display: flex; align-items: center; gap: 48px;
  margin-bottom: 48px;
}
.rating-big { text-align: center; flex-shrink: 0; }
.rating-big-num { font-family: var(--font-head); font-size: 5.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.rating-big-stars { display: flex; justify-content: center; gap: 4px; margin: 8px 0 5px; }
.rating-big-stars i { color: var(--amber); font-size: 1.1rem; }
.rating-big-label { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.35); letter-spacing: 0.14em; text-transform: uppercase; }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.rbar-row { display: flex; align-items: center; gap: 12px; }
.rbar-label { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.5); width: 40px; flex-shrink: 0; }
.rbar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.rbar-fill { height: 100%; background: var(--amber); border-radius: 3px; }
.rbar-count { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.35); width: 28px; text-align: right; flex-shrink: 0; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.review-card {
  background: var(--white); border: 1px solid var(--light);
  border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(95,180,217,0.3); }
.rc-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.rc-stars i { color: var(--amber); font-size: 0.82rem; }
.rc-text { font-size: 0.88rem; color: var(--gray-dk); line-height: 1.72; font-style: italic; margin-bottom: 18px; }
.rc-author { display: flex; align-items: center; gap: 12px; }
.rc-avatar {
  width: 40px; height: 40px; background: var(--graphite);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--ice);
  flex-shrink: 0;
}
.rc-name { font-weight: 600; font-size: 0.88rem; color: var(--graphite-dk); }
.rc-meta { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.rc-source { color: var(--ice-dk); }

/* ── SERVICE AREA ── */
.area-stats { display: flex; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }
.area-stat {
  background: rgba(95,180,217,0.08); border: 1px solid rgba(95,180,217,0.22);
  border-radius: var(--radius); padding: 18px 24px; text-align: center; flex: 1; min-width: 120px;
}
.area-stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--ice); line-height: 1; }
.area-stat-label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 5px; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.area-item {
  background: var(--off-white); border: 1px solid var(--light);
  border-left: 3px solid var(--ice); border-radius: var(--radius);
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--graphite); transition: all var(--transition);
}
.area-item:hover { background: rgba(95,180,217,0.06); border-color: var(--ice); }
.area-item i { color: var(--ice); font-size: 0.8rem; flex-shrink: 0; }

/* ── ABOUT ── */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.cert-item {
  background: var(--off-white); border: 1px solid var(--light);
  border-top: 3px solid var(--ice); border-radius: var(--radius);
  padding: 20px; text-align: center;
}
.cert-item i { font-size: 1.8rem; color: var(--ice); margin-bottom: 10px; display: block; }
.cert-item h4 { font-size: 0.8rem; color: var(--graphite-dk); margin-bottom: 4px; }
.cert-item p { font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.val-card {
  background: var(--graphite-dk);
  border: 1px solid rgba(95,180,217,0.15); border-radius: var(--radius-lg);
  padding: 28px;
}
.val-icon {
  width: 42px; height: 42px;
  background: rgba(95,180,217,0.12);
  border: 1px solid rgba(95,180,217,0.25); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--ice); margin-bottom: 16px;
}
.val-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.val-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.emg-card {
  background: var(--graphite-dk); border: 1px solid rgba(232,57,74,0.35);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 28px;
}
.emg-card-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.emg-card p { font-size: 0.84rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.emg-phone {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 800;
  color: var(--white); display: flex; align-items: center; gap: 8px;
}
.emg-phone a { color: var(--white); }
.ci-item { display: flex; gap: 14px; margin-bottom: 22px; }
.ci-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--graphite); border: 1px solid rgba(95,180,217,0.25);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--ice);
}
.ci-text h4 { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-dk); margin-bottom: 4px; }
.ci-text p, .ci-text a { font-size: 0.88rem; color: var(--graphite); }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--off-white); border: 1px solid var(--light);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-form-wrap h3 { font-size: 1.3rem; color: var(--graphite-dk); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label {
  font-family: var(--font-head); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-dk);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1px solid var(--mid);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.9rem; color: var(--graphite); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--ice); box-shadow: 0 0 0 3px rgba(95,180,217,0.14);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input.error, .form-group textarea.error { border-color: var(--red); }
.error-msg { font-size: 0.75rem; color: var(--red); display: none; margin-top: 2px; }
.form-group.has-error .error-msg { display: block; }
.sms-consent { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0 14px; font-size: 0.79rem; color: var(--gray-dk); line-height: 1.55; }
.sms-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--ice); }
.sms-consent a { color: var(--ice-dk); text-decoration: underline; }
.success-msg {
  display: none; background: rgba(95,180,217,0.1);
  border: 1px solid rgba(95,180,217,0.3); border-radius: var(--radius);
  padding: 14px 18px; font-size: 0.9rem; color: var(--graphite-dk);
  margin-bottom: 18px; align-items: center; gap: 10px;
}
.success-msg i { color: var(--ice); }
.success-msg.show { display: flex; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }

/* ── MAP ── */
.map-section iframe { width: 100%; height: 420px; border: none; display: block; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body); font-weight: 600;
  font-size: 0.94rem; color: var(--graphite-dk); transition: color var(--transition);
}
.faq-q:hover { color: var(--ice-dk); }
.faq-q i { color: var(--ice); transition: transform 0.3s ease; flex-shrink: 0; font-size: 0.85rem; }
.faq-q.open i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; font-size: 0.88rem; color: var(--gray-dk); line-height: 1.72; }
.faq-a.open { display: block; }

/* ── CTA ── */
.cta-section { background: var(--graphite-dk); padding: 76px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(95,180,217,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,180,217,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  position: relative; display: flex;
  align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-top: 8px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── LEGAL ── */
.legal-section { padding: 80px 0; background: var(--white); }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-effective {
  background: var(--off-white); border: 1px solid var(--light);
  border-left: 3px solid var(--ice); border-radius: var(--radius);
  padding: 11px 18px; font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--gray-dk); margin-bottom: 38px;
}
.legal-content h2 {
  font-family: var(--font-body); font-weight: 700; font-size: 1.1rem;
  text-transform: none; letter-spacing: 0; color: var(--graphite-dk);
  margin: 34px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--light);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 0.88rem; color: var(--gray-dk); margin-bottom: 13px; line-height: 1.78; }
.legal-content ul { margin: 8px 0 13px 20px; }
.legal-content ul li { font-size: 0.88rem; color: var(--gray-dk); margin-bottom: 8px; line-height: 1.65; list-style: disc; }
.legal-content a { color: var(--ice-dk); text-decoration: underline; }

/* ── FOOTER ── */
footer { background: var(--graphite-dk); border-top: 1px solid rgba(95,180,217,0.12); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin: 16px 0 22px; line-height: 1.68; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ice); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.55; }
.footer-contact .ico { color: var(--ice); width: 14px; text-align: center; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.45); }
.footer-contact a:hover { color: var(--white); }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 32px; height: 32px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.social-link:hover { background: rgba(95,180,217,0.14); border-color: var(--ice); color: var(--ice); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--ice); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 960px) {
  .nav-links, .nav-cta, .nav-emergency { display: none; }
  .hamburger { display: flex; }
  .svc-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-img { aspect-ratio: 16/9; }
  .why-badge { bottom: 12px; right: 12px; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-detail-grid.rev > img { order: -1; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .review-mini-grid { grid-template-columns: 1fr; }
  .plan-preview-inner { flex-direction: column; align-items: flex-start; }
  .rating-overview { flex-direction: column; gap: 24px; }
}
@media (max-width: 640px) {
  .section-pad { padding: 60px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-feats { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .area-stats { flex-direction: column; }
  .plan-tiers-preview { flex-direction: column; }
}
