/* ============================================================
   HD Auto Detail — Rogers, AR
   Palette: electric blue / black / white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --blue: #1E56C8;
  --blue-bright: #2B6EF0;
  --blue-deep: #0F3382;
  --blue-glow: rgba(43, 110, 240, 0.35);

  --black: #05070C;
  --ink: #0B0F17;
  --ink-2: #111725;
  --ink-3: #1A2233;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  --white: #FFFFFF;
  --soft: #C7CEDB;
  --muted: #8B94A6;

  --shell: 1220px;
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
}

.shell { width: min(100% - 40px, var(--shell)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px; cursor: pointer; border: 0;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  letter-spacing: 0.01em; text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 30px -10px var(--blue-glow); }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 18px 40px -12px var(--blue-glow); }

.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0,0,0,.6); }

/* ---------------- Utility bar ---------------- */

.utility {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px; color: var(--soft);
  letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
}
.utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; }
.utility-tags { display: flex; gap: 18px; }
.utility-tags span { position: relative; }
.utility-tags span + span::before {
  content: ''; position: absolute; left: -10px; top: 50%; width: 3px; height: 3px;
  background: var(--blue-bright); border-radius: 50%; transform: translateY(-50%);
}
.utility a:hover { color: #fff; }
@media (max-width: 900px) { .utility-tags { display: none; } }

/* ---------------- Header ---------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 7, 12, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 22px; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 48px; height: 48px; object-fit: contain; flex: none; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-words strong { font-family: var(--head); font-size: 23px; letter-spacing: .02em; text-transform: uppercase; }
.brand-words em {
  font-style: normal; font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-top: 4px; font-weight: 600;
}

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 9px 13px; border-radius: 8px; font-size: 13.5px; font-weight: 600;
  color: var(--soft); letter-spacing: .02em;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav a.is-active { color: #fff; }
.nav a.is-active::after {
  content: ''; display: block; height: 2px; background: var(--blue-bright);
  border-radius: 2px; margin-top: 5px;
}

.header-cta { padding: 12px 22px; font-size: 14px; }

.burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 0; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .28s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; padding: 10px 20px 26px;
  border-top: 1px solid var(--line); background: var(--ink);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 15px 4px; border-bottom: 1px solid var(--line);
  font-family: var(--head); font-size: 21px; text-transform: uppercase; letter-spacing: .02em;
  display: flex; align-items: center; gap: 14px;
}
.mobile-nav a i { font-style: normal; font-size: 11px; color: var(--blue-bright); font-family: var(--body); font-weight: 700; }
.mobile-nav .btn { margin-top: 20px; }

@media (max-width: 1080px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
}

/* ---------------- Hero ---------------- */

.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .40; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 20%, rgba(30,86,200,.42), transparent 60%),
    linear-gradient(to bottom, rgba(5,7,12,.72) 0%, rgba(5,7,12,.55) 45%, var(--black) 100%);
}
.hero-inner { position: relative; padding: 108px 0 96px; max-width: 780px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: rgba(43,110,240,.16);
  border: 1px solid rgba(43,110,240,.42);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 26px;
}
.eyebrow svg { width: 14px; height: 14px; fill: var(--blue-bright); }

.hero h1 { font-size: clamp(3.1rem, 9vw, 6.2rem); }
.hero h1 em { font-style: normal; color: var(--blue-bright); }
.hero-lede { font-size: clamp(1.02rem, 2vw, 1.16rem); color: var(--soft); max-width: 620px; margin: 26px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border-top: 1px solid var(--line);
}
.hero-stats div { background: var(--black); padding: 26px 20px; }
.hero-stats b { display: block; font-family: var(--head); font-size: 2.3rem; color: var(--blue-bright); line-height: 1; }
.hero-stats span { display: block; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 9px; font-weight: 600; }
@media (max-width: 720px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------------- Page header (inner pages) ---------------- */

.page-head { position: relative; overflow: hidden; background: var(--ink-2); border-bottom: 1px solid var(--line); }
.page-head-media { position: absolute; inset: 0; }
.page-head-media img { width: 100%; height: 100%; object-fit: cover; opacity: .30; }
.page-head-media::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(100% 100% at 10% 0%, rgba(30,86,200,.40), transparent 62%), linear-gradient(to bottom, rgba(5,7,12,.55), var(--black));
}
.page-head-inner { position: relative; padding: 76px 0 68px; max-width: 760px; }
.page-head h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); margin-bottom: 18px; }
.page-head p { color: var(--soft); font-size: 1.06rem; max-width: 640px; margin: 0; }

.crumbs { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-weight: 600; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--blue-bright); }

/* ---------------- Sections ---------------- */

section { position: relative; }
.band { padding: 92px 0; }
.band-alt { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 700px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue-bright); margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
.section-head p { color: var(--soft); margin: 18px 0 0; font-size: 1.03rem; }

