/* ============================================================
   MONDRAGON TECH & SECURITY  —  Huntress-inspired dark theme
   ============================================================ */

/* ── Design tokens ───────────────────────────────────────── */
:root {
  /* Backgrounds — layered dark */
  --bg-0:   #050a12;   /* body, footer: deepest dark */
  --bg-1:   #080f1c;   /* primary sections */
  --bg-2:   #0c1524;   /* cards, raised surfaces */
  --bg-3:   #12203a;   /* hover states, interactive */

  /* Text */
  --tx-1:   #e4ecf7;   /* primary */
  --tx-2:   #7a94b8;   /* secondary / muted */
  --tx-3:   #3d5270;   /* very muted */

  /* Teal accent (Huntress-inspired) */
  --teal:        #00c4b0;
  --teal-light:  #00e8d2;
  --teal-dim:    rgba(0,196,176,.10);
  --teal-glow:   rgba(0,196,176,.22);
  --teal-border: rgba(0,196,176,.28);

  /* Gold (Eduardo brand warmth) */
  --gold:        #f5c53a;
  --gold-dim:    rgba(245,197,58,.15);

  /* Borders */
  --line:        rgba(255,255,255,.07);
  --line-bright: rgba(255,255,255,.13);

  /* Shared */
  --radius-card: 16px;
  --radius-pill: 999px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  {
  scroll-behavior: smooth;
  /* Offset anchor links so sticky header never covers section headings */
  scroll-padding-top: 72px;
}
body  {
  margin: 0;
  background: var(--bg-0);
  color: var(--tx-1);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: var(--tx-1);
}
img  { max-width: 100%; display: block; }
a    { color: var(--teal); transition: opacity .15s; }
a:hover { opacity: .8; }
ul   { list-style: none; margin: 0; padding: 0; }
p    { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.text-muted  { color: var(--tx-2); }

/* ── Keyframes ───────────────────────────────────────────── */

/* Hero elements fade-up on load */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge floats perpetually after entry */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* Scan line sweeps hero from top to bottom */
@keyframes scan-down {
  from { transform: translateY(-10px); opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  to   { transform: translateY(100vh); opacity: 0; }
}

/* Glitch — runs every ~7 s, lasts ~200 ms */
@keyframes glitch {
  0%, 87%, 100% { text-shadow: none; transform: none; }
  88%  { text-shadow: -3px 0 var(--teal-light), 3px 0 #ff4d6d; transform: translateX(2px); }
  89%  { text-shadow:  3px 0 var(--teal-light), -3px 0 #ff4d6d; transform: translateX(-2px); }
  90%  { text-shadow: -2px 0 var(--teal);       transform: translateX(1px); }
  91%  { text-shadow: none; transform: none; }
}

/* Teal glow pulse on the hero orb */
@keyframes glow-pulse {
  0%, 100% { opacity: .55; transform: translateY(-50%) scale(1); }
  50%       { opacity: .85; transform: translateY(-50%) scale(1.08); }
}

/* CTA button shimmer sweep */
@keyframes btn-shine {
  0%   { left: -80%; }
  20%  { left: 120%; }
  100% { left: 120%; }
}

/* Scroll reveal */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero ambient aurora — slow breathing glow on left side */
@keyframes hero-aurora {
  0%   { opacity: .6; transform: scale(1)    rotate(0deg); }
  50%  { opacity: 1;  transform: scale(1.06) rotate(2deg); }
  100% { opacity: .6; transform: scale(1)    rotate(0deg); }
}

/* Badge live indicator dot */
@keyframes live-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--teal-glow); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}

/* ── Scroll reveal system ────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].visible {
    opacity: 1 !important; transform: none !important;
    transition: none !important; animation: none !important;
  }
  .glitch, .hero-scan, .hero-badge { animation: none !important; }
}

/* ── Skip link ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 200;
  background: var(--teal); color: #050a12;
  padding: .5rem 1.2rem; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: .875rem; text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ── Eyebrow label (monospace, Huntress-style) ───────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 .6em;
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 20px; height: 1px;
  background: var(--teal);
  opacity: .6;
}

/* ── Buttons ─────────────────────────────────────────────── */
.button {
  display: inline-block;
  padding: .88rem 1.7rem;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: #050a12;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background .2s, box-shadow .2s, transform .12s;
}
.button:hover {
  background: var(--teal-light);
  color: #050a12;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--teal-glow), 0 8px 24px rgba(0,196,176,.2);
}
.button:active { transform: translateY(0); }
.button-sm { padding: .5rem 1.1rem; font-size: .8rem; }

/* Shimmer sweep on primary CTA */
.btn-shine::after {
  content: "";
  position: absolute; top: 0; left: -80%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-18deg);
  animation: btn-shine 4s ease 2s infinite;
}

/* Ghost / outline variant */
.button-ghost {
  background: transparent;
  color: var(--tx-1);
  border-color: rgba(255,255,255,.22);
}
.button-ghost:hover {
  background: var(--bg-3);
  color: var(--tx-1);
  box-shadow: none;
}
.button-ghost::after { display: none; }

/* ── Section helpers ─────────────────────────────────────── */
.section {
  padding: clamp(72px, 10vw, 130px) clamp(24px, 8vw, 120px);
}
.section > .eyebrow { margin-bottom: .35em; }
.section > h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  margin: 0 0 1.2em;
}

/* Primary dark section (default) */
.section-dark { background: var(--bg-1); }

/* Slightly raised mid section */
.section-mid {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(5,10,18,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--tx-1);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700; font-size: .9rem;
  text-decoration: none; flex-shrink: 0;
}
.brand:hover { opacity: 1; }
.brand img { width: 42px; height: 42px; object-fit: contain; }

#site-nav {
  display: flex; align-items: center; gap: 28px;
}
#site-nav > a:not(.button) {
  color: var(--tx-2);
  font-size: .875rem; font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color .15s;
}
#site-nav > a:not(.button)::after {
  content: ""; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width .2s ease;
}
#site-nav > a:not(.button):hover { color: var(--tx-1); opacity: 1; }
#site-nav > a:not(.button):hover::after { width: 100%; }

