:root {
  --bg: #0d0d0f;
  --surface: #18181c;
  --surface-2: #1f1f25;
  --border: #2a2a30;
  --text: #ececef;
  --muted: #9a9aa3;
  --accent: #ef883c;
  --accent-2: #f4bb3b;
  --accent-soft: rgba(239, 136, 60, 0.12);
  --gradient: linear-gradient(135deg, #ef883c 0%, #f4bb3b 100%);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --max-w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

::selection {
  background: #7a3f08;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #7a3f08;
  color: #fff;
  text-shadow: none;
}

/* Material Symbols (Google Fonts Icons) — Rounded, filled variant */
.icon {
  font-family: 'Material Symbols Rounded';
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.icon-sm { font-size: 1.1rem; }
.icon-xs { font-size: 0.85rem; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: var(--text);
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-logo-lg { height: 56px; }

@media (max-width: 880px) {
  .brand-logo { height: 36px; }
  .brand-logo-lg { height: 48px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a:not(.btn) {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:not(.btn):hover { color: var(--accent-2); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav .btn { padding: 10px 18px; font-size: 0.9rem; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s;
  font-family: inherit;
  text-align: center;
  white-space: nowrap;
}

/* Dark pill with gradient border — yellow text on dark fill (resting),
   gradient fills in on hover (dark text), shine sweep crosses on hover. */
.btn-primary {
  background: var(--gradient);
  background-origin: border-box;
  background-clip: border-box;
  border: 1.5px solid transparent;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(239, 136, 60, 0.20);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s ease, transform 0.15s ease, box-shadow 0.3s ease;
}

/* Dark inner fill — covers the gradient inside the border ring at rest */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #15151a;
  transition: opacity 0.4s ease;
}

/* Shine sweep — slides across when revealed */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 48%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.5) 52%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
  mix-blend-mode: overlay;
}

.btn-primary:hover {
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(239, 136, 60, 0.5);
}

.btn-primary:hover::before { opacity: 0; }
.btn-primary:hover::after { transform: translateX(110%); }

@media (hover: none) {
  .btn-primary::after { display: none; }
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-ghost::before,
.btn-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-ghost::before {
  background: radial-gradient(
    110px circle at var(--mx, 50%) var(--my, 50%),
    rgba(244, 165, 70, 0.30) 0%,
    rgba(239, 136, 60, 0.14) 35%,
    transparent 72%
  );
}

.btn-ghost::after {
  background-image: radial-gradient(rgba(255, 200, 90, 0.38) 1px, transparent 1.4px);
  background-size: 7px 7px;
  mask-image: radial-gradient(
    90px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    90px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    transparent 75%
  );
}

.btn-ghost:hover {
  border-color: rgba(239, 136, 60, 0.55);
  color: var(--accent-2);
}

.btn-ghost:hover::before,
.btn-ghost:hover::after { opacity: 1; }

@media (hover: none) {
  .btn-ghost::before,
  .btn-ghost::after { display: none; }
}

/* HERO */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 136, 60, 0.18), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 201, 64, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-meta strong {
  color: var(--text);
  font-weight: 600;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  width: 100%;
}

.visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(239, 136, 60, 0.18), transparent 65%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.visual-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s ease;
}

.visual-card {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.25s ease;
}

.visual-card:hover {
  border-color: rgba(239, 136, 60, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -14px rgba(239, 136, 60, 0.28), 0 0 0 1px rgba(239, 136, 60, 0.2);
}

.visual-glow-layer,
.visual-dot-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-glow-layer {
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(244, 165, 70, 0.22) 0%,
    rgba(239, 136, 60, 0.10) 35%,
    transparent 75%
  );
}

.visual-dot-layer {
  background-image: radial-gradient(rgba(255, 200, 90, 0.42) 1px, transparent 1.5px);
  background-size: 10px 10px;
  mask-image: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
}

.visual-card:hover .visual-glow-layer,
.visual-card:hover .visual-dot-layer { opacity: 1; }

@media (hover: none) {
  .visual-glow-layer,
  .visual-dot-layer { display: none; }
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.visual-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.visual-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(239, 136, 60, 0.14), rgba(239, 136, 60, 0.06)) var(--surface);
  border: 1px solid rgba(239, 136, 60, 0.28);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(239, 136, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.visual-card-icon .icon {
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(239, 136, 60, 0.35));
}

.visual-card-head h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.visual-card-head p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.visual-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.visual-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.visual-list li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.visual-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(239, 136, 60, 0.06);
  border: 1px solid rgba(239, 136, 60, 0.2);
  border-radius: var(--radius-sm);
}

.visual-badge strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-2);
}

.visual-badge span {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
}

/* SECTIONS */
section { padding: 88px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* SERVICES GRID */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, #101015 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  position: relative;
  overflow: hidden;
  padding: 8px 0 28px;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.services-track {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  will-change: transform;
}

.services-track:active { cursor: grabbing; }

.service-card {
  flex: 0 0 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.35s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 520px) {
  .service-card { flex: 0 0 82%; }
}

.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::before {
  background: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(244, 165, 70, 0.22) 0%,
    rgba(239, 136, 60, 0.10) 35%,
    transparent 75%
  );
}

.service-card::after {
  background-image: radial-gradient(rgba(255, 200, 90, 0.42) 1px, transparent 1.5px);
  background-size: 9px 9px;
  mask-image: radial-gradient(
    140px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    140px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 136, 60, 0.5);
  box-shadow: 0 18px 40px -12px rgba(239, 136, 60, 0.22), 0 0 0 1px rgba(239, 136, 60, 0.18);
}

.service-card:hover::before,
.service-card:hover::after { opacity: 1; }

@media (hover: none) {
  .service-card::before,
  .service-card::after { display: none; }
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(239, 136, 60, 0.14), rgba(239, 136, 60, 0.06)) var(--surface);
  border: 1px solid rgba(239, 136, 60, 0.28);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(239, 136, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.service-icon .icon {
  font-size: 1.7rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(239, 136, 60, 0.35));
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.35s ease, box-shadow 0.4s ease;
}

.why-card::before,
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card::before {
  background: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(244, 165, 70, 0.22) 0%,
    rgba(239, 136, 60, 0.10) 35%,
    transparent 75%
  );
}