/* ---------------- Service cards ---------------- */

.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 22px; }

.svc {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--ink-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; min-height: 340px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover { transform: translateY(-5px); border-color: rgba(43,110,240,.55); box-shadow: 0 26px 50px -24px rgba(0,0,0,.9); }
.svc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-2), transparent 55%); }
.svc-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { font-size: 1.5rem; margin-bottom: 10px; }
.svc p { color: var(--soft); font-size: .95rem; margin: 0 0 18px; }
.svc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.svc-price { font-family: var(--head); font-size: 1.1rem; color: var(--blue-bright); letter-spacing: .01em; }
.svc-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: #fff; }
.svc-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.svc:hover .svc-link svg { transform: translateX(4px); }
.svc-stretch { position: absolute; inset: 0; z-index: 1; }

/* ---------------- Pricing ---------------- */

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: start; }

.tier {
  position: relative; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 30px 34px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: rgba(43,110,240,.5); }
.tier-featured { border-color: var(--blue); background: linear-gradient(170deg, rgba(30,86,200,.16), var(--ink-2) 55%); }
.tier-badge {
  position: absolute; top: -12px; left: 30px; background: var(--blue); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.tier h3 { font-size: 1.7rem; margin-bottom: 6px; }
.tier-meta { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-bright); font-weight: 700; margin-bottom: 22px; }
.tier-note { color: var(--soft); font-size: .93rem; margin: 0 0 22px; }

.tier-rows { list-style: none; margin: 0 0 26px; padding: 0; border-top: 1px solid var(--line); }
.tier-rows li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.tier-rows strong { font-family: var(--head); font-size: 1.42rem; font-weight: 700; letter-spacing: 0; }
.tier-rows span { color: var(--soft); font-size: .9rem; }
.tier-rows em { display: block; font-style: normal; color: var(--muted); font-size: 11.5px; margin-top: 2px; }

.checks { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--soft); }
.checks svg { width: 17px; height: 17px; flex: none; margin-top: 3px; fill: none; stroke: var(--blue-bright); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

/* Add-on / simple price rows */
.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.addon {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  transition: border-color .25s var(--ease);
}
.addon:hover { border-color: rgba(43,110,240,.5); }
.addon span { font-size: .96rem; font-weight: 600; }
.addon b { font-family: var(--head); font-size: 1.3rem; color: var(--blue-bright); white-space: nowrap; }

/* ---------------- Feature list ---------------- */

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.feature { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.feature:hover { border-color: rgba(43,110,240,.5); transform: translateY(-3px); }
.feature-ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(43,110,240,.14); border: 1px solid rgba(43,110,240,.34); margin-bottom: 18px;
}
.feature-ico svg { width: 23px; height: 23px; fill: none; stroke: var(--blue-bright); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.28rem; margin-bottom: 10px; }
.feature p { color: var(--soft); font-size: .94rem; margin: 0; }

/* ---------------- Split ---------------- */

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.split-rev .split-media { order: -1; }
.split-media img { border-radius: var(--radius-lg); border: 1px solid var(--line); width: 100%; }
.split h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 20px; }
.split p { color: var(--soft); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } .split-rev .split-media { order: 0; } }

/* ---------------- Steps ---------------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; counter-reset: s; }
.step { position: relative; padding: 30px 26px; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: var(--head); font-size: 2.6rem; color: rgba(43,110,240,.32); line-height: 1; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 9px; }
.step p { color: var(--soft); font-size: .93rem; margin: 0; }

/* ---------------- Before / After slider ---------------- */

.ba {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/3; user-select: none; touch-action: pan-y;
  cursor: ew-resize; background: var(--ink-2);
}
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none; user-select: none; pointer-events: none;
}
.ba-top { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 22px rgba(0,0,0,.65); }
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 22px rgba(0,0,0,.5);
}
.ba-knob svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ba-tag {
  position: absolute; bottom: 16px; z-index: 2; background: rgba(5,7,12,.82); backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 100px; border: 1px solid var(--line-strong); pointer-events: none;
}
.ba-tag-l { left: 16px; }
.ba-tag-r { right: 16px; }

/* ---------------- Gallery ---------------- */

