/* =====================================================================
   IRONHAUS GARAGE DOOR CO. — Design System & Styles
   Palette: Orange (heat/CTA) · Black (base) · Blue (trust/tech)
   Author: sample build for client presentation
   ===================================================================== */

/* ----------------------------- TOKENS ------------------------------ */
:root {
  /* Orange — heat / brand / CTA */
  --orange-500: #FF6A00;
  --orange-400: #FF8524;
  --orange-600: #E24E00;
  --orange-300: #FFA85C;

  /* Blue — trust / tech / accent */
  --blue-500: #1E9BFF;
  --blue-400: #4FB6FF;
  --blue-600: #0A6FCB;
  --navy-800: #0A1B3D;
  --navy-900: #060F26;

  /* Black / charcoal bases */
  --bg-950: #08090B;
  --bg-900: #0E1013;
  --bg-850: #16191E;
  --bg-800: #1F242B;

  /* Text */
  --text-100: #F4F6F8;
  --text-300: #C2C8D0;
  --text-500: #8A929E;
  --text-700: #565D68;
  --on-orange: #1A0E05;

  --brand: #FF6A00;
  --accent: #1E9BFF;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  /* Gradients */
  --grad-hero:
    radial-gradient(120% 80% at 80% 0%, rgba(255,106,0,0.22) 0%, rgba(255,106,0,0) 55%),
    radial-gradient(90% 70% at 15% 100%, rgba(30,155,255,0.16) 0%, rgba(30,155,255,0) 50%),
    linear-gradient(160deg, #060F26 0%, #0E1013 55%, #08090B 100%);
  --grad-btn: linear-gradient(180deg, #FF8524 0%, #FF6A00 55%, #E24E00 100%);
  --grad-btn-hover: linear-gradient(180deg, #FFA85C 0%, #FF7A16 55%, #FF6A00 100%);
  --grad-btn-blue: linear-gradient(180deg, #4FB6FF 0%, #1E9BFF 60%, #0A6FCB 100%);
  --grad-glow-orange: radial-gradient(circle at 50% 50%, rgba(255,133,36,0.55) 0%, rgba(255,106,0,0.28) 35%, rgba(255,106,0,0) 70%);
  --grad-glow-blue: radial-gradient(circle at 50% 50%, rgba(79,182,255,0.40) 0%, rgba(30,155,255,0.18) 40%, rgba(30,155,255,0) 72%);
  --grad-divider: linear-gradient(90deg, rgba(255,106,0,0) 0%, rgba(255,106,0,0.9) 25%, rgba(30,155,255,0.9) 75%, rgba(30,155,255,0) 100%);
  --grad-card: linear-gradient(180deg, #1B1F25 0%, #14171B 100%);

  /* Glows / shadows */
  --glow-orange: 0 0 0 1px rgba(255,106,0,0.35), 0 4px 14px rgba(255,106,0,0.30), 0 0 26px rgba(255,106,0,0.22);
  --glow-orange-hover: 0 0 0 1px rgba(255,133,36,0.55), 0 6px 20px rgba(255,106,0,0.45), 0 0 40px rgba(255,106,0,0.40), 0 0 70px rgba(255,106,0,0.18);
  --glow-blue: 0 0 0 1px rgba(30,155,255,0.40), 0 0 22px rgba(30,155,255,0.30), 0 0 44px rgba(30,155,255,0.16);
  --shadow-card: 0 2px 4px rgba(0,0,0,0.40), 0 12px 32px rgba(0,0,0,0.55);
  --glow-text-orange: 0 0 18px rgba(255,106,0,0.45);

  /* Type */
  --font-display: 'Anton', 'Oswald', Impact, sans-serif;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Motion */
  --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-overshoot: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --container: 1220px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 76px;
}

/* ----------------------------- RESET ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-950);
  color: var(--text-300);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--blue-400); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--orange-500); color: var(--on-orange); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-950); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--orange-600), var(--orange-500)); border-radius: 20px; border: 2px solid var(--bg-950); }

/* --------------------------- TYPOGRAPHY ---------------------------- */
h1, h2, h3, h4 { color: var(--text-100); line-height: 1.05; font-weight: 700; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange-400);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--grad-btn);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.7rem);
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: .98;
  margin: 16px 0 14px;
}
.section-title .hl { color: var(--orange-500); text-shadow: var(--glow-text-orange); }
.section-title .hl-blue { color: var(--blue-400); }
.section-sub {
  max-width: 60ch;
  color: var(--text-500);
  font-size: 1.05rem;
}
.section-head { margin-bottom: clamp(30px, 5vw, 56px); }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

/* --------------------------- LAYOUT -------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; padding-block: clamp(60px, 9vw, 120px); }
.divider-seam { height: 2px; background: var(--grad-divider); opacity: .55; box-shadow: 0 0 12px rgba(255,106,0,0.35); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-entrance), transform .7s var(--ease-entrance); transition-delay: calc(var(--i, 0) * 80ms); will-change: opacity, transform; }
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.zoom { transform: scale(.92); }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------- BUTTONS ------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .96rem;
  padding: 15px 28px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), filter .28s;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--grad-btn); color: var(--on-orange); box-shadow: var(--glow-orange); }
.btn-primary:hover { box-shadow: var(--glow-orange-hover); transform: translateY(-2px); }
.btn-blue { background: var(--grad-btn-blue); color: #041426; box-shadow: var(--glow-blue); }
.btn-blue:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text-100); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--orange-500); color: #fff; box-shadow: var(--glow-orange); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Ripple */
.ripple { position: absolute; border-radius: 50%; transform: scale(0); background: rgba(255,255,255,0.45); pointer-events: none; animation: ripple .6s var(--ease-out); }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Chips / badges */
.chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: .82rem; color: var(--text-300);
  font-weight: 500;
}
.chip .star { color: var(--orange-400); }
.chip.blue { border-color: rgba(30,155,255,0.3); box-shadow: var(--glow-blue); }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 0 rgba(255,106,0,.7); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,106,0,.6);} 70% { box-shadow: 0 0 0 10px rgba(255,106,0,0);} 100% { box-shadow: 0 0 0 0 rgba(255,106,0,0);} }
.stars { color: var(--orange-400); letter-spacing: 2px; }