/* ── Hamburger ───────────────────────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.nav-toggle:hover { border-color: var(--teal-border); background: var(--teal-dim); }
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--tx-2); border-radius: 2px;
  transition: transform .25s ease, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile nav drawer ───────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto;
  width: min(300px, 86vw); z-index: 60;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  padding: 72px 28px 40px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  color: var(--tx-2); text-decoration: none;
  font-size: 1.1rem; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  transition: color .15s, padding-left .15s;
}
.mobile-nav nav a:last-child { border-bottom: none; }
.mobile-nav nav a:hover { color: var(--teal); padding-left: 6px; opacity: 1; }

/* CTA button inside mobile drawer — always block, full-width */
.mobile-nav .button {
  display: block;
  text-align: center;
  margin-top: 24px;
  border-bottom: none !important;
  padding: .88rem 1.7rem;
}

.nav-close {
  position: absolute; top: 18px; right: 18px;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: none; border: 1px solid var(--line);
  border-radius: 50%; font-size: 1rem; cursor: pointer;
  color: var(--tx-2);
  transition: border-color .15s, color .15s;
}
.nav-close:hover { border-color: var(--teal-border); color: var(--teal); }

.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 55;
  background: rgba(5,10,18,.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-overlay.is-visible { display: block; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-0);
}

/* Left-side aurora — slow breathing counter-part to the right glow orb */
.hero::before {
  content: "";
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 50vw);
  height: min(560px, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,176,.11) 0%, transparent 68%);
  animation: hero-aurora 14s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

/* Grid line pattern background */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,176,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,176,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Horizontal scan line sweeping top→bottom */
.hero-scan {
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-glow), var(--teal), var(--teal-glow), transparent);
  animation: scan-down 9s linear 1.5s infinite;
  z-index: 2; pointer-events: none;
}

/* Background photo (low opacity, dark overlay) */
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .14;
  z-index: 1;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(5,10,18,.97) 0%, rgba(5,10,18,.7) 55%, rgba(5,10,18,.2) 100%);
  z-index: 1;
}

/* Teal ambient glow orb */
.hero-glow {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  width: min(560px, 44vw); height: min(560px, 44vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,176,.18) 0%, transparent 68%);
  animation: glow-pulse 5s ease-in-out infinite;
  z-index: 1; pointer-events: none;
}

.hero-copy {
  position: relative; z-index: 3;
  max-width: 720px;
  padding: clamp(90px, 11vw, 160px) clamp(28px, 8vw, 120px);
  color: var(--tx-1);
}

