/* ==========================================================================
   LOCKSMITH HERE I AM — Design System
   Navy / Electric Blue / Antique Gold — premium service-brand aesthetic
   ========================================================================== */

:root{
  /* --- Navy scale --- */
  --navy-950:#05080f;
  --navy-900:#0a0f1c;
  --navy-850:#0d1426;
  --navy-800:#111b30;
  --navy-700:#16223c;
  --navy-600:#1c2c4a;

  /* --- Lines / borders --- */
  --line-soft:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.14);
  --line-blue:rgba(91,141,255,.35);

  /* --- Electric blue --- */
  --blue-500:#2f6fff;
  --blue-400:#5b8dff;
  --blue-300:#8fb0ff;
  --blue-glow:rgba(47,111,255,.45);

  /* --- White / text --- */
  --white:#f7f9fc;
  --white-dim:rgba(247,249,252,.72);
  --white-faint:rgba(247,249,252,.46);
  --white-ghost:rgba(247,249,252,.16);

  /* --- Gold (rare, premium accent) --- */
  --gold:#c9a227;
  --gold-soft:#e3c468;
  --gold-glow:rgba(201,162,39,.35);

  --success:#34c98e;

  /* --- Radii --- */
  --r-sm:10px;
  --r-md:16px;
  --r-lg:24px;
  --r-pill:999px;

  /* --- Shadows --- */
  --shadow-soft:0 20px 60px -20px rgba(0,0,0,.55);
  --shadow-lift:0 30px 80px -24px rgba(47,111,255,.25), 0 10px 40px -10px rgba(0,0,0,.6);
  --shadow-gold:0 20px 60px -20px rgba(201,162,39,.35);

  /* --- Type --- */
  --font-display:"Outfit", "Inter", system-ui, sans-serif;
  --font-body:"Inter", system-ui, sans-serif;
  --font-mono:"JetBrains Mono", "SFMono-Regular", monospace;

  --container-w:1240px;
  --container-w-wide:1400px;
  --section-pad:clamp(72px,10vw,160px);
  --nav-h:84px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important;}
}

body{
  margin:0;
  background:var(--navy-950);
  color:var(--white);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;}
svg{display:block;}

/* --- Fixed luxury background layer --- */
.bg-luxury{
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(60% 50% at 18% 0%, rgba(47,111,255,.16) 0%, transparent 60%),
    radial-gradient(50% 40% at 100% 20%, rgba(47,111,255,.10) 0%, transparent 60%),
    radial-gradient(40% 35% at 50% 100%, rgba(201,162,39,.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  pointer-events:none;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.08;
  letter-spacing:-.02em;
  margin:0;
  color:var(--white);
}
h1{font-size:clamp(2.6rem,5vw,4.6rem);font-weight:650;}
h2{font-size:clamp(2rem,3.4vw,3.1rem);}
h3{font-size:clamp(1.4rem,2vw,1.9rem);}
h4{font-size:1.15rem;font-weight:600;}
p{margin:0;color:var(--white-dim);}
.lede{font-size:clamp(1.05rem,1.4vw,1.3rem);color:var(--white-dim);line-height:1.7;}

.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-mono);
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--blue-300);
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";width:18px;height:2px;background:var(--blue-400);border-radius:2px;
}
.eyebrow.gold{color:var(--gold-soft);}
.eyebrow.gold::before{background:var(--gold);}

.mono{font-family:var(--font-mono);letter-spacing:.02em;}

.text-blue{color:var(--blue-400);}
.text-gold{color:var(--gold-soft);}
.text-dim{color:var(--white-dim);}
.text-faint{color:var(--white-faint);}
.text-center{text-align:center;}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container{max-width:var(--container-w);margin:0 auto;padding:0 24px;}
.container-wide{max-width:var(--container-w-wide);margin:0 auto;padding:0 24px;}
.section{padding:var(--section-pad) 0;position:relative;}
.section-tight{padding:clamp(48px,6vw,96px) 0;}

