/* ============ VARIABLES ============ */
:root {
  --blue: #0033A0;
  --blue-bright: #2E6BE6;
  --blue-deep: #00257A;
  --navy: #0A1633;
  --white: #FFFFFF;
  --blue-soft: #EEF3FB;
  --off-white: #F7FAFE;
  --hairline: #D4DEF0;
  --navy-dark: #001A52;
  --navy-footer: #000D2B;
  --amber: #F59E0B;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 72px;
  --nav-height-shrunk: 58px;
  --max-w: 1200px;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 1px 2px rgba(10,22,51,.04), 0 8px 24px rgba(10,22,51,.06);
  --shadow-lift: 0 2px 6px rgba(0,51,160,.06), 0 18px 44px rgba(0,51,160,.12);
  --radius: 16px;
}

/* ============ 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-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a, button, select, [role="button"] { touch-action: manipulation; }
button { cursor: pointer; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--blue); color: var(--white); }
section[id], #quoteForm { scroll-margin-top: calc(var(--nav-height) + 8px); }

/* Skip link */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 2000;
  background: var(--blue); color: var(--white);
  padding: 12px 20px; border-radius: 10px; font-weight: 600; font-size: .875rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ============ TYPE ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 3.7rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.65rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid var(--hairline);
  padding: 6px 14px; border-radius: 30px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.section-sub {
  font-size: 1rem; opacity: 0.7; max-width: 560px;
  margin: 16px auto 0; line-height: 1.7;
}
.grad-text {
  background: linear-gradient(100deg, var(--blue) 20%, var(--blue-bright) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ UTILS ============ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow { margin-bottom: 18px; }

/* ============ BUTTONS ============ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.9375rem;
  padding: 15px 30px; border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white); border-color: transparent;
  box-shadow: 0 2px 10px rgba(0,51,160,.22);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,51,160,.32);
}
.btn-primary .arrow { transition: transform 0.25s var(--ease-out); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline { background: var(--white); color: var(--navy); border-color: var(--hairline); }
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,51,160,.10);
}
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover, .btn-white:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.22); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--white); transform: translateY(-2px); }
.btn-primary:active, .btn-outline:active, .btn-white:active, .btn-ghost:active { transform: translateY(0) scale(.98); }
.btn:focus-visible, a:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-height);
  transition: height 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--hairline), 0 6px 24px rgba(10,22,51,.05);
  height: var(--nav-height-shrunk);
}
.nav-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav.scrolled .nav-progress { opacity: 1; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.125rem;
  color: var(--navy); z-index: 1001;
}
.nav-logo {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,51,160,.25);
}
.nav-logo svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--navy);
  opacity: 0.72; transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; color: var(--blue); }
.nav-phone {
  font-weight: 600 !important;
  color: var(--blue) !important;
  opacity: 1 !important;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-cta {
  font-size: 0.8125rem !important;
  padding: 10px 20px !important;
  color: var(--white) !important;
  opacity: 1 !important;
}
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 1001;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  margin: 0 auto; transition: all 0.3s var(--ease); border-radius: 2px;
}
.hamburger span:nth-child(2) { margin-top: 6px; }
.hamburger span:nth-child(3) { margin-top: 6px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 999; padding: 100px 32px 32px; flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; overflow-y: auto; -webkit-overflow-scrolling: touch; }
@media (min-width: 769px) { .mobile-menu { display: none !important; } }
.mobile-menu a { font-size: 1.2rem; font-weight: 600; padding: 13px 0; border-bottom: 1px solid var(--hairline); }
.mobile-menu .btn { margin-top: 16px; border-bottom: none; }

/* ============ HERO ============ */
.hero {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 76px;
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(0,51,160,.08), transparent 62%),
    radial-gradient(700px 420px at -10% 68%, rgba(46,107,230,.06), transparent 60%),
    var(--white);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(var(--hairline) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(680px 420px at 78% 22%, rgba(0,0,0,.55), transparent 72%);
  mask-image: radial-gradient(680px 420px at 78% 22%, rgba(0,0,0,.55), transparent 72%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center; position: relative;
}
.hero-text h1 { margin: 18px 0 20px; }
.hero-sub {
  font-size: 1.0625rem; line-height: 1.7; opacity: 0.72;
  max-width: 480px; margin-bottom: 30px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof {
  display: flex; align-items: center; gap: 10px;
  margin-top: 24px; font-size: 0.875rem; opacity: 0.75;
}
.hero-proof .stars { display: flex; gap: 2px; }
.hero-proof .stars svg { width: 15px; height: 15px; color: var(--amber); }
.hero-proof a { font-weight: 700; color: var(--blue); }
.hero-media { position: relative; display: flex; justify-content: center; will-change: transform; }
.hero-frame {
  position: relative; border-radius: 20px; padding: 8px;
  background: linear-gradient(150deg, rgba(0,51,160,.14), rgba(46,107,230,.05) 45%, rgba(255,255,255,.9));
  box-shadow: var(--shadow-lift);
}
.hero-img {
  width: 100%; max-width: 560px; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 14px;
  transition: transform 0.6s var(--ease-out);
}
.hero-frame:hover .hero-img { transform: scale(1.015); }
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212,222,240,.8);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 34px rgba(10,22,51,.14);
  display: flex; flex-direction: column;
  animation: float 3.2s ease-in-out infinite;
}
.hero-badge-1 { bottom: -18px; left: -18px; }
.hero-badge-2 { top: -18px; right: -18px; animation-delay: -1.6s; }
.badge-big {
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  color: var(--blue); line-height: 1.1;
}
.badge-small { font-size: 0.75rem; font-weight: 500; opacity: 0.6; margin-top: 2px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--blue-soft);
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.85rem; font-weight: 600;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 30px;
  padding: 10px 18px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.trust-item:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,51,160,.08); }