/* Live indicator badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0,196,176,.08);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-pill);
  padding: 7px 16px 7px 12px;
  font-size: .78rem; font-weight: 600;
  color: rgba(228,236,247,.85);
  margin-bottom: 1.3em;
  backdrop-filter: blur(8px);
  animation: hero-in .7s ease .1s both, float 4s ease 1.2s infinite;
}
.hero-badge-dot {
  display: block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--teal);
  animation: live-dot 2s ease infinite;
  flex-shrink: 0;
}
.hero-badge-stars { color: var(--gold); letter-spacing: 1px; font-size: .85rem; }

.hero-copy .eyebrow {
  color: var(--teal);
  animation: hero-in .8s ease .3s both;
}
.hero-copy .eyebrow::before { background: var(--teal); opacity: .5; }

.hero h1 {
  font-size: clamp(2.8rem, 6.8vw, 6rem);
  font-weight: 800; line-height: .96;
  margin: .12em 0 .5em;
  animation: hero-in .8s ease .45s both, glitch 7s ease 3s infinite;
}

/* Teal gradient text for "trust." */
.text-teal {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Fallback for no clip support */
@supports not (-webkit-background-clip: text) {
  .text-teal { color: var(--teal); }
}

.hero-lead {
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.6; color: var(--tx-2);
  max-width: 580px; margin-bottom: 2.4em;
  animation: hero-in .8s ease .6s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: hero-in .8s ease .75s both;
}

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  background: var(--bg-2);
  border-top: 1px solid var(--teal-border);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px clamp(18px, 3.5vw, 44px);
  font-size: .82rem; font-weight: 500; color: var(--tx-2);
  border-right: 1px solid var(--line);
  transition: color .2s, background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--tx-1); background: var(--bg-3); }
.trust-item svg {
  flex-shrink: 0; stroke: var(--teal);
  filter: drop-shadow(0 0 5px var(--teal-glow));
}

/* ── Services ────────────────────────────────────────────── */
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 52px;
}
.service-tags span {
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: .8rem; font-weight: 500;
  color: var(--teal);
  background: var(--teal-dim);
  transition: background .15s, transform .15s;
}
.service-tags span:hover { background: rgba(0,196,176,.18); transform: translateY(-1px); }

/* Cards grid */
.cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* Card — dark surface with teal glow on hover */
.card {
  padding: 26px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 0 32px var(--teal-dim), 0 12px 36px rgba(0,0,0,.4);
  transform: translateY(-5px);
}

/* Icon square */
.card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  border-radius: 12px; margin-bottom: 18px;
  stroke: var(--teal);
  transition: background .2s, box-shadow .2s;
}
.card:hover .card-icon {
  background: rgba(0,196,176,.18);
  box-shadow: 0 0 16px var(--teal-glow);
}

.card-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal); margin: 0 0 7px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 10px; }
.card p  { font-size: .88rem; color: var(--tx-2); margin: 0; }

/* ── How it works ────────────────────────────────────────── */
#how-it-works h2 { margin-bottom: 0; }

.steps { display: flex; align-items: flex-start; margin-top: 64px; }
.step  { flex: 1; text-align: center; padding: 0 20px; }

/* Step circle — teal border, dark interior, mono numeral */
.step-num {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--teal-border);
  color: var(--teal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 22px;
  box-shadow: 0 0 20px var(--teal-dim), inset 0 0 20px rgba(0,196,176,.04);
  transition: box-shadow .2s, border-color .2s;
}
.step:hover .step-num {
  border-color: var(--teal);
  box-shadow: 0 0 30px var(--teal-glow);
}
.step-num::before {
  content: ""; position: absolute;
  inset: -7px; border-radius: 50%;
  border: 1px solid rgba(0,196,176,.14);
  pointer-events: none;
}

.step h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 10px; }
.step p  { font-size: .88rem; color: var(--tx-2); }

.step-line {
  flex-shrink: 0; width: 56px; height: 1px; margin-top: 30px;
  background: linear-gradient(90deg, var(--teal-border), var(--line));
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  padding: 0 clamp(24px, 8vw, 120px) clamp(64px, 9vw, 120px);
}
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,10,18,.6) 100%);
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: .5; }
.gallery-item img {
  width: 100%; height: 370px; object-fit: cover; display: block;
  transition: transform .5s ease, filter .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.8); }

/* ── About / split ───────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 8vw, 120px);
}
.split h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  font-weight: 800; line-height: 1.08; margin: .1em 0 .75em;
}

.promise-list { display: flex; flex-direction: column; gap: 14px; margin-top: 1.7em; }
.promise-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 500; color: var(--tx-2);
}
.promise-check {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  stroke: var(--teal);
}

.credentials { display: flex; gap: 12px; margin-top: 2.2em; flex-wrap: wrap; }
.credential {
  flex: 1; min-width: 88px;
  padding: 16px 16px 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-top: 2px solid var(--teal-border);
  border-radius: 0 0 12px 12px; text-align: center;
  transition: border-top-color .2s, box-shadow .2s, transform .2s;
}
.credential:hover {
  border-top-color: var(--teal);
  box-shadow: 0 0 18px var(--teal-dim);
  transform: translateY(-3px);
}
.credential strong {
  display: block; font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--teal); line-height: 1.2;
}
.credential span { font-size: .74rem; color: var(--tx-3); }

/* ── Reviews ─────────────────────────────────────────────── */
.review-cards { grid-template-columns: repeat(3,1fr); }
.review-card  { padding: 30px 26px; position: relative; overflow: hidden; }