.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
@media (max-width:1080px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-5{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:760px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}
  .grid-5{grid-template-columns:repeat(2,1fr);}
}

.flex{display:flex;}
.flex-center{display:flex;align-items:center;}
.flex-between{display:flex;align-items:center;justify-content:space-between;}
.gap-8{gap:8px;}
.gap-12{gap:12px;}
.gap-16{gap:16px;}
.gap-24{gap:24px;}
.wrap{flex-wrap:wrap;}

/* --- Signature element: the keyway cut --- */
.keyway{
  width:100%;
  max-width:var(--container-w);
  margin:0 auto;
  height:14px;
  opacity:.55;
  position:relative;
}
.keyway::before{
  content:"";
  position:absolute;top:50%;left:0;right:0;height:1.5px;
  background:var(--blue-400);
  transform:translateY(-50%);
}
.keyway::after{
  content:"";
  position:absolute;top:50%;left:0;right:0;height:8px;
  transform:translateY(-50%);
  background-image:repeating-linear-gradient(
    90deg,
    var(--blue-400) 0px, var(--blue-400) 1.5px,
    transparent 1.5px, transparent 36px
  );
  background-position:center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:.98rem;
  letter-spacing:-.01em;
  padding:15px 30px;
  border-radius:var(--r-pill);
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1), background .3s ease, border-color .3s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn svg{width:18px;height:18px;flex-shrink:0;}

.btn-primary{
  background:linear-gradient(180deg,var(--blue-400),var(--blue-500));
  color:#fff;
  box-shadow:0 8px 30px -8px var(--blue-glow);
}
.btn-primary:hover{box-shadow:0 16px 44px -10px var(--blue-glow);}

.btn-ghost{
  background:rgba(255,255,255,.04);
  color:var(--white);
  border-color:var(--line-strong);
  backdrop-filter:blur(12px);
}
.btn-ghost:hover{background:rgba(255,255,255,.08);border-color:var(--line-blue);}

.btn-gold{
  background:linear-gradient(180deg,var(--gold-soft),var(--gold));
  color:var(--navy-950);
  box-shadow:0 8px 30px -8px var(--gold-glow);
}
.btn-gold:hover{box-shadow:0 16px 44px -10px var(--gold-glow);}

.btn-lg{padding:19px 38px;font-size:1.05rem;}
.btn-sm{padding:11px 22px;font-size:.88rem;}
.btn-block{width:100%;}
.btn-icon-chip{
  display:flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.12);
  flex-shrink:0;
}

/* ==========================================================================
   Glass utility
   ========================================================================== */
.glass{
  background:rgba(13,20,38,.55);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  border:1px solid var(--line-soft);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:200;
  padding:18px 24px;
  transition:padding .4s ease;
}
.nav-inner{
  max-width:var(--container-w-wide);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:10px 12px 10px 20px;
  border-radius:var(--r-pill);
  background:rgba(10,15,28,.45);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border:1px solid var(--line-soft);
  transition:background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.nav.scrolled .nav-inner{
  background:rgba(8,12,22,.78);
  border-color:var(--line-strong);
  box-shadow:var(--shadow-soft);
}
.nav-logo{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:650;font-size:1.05rem;color:var(--white);}
.nav-logo img{height:34px;width:auto;}
.nav-links{display:flex;align-items:center;gap:30px;}
.nav-links a{
  font-size:.92rem;font-weight:500;color:var(--white-dim);
  position:relative;transition:color .25s ease;
}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:-6px;width:0;height:1px;background:var(--blue-400);
  transition:width .3s ease;
}
.nav-links a:hover{color:var(--white);}
.nav-links a:hover::after{width:100%;}
.nav-cta{display:flex;align-items:center;gap:10px;}
.nav-call{
  display:flex;align-items:center;gap:8px;
  font-family:var(--font-mono);font-size:.92rem;font-weight:600;color:var(--white);
  padding:10px 18px;border-radius:var(--r-pill);
  background:rgba(255,255,255,.06);border:1px solid var(--line-soft);
  transition:background .3s ease,border-color .3s ease;
}
.nav-call:hover{background:rgba(255,255,255,.1);border-color:var(--line-blue);}
.nav-menu-btn{
  display:none;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;
  background:rgba(255,255,255,.06);border:1px solid var(--line-soft);
  cursor:pointer;color:var(--white);
}
@media (max-width:900px){
  .nav-links{display:none;}
  .nav-call span.call-text{display:none;}
  .nav-menu-btn{display:flex;}
}

