/* =========================================================
   HyperLab Car Detailing — Design System
   Theme: Black + Neon Blue, Sport
   ========================================================= */

:root {
  /* Palette */
  --bg:            #05070d;
  --bg-2:          #0a0e17;
  --surface:       #0e131f;
  --surface-2:     #141a28;
  --line:          #1e2636;
  --line-2:        #2a3346;
  --text:          #eef2f8;
  --text-dim:      #9aa6bd;
  --text-mute:     #64708a;
  --neon:          #14e3ff;   /* cyan-blue neon */
  --neon-2:        #0091ff;   /* deeper blue */
  --neon-soft:     rgba(20, 227, 255, 0.14);
  --danger:        #ff4d67;
  --ok:            #21e08a;

  /* Effects */
  --glow:          0 0 24px rgba(20, 227, 255, 0.35);
  --glow-soft:     0 0 12px rgba(20, 227, 255, 0.18);
  --shadow:        0 18px 50px -18px rgba(0, 0, 0, 0.75);
  --radius:        16px;
  --radius-sm:     10px;
  --maxw:          1200px;
  --gradient:      linear-gradient(120deg, var(--neon), var(--neon-2));

  --font:          'Kanit', 'Prompt', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Ambient background ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 12% -8%, rgba(0, 145, 255, 0.14), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(20, 227, 255, 0.10), transparent 55%),
    radial-gradient(700px 600px at 50% 120%, rgba(0, 145, 255, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }
.section { padding: 90px 0; position: relative; z-index: 1; }
.section--tight { padding: 60px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--neon);
  padding: 7px 14px; border: 1px solid var(--line-2);
  border-radius: 100px; background: var(--neon-soft);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--neon); box-shadow: var(--glow-soft); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 18px 0 14px; }
.section-title .hl { color: var(--neon); }
.section-sub { color: var(--text-dim); font-size: 1.05rem; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 100px; font-weight: 500; font-size: 1rem;
  transition: transform .2s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--gradient); color: #01121b; font-weight: 600; box-shadow: var(--glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 34px rgba(20, 227, 255, 0.55); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-3px); box-shadow: var(--glow-soft); }
.btn--line { background: #06c755; color: #fff; box-shadow: 0 0 22px rgba(6, 199, 85, 0.35); }
.btn--line:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(6, 199, 85, 0.5); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 7, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1.15rem; letter-spacing: 0.02em; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--gradient); color: #01121b; font-weight: 700; box-shadow: var(--glow-soft);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand b { font-weight: 600; }
.brand span { color: var(--neon); }
/* Brand H mark (white PNG, fits dark theme directly) */
.brand__mark-img { height: 40px; width: auto; display: block; filter: drop-shadow(0 0 8px rgba(20,227,255,0.4)); transition: filter .3s ease; }
.brand:hover .brand__mark-img { filter: drop-shadow(0 0 14px rgba(20,227,255,0.7)); }
.brand b.brand__word { font-weight: 700; font-style: normal; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1;
  display: inline-block; transform: skewX(-6deg); }
.brand__text { display: inline-flex; flex-direction: column; justify-content: center; }
.brand .brand__text { color: var(--text); }
.brand .brand__tag { font-size: 0.574em; font-weight: 400; font-style: normal; letter-spacing: 0.275em;
  color: var(--text-mute); margin-top: 3px; white-space: nowrap; display: inline-block; transform: skewX(-6deg); }