/* ---------------------- GLOBAL BACKGROUND FX ----------------------- */
.fx-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 90%);
}
.fx-noise { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* Cursor glow follower */
.cursor-glow { position: fixed; top: 0; left: 0; width: 460px; height: 460px; margin: -230px 0 0 -230px; border-radius: 50%; pointer-events: none; z-index: 1; background: var(--grad-glow-orange); opacity: .5; mix-blend-mode: screen; transition: opacity .4s; will-change: transform; }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 1000; background: var(--grad-btn); box-shadow: 0 0 12px rgba(255,106,0,.7); }

/* ------------------------- CURTAIN REVEAL -------------------------- */
.curtain { position: fixed; inset: 0; z-index: 9998; display: grid; grid-template-rows: 1fr 1fr; pointer-events: none; animation: curtainHide 0s linear 1.55s forwards; }
@keyframes curtainHide { to { visibility: hidden; } }
.door-panel {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(180deg, #14171c 0px, #14171c 38px, #0b0d10 39px, #14171c 40px),
    linear-gradient(180deg, #1a1e24, #0b0d10);
  box-shadow: inset 0 0 120px rgba(0,0,0,.8);
}
.door-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 30%); }
.door-top { animation: doorUp 1.15s var(--ease-entrance) .15s forwards; }
.door-bottom { animation: doorDown 1.15s var(--ease-entrance) .15s forwards; }
.door-seam { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad-btn); box-shadow: 0 0 24px 4px rgba(255,106,0,.8); }
.door-bottom .door-seam { bottom: auto; top: 0; }
.curtain-logo { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; animation: logoFade .7s ease forwards; }
.curtain-logo span { font-family: var(--font-display); font-size: clamp(2rem,7vw,4.5rem); color: var(--text-100); letter-spacing: 3px; }
.curtain-logo span b { color: var(--orange-500); }
@keyframes doorUp { to { transform: translateY(-100%); } }
@keyframes doorDown { to { transform: translateY(100%); } }
@keyframes logoFade { 0% { opacity: 0; } 30% { opacity: 1;} 100% { opacity: 0; } }