.trust-item svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }

/* ============ STATS ============ */
.stats { padding: 80px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stats-grid > div { position: relative; }
.stats-grid > div:not(:first-child)::before {
  content: ''; position: absolute; left: -12px; top: 15%; bottom: 15%;
  width: 1px; background: var(--hairline);
}
.stat-number {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem); line-height: 1;
}
.stat-label { font-size: 0.875rem; font-weight: 500; opacity: 0.6; margin-top: 8px; }

/* ============ SERVICES ============ */
.services { padding: 104px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 32px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(0,51,160,.28);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 46px; height: 46px; background: var(--blue-soft); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  transition: background 0.3s var(--ease), transform .3s var(--ease-out);
}
.service-icon svg { width: 22px; height: 22px; color: var(--blue); transition: color 0.3s; }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  transform: scale(1.06);
}
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; opacity: 0.7; line-height: 1.65; }
.service-arrow {
  position: absolute; top: 26px; right: 26px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-6px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.service-arrow svg { width: 14px; height: 14px; color: var(--blue); }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ============ WHY US ============ */
.why { padding: 104px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-tile {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 14px;
  padding: 26px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease);
}
.why-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(0,51,160,.28);
}
.why-icon {
  width: 40px; height: 40px; background: var(--blue-soft); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-icon svg { width: 19px; height: 19px; color: var(--blue); }
.why-tile h3 { font-size: 1rem; margin-bottom: 4px; }
.why-tile p { font-size: 0.85rem; opacity: 0.65; line-height: 1.55; }

/* ============ PROCESS ============ */
.process {
  background:
    radial-gradient(760px 420px at 82% 0%, rgba(46,107,230,.16), transparent 60%),
    radial-gradient(600px 380px at 0% 100%, rgba(0,51,160,.28), transparent 55%),
    var(--navy-dark);
  color: var(--white); padding: 104px 0;
}
.process h2 { color: var(--white); }
.process .section-sub { color: var(--white); opacity: 0.65; }
.process .eyebrow {
  color: #9DBBF5; background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.process .eyebrow::before { background: #9DBBF5; }
.process-anim {
  max-width: 440px; margin: 0 auto 64px;
  background: var(--white); border-radius: 18px; padding: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.08);
}
.process-steps { max-width: 720px; margin: 0 auto; position: relative; }
.process-steps::before {
  content: ''; position: absolute; left: 27px; top: 10px; bottom: 10px;
  width: 2px; background: rgba(255,255,255,.12);
}
.p-step { display: flex; gap: 24px; align-items: flex-start; padding: 22px 0; position: relative; }
.p-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(46,107,230,.25), rgba(0,51,160,.4));
  border: 2px solid var(--blue-bright);
  color: var(--white);
  font-family: var(--font-display); font-weight: 900; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(0,26,82,.9);
}
.p-step h3 { color: var(--white); margin: 6px 0 6px; }
.p-step p { font-size: 0.9375rem; opacity: 0.65; line-height: 1.7; max-width: 520px; }