.mobile-menu{
  position:fixed;inset:0;z-index:300;
  background:rgba(6,10,20,.97);
  backdrop-filter:blur(24px);
  display:flex;flex-direction:column;
  padding:28px 28px 40px;
  transform:translateY(-100%);
  transition:transform .5s cubic-bezier(.16,1,.3,1);
  opacity:0;
  visibility:hidden;
}
.mobile-menu.open{transform:translateY(0);opacity:1;visibility:visible;}
.mobile-menu-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:50px;}
.mobile-menu-close{
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.06);border:1px solid var(--line-soft);
  display:flex;align-items:center;justify-content:center;color:var(--white);cursor:pointer;
}
.mobile-menu-links{display:flex;flex-direction:column;gap:6px;flex:1;overflow-y:auto;}
.mobile-menu-links a{
  font-family:var(--font-display);font-size:1.7rem;font-weight:600;color:var(--white);
  padding:14px 4px;border-bottom:1px solid var(--line-soft);
}
.mobile-menu-cta{display:flex;flex-direction:column;gap:12px;margin-top:24px;}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  height:100vh;
  min-height:560px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-video-wrap{
  position:absolute;inset:0;z-index:0;overflow:hidden;will-change:transform;
}
.hero-video{
  position:absolute;top:50%;left:50%;
  min-width:100%;min-height:100%;
  width:auto;height:auto;
  transform:translate(-50%,-50%) scale(1.06);
  object-fit:cover;
  will-change:transform;
}
.hero-poster{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(180deg, rgba(5,8,15,.78) 0%, rgba(5,8,15,.55) 38%, rgba(5,8,15,.85) 100%),
    linear-gradient(90deg, rgba(5,8,15,.55) 0%, rgba(5,8,15,.15) 55%, rgba(5,8,15,.5) 100%);
  transition:opacity .2s linear;
}
.hero-content{
  position:relative;z-index:2;
  width:100%;
  max-width:var(--container-w-wide);
  margin:0 auto;
  padding:0 24px;
  padding-top:var(--nav-h);
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-mono);font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--blue-300);
  background:rgba(47,111,255,.1);
  border:1px solid var(--line-blue);
  padding:8px 16px;border-radius:var(--r-pill);
  margin-bottom:26px;
}
.hero-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--success);box-shadow:0 0 0 0 rgba(52,201,142,.6);animation:pulse-dot 2s infinite;}
@keyframes pulse-dot{0%{box-shadow:0 0 0 0 rgba(52,201,142,.55);}70%{box-shadow:0 0 0 8px rgba(52,201,142,0);}100%{box-shadow:0 0 0 0 rgba(52,201,142,0);}}
.hero h1{max-width:820px;color:#fff;text-shadow:0 4px 30px rgba(0,0,0,.3);}
.hero .lede{max-width:560px;margin-top:26px;font-size:clamp(1.05rem,1.3vw,1.25rem);}
.hero-actions{display:flex;gap:16px;margin-top:42px;flex-wrap:wrap;}

.hero-emergency-row{
  display:flex;gap:16px;margin-top:54px;flex-wrap:wrap;max-width:640px;
}
.hero-emergency-btn{
  flex:1;min-width:220px;
  display:flex;align-items:center;gap:14px;
  padding:18px 22px;
  border-radius:var(--r-md);
  background:rgba(8,12,22,.6);
  border:1px solid var(--line-strong);
  backdrop-filter:blur(14px);
  transition:transform .35s cubic-bezier(.16,1,.3,1), border-color .35s ease, background .35s ease;
}
.hero-emergency-btn:hover{transform:translateY(-4px);border-color:var(--gold-soft);background:rgba(8,12,22,.8);}
.hero-emergency-icon{
  width:46px;height:46px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,var(--gold-soft),var(--gold));
  color:var(--navy-950);
}
.hero-emergency-icon svg{width:22px;height:22px;}
.hero-emergency-text{display:flex;flex-direction:column;gap:2px;}
.hero-emergency-label{font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--white-faint);font-family:var(--font-mono);}
.hero-emergency-value{font-family:var(--font-display);font-weight:600;font-size:1.08rem;color:#fff;}

.scroll-cue{
  position:absolute;bottom:34px;left:50%;transform:translateX(-50%);
  z-index:2;display:flex;flex-direction:column;align-items:center;gap:10px;
  color:var(--white-faint);font-family:var(--font-mono);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
}
.scroll-cue-line{width:1px;height:36px;background:linear-gradient(180deg,var(--white-faint),transparent);position:relative;overflow:hidden;}
.scroll-cue-line::after{
  content:"";position:absolute;top:-100%;left:0;width:100%;height:100%;
  background:linear-gradient(180deg,transparent,var(--blue-400),transparent);
  animation:scroll-cue-move 2.2s infinite;
}
@keyframes scroll-cue-move{0%{top:-100%;}100%{top:100%;}}

@media (max-width:760px){
  .hero{height:100svh;min-height:680px;}
  .hero-emergency-row{margin-top:38px;}
  .hero-emergency-btn{min-width:0;}
}

/* ==========================================================================
   Search
   ========================================================================== */
.search-box{position:relative;width:100%;max-width:560px;}
.search-input-wrap{
  position:relative;
  display:flex;align-items:center;gap:12px;
  padding:6px 8px 6px 22px;
  border-radius:var(--r-pill);
  background:rgba(10,15,28,.6);
  border:1px solid var(--line-strong);
  backdrop-filter:blur(16px);
  transition:border-color .3s ease, box-shadow .3s ease;
}
.search-input-wrap::before{
  content:"";
  width:1px;height:22px;
  background:repeating-linear-gradient(180deg,var(--blue-400) 0 4px, transparent 4px 7px);
  flex-shrink:0;
  opacity:.7;
}
.search-input-wrap:focus-within{border-color:var(--blue-400);box-shadow:0 0 0 4px rgba(47,111,255,.12);}
.search-input-wrap svg{width:18px;height:18px;color:var(--white-faint);flex-shrink:0;}
.search-input{
  flex:1;background:none;border:none;outline:none;
  color:var(--white);font-family:var(--font-body);font-size:1rem;
  padding:13px 0;min-width:0;
}
.search-input::placeholder{color:var(--white-faint);}
.search-submit-btn{
  flex-shrink:0;
  background:linear-gradient(180deg,var(--blue-400),var(--blue-500));
  color:#fff;border:none;border-radius:var(--r-pill);
  padding:11px 22px;font-weight:600;font-size:.9rem;cursor:pointer;
  white-space:nowrap;
}
.search-results{
  position:absolute;top:calc(100% + 10px);left:0;right:0;
  background:rgba(10,15,28,.92);
  border:1px solid var(--line-strong);
  border-radius:var(--r-md);
  backdrop-filter:blur(22px);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  max-height:380px;overflow-y:auto;
  z-index:50;
  opacity:0;visibility:hidden;transform:translateY(-6px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s;
}
.search-results.open{opacity:1;visibility:visible;transform:translateY(0);}
.search-result-item{
  display:flex;align-items:center;gap:12px;
  padding:13px 18px;
  border-bottom:1px solid var(--line-soft);
  cursor:pointer;
  transition:background .2s ease;
}
.search-result-item:last-child{border-bottom:none;}
.search-result-item:hover,.search-result-item.active{background:rgba(47,111,255,.1);}
.search-result-icon{
  width:32px;height:32px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.07);color:var(--blue-300);
}
.search-result-icon svg{width:16px;height:16px;}
.search-result-text{display:flex;flex-direction:column;gap:1px;min-width:0;}
.search-result-title{font-size:.92rem;font-weight:600;color:var(--white);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.search-result-sub{font-size:.76rem;color:var(--white-faint);}
.search-empty{padding:22px 20px;text-align:center;}
.search-empty p{margin-bottom:12px;font-size:.88rem;}

/* ==========================================================================
   Cards
   ========================================================================== */
.card{
  position:relative;
  display:block;
  padding:34px 30px;
  border-radius:var(--r-lg);
  background:linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border:1px solid var(--line-soft);
  transition:transform .45s cubic-bezier(.16,1,.3,1), border-color .4s ease, background .4s ease, box-shadow .45s ease;
}
.card:hover{
  transform:translateY(-7px);
  border-color:var(--line-blue);
  background:linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow:var(--shadow-lift);
}
.card-icon{
  width:52px;height:52px;border-radius:var(--r-sm);
  display:flex;align-items:center;justify-content:center;
  background:rgba(47,111,255,.12);
  color:var(--blue-300);
  margin-bottom:22px;
  transition:transform .45s cubic-bezier(.16,1,.3,1), background .4s ease;
}
.card-icon svg{width:24px;height:24px;}
.card:hover .card-icon{transform:scale(1.08) rotate(-4deg);background:rgba(47,111,255,.2);}
.card h3,.card h4{margin-bottom:10px;}
.card p{font-size:.93rem;line-height:1.65;}
.card-link{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:18px;font-size:.85rem;font-weight:600;color:var(--blue-300);
}
.card-link svg{width:14px;height:14px;transition:transform .3s ease;}
.card:hover .card-link svg{transform:translate(3px,-3px);}

.card-sm{padding:24px 22px;}
.card-sm .card-icon{width:42px;height:42px;margin-bottom:16px;}
.card-sm .card-icon svg{width:20px;height:20px;}
.card-sm h4{font-size:1rem;}

/* --- Chip grid (locations / quick links) --- */
.chip-grid{display:flex;flex-wrap:wrap;gap:10px;}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 18px;
  border-radius:var(--r-pill);
  background:rgba(255,255,255,.04);
  border:1px solid var(--line-soft);
  font-size:.88rem;font-weight:500;color:var(--white-dim);
  transition:background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.chip:hover{background:rgba(47,111,255,.12);border-color:var(--line-blue);color:var(--white);transform:translateY(-2px);}
.chip svg{width:14px;height:14px;color:var(--blue-300);}

/* ==========================================================================
   Reveal animation hooks
   ========================================================================== */
.reveal{opacity:0;transform:translateY(28px);filter:blur(6px);}
.no-js .reveal{opacity:1;transform:none;filter:none;}
@media (prefers-reduced-motion: reduce){.reveal{opacity:1;transform:none;filter:none;}}

/* ==========================================================================
   Stat bar / feature rows
   ========================================================================== */
.stat-bar{display:flex;flex-wrap:wrap;gap:48px;}
.stat-item{display:flex;flex-direction:column;gap:6px;}
.stat-value{font-family:var(--font-display);font-size:clamp(2rem,3vw,2.8rem);font-weight:650;color:#fff;}
.stat-label{font-size:.85rem;color:var(--white-faint);font-family:var(--font-mono);letter-spacing:.04em;}

.feature-row{
  display:flex;gap:28px;padding:32px 0;
  border-bottom:1px solid var(--line-soft);
}
.feature-row:last-child{border-bottom:none;}
.feature-num{
  font-family:var(--font-mono);font-size:.9rem;color:var(--blue-300);
  flex-shrink:0;width:42px;padding-top:4px;
}
.feature-row h4{margin-bottom:8px;}
.feature-row p{font-size:.95rem;max-width:560px;}

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-card{
  padding:30px 28px;border-radius:var(--r-lg);
  background:linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border:1px solid var(--line-soft);
}
.review-stars{display:flex;gap:3px;margin-bottom:16px;color:var(--gold-soft);}
.review-stars svg{width:16px;height:16px;}
.review-card p{font-size:.96rem;line-height:1.7;color:var(--white-dim);margin-bottom:20px;}
.review-author{display:flex;align-items:center;gap:12px;}
.review-avatar{
  width:38px;height:38px;border-radius:50%;
  background:linear-gradient(135deg,var(--blue-400),var(--navy-700));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:600;font-size:.85rem;color:#fff;flex-shrink:0;
}
.review-author-name{font-size:.88rem;font-weight:600;color:var(--white);}
.review-author-loc{font-size:.78rem;color:var(--white-faint);}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list{display:flex;flex-direction:column;gap:0;}
.faq-item{border-bottom:1px solid var(--line-soft);}
.faq-item:first-child{border-top:1px solid var(--line-soft);}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:24px 4px;cursor:pointer;
  font-family:var(--font-display);font-size:1.05rem;font-weight:600;color:var(--white);
}
.faq-q svg{width:18px;height:18px;flex-shrink:0;color:var(--blue-300);transition:transform .35s cubic-bezier(.16,1,.3,1);}
.faq-item.open .faq-q svg{transform:rotate(180deg);}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .4s cubic-bezier(.16,1,.3,1), opacity .3s ease;
  opacity:0;
}
.faq-item.open .faq-a{opacity:1;}
.faq-a-inner{padding:0 4px 24px;font-size:.96rem;line-height:1.75;color:var(--white-dim);max-width:680px;}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:.84rem;color:var(--white-faint);margin-bottom:18px;}
.breadcrumbs a{color:var(--white-faint);transition:color .25s ease;}
.breadcrumbs a:hover{color:var(--blue-300);}
.breadcrumbs .sep{color:var(--white-ghost);}
.breadcrumbs .current{color:var(--white-dim);}