/* ----------------------------- HEADER ------------------------------ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .3s var(--ease-out), background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  height: 62px;
  background: rgba(14,16,19,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; flex: none; filter: drop-shadow(0 0 10px rgba(255,106,0,.35)); }
.brand-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1.5px; color: #fff; line-height: 1; }
.brand-name b { color: var(--orange-500); }
.brand-tag { display: block; font-family: var(--font-head); font-size: .58rem; letter-spacing: .32em; color: var(--text-500); text-transform: uppercase; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; font-size: .9rem; color: var(--text-300); position: relative; padding: 4px 0; transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%; background: var(--grad-btn); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out); }
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.02rem; letter-spacing: .02em; }
.header-phone .ph-ico { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,106,0,.14); color: var(--orange-400); border: 1px solid rgba(255,106,0,.3); }
.header-phone small { display: block; font-family: var(--font-body); font-size: .62rem; color: var(--text-500); letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }
.burger { display: none; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; transition: transform .3s, opacity .2s; }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 899; background: rgba(8,9,11,0.97); backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 90px var(--gutter) 40px; transform: translateX(100%); transition: transform .45s var(--ease-entrance); }
body.menu-open .mobile-menu { transform: none; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; color: var(--text-100); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color .2s, padding-left .3s; }
.mobile-menu a:hover { color: var(--orange-500); padding-left: 12px; }
.mobile-menu .mm-cta { margin-top: 24px; display: grid; gap: 12px; }

/* ------------------------------ HERO ------------------------------- */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--header-h) + 30px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg .kenburns { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translate(0,0);} to { transform: scale(1.14) translate(-2%, -2%);} }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(90deg, rgba(6,10,15,0.94) 0%, rgba(6,10,15,0.72) 42%, rgba(6,10,15,0.35) 100%),
  linear-gradient(0deg, rgba(8,9,11,1) 2%, rgba(8,9,11,0) 40%); }
.orb { position: absolute; border-radius: 50%; z-index: 1; filter: blur(28px); pointer-events: none; }
.orb-orange { width: 46vw; height: 46vw; max-width: 640px; max-height: 640px; top: -12%; right: -8%; background: var(--grad-glow-orange); animation: drift1 16s ease-in-out infinite alternate; }
.orb-blue { width: 40vw; height: 40vw; max-width: 560px; max-height: 560px; bottom: -14%; left: -10%; background: var(--grad-glow-blue); filter: blur(40px); animation: drift2 18s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(-6%, 8%) scale(1.12);} }
@keyframes drift2 { to { transform: translate(8%, -6%) scale(1.15);} }
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 7vw, 5.4rem); text-transform: uppercase; letter-spacing: .5px; line-height: .92; color: #fff; }
.hero h1 .hl { color: var(--orange-500); text-shadow: var(--glow-text-orange); }
.hero-subline { font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(1rem, 2.2vw, 1.35rem); margin-top: 16px; color: var(--text-100); }
.hero-subline .hl { color: var(--orange-400); }
.hero-sub { font-size: 1.08rem; color: var(--text-300); margin-top: 18px; max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { margin-top: 24px; display: flex; align-items: center; gap: 8px 16px; flex-wrap: wrap; color: var(--text-500); font-size: .9rem; }
.hero-trust b { color: var(--text-100); }
.hero-trust .stars { font-size: 1rem; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-500); font-family: var(--font-head); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; }
.scroll-hint .mouse { width: 24px; height: 38px; border: 2px solid var(--text-700); border-radius: 14px; position: relative; }
.scroll-hint .mouse::before { content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 7px; margin-left: -2px; background: var(--orange-500); border-radius: 3px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0);} 40% { opacity: 1;} 80% { opacity: 0; transform: translateY(12px);} 100% { opacity: 0;} }

