/* =============================================================
   SAVANNAH TRUCK REPAIR — BRAND DESIGN SYSTEM
   Derived directly from the company logo:
     Gold  #F8CC23 · Navy #01266C · Silver #DEDEDE · Charcoal #000
   Premium Enterprise · Heavy-Duty Engineering · Modern Industrial
   Type: Sora (display) · Manrope (body) · Chakra Petch (data)
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* --- Core semantic tokens --- */
  --primary:        #F8CC23;   /* Premium Gold — from logo lettering */
  --primary-hover:  #D89B12;   /* Deeper gold for hover */
  --primary-ink:    #06101F;   /* Dark text that sits ON gold */
  --secondary:      #01266C;   /* Deep Navy — from logo shield/truck */
  --secondary-hover:#02358F;
  --accent:         #2B6CF0;   /* Steel/Electric Blue — icons, links, focus */
  --accent-soft:    #6EA0FF;

  --background:     #060F1E;   /* Background Dark (navy-black) */
  --background-alt: #0A1730;   /* Deep Blue section band */
  --background-light:#F4F7FB;  /* Background Light */
  --background-gray:#E6EBF2;   /* Light Gray band */
  --surface:        #0F1E36;   /* Surface — cards on dark */
  --surface-2:      #16294a;   /* Raised surface */
  --surface-light:  #FFFFFF;   /* Surface — cards on light */

  --border:         rgba(198,214,240,.14);
  --border-strong:  rgba(198,214,240,.26);
  --border-light:   #D8E0EC;

  --text:           #DCE5F2;   /* Body text on dark */
  --heading:        #FFFFFF;   /* Heading text */
  --muted:          #93A3BC;   /* Muted text */
  --dim:            #64748F;
  --text-dark:      #1B2A44;   /* Body text on light */
  --heading-dark:   #06101F;

  --success:        #2FBF71;
  --warning:        #F8CC23;
  --error:          #E5484D;

  /* --- Brand extras --- */
  --silver:         #DEDEDE;
  --steel:          #8A97A8;
  --charcoal:       #0B0B0D;

  /* Gradients — restrained, never cheap */
  --grad-gold:  linear-gradient(135deg, #FFE07A 0%, #F8CC23 45%, #D89B12 100%);
  --grad-blue:  linear-gradient(135deg, #02358F 0%, #01266C 100%);
  --grad-line:  linear-gradient(90deg, #F8CC23, #D89B12);
  --grad-steel: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));

  /* Glass (subtle, enterprise) */
  --glass:      rgba(255,255,255,.045);
  --glass-2:    rgba(255,255,255,.07);
  --glass-brd:  rgba(198,214,240,.14);
  --edge:       linear-gradient(90deg, transparent, rgba(198,214,240,.45), transparent);

  /* Elevation */
  --sh-sm:   0 2px 12px rgba(2,10,25,.45);
  --sh:      0 24px 60px -20px rgba(2,10,25,.75);
  --sh-lg:   0 44px 100px -28px rgba(2,10,25,.85);
  --sh-gold: 0 14px 34px -10px rgba(248,204,35,.42);
  --sh-blue: 0 14px 34px -10px rgba(43,108,240,.45);
  --ring-gold: 0 0 0 1px rgba(248,204,35,.35);

  /* Radii */
  --r-lg: 20px;
  --r:    14px;
  --r-sm: 12px;   /* buttons: 12px per brand spec */
  --r-pill: 100px;

  /* Typography */
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "Chakra Petch", ui-monospace, "SF Mono", monospace;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --header-h: 88px;
  --ease: cubic-bezier(.22,.61,.36,1);

  /* --- Legacy aliases (keep older rules working) --- */
  --ink: var(--background);
  --paper: var(--heading);
  --line: var(--border);
  --flame: var(--primary);
  --gold: var(--primary);
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .002em;
  color: var(--text);
  background: var(--background);
  background-image:
    radial-gradient(120% 80% at 85% -10%, rgba(43,108,240,.14), transparent 55%),
    radial-gradient(90% 60% at -10% 0%, rgba(1,38,108,.35), transparent 55%),
    linear-gradient(180deg, #081428, #060F1E 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-soft); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary); }
ul { padding-left: 1.1rem; }
::selection { background: var(--primary); color: var(--primary-ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.5rem); letter-spacing: -.035em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.22rem, 2.1vw, 1.55rem); font-weight: 700; letter-spacing: -.012em; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
b, strong { color: var(--heading); font-weight: 700; }

/* ---------- 3. LAYOUT PRIMITIVES ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.section--alt   { background: linear-gradient(180deg, var(--background-alt), var(--background)); }
.section--black { background: var(--background); }
.section--deep  { background: var(--secondary); }
.section--alt::before, .section--black::before {
  content:""; position:absolute; inset:0 0 auto 0; height:1px; background: var(--edge); opacity:.45;
}

/* Light sections — alternating rhythm per brand spec */
.section--light { background: var(--background-light); }
.section--gray  { background: var(--background-gray); }
.section--light h1, .section--light h2, .section--light h3,
.section--gray  h1, .section--gray  h2, .section--gray  h3 { color: var(--heading-dark); }
.section--light p, .section--gray p { color: var(--text-dark); }
.section--light .lead, .section--gray .lead { color: #4A5A75; }
.section--light .service-card, .section--gray .service-card,
.section--light .feature, .section--gray .feature,
.section--light .testi-card, .section--gray .testi-card,
.section--light .step, .section--gray .step,
.section--light .info-card, .section--gray .info-card {
  background: var(--surface-light); border-color: var(--border-light); backdrop-filter: none;
}
.section--light .service-card h3, .section--gray .service-card h3 { color: var(--heading-dark); }
.section--light .service-card p, .section--gray .service-card p,
.section--light .feature p, .section--gray .feature p,
.section--light .step p, .section--gray .step p { color: #5A6A85; }

.text-center { text-align: center; }
.accent { color: var(--primary); }

/* Technical mono eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-mono);
  font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  font-size: .74rem; color: var(--primary);
  margin-bottom: 1.15rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--grad-line); }
.section--light .eyebrow, .section--gray .eyebrow { color: var(--secondary); }
.section--light .eyebrow::before, .section--gray .eyebrow::before { background: var(--secondary); }

.section-head { max-width: 760px; margin: 0 auto 3.5rem; }
.section-head.text-center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.05rem, 1.55vw, 1.18rem); color: var(--muted); line-height: 1.75; }
.mono { font-family: var(--font-mono); letter-spacing: .05em; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  --pad-x: 1.9rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 56px;                       /* brand spec */
  padding: 0 var(--pad-x);
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; line-height: 1;
  letter-spacing: .005em;
  border-radius: var(--r-sm);             /* 12px */
  border: 1.5px solid transparent;
  cursor: pointer; position: relative; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .2s;
}
.btn i { font-size: 1.02em; }

/* Primary — GOLD with dark text */
.btn--primary { background: var(--primary); color: var(--primary-ink); box-shadow: var(--sh-gold); }
.btn--primary:hover {
  background: var(--primary-hover); color: var(--primary-ink);
  transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(248,204,35,.55);
}

/* Secondary — NAVY with blue border */
.btn--ghost {
  background: rgba(1,38,108,.55); color: #fff; border-color: var(--accent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--sh-blue); }

.btn--dark { background: var(--surface); color: var(--heading); border-color: var(--border-strong); }
.btn--dark:hover { color: #fff; border-color: var(--accent); background: var(--surface-2); transform: translateY(-2px); }

.btn--lg { min-height: 60px; --pad-x: 2.3rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
.btn:focus-visible { outline: 3px solid var(--accent-soft); outline-offset: 3px; }

/* ---------- 5. HEADER / NAV ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;                       /* transparent over hero */
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), height .35s var(--ease), border-color .35s, box-shadow .35s;
}
.site-header.scrolled {
  height: 74px;
  background: rgba(6,15,30,.88);                 /* dark sticky nav */
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border); box-shadow: var(--sh-sm);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: .85rem; }
.brand img, .custom-logo { max-height: 56px; width: auto; }
.brand__mark {
  width: 48px; height: 48px; flex: none; border-radius: 12px;
  background: var(--grad-blue); border: 1px solid rgba(248,204,35,.5);
  display: grid; place-items: center; color: var(--primary); font-size: 1.3rem;
  box-shadow: var(--sh-sm);
}
.brand__text { line-height: 1; }
.brand__text b { display:block; color: #fff; font-family: var(--font-display); font-size:1.14rem; font-weight:800; letter-spacing:-.015em; }
.brand__text span { display:block; color: var(--primary); font-family: var(--font-mono); font-size:.62rem; letter-spacing:.26em; text-transform:uppercase; margin-top:5px; }

.main-nav ul { display: flex; gap: .1rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.main-nav a {
  color: #E4EBF6; font-family: var(--font-body); font-weight: 600;
  font-size: .93rem; letter-spacing: .01em;
  padding: .65rem .95rem; border-radius: 9px; display: inline-block; position: relative;
  transition: color .2s;
}
.main-nav a::after {
  content:""; position:absolute; left:.95rem; right:.95rem; bottom:.35rem; height:2px; border-radius:2px;
  background: var(--primary); transform: scaleX(0); transform-origin:left; transition: transform .3s var(--ease);
}
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--accent-soft); }
.main-nav a:hover::after, .main-nav .current-menu-item > a::after { transform: scaleX(1); }
.main-nav .menu-item-has-children { position: relative; }
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 258px;
  background: rgba(15,30,54,.96); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border); border-radius: var(--r-sm); padding: .5rem; margin-top: .5rem;
  box-shadow: var(--sh); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s var(--ease);
}
.main-nav .menu-item-has-children:hover .sub-menu { opacity:1; visibility:visible; transform: translateY(0); }
.main-nav .sub-menu a { display:block; padding:.65rem .9rem; border-radius:8px; }
.main-nav .sub-menu a::after { display:none; }
.main-nav .sub-menu a:hover { background: rgba(43,108,240,.16); color:#fff; }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone { display:flex; align-items:center; gap:.55rem; color:#fff; font-family: var(--font-mono); font-weight:600; }
.nav-phone i { color: var(--primary); }

.nav-toggle { display:none; background:none; border:none; cursor:pointer; width:46px; height:46px; padding:0; position:relative; z-index:1002; }
.nav-toggle span { display:block; width:26px; height:2.5px; background:#fff; margin:5px auto; border-radius:3px; transition:.3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.hero__bg { position:absolute; inset:0; z-index:0; background-size:cover; background-position:center; transform: scale(1.05); }
.hero__overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(100deg, rgba(6,15,30,.97) 0%, rgba(6,15,30,.9) 42%, rgba(6,15,30,.55) 100%),
    radial-gradient(100% 80% at 80% 20%, rgba(43,108,240,.22), transparent 58%),
    linear-gradient(0deg, var(--background), transparent 32%);
}
.hero__overlay::after {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(198,214,240,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(198,214,240,.05) 1px, transparent 1px);
  background-size: 64px 64px; mask: radial-gradient(80% 70% at 30% 40%, #000, transparent 75%); opacity:.45;
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 800px; padding: 4.5rem 0; }
.hero__badge {
  display:inline-flex; align-items:center; gap:.65rem;
  background: rgba(1,38,108,.5); border:1px solid rgba(248,204,35,.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color:#fff; padding:.55rem 1.1rem; border-radius: var(--r-pill);
  font-family: var(--font-mono); font-weight:600; letter-spacing:.14em; text-transform:uppercase; font-size:.72rem; margin-bottom:1.9rem;
}
.hero__badge .dot { width:9px; height:9px; border-radius:50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(47,191,113,.5);} 70%{box-shadow:0 0 0 11px rgba(47,191,113,0);} 100%{box-shadow:0 0 0 0 rgba(47,191,113,0);} }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--primary); }      /* gold highlighted keyword — flat, premium */
.hero__sub { font-family: var(--font-mono); font-weight:600; text-transform:uppercase; letter-spacing:.2em; color: var(--accent-soft); font-size: clamp(.8rem,1.3vw,.95rem); margin-bottom:1.3rem; }
.hero__desc { font-size: clamp(1.05rem,1.55vw,1.2rem); color: var(--text); max-width: 620px; margin-bottom: 2.5rem; }
.hero__actions { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:3rem; }
.hero__trust { display:flex; flex-wrap:wrap; gap: 1rem 1.75rem; }
.hero__trust div { display:flex; align-items:center; gap:.6rem; color: var(--muted); font-family: var(--font-mono); font-size:.8rem; letter-spacing:.04em; text-transform:uppercase; }
.hero__trust i { color: var(--primary); font-size:1.05rem; }

.hero__inner > * { opacity:0; transform: translateY(22px); animation: heroUp .8s var(--ease) forwards; }
.hero__inner > *:nth-child(1){ animation-delay:.05s; }
.hero__inner > *:nth-child(2){ animation-delay:.16s; }
.hero__inner > *:nth-child(3){ animation-delay:.26s; }
.hero__inner > *:nth-child(4){ animation-delay:.36s; }
.hero__inner > *:nth-child(5){ animation-delay:.46s; }
.hero__inner > *:nth-child(6){ animation-delay:.56s; }
@keyframes heroUp { to { opacity:1; transform:none; } }

/* Emergency strip — navy with gold text (never loud) */
.emergency-bar {
  background: var(--secondary); color:#fff; text-align:center;
  font-family: var(--font-mono); font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  padding:.7rem 1rem; font-size:.8rem;
  display:flex; align-items:center; justify-content:center; gap:.8rem; flex-wrap:wrap;
  border-bottom: 1px solid rgba(248,204,35,.35);
}
.emergency-bar a, .emergency-bar strong { color: var(--primary); }

/* ---------- 7. SERVICE CARDS ---------- */
.services-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(310px,1fr)); gap: 1.5rem; }
.service-card {
  position:relative; overflow:hidden; padding: 2.4rem 2.1rem;
  background: var(--surface); border:1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s, background .4s;
}
.service-card::before { content:""; position:absolute; top:0; left:0; right:0; height:2px; background: var(--primary); transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease); }
.service-card:hover { transform: translateY(-8px); border-color: rgba(248,204,35,.45); box-shadow: var(--sh); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width:64px; height:64px; border-radius:14px; margin-bottom:1.5rem;
  background: rgba(43,108,240,.12); border:1px solid rgba(43,108,240,.34);
  display:grid; place-items:center; color: var(--accent); font-size:1.6rem;   /* BLUE icons */
  transition: background .35s, color .35s, border-color .35s, transform .35s var(--ease);
}
.service-card:hover .service-card__icon {                                      /* GOLD on hover */
  background: rgba(248,204,35,.14); border-color: rgba(248,204,35,.5); color: var(--primary); transform: translateY(-2px);
}
.service-card h3 { margin-bottom:.6rem; }
.service-card p { color: var(--muted); font-size:.98rem; }
.service-card .learn {
  display:inline-flex; align-items:center; gap:.5rem; margin-top:.9rem;
  font-family:var(--font-mono); font-weight:600; text-transform:uppercase; letter-spacing:.12em; font-size:.75rem; color: var(--accent-soft);
  transition: color .25s;
}
.service-card:hover .learn { color: var(--primary); }
.service-card .learn i { transition: transform .25s var(--ease); }
.service-card:hover .learn i { transform: translateX(6px); }