.brand__mark-img--footer { height: 40px; }
/* footer logo = same as header (override .footer-col a which forces display:block + smaller font) */
.footer-about a.brand { font-size: 1.15rem; display: flex; align-items: center; gap: 12px; padding: 0; }
@media (max-width: 760px) { .brand__mark-img { height: 34px; } }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  padding: 9px 16px; border-radius: 100px; color: var(--text-dim); font-size: 0.98rem;
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-2); }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 2px; transition: .3s; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 100px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero__title { font-size: clamp(2.2rem, 6vw, 4.1rem); font-weight: 700; line-height: 1.05; }
.hero__title .line { display: block; }
.hero__lead { color: var(--text-dim); font-size: 1.15rem; max-width: 520px; margin: 22px 0 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero__stat b { display: block; font-size: 1.9rem; font-weight: 700; color: var(--neon); line-height: 1; }
.hero__stat span { font-size: 0.9rem; color: var(--text-mute); }

/* Hero visual */
.hero__visual { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line-2); background:
    linear-gradient(160deg, var(--surface), var(--bg));
  box-shadow: var(--shadow); display: grid; place-items: center; }
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 70% 20%, rgba(20,227,255,0.18), transparent 60%);
}
.hero__car { width: 88%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); position: relative; z-index: 1; }
.hero__badge {
  position: absolute; z-index: 2; background: rgba(10, 14, 23, 0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 12px 16px; display: flex;
  align-items: center; gap: 12px; box-shadow: var(--shadow);
}
.hero__badge svg { width: 26px; height: 26px; color: var(--neon); }
.hero__badge b { font-size: 0.95rem; display: block; }
.hero__badge span { font-size: 0.78rem; color: var(--text-mute); }
.hero__badge--tl { top: 20px; left: -14px; }
.hero__badge--br { bottom: 24px; right: -14px; }

/* ---------- Marquee strip ---------- */
.strip { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.strip__track { display: flex; gap: 48px; padding: 18px 0; white-space: nowrap; animation: scroll 26s linear infinite; }
.strip__track span { color: var(--text-mute); font-weight: 500; letter-spacing: 0.05em; display: inline-flex; gap: 48px; }
.strip__track span::after { content: "◆"; color: var(--neon); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Cards / Services ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--neon-soft); border: 1px solid var(--line-2); margin-bottom: 18px; color: var(--neon);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 0.98rem; }
.card__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; color: var(--neon); font-size: 0.92rem; font-weight: 500; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Why / features ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--neon-soft); color: var(--neon); border: 1px solid var(--line-2); }
.feature__ic svg { width: 24px; height: 24px; }
.feature h4 { font-size: 1.08rem; margin-bottom: 4px; }
.feature p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Price table ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; position: relative; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.price-card--featured { border-color: var(--neon); box-shadow: var(--glow-soft); background: linear-gradient(180deg, rgba(20,227,255,0.06), var(--surface)); }
.price-card__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #01121b; font-size: 0.78rem; font-weight: 600; padding: 5px 16px; border-radius: 100px; }
.price-card h3 { font-size: 1.3rem; }
.price-card .desc { color: var(--text-mute); font-size: 0.92rem; margin-bottom: 18px; }
.price-card .amount { font-size: 2.4rem; font-weight: 700; color: var(--text); line-height: 1; }
.price-card .amount small { font-size: 1rem; font-weight: 400; color: var(--text-mute); }
.price-card .per { color: var(--text-mute); font-size: 0.85rem; margin-bottom: 22px; }
.price-list { display: grid; gap: 12px; margin-bottom: 26px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; color: var(--text-dim); }
.price-list li svg { flex: none; width: 20px; height: 20px; color: var(--neon); margin-top: 2px; }