/* --------------------------- TRUST BAR ----------------------------- */
.trustbar { background: var(--bg-850); border-block: 1px solid rgba(255,255,255,0.06); padding-block: 26px; }
.trustbar .container { display: flex; align-items: center; justify-content: center; gap: 18px 40px; flex-wrap: wrap; text-align: center; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ti-ico { color: var(--orange-400); width: 26px; height: 26px; flex: none; }
.trust-item strong { color: var(--text-100); font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; }
.trust-item span { color: var(--text-500); font-size: .82rem; display: block; }
.trust-sep { width: 1px; height: 34px; background: rgba(255,255,255,0.1); }

/* ---------------------------- LEAD FORM ---------------------------- */
.leadform-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.lead-copy .section-title { margin-top: 12px; }
.lead-benefits { display: grid; gap: 14px; margin-top: 26px; }
.lead-benefits li { display: flex; gap: 14px; align-items: flex-start; }
.lead-benefits .lb-ico { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(255,106,0,.12); border: 1px solid rgba(255,106,0,.28); color: var(--orange-400); }
.lead-benefits b { color: var(--text-100); font-weight: 600; }
.lead-benefits p { font-size: .92rem; color: var(--text-500); }
.form-card { background: var(--grad-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.form-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-btn); }
.form-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; letter-spacing: .5px; }
.form-card > p { color: var(--text-500); font-size: .95rem; margin: 6px 0 22px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-500); margin-bottom: 7px; font-weight: 600; font-family: var(--font-head); }
.field input, .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-100); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder { color: var(--text-700); }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue-500); box-shadow: var(--glow-blue); background: rgba(0,0,0,.5); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%238A929E' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: .8rem; color: var(--text-500); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; animation: pop .5s var(--ease-overshoot); }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; background: var(--grad-btn); display: grid; place-items: center; color: #fff; box-shadow: var(--glow-orange); }
.form-success h3 { color: #fff; }
@keyframes pop { from { transform: scale(.7); opacity: 0;} to { transform: scale(1); opacity: 1;} }

/* --------------------------- SYMPTOMS ------------------------------ */
.symptom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; }
.symptom-card {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  background: var(--grad-card); border: 1px solid rgba(255,255,255,0.07);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.symptom-card:hover { border-color: rgba(255,106,0,.5); box-shadow: var(--glow-orange); }
.symptom-card .sc-ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 11px; color: var(--orange-400); background: rgba(255,106,0,.1); border: 1px solid rgba(255,106,0,.22); }
.symptom-card h4 { font-size: 1.02rem; color: var(--text-100); font-family: var(--font-head); font-weight: 600; }
.symptom-card p { font-size: .86rem; color: var(--text-500); margin-top: 3px; }
.symptom-cta { margin-top: 34px; text-align: center; display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; color: var(--text-300); }

/* --------------------------- SERVICES ------------------------------ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.service-card {
  position: relative; padding: 30px 26px; border-radius: var(--radius-lg);
  background: var(--grad-card); border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-card); overflow: hidden;
  transform-style: preserve-3d; transition: box-shadow .3s;
}
.service-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(255,106,0,.5), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s; pointer-events: none; }
.service-card:hover::before { opacity: 1; }
.service-card .glare { position: absolute; inset: 0; background: radial-gradient(320px circle at var(--mx,50%) var(--my,0%), rgba(255,150,60,.16), transparent 60%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.service-card:hover .glare { opacity: 1; }
.svc-ico { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; margin-bottom: 18px; color: var(--orange-400); background: rgba(255,106,0,.1); border: 1px solid rgba(255,106,0,.25); box-shadow: inset 0 0 20px rgba(255,106,0,.12); transition: transform .4s var(--ease-overshoot); }
.service-card:hover .svc-ico { transform: translateZ(30px) scale(1.06); }
.svc-ico svg { width: 30px; height: 30px; }
.service-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.28rem; color: var(--text-100); text-transform: uppercase; letter-spacing: .01em; }
.service-card p { margin-top: 10px; font-size: .94rem; color: var(--text-500); }
.learn { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: .82rem; letter-spacing: .06em; color: var(--orange-400); }
.learn svg { width: 15px; height: 15px; transition: transform .3s; }
.service-card:hover .learn svg { transform: translateX(5px); }
/* Secondary full list */
.svc-full { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-col { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 24px; }
.svc-col h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .95rem; color: var(--blue-400); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.svc-col h4 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 10px var(--blue-500); }
.svc-col li { padding: 7px 0 7px 22px; position: relative; font-size: .9rem; color: var(--text-300); border-bottom: 1px solid rgba(255,255,255,0.04); }
.svc-col li::before { content: ""; position: absolute; left: 3px; top: 15px; width: 8px; height: 8px; border-right: 2px solid var(--orange-500); border-bottom: 2px solid var(--orange-500); transform: rotate(-45deg); }

