/* ================================================================
   CV AUTO WORKS LLC — styles.css
   Dark industrial · brushed metal · electric lime accents
   ================================================================ */

/* ---------------------------- TOKENS ---------------------------- */
:root {
  --bg-0: #0d0e11;
  --bg-1: #16181d;
  --bg-2: #1c1f26;
  --line: rgba(255, 255, 255, 0.09);
  --lime: #a3e635;
  --lime-hot: #39ff14;
  --lime-dim: rgba(163, 230, 53, 0.14);
  --text: #e8eaed;
  --muted: #9aa1ab;

  --font-display: "Rajdhani", "Segoe UI", system-ui, sans-serif;
  --font-body: "Montserrat", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --header-h: 76px;
  --line-soft: rgba(255, 255, 255, 0.07);
  --shadow-lime: 0 0 28px rgba(57, 255, 20, 0.28);
  /* premium elevation — hairline top highlight + soft, diffused ambient shadow (no harsh black) */
  --shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.25), 0 26px 52px -30px rgba(0, 0, 0, 0.62);
  --shadow-card-hover: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 2px 6px rgba(0, 0, 0, 0.30), 0 38px 70px -32px rgba(0, 0, 0, 0.70);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------- RESET ----------------------------- */
*, *::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: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-0);
  /* brushed-metal micro texture */
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.013) 0 2px, transparent 2px 4px);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--lime); text-decoration: none; }
a:hover { color: var(--lime-hot); }
ul[role="list"], ol.stars, .hours div { list-style: none; margin-block: 0; padding: 0; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; margin: 0 0 0.5em; letter-spacing: 0.015em; }
p { margin: 0 0 1em; }

/* --------------------------- UTILITIES -------------------------- */
.container { width: min(1160px, 92vw); margin-inline: auto; }

.section { padding-block: clamp(88px, 11vw, 158px); position: relative; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.section-sub { color: var(--muted); margin-bottom: 0; }

/* The recurring “tile” sections (services / testimonials / FAQ) read as centered — center their headings too */
.services .section-head, .comparison .section-head, .testimonials .section-head, .faq .section-head { margin-inline: auto; text-align: center; }

.eyebrow, .tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--lime);
  margin-bottom: 18px; padding: 8px 16px; border-radius: 999px;
  background: var(--lime-dim); border: 1px solid rgba(163, 230, 53, 0.28);
}
.eyebrow .dot, .tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime-hot); box-shadow: var(--shadow-lime); }

.muted { color: var(--muted); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--lime); color: #0d0e11; font-weight: 700;
  padding: 10px 18px; border-radius: 8px; transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* Carbon-fiber surface */
.carbon {
  background-color: #101216;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.028) 0 3px, transparent 3px 9px),
    repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.35) 0 3px, transparent 3px 9px);
}

/* ---------------------------- BUTTONS --------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }

/* Button-in-Button: the trailing glyph lives in its own machined circle */
.btn-ico {
  display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  transition: transform 0.45s var(--ease);
}
.btn-ico svg { width: 14px; height: 14px; }
.btn-primary .btn-ico { background: rgba(12, 15, 10, 0.18); }
.btn-ghost .btn-ico { background: rgba(255, 255, 255, 0.10); }
.btn:hover .btn-ico { transform: translate(2px, -2px) scale(1.07); }