/* TV mount animation */
.smount {
  --accent: #0033A0;
  --line: #0A1633;
  --dur: 5s;
  --sm-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --sm-ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  display: block; width: 100%; aspect-ratio: 640 / 400;
  background: #FFFFFF; border-radius: 12px; overflow: hidden;
}
.smount svg { display: block; width: 100%; height: 100%; }
.smount .sc-scene  { animation: sc-scene  var(--dur) ease-in-out infinite; }
.smount .sc-glow   { animation: sc-glow   var(--dur) ease-in-out infinite; opacity: 0; }
.smount .sc-bracket{ animation: sc-bracket var(--dur) var(--sm-ease-out) infinite; opacity: 0; }
.smount .sc-tv     { animation: sc-tv     var(--dur) var(--sm-ease-out) infinite; opacity: 0; transform-box: fill-box; }
.smount .sc-cable  { animation: sc-cable  var(--dur) var(--sm-ease-soft) infinite; opacity: 0; }
.smount .sc-check  { animation: sc-check  var(--dur) ease-in-out infinite; opacity: 0; transform-box: fill-box; transform-origin: center; }
@keyframes sc-scene { 0% { opacity: 0; } 3% { opacity: 1; } 93% { opacity: 1; } 100% { opacity: 0; } }
@keyframes sc-bracket {
  0%, 2% { opacity: 0; transform: translateX(-16px); }
  12%    { opacity: 1; transform: translateX(0); }
  100%   { opacity: 1; transform: translateX(0); }
}
@keyframes sc-tv {
  0%, 12% { opacity: 0; transform: translateY(130px); }
  38%     { opacity: 1; transform: translateY(0); }
  100%    { opacity: 1; transform: translateY(0); }
}
@keyframes sc-cable {
  0%, 40% { stroke-dashoffset: 96; opacity: 0; }
  42%     { opacity: 1; }
  56%     { stroke-dashoffset: 0; opacity: 1; }
  100%    { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes sc-check {
  0%, 58% { opacity: 0; transform: scale(0.5); }
  64%     { opacity: 1; transform: scale(1.15); }
  72%     { opacity: 1; transform: scale(1); }
  84%     { opacity: 1; transform: scale(1); }
  92%, 100% { opacity: 0; transform: scale(1); }
}
@keyframes sc-glow {
  0%, 60% { opacity: 0; }
  80%     { opacity: 0.85; }
  100%    { opacity: 0.85; }
}

/* ============ GALLERY ============ */
.gallery { padding: 104px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--hairline);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,13,43,.72));
  color: var(--white); font-size: 0.8125rem; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ============ PRICING ============ */
.pricing { padding: 104px 0; background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 18px;
  padding: 36px 28px; position: relative;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 18px 48px rgba(0,51,160,.14);
}
@media (min-width: 1025px) {
  .price-card.featured { transform: scale(1.03); }
  .price-card.featured:hover { transform: scale(1.03) translateY(-5px); }
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,51,160,.3);
}
.price-card h3 { margin-bottom: 4px; }
.price-size { font-size: 0.8125rem; opacity: 0.68; font-weight: 500; margin-bottom: 16px; }
.price-amount { font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; line-height: 1; }
.price-from { font-family: var(--font-body); font-weight: 500; font-size: 0.875rem; opacity: 0.68; margin-left: 4px; }
.price-features {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.price-features li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 10px; }
.check-icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.price-cta { margin-top: 24px; width: 100%; }
.pricing-note {
  text-align: center; margin-top: 44px; font-size: 0.8125rem; opacity: 0.75;
  max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.fine-print { font-size: 0.75rem; line-height: 1.6; opacity: 0.68; }
.pricing-disclaimer { text-align: center; max-width: 760px; margin: 18px auto 0; }

/* payments strip */
.pay-strip-label {
  text-align: center; margin-top: 48px; font-size: 0.8125rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.62;
}
.pay-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px; }
.pay-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--hairline); border-radius: 30px;
  padding: 10px 18px; font-size: 0.875rem; font-weight: 600;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.pay-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,51,160,.08); }
.pay-pill svg { width: 18px; height: 18px; }

/* ============ REVIEWS ============ */
.reviews {
  background: var(--blue-soft); padding: 104px 0;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.review-quote {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-display); font-weight: 900; font-size: 3.4rem;
  line-height: 1; color: var(--blue); opacity: .1;
  pointer-events: none;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 18px; height: 18px; color: var(--amber); }
.review-text { font-size: 0.9375rem; line-height: 1.7; opacity: 0.75; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
}
.review-name { font-weight: 600; font-size: 0.875rem; }
.review-location { font-size: 0.75rem; opacity: 0.68; }

/* ============ SERVICE AREA ============ */
.area { padding: 104px 0; text-align: center; }
.area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 36px 0 24px; }
.area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-soft); border: 1px solid var(--hairline);
  border-radius: 30px; padding: 11px 20px;
  font-size: 0.9rem; font-weight: 600;
  transition: transform .25s var(--ease-out), background .25s var(--ease), box-shadow .25s var(--ease-out);
}
.area-chip:hover { transform: translateY(-2px); background: var(--white); box-shadow: 0 6px 18px rgba(0,51,160,.08); }
.area-chip svg { width: 15px; height: 15px; color: var(--blue); }
.area-note { font-size: 0.9375rem; opacity: 0.6; max-width: 560px; margin: 0 auto; }