/* ------------------------ BEFORE / AFTER --------------------------- */
.ba-wrap { max-width: 960px; margin-inline: auto; }
.ba { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(255,255,255,0.08); user-select: none; touch-action: none; cursor: ew-resize; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .ba-after { z-index: 1; }
.ba .ba-before { z-index: 2; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba .ba-tag { position: absolute; top: 16px; z-index: 3; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(4px); }
.ba .tag-before { left: 16px; background: rgba(0,0,0,.55); color: var(--text-100); border: 1px solid rgba(255,255,255,.18); }
.ba .tag-after { right: 16px; background: rgba(255,106,0,.85); color: var(--on-orange); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: var(--grad-btn); z-index: 4; transform: translateX(-50%); box-shadow: 0 0 18px rgba(255,106,0,.7); }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: var(--grad-btn); display: grid; place-items: center; color: var(--on-orange); box-shadow: var(--glow-orange), 0 0 0 6px rgba(255,106,0,.14); cursor: ew-resize; }
.ba-knob svg { width: 26px; height: 26px; }
.ba-select { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.ba-thumb { width: 92px; height: 58px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; opacity: .55; transition: opacity .25s, border-color .25s, transform .25s; }
.ba-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ba-thumb.active, .ba-thumb:hover { opacity: 1; border-color: var(--orange-500); transform: translateY(-3px); }

/* ----------------------------- STATS ------------------------------- */
.stats { background: var(--bg-950); }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4.4vw, 3.4rem); color: var(--orange-500); text-shadow: var(--glow-text-orange); line-height: 1; }
.stat .lbl { margin-top: 10px; font-size: .82rem; color: var(--text-500); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-head); }

/* --------------------------- WHY US / PROMISE ---------------------- */
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.whyus-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(255,255,255,.08); aspect-ratio: 4/5; }
.whyus-media img { width: 100%; height: 100%; object-fit: cover; }
.whyus-media .badge-float { position: absolute; bottom: 18px; left: 18px; right: 18px; background: rgba(14,16,19,.82); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.badge-float .bf-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--orange-500); line-height: 1; }
.badge-float .bf-txt { font-size: .82rem; color: var(--text-300); }
.pillars { display: grid; gap: 16px; margin-top: 28px; }
.pillar { display: flex; gap: 18px; padding: 20px; background: var(--grad-card); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); transition: transform .3s, border-color .3s; }
.pillar:hover { transform: translateX(6px); border-color: rgba(255,106,0,.35); }
.pillar .p-ico { width: 52px; height: 52px; flex: none; display: grid; place-items: center; border-radius: 13px; background: rgba(30,155,255,.1); border: 1px solid rgba(30,155,255,.28); color: var(--blue-400); }
.pillar h4 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.12rem; color: var(--text-100); letter-spacing: .02em; }
.pillar p { font-size: .9rem; color: var(--text-500); margin-top: 5px; }