.why-card::after {
  background-image: radial-gradient(rgba(255, 200, 90, 0.42) 1px, transparent 1.5px);
  background-size: 9px 9px;
  mask-image: radial-gradient(
    140px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    140px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
}

.why-card:hover {
  border-color: rgba(239, 136, 60, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(239, 136, 60, 0.22), 0 0 0 1px rgba(239, 136, 60, 0.18);
}
.why-card:hover::before,
.why-card:hover::after { opacity: 1; }

@media (hover: none) {
  .why-card::before,
  .why-card::after { display: none; }
}

.why-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }

.why-card p { color: var(--muted); font-size: 0.95rem; }

/* CTA BAND */
.cta-band {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #1a0e00;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Wide shine sweep across the whole CTA band on hover */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.32) 48%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.32) 52%,
    transparent 65%
  );
  transform: translateX(-110%);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  mix-blend-mode: overlay;
  border-radius: inherit;
}

.cta-band:hover::before { transform: translateX(110%); }

@media (hover: none) {
  .cta-band::before { display: none; }
}

.cta-band h2 {
  color: #1a0e00;
  margin-bottom: 6px;
  font-size: 1.8rem;
}

.cta-band p { color: rgba(26, 14, 0, 0.8); margin: 0; }

/* CTA-band button: stays dark on hover so it doesn't melt into the orange band.
   Just intensifies the glow + shine sweep. */
.cta-band .btn-primary:hover { color: var(--accent-2); }
.cta-band .btn-primary:hover::before { opacity: 1; }

/* Suppress the band's shine sweep while the button is hovered (no double-shine). */
.cta-band:has(.btn:hover)::before { transform: translateX(-110%); }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: #0a0a0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 32px;
}