.btn-primary {
  background: linear-gradient(180deg, #b6f34d, var(--lime));
  color: #0c0f0a; border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 6px 22px rgba(163, 230, 53, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary:hover { color: #0c0f0a; box-shadow: var(--shadow-lime), 0 8px 26px rgba(163, 230, 53, 0.35); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { color: var(--lime); border-color: var(--lime); box-shadow: inset 0 0 18px rgba(163, 230, 53, 0.08); }

.btn-block { width: 100%; }

/* ---------------------------- HEADER ---------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(13, 14, 17, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.site-header.scrolled { background: rgba(13, 14, 17, 0.96); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55); }

.header-inner { display: flex; align-items: center; gap: 28px; width: min(1320px, 96vw); margin-inline: auto; }

.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--text); }
.brand-logo {
  width: 52px; height: 52px; object-fit: contain; border-radius: 10px;
  mix-blend-mode: screen; /* dissolve the black logo background */
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 1.12rem; letter-spacing: 0.14em; color: #fff; }
.brand-text small { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

.nav-list { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); margin-left: auto; }
.nav-list a {
  position: relative; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 6px 2px;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--lime-hot); transition: right 0.4s var(--ease); box-shadow: var(--shadow-lime);
}
.nav-list a:hover, .nav-list a.active { color: #fff; }
.nav-list a:hover::after, .nav-list a.active::after { right: 0; }

.btn-call {
  background: linear-gradient(180deg, #b6f34d, var(--lime)); color: #0c0f0a !important;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.05em;
  padding: 11px 20px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 18px rgba(163, 230, 53, 0.28); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn-call:hover { color: #0c0f0a !important; transform: translateY(-2px); box-shadow: var(--shadow-lime); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; color: var(--text); cursor: pointer; margin-left: auto; }

/* ----------------------------- HERO ----------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 40px); padding-bottom: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(57, 255, 20, 0.10), transparent 62%),
    radial-gradient(700px 420px at 12% 90%, rgba(163, 230, 53, 0.05), transparent 60%),
    linear-gradient(180deg, #16181d 0%, #0d0e11 70%);
}
.hero-bg::after { /* faint engineering grid */
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(720px 460px at 70% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(720px 460px at 70% 30%, #000 0%, transparent 75%);
}

.hero-inner { max-width: 860px; }
.hero h1 {
  font-size: clamp(2.7rem, 7.2vw, 5.2rem); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 20px; color: #fff;
}
.hero h1 .accent {
  color: var(--lime);
  text-shadow: 0 0 34px rgba(57, 255, 20, 0.45);
}
.lede { max-width: 620px; color: #c3c8cf; font-size: clamp(1rem, 1.4vw, 1.12rem); margin-bottom: 34px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 0; }

/* Proof band — trust stats live here, not inside the hero (hero = value prop + CTA only) */
.stats-band { border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.016); padding-block: clamp(24px, 3vw, 36px); }
.stats-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; max-width: 860px; margin-inline: auto; }
.stats-list li { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stats-list strong { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; color: var(--lime); line-height: 1.1; }
.stats-list span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* --------------------------- SERVICES --------------------------- */
.services-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 0; margin-inline: auto;
}

.service-card {
  flex: 1 1 260px; max-width: 320px;
  position: relative; border-radius: var(--radius-xl); padding: 36px 28px 34px; text-align: center;
  background:
    radial-gradient(120% 80% at 50% -12%, rgba(163, 230, 53, 0.07), transparent 55%),
    linear-gradient(165deg, #1b1e26, #121419);
  border: 1px solid var(--line-soft); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card::before { /* top accent line */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime-hot) 32%, var(--lime-hot) 68%, transparent);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(163, 230, 53, 0.40); box-shadow: var(--shadow-card-hover), 0 0 36px -6px rgba(57, 255, 20, 0.22); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  display: inline-grid; place-items: center; width: 58px; height: 58px; margin-bottom: 22px;
  border-radius: 16px; color: var(--lime); background: var(--lime-dim); border: 1px solid rgba(163, 230, 53, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.service-icon svg { width: 27px; height: 27px; stroke-width: 1.5; }

/* Paint-matching swatch chips — real visual variation inside the services grid */
.swatches { display: inline-flex; gap: 7px; margin-bottom: 18px; }
.swatches i { width: 18px; height: 18px; border-radius: 50%; background: var(--c, #9aa1ab); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 12px color-mix(in srgb, var(--c) 45%, transparent); }

.service-card h3 { font-size: 1.28rem; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 0; }

.service-card--cta { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: linear-gradient(165deg, rgba(163, 230, 53, 0.10), #121419 60%); }
.service-card--cta .btn { margin-top: 18px; }

/* ---------------------- BEFORE / AFTER ------------------------- */
.comparison { background: #0d0e11; }

.comparison-shell {
  max-width: 980px; margin-inline: auto; margin-block: 0;
  padding: 0; border: 1px solid rgba(163, 230, 53, 0.30); border-radius: var(--radius-xl);
  overflow: hidden; background: #0b0c0f; box-shadow: var(--shadow-card);
}

.comparison-frame {
  --position: 50%;
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: #08090b; isolation: isolate;
}

.comparison-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; user-select: none; pointer-events: none;
}
.comparison-image--before { object-position: 50% 44%; }
.comparison-image--after { object-position: 50% 48%; }

.comparison-before {
  position: absolute; inset: 0; z-index: 1;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-label {
  position: absolute; z-index: 3; top: 18px; padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px;
  background: rgba(8, 9, 11, 0.78); backdrop-filter: blur(8px);
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.comparison-label--before { left: 18px; }
.comparison-label--after { right: 18px; }

.comparison-divider {
  position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position);
  width: 2px; transform: translateX(-1px); background: #fff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}
.comparison-handle {
  position: absolute; top: 50%; left: 50%; display: grid; place-items: center;
  width: 52px; height: 52px; transform: translate(-50%, -50%);
  border: 2px solid #fff; border-radius: 50%; background: var(--lime);
  color: #0b0d0a; font: 700 1.3rem/1 var(--font-body); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.comparison-range {
  position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
}
.comparison-frame:focus-within .comparison-handle { outline: 3px solid #fff; outline-offset: 4px; }

/* ----------------------------- ABOUT ---------------------------- */
.about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); text-transform: uppercase; color: #fff; }
.about-copy p { color: #c3c8cf; }
.about-copy em { color: var(--lime); font-style: normal; font-weight: 600; }

.about-points { margin-top: 18px; display: grid; gap: 12px; }
.about-points li { position: relative; padding-left: 30px; color: #c3c8cf; }
.about-points li::before { content: "▸"; position: absolute; left: 4px; color: var(--lime-hot); text-shadow: var(--shadow-lime); }
.about-points b { color: #fff; font-weight: 600; }

.about-card { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(163, 230, 53, 0.35); background: #0b0c0f; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 34px rgba(57, 255, 20, 0.10); }
.about-card img { width: 100%; aspect-ratio: 1; object-fit: cover; mix-blend-mode: screen; }
.about-card figcaption { padding: 14px 18px; font-family: var(--font-display); letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.75rem; color: var(--muted); border-top: 1px solid var(--line); }

/* ------------------------- TESTIMONIALS ------------------------- */
.testimonials { background: linear-gradient(180deg, #0d0e11, #12141a 45%, #0d0e11); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 360px));
  justify-content: center;
  gap: 20px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.quote-card {
  border-radius: var(--radius-xl); padding: 34px 28px; display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center;
  background:
    radial-gradient(120% 90% at 50% -14%, rgba(163, 230, 53, 0.05), transparent 55%),
    linear-gradient(165deg, #1b1e26, #121419);
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); border-color: rgba(163, 230, 53, 0.38); box-shadow: var(--shadow-card-hover); }

.stars { display: flex; gap: 4px; margin-bottom: 0 !important; }
.stars li { width: 16px; height: 16px; background: var(--lime); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.4)); }

.quote-card blockquote { margin: 0; color: #d4d8de; font-size: 0.98rem; flex: 1; }
.quote-who { display: flex; flex-direction: column; margin: 0 !important; }
.quote-who b { color: #fff; font-family: var(--font-display); letter-spacing: 0.08em; }
.quote-who span { color: var(--muted); font-size: 0.8rem; }

.trust-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding: 34px 36px;
  max-width: 1060px; margin-inline: auto;
  border-radius: var(--radius-xl); border: 1px solid rgba(163, 230, 53, 0.26);
  background: linear-gradient(90deg, rgba(163, 230, 53, 0.07), transparent 55%), #12141a;
  box-shadow: var(--shadow-card);
}
.trust-strip p { display: flex; flex-direction: column; align-items: center; text-align: center; margin: 0 !important; }
.trust-strip strong { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--lime); line-height: 1.1; }
.trust-strip span { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ------------------------------- FAQ ----------------------------- */
.faq { background: linear-gradient(180deg, #0d0e11, #12141a 45%, #0d0e11); }

.faq-list {
  display: grid; gap: 14px; max-width: 960px;
  margin-inline: auto; padding: 0; list-style: none;
}

.faq-item {
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #1b1e26, #121419); overflow: hidden; box-shadow: var(--shadow-card);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.faq-item:hover { border-color: rgba(163, 230, 53, 0.36); }
.faq-item.open { border-color: rgba(163, 230, 53, 0.50); box-shadow: var(--shadow-card-hover), 0 0 30px -8px rgba(57, 255, 20, 0.18); }

.faq-item h3 { margin: 0; font-size: 1rem; }
.faq-q {
  position: relative; width: 100%; display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 20px 56px; background: none; border: 0; cursor: pointer; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.05em; line-height: 1.3;
  color: #fff; transition: color 0.2s ease;
}
.faq-q:hover { color: var(--lime); }

/* plus → × indicator */
.faq-icon { position: absolute; right: 22px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--lime); border-radius: 2px; box-shadow: 0 0 8px rgba(57, 255, 20, 0.4); }
.faq-icon::before { left: 0; right: 0; top: 7px; height: 2px; }
.faq-icon::after { top: 0; bottom: 0; left: 7px; width: 2px; }
.faq-item.open .faq-icon { transform: translateY(-50%) rotate(45deg); }

/* smooth expand/collapse (grid-rows trick — no height math) */
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-inner { overflow: hidden; min-height: 0; }
.faq-inner p { margin: 0 auto; padding: 0 24px 22px; color: var(--muted); max-width: 75ch; text-align: center; }

/* ---------------------------- CONTACT --------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }

.contact-form {
  border-radius: var(--radius); padding: clamp(24px, 3.4vw, 40px);
  background: linear-gradient(165deg, #1a1d24, #121419); border: 1px solid var(--line);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; color: #cfd4da; margin-bottom: 8px; }

.field input, .field textarea {
  width: 100%; padding: 14px 18px; border-radius: 12px; resize: vertical;
  background: rgba(13, 14, 17, 0.72); color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12); font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #6b7280; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.18), 0 0 18px rgba(57, 255, 20, 0.12); }
.field input.invalid, .field textarea.invalid { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15); }

.form-privacy { margin: 12px 0 0; color: var(--muted); font-size: 0.82rem; text-align: center; }
.form-note { margin-top: 14px; font-size: 0.9rem; min-height: 1.4em; color: var(--lime); }
.form-note.error { color: #f87171; }

.contact-info { display: grid; gap: 20px; }
.info-block { border-radius: var(--radius); padding: 26px; background: linear-gradient(165deg, #1a1d24, #121419); border: 1px solid var(--line); }
.info-block h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--lime); margin-bottom: 10px; }
.info-block p { margin-bottom: 6px; }

.link-arrow { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.08em; }

.hours div { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.08); }
.hours div:last-child { border-bottom: 0; }
.hours dt { color: var(--muted); font-size: 0.9rem; }
.hours dd { margin: 0; color: #fff; font-weight: 600; text-align: right; }

.info-badge {
  margin: 0 !important; padding: 14px 18px; border-radius: 10px; text-align: center;
  background: var(--lime-dim); border: 1px dashed rgba(163, 230, 53, 0.4); color: #d9f5c4; font-size: 0.85rem;
}

/* ----------------------------- FOOTER --------------------------- */
.site-footer { background: #0a0b0e; border-top: 1px solid var(--line); }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 48px);
  padding-block: clamp(48px, 6vw, 72px);
}

.footer-brand .brand-logo--lg { width: 72px; height: 72px; margin-bottom: 14px; }
.footer-brand p { color: #fff; font-family: var(--font-display); letter-spacing: 0.1em; line-height: 1.5; }

.site-footer h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--lime); margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 8px; }
.site-footer nav a, .site-footer address a { color: var(--muted); font-size: 0.95rem; }
.site-footer nav a:hover, .site-footer address a:hover { color: var(--lime-hot); }
.site-footer address { font-style: normal; color: var(--muted); line-height: 1.8; }

.footer-base { border-top: 1px solid rgba(255, 255, 255, 0.06); padding-block: 20px; background: #08090b; }
.footer-base-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-base p { margin: 0; color: #6d747e; font-size: 0.85rem; }
.legal-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.legal-links a { color: #8b929d; font-size: 0.85rem; }
.legal-links a:hover { color: var(--lime); }
.back-top { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; color: var(--muted); }
.back-top:hover { color: var(--lime-hot); }

/* -------------------------- LEGAL PAGES ------------------------- */
.legal-page { background: #0d0e11; }
.legal-page .header-inner { justify-content: space-between; }
.legal-page .site-footer { padding-top: 0; }
.legal-page .footer-base { border-top: 1px solid var(--line); }

.legal-main {
  min-height: calc(100vh - 150px);
  padding: calc(var(--header-h) + clamp(56px, 8vw, 96px)) 0 clamp(72px, 10vw, 128px);
}
.legal-hero { max-width: 860px; margin-inline: auto; text-align: center; }
.legal-hero h1 {
  color: #fff; font-size: clamp(2.4rem, 6vw, 4.6rem);
  text-transform: uppercase; letter-spacing: 0.025em;
}
.legal-updated { margin: 16px 0 0; color: var(--muted); font-size: 0.9rem; }
.legal-content {
  max-width: 860px; margin: clamp(42px, 6vw, 72px) auto 0;
  padding: clamp(28px, 5vw, 56px); border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl); background: linear-gradient(165deg, #1b1e26, #121419);
  box-shadow: var(--shadow-card);
}
.legal-content section + section { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--line-soft); }
.legal-content h2 { color: #fff; font-size: clamp(1.35rem, 2.4vw, 1.75rem); text-transform: uppercase; }
.legal-content h3 { color: #fff; font-size: 1.08rem; margin-top: 24px; }
.legal-content p, .legal-content li { color: #c3c8cf; }
.legal-content ul { display: grid; gap: 10px; padding-left: 22px; }
.legal-content address { color: #c3c8cf; font-style: normal; }
.legal-callout {
  padding: 18px 20px; border-left: 3px solid var(--lime);
  background: rgba(163, 230, 53, 0.06); border-radius: 0 10px 10px 0;
}

/* ------------------------ REVEAL ANIMATIONS --------------------- */
.reveal { opacity: 0; transform: translateY(28px) scale(0.992); transition: opacity 0.8s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* --------------------------- RESPONSIVE ------------------------- */
@media (max-width: 1080px) {
  .btn-call-label { display: none; } /* icon-only call button on medium screens */
}

@media (max-width: 920px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: inline-grid; place-items: center; }

  nav[aria-label="Primary"] { position: absolute; top: var(--header-h); left: 0; right: 0; }
  .nav-list {
    flex-direction: column; align-items: stretch; gap: 0; margin-left: 0;
    background: rgba(13, 14, 17, 0.98); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.5);
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  }
  .nav-list.open { max-height: 480px; }
  .nav-list a { display: block; padding: 16px clamp(20px, 6vw, 40px); border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 1rem; }
  .nav-list a::after { display: none; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .stats-list { grid-template-columns: 1fr; gap: 18px; }
  .comparison-frame { aspect-ratio: 4 / 5; }
  .comparison-label { top: 12px; }
  .comparison-label--before { left: 12px; }
  .comparison-label--after { right: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ------------------------ REDUCED MOTION ------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