/* ==========================================================================
   Inner page hero
   ========================================================================== */
.page-hero{
  position:relative;
  padding:calc(var(--nav-h) + 70px) 0 70px;
  overflow:hidden;
}
.page-hero-bg{
  position:absolute;inset:0;z-index:0;
  background-size:cover;background-position:center;
}
.page-hero-bg::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(5,8,15,.88) 0%, rgba(5,8,15,.7) 50%, var(--navy-950) 100%);
}
.page-hero-content{position:relative;z-index:1;}
.page-hero h1{max-width:780px;}
.page-hero .lede{max-width:620px;margin-top:20px;}
.page-hero-meta{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px;}
.meta-pill{
  display:flex;align-items:center;gap:8px;
  padding:9px 16px;border-radius:var(--r-pill);
  background:rgba(255,255,255,.05);border:1px solid var(--line-soft);
  font-size:.82rem;color:var(--white-dim);
}
.meta-pill svg{width:14px;height:14px;color:var(--blue-300);}

/* ==========================================================================
   Content grid (prose + sidebar)
   ========================================================================== */
.content-grid{display:grid;grid-template-columns:1fr 340px;gap:60px;align-items:start;}
@media (max-width:980px){.content-grid{grid-template-columns:1fr;gap:48px;}}

.prose h2{margin-top:52px;margin-bottom:18px;font-size:clamp(1.5rem,2.4vw,2rem);}
.prose h2:first-child{margin-top:0;}
.prose h3{margin-top:32px;margin-bottom:12px;font-size:1.25rem;}
.prose p{margin-bottom:18px;font-size:1.02rem;line-height:1.8;color:var(--white-dim);}
.prose ul{margin-bottom:18px;}
.prose li{position:relative;padding-left:26px;margin-bottom:10px;font-size:1rem;color:var(--white-dim);line-height:1.6;}
.prose li::before{
  content:"";position:absolute;left:0;top:9px;width:8px;height:8px;border-radius:2px;
  background:var(--blue-400);transform:rotate(45deg);
}