/* ---------- 8. ABOUT / STATS ---------- */
.about-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items:center; }
.about-media { position:relative; border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--sh-lg); border:1px solid var(--border); }
.about-media img { width:100%; height:100%; object-fit:cover; }
.about-media .badge-exp {
  position:absolute; bottom:1.2rem; left:1.2rem;
  background: var(--secondary); border:1px solid rgba(248,204,35,.45);
  padding:1.15rem 1.5rem; border-radius: var(--r); box-shadow: var(--sh);
}
.about-media .badge-exp b { display:block; font-family: var(--font-display); font-size:2.5rem; line-height:1; color: var(--primary); }
.about-media .badge-exp span { font-family: var(--font-mono); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:#C7D4E8; }
.about-list { list-style:none; padding:0; margin:1.6rem 0; display:grid; gap:1rem; }
.about-list li { display:flex; gap:.85rem; align-items:flex-start; color: var(--text); }
.about-list i { color: var(--primary); margin-top:5px; flex:none; }

.stats-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap:1.5rem; }
.stat {
  position:relative; overflow:hidden; padding: 2.2rem 1.7rem; border-radius: var(--r);
  background: var(--surface); border:1px solid var(--border); box-shadow: var(--sh-sm);
}
.stat::before { content:""; position:absolute; top:0; left:0; width:44%; height:2px; background: var(--grad-line); }
.stat b { font-family: var(--font-display); font-weight:800; font-size: clamp(2.5rem,4.6vw,3.4rem); display:block; line-height:1; color: var(--primary); letter-spacing:-.03em; }
.stat span { color: var(--muted); font-family: var(--font-mono); text-transform:uppercase; letter-spacing:.12em; font-size:.73rem; margin-top:.5rem; display:block; }