/* --------------------------- BRANDS MARQUEE ------------------------ */
.brands { padding-block: clamp(40px, 6vw, 70px); border-block: 1px solid rgba(255,255,255,.05); background: linear-gradient(180deg, rgba(30,155,255,.03), transparent); }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand-chip { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 1.05rem; color: var(--text-300); padding: 12px 26px; border: 1px solid rgba(255,255,255,.08); border-radius: 100px; white-space: nowrap; background: rgba(255,255,255,.02); transition: color .25s, border-color .25s, box-shadow .25s; }
.brand-chip:hover { color: #fff; border-color: rgba(30,155,255,.4); box-shadow: var(--glow-blue); }
.brands-badges { text-align: center; margin-top: 26px; color: var(--text-500); font-size: .88rem; }
.brands-badges b { color: var(--blue-400); }

/* --------------------------- REVIEWS ------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: var(--grad-card); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px; position: relative; }
.review-card .quote-mark { font-family: Georgia, serif; font-size: 4rem; line-height: .5; color: rgba(255,106,0,.22); position: absolute; top: 20px; right: 22px; }
.review-card .stars { font-size: 1.05rem; }
.review-card p { color: var(--text-300); font-size: .96rem; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: var(--on-orange); background: var(--grad-btn); box-shadow: var(--glow-orange); }
.reviewer b { color: var(--text-100); display: block; font-weight: 600; }
.reviewer span { color: var(--text-500); font-size: .82rem; }
.reviewer .verified { color: var(--blue-400); font-size: .74rem; display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; }

/* --------------------------- OFFERS -------------------------------- */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.coupon { position: relative; background: var(--grad-card); border: 2px dashed rgba(255,106,0,.5); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.coupon:hover { transform: translateY(-4px); box-shadow: var(--glow-orange); }
.coupon::before, .coupon::after { content: ""; position: absolute; top: 50%; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-950); transform: translateY(-50%); }
.coupon::before { left: -14px; } .coupon::after { right: -14px; }
.coupon .amount { font-family: var(--font-display); font-size: 3rem; color: var(--orange-500); text-shadow: var(--glow-text-orange); line-height: 1; }
.coupon h4 { font-family: var(--font-head); text-transform: uppercase; color: var(--text-100); margin: 8px 0; letter-spacing: .03em; }
.coupon .code { display: inline-block; margin: 6px 0 4px; font-family: var(--font-head); letter-spacing: .1em; color: var(--blue-400); border: 1px dashed rgba(30,155,255,.4); border-radius: 8px; padding: 5px 12px; font-size: .85rem; }
.coupon .exp { color: var(--text-500); font-size: .78rem; }
.coupon .btn { margin-top: 16px; }
.offers-fine { text-align: center; margin-top: 22px; color: var(--text-700); font-size: .78rem; }

/* --------------------------- FINANCING ----------------------------- */
.financing { background:
  radial-gradient(80% 120% at 100% 0%, rgba(30,155,255,.16), transparent 55%),
  linear-gradient(120deg, var(--navy-900), var(--bg-900)); border-block: 1px solid rgba(30,155,255,.14); }
.financing-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.financing .fin-ico { width: 66px; height: 66px; flex: none; display: grid; place-items: center; border-radius: 16px; background: rgba(30,155,255,.14); border: 1px solid rgba(30,155,255,.35); color: var(--blue-400); box-shadow: var(--glow-blue); }
.financing h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.6rem,3.4vw,2.4rem); letter-spacing: .5px; }
.financing p { color: var(--text-300); max-width: 60ch; margin-top: 8px; }
.financing .fin-left { display: flex; gap: 22px; align-items: center; }