.sidebar{position:sticky;top:calc(var(--nav-h) + 30px);display:flex;flex-direction:column;gap:20px;}
.sidebar-card{
  padding:26px 24px;border-radius:var(--r-lg);
  background:linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border:1px solid var(--line-soft);
}
.sidebar-card h4{margin-bottom:14px;}
.sidebar-links{display:flex;flex-direction:column;gap:10px;}
.sidebar-links a{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  font-size:.9rem;color:var(--white-dim);padding:6px 0;
  border-bottom:1px solid var(--line-soft);
  transition:color .25s ease;
}
.sidebar-links a:last-child{border-bottom:none;}
.sidebar-links a:hover{color:var(--blue-300);}
.sidebar-card.cta{
  background:linear-gradient(160deg, rgba(47,111,255,.14), rgba(47,111,255,.03));
  border-color:var(--line-blue);
  text-align:center;
}

/* ==========================================================================
   Process steps
   ========================================================================== */
.process-steps{display:flex;flex-direction:column;}
.process-step{
  display:flex;gap:24px;padding:28px 0;
  border-bottom:1px solid var(--line-soft);
}
.process-step:last-child{border-bottom:none;}
.process-step-num{
  flex-shrink:0;width:46px;height:46px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(47,111,255,.12);color:var(--blue-300);
  font-family:var(--font-mono);font-weight:600;font-size:1rem;
}
.process-step h4{margin-bottom:8px;}
.process-step p{font-size:.96rem;}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  position:relative;
  border-radius:var(--r-lg);
  padding:clamp(48px,7vw,90px) clamp(28px,6vw,80px);
  background:linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border:1px solid var(--line-soft);
  overflow:hidden;
  text-align:center;
}
.cta-band::before{
  content:"";position:absolute;
  width:600px;height:600px;border-radius:50%;
  top:-300px;right:-200px;
  background:radial-gradient(circle, rgba(47,111,255,.25), transparent 70%);
  pointer-events:none;
}
.cta-band::after{
  content:"";position:absolute;
  width:500px;height:500px;border-radius:50%;
  bottom:-280px;left:-180px;
  background:radial-gradient(circle, rgba(201,162,39,.12), transparent 70%);
  pointer-events:none;
}
.cta-band-content{position:relative;z-index:1;max-width:680px;margin:0 auto;}
.cta-band h2{margin-bottom:18px;}
.cta-band p{margin-bottom:34px;font-size:1.05rem;}
.cta-band-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}