/* ---------- 9. FEATURES ---------- */
.feature-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; }
.feature {
  background: var(--surface); border:1px solid var(--border); border-radius: var(--r); padding:2rem;
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
}
.feature:hover { border-color: rgba(248,204,35,.4); transform: translateY(-6px); box-shadow: var(--sh); }
.feature i { font-size:1.65rem; color: var(--accent); margin-bottom:1.1rem; transition: color .3s; }
.feature:hover i { color: var(--primary); }
.feature h3 { font-size:1.18rem; }
.feature p { color: var(--muted); font-size:.95rem; margin:0; }

/* ---------- 10. CTA BANNER ---------- */
.cta-banner { position:relative; overflow:hidden; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.cta-banner__inner {
  position:relative; background: var(--grad-blue); padding: clamp(2.6rem,6vw,4.5rem);
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
  border:1px solid rgba(248,204,35,.3); border-radius: var(--r-lg);
}
.cta-banner__inner::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px; mask: radial-gradient(70% 100% at 100% 0%, #000, transparent 70%); opacity:.7;
}
.cta-banner h2 { color:#fff; margin:0; position:relative; }
.cta-banner p { color: #C9D8F0; margin:.7rem 0 0; font-size:1.08rem; position:relative; }
.cta-banner .btn { position:relative; }

/* ---------- 11. TESTIMONIALS ---------- */
.testi-track { display:flex; gap:1.5rem; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:1rem; scrollbar-width:none; }
.testi-track::-webkit-scrollbar { display:none; }
.testi-card {
  flex:0 0 min(440px,86%); scroll-snap-align:center;
  background: var(--surface); border:1px solid var(--border); border-radius: var(--r); padding:2.3rem;
  position:relative; box-shadow: var(--sh-sm);
}
.testi-card::before { content:"\201C"; position:absolute; top:.5rem; right:1.5rem; font-family: var(--font-display); font-size:4.5rem; color: rgba(248,204,35,.18); line-height:1; }
.testi-card .stars { color: var(--primary); margin-bottom:1rem; letter-spacing:3px; }
.testi-card blockquote { margin:0; }
.testi-card p { font-size:1.1rem; color: var(--heading); line-height:1.65; }
.testi-card .who { display:flex; align-items:center; gap:.9rem; margin-top:1.6rem; }
.testi-card .avatar { width:48px; height:48px; border-radius:50%; background: var(--grad-blue); border:1px solid rgba(248,204,35,.4); display:grid; place-items:center; color: var(--primary); font-family: var(--font-display); font-weight:800; }
.testi-card .who b { color: var(--heading); display:block; font-family: var(--font-display); }
.testi-card .who span { color: var(--muted); font-family: var(--font-mono); font-size:.76rem; letter-spacing:.05em; }
.testi-nav { display:flex; gap:.6rem; justify-content:center; margin-top:1.9rem; }
.testi-nav button { width:50px; height:50px; border-radius:50%; border:1px solid var(--border-strong); background: var(--surface); color:#fff; cursor:pointer; transition:.25s var(--ease); }
.testi-nav button:hover { background: var(--primary); color: var(--primary-ink); border-color: transparent; transform: translateY(-2px); box-shadow: var(--sh-gold); }

/* ---------- 12. FAQ ---------- */
.faq-list { max-width:860px; margin:0 auto; display:grid; gap:.9rem; }
.faq-item { background: var(--surface); border:1px solid var(--border); border-radius: var(--r-sm); overflow:hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(248,204,35,.45); }
.faq-q { width:100%; text-align:left; background:none; border:none; cursor:pointer; color: var(--heading);
  font-family: var(--font-display); font-size:1.06rem; font-weight:700; padding:1.4rem 1.7rem;
  display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq-q i { color: var(--primary); transition: transform .35s var(--ease); flex:none; }
.faq-item.open .faq-q i { transform: rotate(135deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding:0 1.7rem 1.5rem; color: var(--muted); margin:0; }

/* ---------- 13. CONTACT / FORMS ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items:start; }
.info-card {
  background: var(--surface); border:1px solid var(--border); border-radius: var(--r); padding:1.6rem;
  display:flex; gap:1.1rem; align-items:flex-start; margin-bottom:1rem;
  transition: border-color .3s, transform .3s var(--ease);
}
.info-card:hover { border-color: rgba(248,204,35,.4); transform: translateX(4px); }
.info-card i { width:50px; height:50px; flex:none; border-radius:12px; background: rgba(43,108,240,.12); color: var(--accent); display:grid; place-items:center; font-size:1.15rem; border:1px solid rgba(43,108,240,.3); transition:.3s; }
.info-card:hover i { background: rgba(248,204,35,.14); color: var(--primary); border-color: rgba(248,204,35,.45); }
.info-card b { color: var(--heading); font-family: var(--font-display); font-weight:700; display:block; margin-bottom:.25rem; }
.info-card p, .info-card a { color: var(--muted); margin:0; }
.info-card a:hover { color: var(--primary); }

.form { background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg); padding: clamp(1.7rem,4vw,2.7rem); box-shadow: var(--sh); }
.form .row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field { margin-bottom:1.2rem; }
.field label { display:block; font-family: var(--font-mono); font-weight:600; text-transform:uppercase; letter-spacing:.1em; font-size:.72rem; color: var(--muted); margin-bottom:.55rem; }
.field input, .field textarea, .field select {
  width:100%; background: rgba(6,15,30,.7); border:1.5px solid var(--border); color: var(--heading);
  padding:1rem 1.1rem; border-radius: var(--r-sm); font-family: var(--font-body); font-size:1rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline:none; border-color: var(--accent); background: rgba(6,15,30,.95); box-shadow: 0 0 0 3px rgba(43,108,240,.22);
}
.field textarea { min-height:135px; resize:vertical; }
.field.error input, .field.error textarea { border-color: var(--error); }
.field .err-msg { color:#FF9EA1; font-size:.8rem; margin-top:.4rem; display:none; font-family: var(--font-mono); }
.field.error .err-msg { display:block; }
.form-status { padding:1rem 1.15rem; border-radius: var(--r-sm); margin-bottom:1rem; display:none; font-family: var(--font-mono); font-size:.9rem; }
.form-status.success { display:block; background: rgba(47,191,113,.12); border:1px solid rgba(47,191,113,.45); color:#8BEFBB; }
.form-status.fail { display:block; background: rgba(229,72,77,.12); border:1px solid rgba(229,72,77,.45); color:#FFB3B5; }

.map-embed { border-radius: var(--r-lg); overflow:hidden; border:1px solid var(--border); box-shadow: var(--sh); }
.map-embed iframe { width:100%; height:100%; min-height:340px; border:0; display:block; }

/* ---------- 14. PROCESS STEPS ---------- */
.steps { display:grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap:1.5rem; counter-reset: step; }
.step { position:relative; padding:2.2rem 1.8rem; border-radius: var(--r); background: var(--surface); border:1px solid var(--border); }
.step__num { counter-increment: step; font-family: var(--font-mono); font-weight:700; font-size:2.3rem; line-height:1;
  color: transparent; -webkit-text-stroke: 1.5px var(--primary); }
.step__num::before { content: "0" counter(step); }
.step h3 { font-size:1.14rem; margin:.85rem 0 .5rem; }
.step p { color: var(--muted); font-size:.95rem; margin:0; }

/* ---------- 15. PLANS ---------- */
.plans { display:grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap:1.6rem; }
.plan { position:relative; display:flex; flex-direction:column; padding:2.4rem; border-radius: var(--r-lg);
  background: var(--surface); border:1px solid var(--border); transition: transform .35s var(--ease), box-shadow .35s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.plan.featured { border-color: rgba(248,204,35,.55); box-shadow: var(--ring-gold), var(--sh); }
.plan.featured::after { content:"Most Popular"; position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background: var(--primary); color: var(--primary-ink); font-family: var(--font-mono); font-weight:700; font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; padding:.42rem 1.1rem; border-radius: var(--r-pill); box-shadow: var(--sh-gold); }
.plan h3 { font-size:1.3rem; }
.plan .price { font-family: var(--font-display); font-weight:800; font-size:2.6rem; color: var(--primary); margin:.45rem 0 1.2rem; letter-spacing:-.03em; }
.plan .price small { font-family: var(--font-mono); font-size:.88rem; font-weight:500; color: var(--muted); }
.plan ul { list-style:none; padding:0; margin:0 0 1.7rem; display:grid; gap:.75rem; }
.plan li { display:flex; gap:.65rem; align-items:flex-start; color: var(--muted); font-size:.95rem; }
.plan li i { color: var(--success); margin-top:4px; flex:none; }
.plan .btn { margin-top:auto; }

/* ---------- 16. BRAND CHIPS ---------- */
.brands { display:flex; flex-wrap:wrap; gap:.9rem; justify-content:center; }
.brand-chip { font-family: var(--font-mono); font-weight:600; text-transform:uppercase; letter-spacing:.14em; font-size:.8rem;
  color: var(--muted); background: var(--surface); border:1px solid var(--border); padding:.9rem 1.6rem; border-radius: var(--r-pill); transition:.3s var(--ease); }
.brand-chip:hover { color: var(--primary); border-color: rgba(248,204,35,.5); transform: translateY(-3px); }

/* ---------- 17. CHECKLIST ---------- */
.checklist { display:grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap:1rem; }
.check-item { display:flex; gap:.9rem; align-items:flex-start; background: var(--surface); border:1px solid var(--border); border-radius: var(--r-sm); padding:1.2rem 1.4rem; }
.check-item i { color: var(--success); margin-top:3px; flex:none; }
.check-item span { color: var(--text); }

/* ---------- 18. PAGE HERO ---------- */
.page-hero { position:relative; padding: calc(var(--header-h) + 5rem) 0 5rem; text-align:center; overflow:hidden; }
.page-hero__bg { position:absolute; inset:0; z-index:0; background-size:cover; background-position:center; opacity:.4; }
.page-hero__overlay { position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(6,15,30,.9), rgba(6,15,30,.96)),
  radial-gradient(80% 70% at 50% 0%, rgba(43,108,240,.24), transparent 65%); }
.page-hero__overlay::after { content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(198,214,240,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(198,214,240,.05) 1px, transparent 1px);
  background-size: 60px 60px; mask: radial-gradient(70% 100% at 50% 0%, #000, transparent 70%); opacity:.45; }
.page-hero .container { position:relative; z-index:2; }
.breadcrumb { display:flex; gap:.5rem; justify-content:center; color: var(--dim); font-family: var(--font-mono); font-size:.76rem; letter-spacing:.06em; margin-top:1.2rem; text-transform:uppercase; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }

/* ---------- 19. FOOTER ---------- */
.site-footer { position:relative; background: #040B16; border-top:1px solid var(--border); padding-top:5rem; }
.site-footer::before { content:""; position:absolute; inset:0 0 auto 0; height:2px; background: var(--grad-line); opacity:.9; }  /* gold divider */
.footer-grid { display:grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap:2.5rem; }
.footer-col h4 { font-size:.95rem; margin-bottom:1.3rem; font-family: var(--font-mono); font-weight:600; letter-spacing:.12em; text-transform:uppercase; color: var(--primary); }
.footer-col p { color: var(--muted); font-size:.95rem; }
.footer-col ul { list-style:none; padding:0; margin:0; display:grid; gap:.7rem; }
.footer-col ul a { color: var(--muted); font-size:.95rem; }
.footer-col ul a:hover { color: var(--accent-soft); }        /* blue hover */
.footer-contact li { display:flex; gap:.75rem; align-items:flex-start; color: var(--muted); font-size:.95rem; }
.footer-contact i { color: var(--primary); margin-top:4px; flex:none; }
.socials { display:flex; gap:.7rem; margin-top:1.3rem; }
.socials a { width:44px; height:44px; border-radius:11px; background: var(--surface); border:1px solid var(--border); display:grid; place-items:center; color: var(--text); transition:.25s var(--ease); }
.socials a:hover { background: var(--accent); color:#fff; border-color:transparent; transform: translateY(-3px); box-shadow: var(--sh-blue); }
.footer-bottom { border-top:1px solid var(--border); margin-top:3.2rem; padding:1.6rem 0; display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; color: var(--dim); font-family: var(--font-mono); font-size:.76rem; letter-spacing:.04em; }
.newsletter { display:flex; gap:.6rem; margin-top:1rem; }
.newsletter input { flex:1; background: rgba(6,15,30,.8); border:1.5px solid var(--border); color: var(--heading); padding:.9rem 1rem; border-radius: var(--r-sm); font-family: var(--font-body); }
.newsletter input:focus { outline:none; border-color: var(--accent); box-shadow:0 0 0 3px rgba(43,108,240,.2); }
.newsletter .btn { min-height:52px; }

/* ---------- 20. BADGES ---------- */
.badges { display:flex; flex-wrap:wrap; gap:1.5rem 2.2rem; justify-content:center; align-items:center; }
.badge-pill { display:flex; align-items:center; gap:.7rem; color: var(--muted); font-family: var(--font-mono); text-transform:uppercase; letter-spacing:.1em; font-size:.8rem; }
.badge-pill i { color: var(--primary); font-size:1.3rem; }

/* ---------- 21. FLOATING / MOBILE ---------- */
.float-call { position:fixed; right:20px; bottom:20px; z-index:900; width:62px; height:62px; border-radius:50%;
  background: var(--primary); color: var(--primary-ink); display:none; align-items:center; justify-content:center; font-size:1.45rem; box-shadow: var(--sh-gold); animation: floaty 2.6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }
.mobile-cta-bar { position:fixed; inset:auto 0 0 0; z-index:950; display:none;
  background: rgba(6,15,30,.94); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-top:1px solid var(--border); padding:.6rem; grid-template-columns:1fr 1fr; gap:.6rem; }
.mobile-cta-bar .btn { min-height:50px; font-size:.9rem; }

/* ---------- 22. MOTION ---------- */
.reveal { opacity:0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.08s; } .reveal.d2 { transition-delay:.16s; } .reveal.d3 { transition-delay:.24s; } .reveal.d4 { transition-delay:.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__inner > *, .hero__panel { opacity:1 !important; transform:none !important; transition:none !important; animation:none !important; }
  html { scroll-behavior:auto; }
}

/* ---------- 23. WP CONTENT ---------- */
.entry-content { max-width:820px; margin:0 auto; }
.entry-content p { color: var(--muted); }
.entry-content h2, .entry-content h3 { margin-top:2rem; }
.entry-content a { text-decoration:underline; text-underline-offset:3px; }
.entry-content img { border-radius: var(--r); margin:1.5rem 0; }
.entry-content blockquote { border-left:3px solid var(--primary); padding-left:1.5rem; margin:1.5rem 0; font-style:italic; color: var(--text); }
.wp-caption-text { color: var(--dim); font-size:.85rem; }
.screen-reader-text { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.skip-link { position:absolute; left:-9999px; }
.skip-link:focus { left:1rem; top:1rem; z-index:2000; background: var(--primary); color: var(--primary-ink); padding:.6rem 1rem; border-radius:8px; }

/* ---------- 24. HERO DIAGNOSTIC PANEL ---------- */
.hero__panel {
  position: absolute; right: var(--gutter); bottom: 6rem; width: 330px; z-index: 3;
  background: rgba(15,30,54,.72); border:1px solid rgba(248,204,35,.28); border-radius: var(--r);
  backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
  padding: 1.5rem; box-shadow: var(--sh-lg);
  opacity:0; transform: translateY(24px); animation: heroUp .9s var(--ease) .7s forwards;
}
.hero__panel-head { display:flex; align-items:center; justify-content:space-between; padding-bottom:1rem; margin-bottom:1rem; border-bottom:1px solid var(--border); }
.hero__panel-head .mono { font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); }
.hero__panel-live { display:inline-flex; align-items:center; gap:.5rem; font-family: var(--font-mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color: var(--success); }
.hero__panel-live .dot { width:8px; height:8px; border-radius:50%; background: var(--success); animation: pulse 2s infinite; }
.hero__panel-rows { list-style:none; padding:0; margin:0 0 1.35rem; display:grid; gap:.9rem; }
.hero__panel-rows li { display:flex; align-items:center; justify-content:space-between; }
.hero__panel-rows .mono { font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color: var(--dim); }
.hero__panel-rows b { font-family: var(--font-display); font-weight:800; color: var(--primary); font-size:1.02rem; }
@media (max-width: 1200px) { .hero__panel { display:none; } }

/* ---------- 25. RESPONSIVE ---------- */
@media (max-width: 991px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone { display:none; }
}
@media (max-width: 860px) {
  .nav-toggle { display:block; }
  .nav-cta .btn { display:none; }
  .site-header { background: rgba(6,15,30,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .main-nav { position:fixed; inset:0 0 0 auto; width:min(360px,86vw);
    background: #081428; padding:6rem 1.5rem 2rem; transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -30px 0 80px rgba(0,0,0,.6); overflow-y:auto; z-index:1001; border-left:1px solid var(--border); }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction:column; align-items:stretch; gap:.15rem; }
  .main-nav a { padding:.95rem 1rem; font-size:1.05rem; }
  .main-nav a::after { display:none; }
  .main-nav .sub-menu { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; background:rgba(43,108,240,.08); margin:.2rem 0 .2rem 1rem; }
  .nav-backdrop { position:fixed; inset:0; background:rgba(2,8,20,.7); z-index:1000; opacity:0; visibility:hidden; transition:.3s; }
  .nav-backdrop.show { opacity:1; visibility:visible; }
  .float-call, .mobile-cta-bar { display:flex; }
  .mobile-cta-bar { display:grid; }
  body { padding-bottom:70px; }
  .float-call { bottom:86px; }
}
@media (max-width: 620px) {
  .form .row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .cta-banner__inner { flex-direction:column; text-align:left; align-items:flex-start; }
  .hero__inner { padding:2.5rem 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* ---------- 26. LIGHT SECTION OVERRIDES (accessibility-safe) ----------
   On white/gray bands, gold is reserved for accents & buttons only —
   text switches to navy so contrast stays WCAG-compliant.                */
.section--light .stat, .section--gray .stat,
.section--light .plan, .section--gray .plan,
.section--light .faq-item, .section--gray .faq-item,
.section--light .check-item, .section--gray .check-item,
.section--light .brand-chip, .section--gray .brand-chip {
  background: var(--surface-light); border-color: var(--border-light); box-shadow: 0 2px 10px rgba(6,16,31,.06);
}
.section--light .stat b, .section--gray .stat b { color: var(--secondary); }        /* navy, not gold */
.section--light .stat span, .section--gray .stat span { color: #6B7A93; }
.section--light .about-list li, .section--gray .about-list li { color: var(--text-dark); }
.section--light .about-list i, .section--gray .about-list i { color: var(--secondary); }
.section--light .testi-card p, .section--gray .testi-card p,
.section--light .testi-card .who b, .section--gray .testi-card .who b { color: var(--heading-dark); }
.section--light .testi-card .who span, .section--gray .testi-card .who span { color: #6B7A93; }
.section--light .testi-card::before, .section--gray .testi-card::before { color: rgba(1,38,108,.14); }
.section--light .faq-q, .section--gray .faq-q { color: var(--heading-dark); }
.section--light .faq-a p, .section--gray .faq-a p { color: #5A6A85; }
.section--light .faq-item.open, .section--gray .faq-item.open { border-color: var(--secondary); }
.section--light .info-card b, .section--gray .info-card b { color: var(--heading-dark); }
.section--light .info-card p, .section--light .info-card a,
.section--gray .info-card p, .section--gray .info-card a { color: #5A6A85; }
.section--light .plan .price, .section--gray .plan .price { color: var(--secondary); }
.section--light .plan li, .section--gray .plan li { color: #5A6A85; }
.section--light .plan h3, .section--gray .plan h3 { color: var(--heading-dark); }
.section--light .brand-chip, .section--gray .brand-chip { color: #5A6A85; }
.section--light .brand-chip:hover, .section--gray .brand-chip:hover { color: var(--secondary); border-color: var(--secondary); }
.section--light .check-item span, .section--gray .check-item span { color: var(--text-dark); }
.section--light .step__num, .section--gray .step__num { -webkit-text-stroke: 1.5px var(--secondary); }
.section--light .btn--ghost, .section--gray .btn--ghost { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.section--light .btn--ghost:hover, .section--gray .btn--ghost:hover { background: var(--secondary); color:#fff; }
.section--light .testi-nav button, .section--gray .testi-nav button { background: var(--surface-light); border-color: var(--border-light); color: var(--secondary); }
.section--light .section-head p, .section--gray .section-head p { color: #4A5A75; }

/* Shipped logo mark */
.brand__logo { height: 56px; width: auto; object-fit: contain; transition: height .35s var(--ease); }
.site-header.scrolled .brand__logo { height: 46px; }
@media (max-width: 480px) { .brand__logo { height: 44px; } .brand__text { display: none; } }

/* ---------- 27. PHOTO PAGE-HERO (readable overlay over real photography) ---------- */
.page-hero--photo .page-hero__bg { opacity: 1; }
.page-hero--photo .page-hero__overlay {
  background:
    linear-gradient(180deg, rgba(6,15,30,.82) 0%, rgba(6,15,30,.9) 100%),
    linear-gradient(105deg, rgba(1,38,108,.55), transparent 60%),
    radial-gradient(80% 70% at 50% 0%, rgba(43,108,240,.18), transparent 65%);
}

/* Footer logo sizing (independent of header) */
.site-footer .brand__logo { height: 64px; width: auto; }
.site-footer .custom-logo { max-height: 64px; width: auto; }