/* Promo helpers */
.pricing.pricing--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .pricing.pricing--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .pricing.pricing--4 { grid-template-columns: 1fr; } }
.was { text-decoration: line-through; color: var(--text-mute); font-weight: 400; }
.promo-pill { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; letter-spacing: 0.03em;
  color: #ff6478; padding: 9px 20px; border: 1px solid rgba(255,77,103,0.45); border-radius: 100px; background: rgba(255,77,103,0.12); }
.price-card .amount .cur { font-size: 1rem; font-weight: 400; color: var(--text-mute); }
.ptable .allsize { color: var(--neon); font-weight: 500; }
.ptable td.c { text-align: center; white-space: nowrap; }
.ptable th.c { text-align: center; }
/* Car size table */
.ptable.ptable--size td { vertical-align: top; }
.ptable.ptable--size td.svc { white-space: nowrap; font-weight: 600; }
.ptable.ptable--size td.mdl { text-align: left; white-space: normal; font-size: 0.8rem; line-height: 1.55; color: var(--text-dim); min-width: 150px; }
/* Responsive price tables — card view on mobile */
@media (max-width: 640px) {
  .ptable-wrap:has(.ptable--resp) { border: none; background: transparent; border-radius: 0; overflow: visible; }
  .ptable--resp { min-width: 0 !important; }
  .ptable--resp thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
  .ptable--resp tbody, .ptable--resp tr, .ptable--resp td { display: block; width: 100%; }
  .ptable--resp tr { border: 1px solid var(--line-2); border-radius: 12px; margin-bottom: 14px; background: var(--surface); overflow: hidden; }
  .ptable--resp tbody tr:hover { background: var(--surface); }
  .ptable--resp td { border: none; border-bottom: 1px solid var(--line); }
  .ptable--resp td:last-child { border-bottom: none; }
  .ptable--resp td.svc { background: var(--surface-2); color: var(--text); font-weight: 600; font-size: 1rem; padding: 13px 16px; white-space: normal; }
  .ptable--resp td.c { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 10px 16px; text-align: right; color: var(--text); font-weight: 500; }
  .ptable--resp td.c::before { content: attr(data-size); color: var(--neon); font-weight: 500; font-size: 0.88rem; letter-spacing: 0.02em; }
  .ptable--resp td.c:empty { display: none; }
  .ptable--resp td.mdl { padding: 10px 16px; text-align: left; }
  .ptable--resp td.mdl:empty { display: none; }
  .ptable--resp td.mdl::before { content: attr(data-size); display: inline-block; min-width: 26px; color: var(--neon); font-weight: 700; margin-right: 8px; }
  /* size table: label M/L/XL by column position (no data-size needed) */
  .ptable--size.ptable--resp td.mdl:nth-of-type(2)::before { content: "M"; }
  .ptable--size.ptable--resp td.mdl:nth-of-type(3)::before { content: "L"; }
  .ptable--size.ptable--resp td.mdl:nth-of-type(4)::before { content: "XL"; }
}
.tbl-title { font-size: 1.15rem; font-weight: 600; margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.tbl-title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: var(--glow-soft); }

/* Full price table */
.ptable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.ptable { width: 100%; border-collapse: collapse; min-width: 560px; }
.ptable th, .ptable td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.ptable thead th { background: var(--surface-2); font-weight: 500; color: var(--neon); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.ptable tbody tr:last-child td { border-bottom: none; }
.ptable tbody tr:hover { background: rgba(255,255,255,0.02); }
.ptable td.price { color: var(--text); font-weight: 500; white-space: nowrap; }
.ptable .svc { font-weight: 500; color: var(--text); }
.ptable .muted { color: var(--text-mute); font-size: 0.9rem; }

/* ---------- Gallery Before/After ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16/10; user-select: none; background: var(--surface); box-shadow: var(--shadow);
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.ba__ph--before { background: linear-gradient(135deg, #1a1f2b, #10141d); }
.ba__ph--after  { background: linear-gradient(135deg, #06222b, #041418); clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__ph span { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }
.ba__label { position: absolute; top: 12px; padding: 5px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; backdrop-filter: blur(6px); z-index: 3; }
.ba__label--b { left: 12px; background: rgba(0,0,0,0.55); color: var(--text-dim); }
.ba__label--a { right: 12px; background: var(--neon); color: #01121b; }
.ba__slider { position: absolute; inset: 0; width: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 4; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: var(--neon); transform: translateX(-50%); z-index: 3; box-shadow: var(--glow); }
.ba__handle::after {
  content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 40px; height: 40px; border-radius: 50%; background: var(--neon); color: #01121b;
  display: grid; place-items: center; font-size: 1rem; font-weight: 700; box-shadow: var(--glow);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.step__n { font-size: 2.4rem; font-weight: 700; color: var(--line-2); line-height: 1; margin-bottom: 12px; }
.step:hover .step__n { color: var(--neon); }
.step h4 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; padding: 56px 44px;
  background: linear-gradient(120deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-2); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 260px at 50% -20%, rgba(20,227,255,0.22), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: var(--text-dim); max-width: 560px; margin: 0 auto 28px; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq__item[open] { border-color: var(--line-2); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 500; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--neon); }
.faq__item summary::after {
  content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--neon-soft); color: var(--neon); font-size: 1.3rem; font-weight: 400; transition: transform .3s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item .faq__a { padding: 0 24px 22px; color: var(--text-dim); font-size: 0.98rem; }

/* ---------- Contact / Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.info-list { display: grid; gap: 20px; margin: 28px 0; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item__ic { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--neon-soft); color: var(--neon); border: 1px solid var(--line-2); }
.info-item__ic svg { width: 24px; height: 24px; }
.info-item b { display: block; font-weight: 500; }
.info-item span, .info-item a { color: var(--text-dim); font-size: 0.98rem; }
.info-item a:hover { color: var(--neon); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.92rem; margin-bottom: 8px; color: var(--text-dim); }
.field label .req { color: var(--neon); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); background: var(--bg-2);
  border: 1px solid var(--line-2); color: var(--text); font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px var(--neon-soft);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.85rem; color: var(--text-mute); margin-top: 14px; text-align: center; }

/* ---------- Map ---------- */
.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 260px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Floating actions ---------- */
.floating { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .3s; position: relative; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }
.fab--line { background: #06c755; color: #fff; }
.fab--call { background: var(--gradient); color: #01121b; }
.fab--line::after, .fab--call::after {
  content: attr(data-tip); position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--surface-2); border: 1px solid var(--line-2); color: var(--text); font-size: 0.82rem;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.fab:hover::after { opacity: 1; }
.fab--call { animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(20,227,255,0.4); } 50% { box-shadow: 0 0 0 12px rgba(20,227,255,0); } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 60px 0 28px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 44px; }
.footer-col h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); padding: 6px 0; font-size: 0.96rem; transition: color .2s; }
.footer-col a:hover { color: var(--neon); }
.footer-about p { color: var(--text-dim); font-size: 0.96rem; margin: 14px 0; max-width: 300px; }
.social { display: flex; gap: 10px; }
.social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--text-dim); transition: .2s; }
.social a:hover { color: var(--neon); border-color: var(--neon); box-shadow: var(--glow-soft); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--text-mute); font-size: 0.9rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 140px 0 60px; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; margin-bottom: 14px; }
.page-hero p { color: var(--text-dim); max-width: 560px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; color: var(--text-mute); font-size: 0.9rem; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--neon); }
.breadcrumb span { color: var(--line-2); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); z-index: 200;
  background: var(--surface-2); border: 1px solid var(--neon); color: var(--text); padding: 14px 22px; border-radius: 100px;
  box-shadow: var(--glow-soft); transition: transform .4s cubic-bezier(.2,.8,.2,1); display: flex; align-items: center; gap: 10px; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 20px; height: 20px; color: var(--neon); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-inline: auto; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(5,7,13,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
    padding: 16px 22px 24px; transform: translateY(-140%); transition: transform .35s ease; }
  .nav.open .nav__links { transform: translateY(0); }
  .nav__links a { padding: 13px 16px; }
  .nav__cta { margin: 8px 0 0; }
  .nav__toggle { display: block; }
  .grid--3, .grid--4, .grid--2, .pricing { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 70px; }
}
@media (max-width: 420px) {
  .hero__stats { gap: 22px; }
  .cta-band { padding: 40px 22px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