/* ==========================================================================
   Footer
   ========================================================================== */
footer{border-top:1px solid var(--line-soft);padding-top:80px;position:relative;}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;gap:40px;padding-bottom:60px;}
.footer-brand{display:flex;flex-direction:column;gap:18px;max-width:300px;}
.footer-brand img{height:40px;width:auto;}
.footer-brand p{font-size:.9rem;line-height:1.7;}
.footer-socials{display:flex;gap:10px;margin-top:8px;}
.footer-social-btn{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.05);border:1px solid var(--line-soft);
  color:var(--white-dim);transition:all .3s ease;
}
.footer-social-btn:hover{background:rgba(47,111,255,.15);border-color:var(--line-blue);color:#fff;}
.footer-social-btn svg{width:16px;height:16px;}
.footer-col h5{
  font-family:var(--font-mono);font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--white-faint);margin-bottom:18px;font-weight:500;
}
.footer-col ul{display:flex;flex-direction:column;gap:11px;}
.footer-col a{font-size:.9rem;color:var(--white-dim);transition:color .25s ease;}
.footer-col a:hover{color:var(--blue-300);}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;
  padding:26px 0 40px;border-top:1px solid var(--line-soft);
  font-size:.82rem;color:var(--white-faint);
}
.footer-bottom-links{display:flex;gap:20px;}
.footer-bottom-links a{color:var(--white-faint);}
.footer-bottom-links a:hover{color:var(--white-dim);}