/* ============ FINAL CTA / BOOK ============ */
.book {
  background:
    radial-gradient(820px 460px at 90% 8%, rgba(46,107,230,.18), transparent 60%),
    radial-gradient(620px 420px at 4% 92%, rgba(0,51,160,.3), transparent 55%),
    var(--navy-dark);
  color: var(--white); padding: 104px 0;
}
.book-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: start; }
.book h2 { color: var(--white); margin-bottom: 16px; }
.book-sub { font-size: 1.0625rem; opacity: 0.7; line-height: 1.7; margin-bottom: 32px; max-width: 420px; }
.book-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.book-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.book-info-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.book-info-icon svg { width: 18px; height: 18px; color: var(--white); opacity: 0.75; }
.book-info-label { font-size: 0.75rem; opacity: 0.6; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.book-info-value { font-weight: 600; font-size: 1rem; margin-top: 2px; }
.book-info-value a { color: var(--white); }
.book-info-value a:hover { text-decoration: underline; }

.quote-card {
  background: var(--white); color: var(--navy); border-radius: 18px;
  padding: 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.09);
}
.quote-card h3 { font-size: 1.25rem; margin-bottom: 20px; }
.photo-hint {
  background: var(--blue-soft); border: 1px solid var(--hairline); border-radius: 12px;
  padding: 12px 14px; font-size: 0.85rem; line-height: 1.5; color: var(--navy); margin-bottom: 20px;
}
.photo-hint a { color: var(--blue); font-weight: 600; }
.photo-hint a:hover { text-decoration: underline; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.8125rem; font-weight: 600; opacity: 0.7; }
.form-input, .form-select, .form-textarea {
  padding: 12px 14px; border: 1px solid var(--hairline); border-radius: 10px;
  font-size: 0.9375rem; background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,51,160,.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A1633' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
  cursor: pointer;
}
.form-submit { margin-top: 8px; width: 100%; }
.form-msg { font-size: 0.875rem; font-weight: 600; text-align: center; }
.form-msg.success { margin-top: 12px; color: #16a34a; }
.form-msg.error { margin-top: 12px; color: #dc2626; }

/* ============ FOOTER ============ */
.footer { background: var(--navy-footer); color: var(--white); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo {
  width: 36px; height: 36px; background: var(--white); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-logo svg { width: 22px; height: 22px; color: var(--blue); }
.footer-brand span { font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; }
.footer-blurb { font-size: 0.875rem; opacity: 0.6; line-height: 1.7; max-width: 320px; }
.footer h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.875rem; opacity: 0.75; transition: opacity 0.2s; }
.footer ul a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  text-align: center; font-size: 0.75rem; color: #8E9BBB;
}
.footer-bottom .fine-print { opacity: 1; }

/* ============ FLOATING CTA (mobile) ============ */
.floating-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(10,22,51,.12); z-index: 998; gap: 10px;
  transform: translateY(100%); transition: transform 0.35s var(--ease-out);
}
.floating-cta.visible { transform: translateY(0); }
.floating-cta .btn { flex: 1; font-size: 0.8125rem; padding: 13px 16px; }

/* ============ REVEALS ============ */
.fade-up, .scale-in {
  transition: opacity .7s var(--ease-out), transform .45s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease);
}
.fade-up:not(.visible) { opacity: 0; transform: translateY(30px); }
.scale-in:not(.visible) { opacity: 0; transform: scale(0.94) translateY(12px); }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-up:not(.visible), .scale-in:not(.visible) { opacity: 1; transform: none; }
  .smount .sc-scene { opacity: 1; }
  .smount .sc-glow { opacity: 0.85; }
  .smount .sc-bracket { opacity: 1; transform: translateX(0); }
  .smount .sc-tv { opacity: 1; transform: translateY(0); }
  .smount .sc-cable { opacity: 1; stroke-dashoffset: 0; }
  .smount .sc-check { opacity: 1; transform: scale(1); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons, .hero-proof { justify-content: center; }
  .hero-media { order: -1; }
  .hero-img { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .floating-cta { display: flex; }
  .hero { min-height: auto; padding-bottom: 52px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats-grid > div:nth-child(3)::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card:last-child { max-width: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-badge { display: none; }
  .footer { padding-bottom: 110px; }
  .process-steps::before { left: 21px; }
  .p-num { width: 44px; height: 44px; font-size: 1.05rem; }
  .services, .why, .gallery, .pricing, .reviews, .area, .book, .process { padding: 72px 0; }
}