/* --------------------------- PROCESS (STICKY) ---------------------- */
.process { background: var(--bg-950); }
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.process-sticky { position: sticky; top: calc(var(--header-h) + 20px); }
.process-visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-card); aspect-ratio: 1/1; position: relative; background: var(--bg-900); }
.process-visual .pv-step { position: absolute; inset: 0; opacity: 0; transition: opacity .5s; display: grid; place-items: center; padding: 40px; text-align: center; }
.process-visual .pv-step.active { opacity: 1; }
.process-visual .pv-num { font-family: var(--font-display); font-size: clamp(6rem, 16vw, 11rem); color: rgba(255,106,0,.14); line-height: 1; position: absolute; top: 10px; right: 24px; }
.pv-ico { width: 120px; height: 120px; display: grid; place-items: center; border-radius: 30px; color: var(--orange-400); background: rgba(255,106,0,.1); border: 1px solid rgba(255,106,0,.28); box-shadow: var(--glow-orange); margin-bottom: 20px; }
.pv-ico svg { width: 64px; height: 64px; }
.process-visual h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 2rem; color: #fff; letter-spacing: 1px; }
.process-steps { display: flex; flex-direction: column; gap: 18px; position: relative; }
.p-line { position: absolute; left: 27px; top: 20px; bottom: 20px; width: 3px; background: rgba(255,255,255,.08); border-radius: 3px; }
.p-line-fill { position: absolute; inset: 0 0 auto 0; height: var(--fill, 0%); background: var(--grad-btn); border-radius: 3px; box-shadow: 0 0 14px rgba(255,106,0,.6); transition: height .3s; }
.p-step { display: flex; gap: 20px; padding: 22px; border-radius: var(--radius); background: transparent; border: 1px solid transparent; transition: background .35s, border-color .35s, transform .35s; position: relative; z-index: 1; }
.p-step.active { background: var(--grad-card); border-color: rgba(255,106,0,.3); }
.p-step .p-badge { width: 56px; height: 56px; flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.5rem; color: var(--text-500); background: var(--bg-850); border: 2px solid rgba(255,255,255,.1); transition: all .35s; }
.p-step.active .p-badge { color: var(--on-orange); background: var(--grad-btn); border-color: transparent; box-shadow: var(--glow-orange); }
.p-step h4 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.3rem; color: var(--text-100); letter-spacing: .03em; }
.p-step p { color: var(--text-500); margin-top: 6px; font-size: .96rem; }
.p-step.active p { color: var(--text-300); }

/* --------------------------- GALLERY ------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gcell { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.07); cursor: pointer; }
.gcell img, .gcell video { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.gcell:hover img, .gcell:hover video { transform: scale(1.09); }
.gcell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,9,11,.85), transparent 50%); opacity: .6; transition: opacity .3s; }
.gcell:hover::after { opacity: .95; }
.gcell .cap { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; transform: translateY(8px); opacity: 0; transition: transform .35s, opacity .35s; }
.gcell:hover .cap { transform: none; opacity: 1; }
.gcell .cap b { color: #fff; font-family: var(--font-head); text-transform: uppercase; font-size: .92rem; letter-spacing: .02em; }
.gcell .cap span { display: block; color: var(--orange-400); font-size: .76rem; }
.gcell .play-ico { position: absolute; top: 14px; right: 14px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,106,0,.85); display: grid; place-items: center; color: #fff; }
.g-wide { grid-column: span 2; } .g-tall { grid-row: span 2; }
/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgba(4,5,7,.94); backdrop-filter: blur(8px); display: none; place-items: center; padding: 30px; }
.lightbox.open { display: grid; animation: fadein .3s; }
@keyframes fadein { from { opacity: 0;} to { opacity: 1;} }
.lightbox img, .lightbox video { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.1); }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; font-size: 1.5rem; }
.lightbox .lb-close:hover { background: var(--orange-500); }

/* ----------------------------- FAQ --------------------------------- */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item { border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: var(--grad-card); transition: border-color .3s; }
.faq-item.open { border-color: rgba(255,106,0,.4); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-head); font-weight: 500; font-size: 1.08rem; color: var(--text-100); }
.faq-q .fq-ico { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 8px; border: 1px solid rgba(255,106,0,.3); color: var(--orange-400); transition: transform .35s var(--ease-out), background .3s; }
.faq-item.open .fq-ico { transform: rotate(45deg); background: var(--orange-500); color: var(--on-orange); }
.faq-a { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease-out), opacity .4s, padding .4s; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 320px; opacity: 1; padding-bottom: 22px; }
.faq-a p { color: var(--text-500); font-size: .96rem; }