@media (max-width:980px){
  .footer-top{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1 / -1;}
}
@media (max-width:600px){
  .footer-top{grid-template-columns:1fr;}
}

/* ==========================================================================
   Mobile sticky CTA bar
   ========================================================================== */
.mobile-cta-bar{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:250;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  gap:10px;
  background:rgba(8,12,22,.92);
  backdrop-filter:blur(20px);
  border-top:1px solid var(--line-strong);
}
.mobile-cta-btn{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
  padding:11px 6px;border-radius:var(--r-md);
  font-family:var(--font-display);font-weight:600;font-size:.82rem;
  transition:transform .2s ease;
}
.mobile-cta-btn:active{transform:scale(.96);}
.mobile-cta-btn svg{width:19px;height:19px;}
.mobile-cta-btn.car{background:linear-gradient(180deg,var(--blue-400),var(--blue-500));color:#fff;}
.mobile-cta-btn.house{background:linear-gradient(180deg,var(--gold-soft),var(--gold));color:var(--navy-950);}
@media (max-width:760px){
  .mobile-cta-bar{display:flex;}
  body{padding-bottom:74px;}
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.form-card{
  padding:36px;border-radius:var(--r-lg);
  background:linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border:1px solid var(--line-soft);
}
.form-row-2{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
@media (max-width:560px){.form-row-2{grid-template-columns:1fr;}}
.form-field{display:flex;flex-direction:column;gap:8px;margin-bottom:18px;}
.form-field label{font-size:.82rem;font-weight:600;color:var(--white-dim);}
.form-field label .req{color:var(--gold-soft);margin-left:3px;}
.form-field label .opt{color:var(--white-faint);font-weight:400;font-size:.78rem;margin-left:5px;}
.form-field input,.form-field textarea,.form-field select{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line-strong);
  border-radius:var(--r-sm);
  padding:14px 16px;
  color:var(--white);
  font-family:var(--font-body);font-size:.96rem;
  outline:none;
  transition:border-color .25s ease, background .25s ease;
}
.form-field textarea{resize:vertical;min-height:110px;}
.form-field input:focus,.form-field textarea:focus,.form-field select:focus{
  border-color:var(--blue-400);background:rgba(255,255,255,.06);
}
.form-field input::placeholder,.form-field textarea::placeholder{color:var(--white-faint);}
.form-success{
  display:none;
  text-align:center;padding:40px 20px;
}
.form-success.show{display:block;}
.form-success-icon{
  width:60px;height:60px;border-radius:50%;margin:0 auto 18px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(52,201,142,.15);color:var(--success);
}
.form-success-icon svg{width:28px;height:28px;}

/* ==========================================================================
   Misc utilities
   ========================================================================== */
.divider{height:1px;background:var(--line-soft);width:100%;margin:0;}
.badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 12px;border-radius:var(--r-pill);
  font-size:.74rem;font-weight:600;letter-spacing:.03em;
  background:rgba(47,111,255,.12);color:var(--blue-300);
}
.badge.gold{background:rgba(201,162,39,.14);color:var(--gold-soft);}
.section-head{max-width:640px;margin-bottom:56px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.icon{stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}

@media (max-width:760px){
  .grid-3{gap:18px;}
  .section-head{margin-bottom:40px;}
  .content-grid{gap:36px;}
}