.site-footer address {
  font-style: normal;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-note {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
}

.site-footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer li a { color: var(--text); font-size: 0.95rem; }
.site-footer li a:hover { color: var(--accent-2); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-credit {
  text-align: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-credit .fish {
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit .fish:hover {
  color: var(--accent);
}

/* CONTACT PAGE */
.contact-hero {
  padding: 72px 0 32px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 96px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-field label .req { color: var(--accent); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 136, 60, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9aa3' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-card .btn-primary { width: 100%; padding: 16px; }

.form-note {
  text-align: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-success {
  display: none;
  padding: 20px;
  background: rgba(76, 217, 100, 0.08);
  border: 1px solid rgba(76, 217, 100, 0.3);
  border-radius: var(--radius-sm);
  color: #7ee896;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.form-success.show { display: block; }

/* CONTACT INFO PANEL */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Cursor-following flashlight glow + masked dot grid for contact-page boxes */
.form-card::before, .form-card::after,
.info-card::before, .info-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-card::before, .info-card::before {
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(244, 165, 70, 0.20) 0%,
    rgba(239, 136, 60, 0.09) 35%,
    transparent 75%
  );
}

.form-card::after, .info-card::after {
  background-image: radial-gradient(rgba(255, 200, 90, 0.40) 1px, transparent 1.5px);
  background-size: 10px 10px;
  mask-image: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
}

.form-card:hover, .info-card:hover {
  border-color: rgba(239, 136, 60, 0.35);
  box-shadow: 0 18px 40px -14px rgba(239, 136, 60, 0.18), 0 0 0 1px rgba(239, 136, 60, 0.15);
}

.form-card:hover::before, .form-card:hover::after,
.info-card:hover::before, .info-card:hover::after { opacity: 1; }

@media (hover: none) {
  .form-card::before, .form-card::after,
  .info-card::before, .info-card::after { display: none; }
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.info-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child { border-bottom: none; padding-bottom: 0; }

.info-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(239, 136, 60, 0.14), rgba(239, 136, 60, 0.06)) var(--surface);
  border: 1px solid rgba(239, 136, 60, 0.28);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(239, 136, 60, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.info-item-icon .icon {
  font-size: 1.3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(239, 136, 60, 0.30));
}

.info-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.info-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.info-item a { color: var(--accent-2); }

.appt-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(239, 136, 60, 0.4);
  color: var(--accent-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: linear-gradient(180deg, #101015 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
  padding: 0;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.35s ease, box-shadow 0.4s ease;
}

.step-card::before,
.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card::before {
  background: radial-gradient(
    200px circle at var(--mx, 50%) var(--my, 50%),
    rgba(239, 136, 60, 0.22) 0%,
    rgba(239, 136, 60, 0.10) 35%,
    transparent 75%
  );
}

.step-card::after {
  background-image: radial-gradient(rgba(255, 200, 90, 0.42) 1px, transparent 1.5px);
  background-size: 9px 9px;
  mask-image: radial-gradient(
    150px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    150px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 136, 60, 0.45);
  box-shadow: 0 18px 40px -12px rgba(239, 136, 60, 0.22), 0 0 0 1px rgba(239, 136, 60, 0.18);
}
.step-card:hover::before,
.step-card:hover::after { opacity: 1; }

.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(239, 136, 60, 0.14), rgba(239, 136, 60, 0.06)) var(--surface);
  border: 1px solid rgba(239, 136, 60, 0.28);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(239, 136, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step-icon .icon {
  font-size: 1.7rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(239, 136, 60, 0.35));
}

.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
.step-card p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   ABOUT NICK
   ============================================================ */
.about-nick {
  background: linear-gradient(180deg, var(--bg) 0%, #101015 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-text h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: left;
}

.about-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.about-ctas .btn { display: inline-flex; align-items: center; gap: 8px; }

.about-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.about-credentials li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.35s ease, transform 0.2s ease;
}

.about-credentials li::before,
.about-credentials li::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-credentials li::before {
  background: radial-gradient(
    120px circle at var(--mx, 50%) var(--my, 50%),
    rgba(239, 136, 60, 0.28) 0%,
    rgba(239, 136, 60, 0.12) 35%,
    transparent 75%
  );
}

.about-credentials li::after {
  background-image: radial-gradient(rgba(255, 200, 90, 0.42) 1px, transparent 1.4px);
  background-size: 8px 8px;
  mask-image: radial-gradient(
    90px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    90px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
}

.about-credentials li:hover {
  border-color: rgba(239, 136, 60, 0.45);
  transform: translateY(-2px);
}

.about-credentials li:hover::before,
.about-credentials li:hover::after { opacity: 1; }

@media (hover: none) {
  .about-credentials li::before,
  .about-credentials li::after { display: none; }
}

.about-credentials .icon {
  font-size: 1.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 6px rgba(239, 136, 60, 0.32));
  flex-shrink: 0;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.35s ease, box-shadow 0.4s ease;
}

.testimonial-card::before,
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card::before {
  background: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(239, 136, 60, 0.22) 0%,
    rgba(239, 136, 60, 0.10) 35%,
    transparent 75%
  );
}

.testimonial-card::after {
  background-image: radial-gradient(rgba(255, 200, 90, 0.42) 1px, transparent 1.5px);
  background-size: 9px 9px;
  mask-image: radial-gradient(
    140px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    140px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 136, 60, 0.4);
  box-shadow: 0 18px 40px -12px rgba(239, 136, 60, 0.20), 0 0 0 1px rgba(239, 136, 60, 0.15);
}
.testimonial-card:hover::before,
.testimonial-card:hover::after { opacity: 1; }

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent-2);
}
.stars .icon { font-size: 1.15rem; filter: drop-shadow(0 0 6px rgba(244, 187, 59, 0.45)); }

.testimonial-card blockquote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
  font-style: normal;
  margin: 0;
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.testimonial-card footer strong { font-size: 0.95rem; font-weight: 700; }
.testimonial-card footer span { font-size: 0.82rem; color: var(--muted); }

.testimonials-cta {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   SERVICE AREA MAP
   ============================================================ */
.service-area {
  background: linear-gradient(180deg, #101015 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* New map layout — full-bleed map with a floating glass info card overlay. */
.map-shell {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #15151a;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.map-canvas {
  width: 100%;
  aspect-ratio: 21 / 10;
  display: block;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

/* Floating glass info card */
.map-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: min(360px, calc(100% - 48px));
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(13, 13, 15, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(239, 136, 60, 0.32);
  box-shadow:
    0 22px 50px -10px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(239, 136, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.overlay-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.overlay-logo {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  flex-shrink: 0;
}

.overlay-brand > div { display: flex; flex-direction: column; min-width: 0; }
.overlay-brand strong { font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.overlay-brand span { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em; }

.overlay-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.overlay-row > .icon {
  font-size: 1.25rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 6px rgba(239, 136, 60, 0.28));
  flex-shrink: 0;
  margin-top: 2px;
}

.overlay-row > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.overlay-row strong { font-size: 0.93rem; font-weight: 600; color: var(--text); line-height: 1.35; }
.overlay-row span { font-size: 0.85rem; color: var(--muted); line-height: 1.35; }

.overlay-row .appt-badge { margin-top: 4px; align-self: flex-start; }

.overlay-actions {
  display: flex;
  gap: 8px;
}

.overlay-btn {
  flex: 1;
  padding: 11px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.overlay-btn .icon { font-size: 1.05rem; }

.overlay-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.overlay-note a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.overlay-note a:hover { color: var(--accent); }

/* Stack the overlay below the map on small screens — it's too dense to overlay
   on a narrow map and the text gets unreadable. */
@media (max-width: 760px) {
  .map-canvas { aspect-ratio: 4 / 3; }
  .map-overlay-card {
    position: static;
    width: auto;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
}

/* Restyle the standard Google InfoWindow to match the dark theme. */
.gm-style .gm-style-iw-c {
  background: var(--surface) !important;
  border: 1px solid rgba(239, 136, 60, 0.4) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45) !important;
  padding: 12px 14px !important;
}
.gm-style .gm-style-iw-tc::after { background: var(--surface) !important; }
.gm-style .gm-style-iw-d { overflow: hidden !important; color: var(--text); }
.gm-style .gm-style-iw button { display: none !important; }
.gm-style .gm-style-iw-d strong { color: var(--accent-2); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover { border-color: rgba(239, 136, 60, 0.35); }

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-chev {
  font-size: 1.4rem;
  color: var(--accent-2);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.faq-item[open] .faq-chev { transform: rotate(180deg); }

.faq-item[open] {
  border-color: rgba(239, 136, 60, 0.4);
  background: linear-gradient(180deg, rgba(239, 136, 60, 0.04), transparent);
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-body strong { color: var(--text); font-weight: 600; }

/* ============================================================
   RANGE ESTIMATOR (contact page)
   ============================================================ */
.estimator {
  padding-top: 24px;
  padding-bottom: 56px;
}

/* Unified quote flow (contact.html): vehicle step → result → contact step. */
.form-step + .form-step,
.estimator-result + .form-step {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-step-head {
  text-align: center;
  margin-bottom: 28px;
}

.contact-step-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text);
}

.contact-step-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-step-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}

.quote-contact-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
}

.quote-contact-cta .btn {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 520px) {
  .quote-contact-cta .btn { width: 100%; flex-basis: 100%; }
}

.estimator-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow);
}

.estimator-card:hover {
  border-color: rgba(239, 136, 60, 0.4);
  box-shadow: 0 20px 50px -14px rgba(239, 136, 60, 0.22), 0 0 0 1px rgba(239, 136, 60, 0.18);
}

.estimator-card:hover .visual-glow-layer,
.estimator-card:hover .visual-dot-layer { opacity: 1; }

/* The estimator card grows much larger once the result panel is shown.
   Override the standard flashlight radii so the effect feels proportional. */
.estimator-card .visual-glow-layer {
  background: radial-gradient(
    360px circle at var(--mx, 50%) var(--my, 50%),
    rgba(239, 136, 60, 0.22) 0%,
    rgba(239, 136, 60, 0.08) 35%,
    transparent 75%
  );
}

.estimator-card .visual-dot-layer {
  mask-image: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 78%
  );
}

.estimator-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  gap: 16px;
  margin-bottom: 18px;
}

/* Service options as selectable cards */
.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.service-option { cursor: pointer; }
.service-option input { position: absolute; opacity: 0; pointer-events: none; }

.service-option-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  position: relative;
}

.service-option-card .icon {
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(239, 136, 60, 0.32));
  margin-bottom: 6px;
}

.service-option-card strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.service-option-card small {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

.service-option:hover .service-option-card { border-color: rgba(239, 136, 60, 0.45); transform: translateY(-2px); }

.service-option input:checked + .service-option-card {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(239, 136, 60, 0.10), rgba(239, 136, 60, 0.03)) var(--surface-2);
  box-shadow: 0 0 0 1px rgba(239, 136, 60, 0.5), 0 8px 22px rgba(239, 136, 60, 0.18);
}

.service-option input:focus-visible + .service-option-card {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ADAS inline radio group */
.adas-options {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.adas-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
}

.adas-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.estimator-submit {
  margin-top: 20px;
  width: 100%;
}

/* Result panel */
.estimator-result {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.result-headline {
  text-align: center;
  margin-bottom: 24px;
}

.result-price {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.result-price .dollar {
  font-size: 0.55em;
  vertical-align: top;
  margin-right: 2px;
}

.result-price .dash {
  margin: 0 8px;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}

.result-vehicle {
  color: var(--muted);
  font-size: 0.95rem;
}

.result-notes {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-notes li {
  padding: 14px 16px;
  background: rgba(31, 31, 37, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.result-notes li strong { color: var(--text); font-weight: 600; }

.result-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.result-cta .btn { min-width: 200px; }

@media (max-width: 720px) {
  .estimator-card { padding: 24px; }
  .estimator-row { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: 1fr; }
  .result-cta .btn { width: 100%; }
}

/* ============================================================
   STICKY MOBILE CALL BUTTON
   ============================================================ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  z-index: 200;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--gradient);
  color: #000;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 12px 32px rgba(239, 136, 60, 0.45), 0 0 0 1px rgba(239, 136, 60, 0.4);
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
  animation: stickyCallPulse 3.5s ease-in-out infinite;
}

.sticky-call .icon { font-size: 1.2rem; color: #000; }

@keyframes stickyCallPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(239, 136, 60, 0.45), 0 0 0 1px rgba(239, 136, 60, 0.4); }
  50%      { box-shadow: 0 14px 36px rgba(239, 136, 60, 0.65), 0 0 0 1px rgba(239, 136, 60, 0.55); }
}

@media (max-width: 680px) {
  .sticky-call { display: flex; }
  /* Add padding so the floating button doesn't cover content at the page bottom. */
  body { padding-bottom: 76px; }
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-hero {
  padding: 72px 0 48px;
  text-align: center;
}

.reviews-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  background: linear-gradient(180deg, rgba(239, 136, 60, 0.10), rgba(239, 136, 60, 0.03)) var(--surface);
  border: 1px solid rgba(239, 136, 60, 0.3);
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.rating-summary-stars {
  display: inline-flex;
  gap: 2px;
}

.rating-summary-stars .icon {
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(244, 187, 59, 0.45));
}

.rating-summary-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.rating-summary-meta strong {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.rating-summary-meta span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.reviews-hero-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.reviews-hero-lead a {
  color: var(--accent-2);
  font-weight: 600;
}

.reviews-list { padding: 32px 0 64px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviews-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.reviews-cta-band strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.reviews-cta-band > div > span {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-summary { gap: 14px; padding: 14px 18px; }
  .rating-summary-stars .icon { font-size: 1.3rem; }
  .rating-summary-meta strong { font-size: 1.5rem; }
  .reviews-cta-band { padding: 22px; text-align: center; justify-content: center; }
  .reviews-cta-band > div { width: 100%; }
}

/* ============================================================
   LEGAL / LONG-FORM PAGE (Privacy, Terms, etc.)
   ============================================================ */
.legal {
  padding: 64px 0 80px;
}

.legal-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-head {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal-head h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}

.legal-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 14px;
  color: var(--text);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.legal-card p strong { color: var(--text); font-weight: 600; }

.legal-card a {
  color: var(--accent-2);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 187, 59, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-card a:hover {
  color: var(--accent);
  border-bottom-color: rgba(239, 136, 60, 0.6);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 8px rgba(239, 136, 60, 0.5);
}

.legal-list li strong { color: var(--text); font-weight: 600; }

.legal-contact {
  padding: 18px 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: 8px !important;
  line-height: 1.7 !important;
}

@media (max-width: 600px) {
  .legal-card { padding: 36px 24px; }
  .legal-card h2 { font-size: 1.15rem; margin-top: 28px; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound {
  padding: 80px 0;
}

.notfound-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.notfound-card:hover .visual-glow-layer,
.notfound-card:hover .visual-dot-layer { opacity: 1; }

.notfound-code {
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(239, 136, 60, 0.2));
}

.notfound h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.notfound p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.notfound-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.notfound-ctas .btn { padding: 12px 18px; font-size: 0.95rem; }

.notfound-links {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.notfound-links a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  font-weight: 500;
}

.notfound-links a:hover { color: var(--accent-2); }

@media (max-width: 600px) {
  .notfound-card { padding: 40px 24px; }
  .notfound-ctas .btn { width: 100%; }
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { margin: 0 auto; max-width: 420px; }
  .visual-card { padding: 24px; }
  section { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav { gap: 16px; }
  .nav a:not(.btn) { display: none; }
  .cta-band { padding: 32px; text-align: center; justify-content: center; }
  .cta-band > div { width: 100%; }
  .form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid, .testimonial-grid { grid-template-columns: 1fr; }
}