/* Decorative large quote mark */
.review-card::before {
  content: "\201C";
  position: absolute; top: -10px; right: 16px;
  font-size: 7rem; line-height: 1;
  font-family: Georgia, serif;
  color: var(--teal); opacity: .06;
  pointer-events: none; user-select: none;
}

.review-card p {
  font-size: .92rem; font-style: italic;
  line-height: 1.65; color: var(--tx-2);
  margin: 0 0 1.1em; position: relative;
}
.stars {
  font-size: 1rem; color: var(--gold);
  letter-spacing: 2px; margin-bottom: 14px;
  filter: drop-shadow(0 1px 4px rgba(245,197,58,.3));
}
cite { display: block; font-style: normal; font-weight: 700; font-size: .85rem; color: var(--tx-2); }

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  background: var(--bg-2);
  border-top: 1px solid var(--teal-border);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,196,176,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,196,176,.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact > * { position: relative; z-index: 1; }
.contact .eyebrow { color: var(--teal); }
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.04; margin: .1em 0 .65em;
}
.contact h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--tx-3); margin: 0 0 1.2em;
}
.contact a { color: var(--tx-1); font-weight: 600; }
.contact a:hover { color: var(--teal); opacity: 1; }
.contact-note { margin-top: 1.1em; font-size: .84rem; line-height: 1.55; color: var(--tx-3); }

.hours-list { display: flex; flex-direction: column; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .88rem; padding: 12px 0;
  border-bottom: 1px solid var(--line); gap: 16px; color: var(--tx-2);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--tx-1); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 40px clamp(24px, 8vw, 120px);
  text-align: center;
  position: relative; overflow: hidden;
}

/* Subtle grid in footer */
.footer-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,176,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,176,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
/* Teal gradient top rule */
.site-footer::before {
  content: ""; position: absolute; top: 0;
  left: clamp(24px,8vw,120px); right: clamp(24px,8vw,120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-border), var(--teal), var(--teal-border), transparent);
}

.footer-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 7px; }
.footer-brand { font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 700; color: var(--tx-1); margin: 0; font-size: .9rem; }
.footer-links { margin: 0; font-size: .875rem; color: var(--tx-2); }
.footer-links a { color: var(--tx-3); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--teal); opacity: 1; }
.footer-copy { margin: 0; font-size: .76rem; color: var(--tx-3); }

/* ── Cursor glow (pointer devices only) ─────────────────── */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,176,.055) 0%, transparent 68%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-999px, -999px);
  will-change: transform;
  mix-blend-mode: screen;
  transition: transform .08s linear;
}
/* Hide on touch devices */
@media (hover: none) { .cursor-glow { display: none; } }

/* ── Focus-visible styles (keyboard nav) ─────────────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Gallery teal hover border ───────────────────────────── */
.gallery-item {
  border: 1px solid transparent;
  transition: border-color .3s;
}
.gallery-item:hover { border-color: var(--teal-border); }

/* ── Responsive: tablet ──────────────────────────────────── */
@media (max-width: 960px) {
  #site-nav > a:not(.button) { display: none; }
  .nav-toggle { display: flex; }

  .cards { grid-template-columns: 1fr 1fr; }
  .review-cards { grid-template-columns: 1fr 1fr; }

  .gallery { grid-template-columns: 1fr; }
  .gallery-item img { height: 280px; }

  .split   { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 48px; }

  .steps { flex-direction: column; align-items: center; }
  .step  { padding: 0 12px; max-width: 380px; }
  .step-line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--teal-border), var(--line)); margin: 0; }

  .trust-item { border-right: none; border-bottom: 1px solid var(--line); width: 100%; padding: 14px clamp(18px,5vw,44px); }
  .trust-item:last-child { border-bottom: none; }
}

/* ── Responsive: mobile ──────────────────────────────────── */
@media (max-width: 600px) {
  .brand span { display: none; }
  .cards { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 110px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-glow { display: none; }
  .credentials { gap: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { text-align: center; }
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--teal-border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--tx-1);
  list-style: none;
  user-select: none;
  transition: color .15s, background .15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--teal); background: var(--bg-3); }
.faq-chevron {
  flex-shrink: 0;
  stroke: var(--teal);
  transition: transform .25s ease;
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 18px 24px 22px;
  border-top: 1px solid var(--line);
  color: var(--tx-2);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}
.faq-answer a { color: var(--teal); }
.faq-answer strong { color: var(--tx-1); font-weight: 600; }