.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.gal-filters button {
  border: 1px solid var(--line-strong); background: transparent; color: var(--soft);
  padding: 10px 20px; border-radius: 100px; cursor: pointer; font-family: var(--body);
  font-size: 13.5px; font-weight: 600; transition: all .22s var(--ease);
}
.gal-filters button:hover { color: #fff; border-color: #fff; }
.gal-filters button.is-on { background: var(--blue); border-color: var(--blue); color: #fff; }

.gal { columns: 3; column-gap: 18px; }
@media (max-width: 900px) { .gal { columns: 2; } }
@media (max-width: 560px) { .gal { columns: 1; } }
.gal figure {
  margin: 0 0 18px; break-inside: avoid; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); position: relative; cursor: zoom-in;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.gal figure:hover { border-color: rgba(43,110,240,.6); transform: translateY(-3px); }
.gal figure img { width: 100%; transition: transform .5s var(--ease); }
.gal figure:hover img { transform: scale(1.04); }
.gal figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px;
  background: linear-gradient(to top, rgba(5,7,12,.92), transparent);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: all .28s var(--ease);
}
.gal figure:hover figcaption { opacity: 1; transform: none; }
.gal figure[hidden] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(5,7,12,.94);
  backdrop-filter: blur(8px); display: grid; place-items: center; padding: 30px;
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility .28s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid var(--line-strong); color: #fff;
  cursor: pointer; display: grid; place-items: center; transition: background .22s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
.lightbox-close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }

/* ---------------- CTA band ---------------- */

.cta-band { position: relative; overflow: hidden; background: var(--blue-deep); }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 130% at 82% 0%, rgba(43,110,240,.85), transparent 62%), linear-gradient(120deg, var(--blue-deep), #0A2560);
}
.cta-inner { position: relative; padding: 80px 0; text-align: center; }
.cta-inner h2 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: 18px; }
.cta-inner p { color: rgba(255,255,255,.86); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------------- Contact ---------------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 38px; } }

.info-rows { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.info-row { background: var(--ink-2); padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; }
.info-ico { width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center; background: rgba(43,110,240,.14); border: 1px solid rgba(43,110,240,.34); }
.info-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--blue-bright); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-row h3 { font-size: 1rem; font-family: var(--body); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; }
.info-row p, .info-row a { color: var(--soft); margin: 0; font-size: .96rem; }
.info-row a:hover { color: #fff; }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: .95rem; color: var(--soft); border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: 0; }
.hours b { color: #fff; font-weight: 600; }

.form { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px 34px; }
.form h2 { font-size: 1.9rem; margin-bottom: 8px; }
.form > p { color: var(--soft); font-size: .95rem; margin: 0 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px; background: var(--black);
  border: 1px solid var(--line-strong); color: #fff; font-family: var(--body); font-size: 16px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B94A6' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 17px; padding-right: 44px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(43,110,240,.22); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form .btn { width: 100%; }
.form-note { font-size: 12.5px; color: var(--muted); margin: 16px 0 0; text-align: center; }

/* ---------------- Footer ---------------- */

.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding: 68px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 48px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand img { width: 78px; height: 78px; object-fit: contain; flex: none; margin-bottom: 18px; }
.foot-brand p { color: var(--muted); font-size: .93rem; max-width: 300px; margin: 0 0 20px; }
.foot h4 { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot a { color: var(--muted); font-size: .93rem; transition: color .2s var(--ease); }
.foot a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); transition: all .22s var(--ease);
}
.socials a:hover { background: var(--blue); border-color: var(--blue); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 26px; display: flex; flex-wrap: wrap;
  gap: 12px; justify-content: space-between; color: var(--muted); font-size: 12.5px;
}

/* ---------------- Reveal ---------------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---------------- Agency preview callback popup ---------------- */

.cb-overlay {
  position: fixed; inset: 0; z-index: 500; background: rgba(5,7,12,.86);
  backdrop-filter: blur(7px); display: none; place-items: center; padding: 24px;
}
.cb-overlay[data-open="true"] { display: grid; }
.cb-card {
  background: var(--ink-2); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  max-width: 460px; width: 100%; padding: 38px 34px 32px; text-align: center; position: relative;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.95);
}
.cb-card img { width: 74px; height: 74px; object-fit: contain; margin: 0 auto 20px; }
.cb-card h2 { font-size: 1.85rem; margin-bottom: 14px; }
.cb-card p { color: var(--soft); font-size: .98rem; margin: 0 0 12px; }
.cb-card .cb-num { font-family: var(--head); font-size: 2.1rem; color: var(--blue-bright); display: block; margin: 18px 0 20px; letter-spacing: .01em; }
.cb-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 420px) { .cb-actions { grid-template-columns: 1fr; } }
.cb-keep {
  display: block; margin: 16px auto 0; background: none; border: 0; cursor: pointer;
  color: var(--muted); font-family: var(--body); font-size: 13.5px; font-weight: 600;
  transition: color .2s var(--ease);
}
.cb-keep:hover { color: #fff; }
.cb-note {
  font-size: 12.5px; color: var(--muted); border-top: 1px solid var(--line);
  padding-top: 16px; margin-top: 22px;
}
.cb-close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid var(--line); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: background .2s var(--ease);
}
.cb-close:hover { background: rgba(255,255,255,.18); }
.cb-close svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