/* --------------------------- FINAL CTA ----------------------------- */
.finalcta { position: relative; overflow: hidden; text-align: center; }
.finalcta .fc-bg { position: absolute; inset: 0; z-index: 0; }
.finalcta .fc-bg video, .finalcta .fc-bg img { width: 100%; height: 100%; object-fit: cover; }
.finalcta .fc-overlay { position: absolute; inset: 0; z-index: 1; background: var(--grad-hero); opacity: .93; }
.finalcta .container { position: relative; z-index: 2; }
.finalcta h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem, 6vw, 4.4rem); letter-spacing: 1px; line-height: .95; }
.finalcta h2 .hl { color: var(--orange-500); text-shadow: var(--glow-text-orange); }
.finalcta p { color: var(--text-300); font-size: 1.1rem; margin: 18px auto 0; max-width: 56ch; }
.finalcta .hero-cta { justify-content: center; }
.finalcta .hero-trust { justify-content: center; }

/* ----------------------------- FOOTER ------------------------------ */
.footer { background: var(--bg-950); padding-top: 0; }
.footer .divider-seam { margin-bottom: clamp(40px, 6vw, 70px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer .foot-tag { color: var(--orange-400); font-family: var(--font-head); font-style: italic; letter-spacing: .02em; margin-bottom: 16px; }
.footer p.foot-desc { color: var(--text-500); font-size: .9rem; max-width: 36ch; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: var(--text-300); transition: all .25s; }
.foot-social a:hover { color: #fff; border-color: var(--orange-500); box-shadow: var(--glow-orange); transform: translateY(-3px); }
.foot-col h5 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--text-100); margin-bottom: 16px; }
.foot-col li { margin-bottom: 9px; }
.foot-col a, .foot-col span { color: var(--text-500); font-size: .9rem; transition: color .2s; }
.foot-col a:hover { color: var(--orange-400); }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot-contact svg { width: 18px; height: 18px; color: var(--orange-400); flex: none; margin-top: 2px; }
.foot-bottom { margin-top: clamp(40px, 6vw, 64px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-700); font-size: .82rem; }
.foot-bottom a { color: var(--text-500); }
.foot-bottom a:hover { color: var(--orange-400); }
.foot-disclaimer { text-align: center; padding: 16px var(--gutter) 90px; color: var(--text-700); font-size: .74rem; max-width: 900px; margin-inline: auto; }

/* ------------------------ MOBILE BOTTOM BAR ------------------------ */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; display: none; flex-direction: column; background: rgba(8,9,11,.92); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,.08); }
.mobile-bar .mb-label { text-align: center; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .18em; font-size: .62rem; color: var(--orange-400); padding: 5px 0 3px; }
.mobile-bar .mb-btns { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .92rem; }
.mobile-bar .mb-call { background: var(--grad-btn-blue); color: #041426; }
.mobile-bar .mb-book { background: var(--grad-btn); color: var(--on-orange); }
.mobile-bar svg { width: 18px; height: 18px; }

/* ---------------------------- RESPONSIVE --------------------------- */
@media (max-width: 1080px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 18px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .nav, .header-phone small, .header .header-actions .btn-ghost { display: none; }
  .burger { display: block; }
  .leadform-wrap { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .whyus-media { aspect-ratio: 16/11; max-height: 420px; order: -1; }
  .process-layout { grid-template-columns: 1fr; }
  .process-sticky { position: static; }
  .process-visual { max-width: 400px; margin-inline: auto; }
  .svc-full { grid-template-columns: 1fr; }
  .financing-inner { flex-direction: column; text-align: center; align-items: center; }
  .financing .fin-left { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  :root { --gutter: 18px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; } .g-tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; } .hero-cta .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
  .header-phone .ph-txt { display: none; }
  .header-actions .btn-primary { display: none; }
  .header-phone .ph-ico { width: 42px; height: 42px; }
}

/* --------------------------- REDUCED MOTION ------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .curtain { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .cursor-glow { display: none !important; }
  .hero-bg .kenburns { animation: none !important; }
}
