/* ============================================================
   State Service LLC — Redesigned Stylesheet  v2
   Palette: #0d0d0d black · #d01030 red · #ffffff white
============================================================ */

/* ---- Reset & Custom Properties ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #0d0d0d;
  --ink2:     #161616;
  --ink3:     #1f1f1f;
  --red:      #d01030;
  --red-h:    #b00d28;
  --white:    #ffffff;
  --off:      #f7f7f7;
  --dim:      rgba(255,255,255,.55);
  --muted:    #888;
  --border:   rgba(255,255,255,.08);
  --r:        8px;
  --t:        .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: clip;
}

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

.container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease var(--rd, 0ms),
              transform .7s ease var(--rd, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- Typography helpers ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .65rem;
}
.tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.h2-white { color: var(--white); }

.lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.85;
  margin-top: .8rem;
}
.lead-white { color: rgba(255,255,255,.55); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 1.9rem;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn-red   { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-h); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(208,16,48,.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: #fff; color: var(--ink); }
.btn-dark  { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(16px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: clamp(40px, 5vw, 50px);
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem .8rem;
  border-radius: 4px;
  letter-spacing: .02em;
  transition: var(--t);
}
.nav-links a:hover,
.nav-links a[aria-current] { color: #fff; background: rgba(208,16,48,.15); }

.nav-right {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 700;
  transition: var(--t);
}
.nav-phone:hover { color: var(--red); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer .close-x {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: none; border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--t);
  line-height: 1;
}
.mobile-drawer .close-x:hover { color: var(--red); }
.mobile-drawer a {
  color: rgba(255,255,255,.8);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .5rem 1rem;
  transition: var(--t);
}
.mobile-drawer a:hover { color: var(--red); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9rem 0 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center;
  opacity: .22;
  transform: scale(1.02);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,13,13,.9) 22%, rgba(13,13,13,.62) 62%, rgba(13,13,13,.35) 100%),
    radial-gradient(circle at 18% 26%, rgba(208,16,48,.22), transparent 35%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(760px, 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 1.4rem;
}
.hero h1 .accent { color: var(--red); }

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.5rem; }

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.6rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 900px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
}
.stat-num sup { font-size: 1rem; color: var(--red); }
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.58);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* ============================================================
   ABOUT
============================================================ */
.about { padding: 7rem 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Image with red frame accent */
.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,13,13,.6) 100%);
  z-index: 1;
}
.about-img-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--red);
  color: #fff;
  padding: 1.5rem 1.8rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(208,16,48,.3);
}
.about-badge-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
}
.about-badge-txt {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: .2rem;
}
/* Red corner accent */
.about-visual::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
}

.about-text { padding-right: 1rem; }
.about-body {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 1rem;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.2rem;
  margin: 1.8rem 0 2rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}
.check-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.services { padding: 7rem 0; background: var(--ink); overflow: hidden; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  margin-top: 3.5rem;
  border: 1px solid rgba(255,255,255,.07);
}

.svc-card {
  background: var(--ink2);
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: var(--t);
  cursor: default;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}
.svc-card:hover { background: var(--ink3); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: .5rem;
  transition: var(--t);
  user-select: none;
}
.svc-card:hover .svc-num { color: rgba(208,16,48,.12); }

.svc-icon {
  width: 44px; height: 44px;
  background: rgba(208,16,48,.12);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1rem;
  transition: var(--t);
}
.svc-card:hover .svc-icon { background: var(--red); color: #fff; }

.svc-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
  opacity: .8;
  transition: var(--t);
}
.svc-card:hover .svc-img { opacity: 1; }

.svc-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
  letter-spacing: .01em;
}
.svc-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why { padding: 7rem 0; background: var(--off); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  margin-top: 3.5rem;
  border: 2px solid var(--ink);
}

.why-block {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: var(--t);
  position: relative;
}
.why-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  opacity: 0;
  transition: var(--t);
}
.why-block:hover::before { opacity: 1; }
.why-block:hover .why-block-icon,
.why-block:hover .why-block-title,
.why-block:hover .why-block-body { position: relative; z-index: 1; }
.why-block:hover .why-block-icon { background: rgba(255,255,255,.2); color: #fff; }
.why-block:hover .why-block-title { color: #fff; }
.why-block:hover .why-block-body  { color: rgba(255,255,255,.8); }

.why-block-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: rgba(208,16,48,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.2rem;
  transition: var(--t);
  position: relative;
}
.why-block-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .5rem;
  transition: var(--t);
  position: relative;
}
.why-block-body {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.75;
  transition: var(--t);
  position: relative;
}

/* ============================================================
   BEFORE / AFTER COMPARISON SLIDER
============================================================ */
.gallery { padding: 7rem 0; background: var(--ink); }

.ba-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.ba-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink2);
  border: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--t), transform var(--t);
}
.ba-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  transform: translateY(-3px);
}

/* ---- Slider wrapper ---- */
.compare-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

/* Before image — always full width, base layer */
.cmp-before,
.cmp-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cmp-before img,
.cmp-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* After image clips from left — JS updates clip-path */
.cmp-after { clip-path: inset(0 0 0 50%); }

/* Labels */
.cmp-lbl {
  position: absolute;
  top: .75rem;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 4px;
  color: #fff;
  z-index: 5;
  pointer-events: none;
}
.cmp-lbl-b { left: .75rem;  background: rgba(13,13,13,.8); }
.cmp-lbl-a { right: .75rem; background: var(--red); }

/* Handle line + circle */
.cmp-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cmp-line {
  position: absolute;
  inset: 0;
  width: 2px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 10px rgba(0,0,0,.5);
}
.cmp-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  flex-shrink: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.compare-wrap:active .cmp-btn,
.compare-wrap.dragging .cmp-btn {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}

/* Footer */
.cmp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.cmp-name {
  font-size: .9rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}
.cmp-hint {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .ba-row { grid-template-columns: 1fr; }
  .compare-wrap { height: 220px; }
}

/* ============================================================
   PROCESS
============================================================ */
.process { padding: 7rem 0; background: var(--white); }

.process-row {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(208,16,48,.15) 100%);
  z-index: 0;
}

.p-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.p-step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 1.4rem;
  transition: var(--t);
  box-shadow: 0 0 0 6px var(--white);
}
.p-step:hover .p-step-circle { background: var(--red); color: #fff; box-shadow: 0 0 0 6px rgba(208,16,48,.1); }
.p-step h3 { font-size: .9rem; font-weight: 800; color: var(--ink); margin-bottom: .4rem; }
.p-step p  { font-size: .8rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { padding: 7rem 0; background: var(--off); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  border-top: 3px solid var(--red);
  transition: var(--t);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }

.testi-quote-icon {
  color: rgba(208,16,48,.12);
  font-size: 5rem;
  line-height: .7;
  font-family: Georgia, serif;
  margin-bottom: .5rem;
  user-select: none;
}
.testi-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 2px; margin-bottom: .8rem; }
.testi-text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-h));
  color: #fff;
  font-weight: 900;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 800; font-size: .88rem; color: var(--ink); }
.testi-role { font-size: .75rem; color: var(--muted); margin-top: .1rem; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-band {
  background: var(--ink);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'STATE SERVICE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.1;
}
.cta-band h2 span { color: var(--red); }
.cta-band p { color: rgba(255,255,255,.5); font-size: .95rem; margin-top: .5rem; }
.cta-band-btns { display: flex; gap: .8rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   CONTACT
============================================================ */
.contact { padding: 7rem 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-aside .h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 2rem; }

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.c-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: rgba(208,16,48,.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.c-item h4 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}
.c-item p, .c-item a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  transition: var(--t);
}
.c-item a:hover { color: var(--red); }

.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--r);
  overflow: hidden;
  height: 200px;
  border: 1px solid #e8e8e8;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* Form */
.form-card {
  background: var(--ink);
  border-radius: 8px;
  padding: 2.8rem;
}
.form-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.8rem;
  letter-spacing: -.02em;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .9rem;
}
.fg label {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: .78rem 1rem;
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t), background var(--t);
}
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(255,255,255,.25); }
.fg select option { background: var(--ink2); color: #fff; }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--red);
  background: rgba(208,16,48,.06);
}
.fg textarea { resize: vertical; min-height: 110px; }
.form-btn {
  width: 100%;
  padding: .9rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--t);
  margin-top: .4rem;
}
.form-btn:hover { background: var(--red-h); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(208,16,48,.35); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--ink2); padding: 4.5rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}
.footer-brand-text {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.4rem;
}

.socials { display: flex; gap: .5rem; }
.social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 800;
  transition: var(--t);
  text-decoration: none;
}
.social:hover { background: var(--red); color: #fff; }

.footer-col h4 {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.footer-col ul li a:hover { color: var(--red); padding-left: .3rem; }

.footer-c-item {
  display: flex;
  gap: .6rem;
  margin-bottom: .8rem;
  align-items: flex-start;
}
.footer-c-item svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.footer-c-item span {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  line-height: 1.55;
}
.footer-c-item a { transition: var(--t); }
.footer-c-item a:hover { color: var(--red); }

.footer-bottom {
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-bottom a { color: var(--red); font-weight: 700; }
.footer-bottom a:hover { color: #ff4560; }

/* ============================================================
   VENDOR PAGE
============================================================ */
.v-hero {
  min-height: 56vh;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9rem 0 6rem;
}
.v-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/opt/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.v-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,.9) 55%, transparent 100%);
}
.v-hero-content { position: relative; z-index: 1; }
.v-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.v-hero h1 em { color: var(--red); font-style: normal; }
.v-hero p { font-size: 1rem; color: rgba(255,255,255,.55); max-width: 520px; line-height: 1.85; margin-bottom: 2rem; }

.v-perks { padding: 6rem 0; background: var(--white); }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.perk {
  background: var(--off);
  border-radius: 4px;
  padding: 2rem;
  border-left: 4px solid var(--red);
  transition: var(--t);
}
.perk:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
.perk-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.perk-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(208,16,48,.12);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk p  { font-size: .88rem; color: var(--muted); line-height: 1.75; }

.v-reqs { padding: 5rem 0; background: var(--ink); }
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.req-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 1.1rem 1.3rem;
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  transition: var(--t);
}
.req-item:hover { border-color: rgba(208,16,48,.4); background: rgba(208,16,48,.06); }
.req-dot {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
}

.v-contact-strip {
  background: var(--ink3);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 0;
  text-align: center;
}
.v-contact-strip p { color: rgba(255,255,255,.45); font-size: .9rem; margin-bottom: .8rem; }
.v-contact-strip .links { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.v-contact-strip a { color: var(--red); font-weight: 700; font-size: .95rem; transition: var(--t); }
.v-contact-strip a:hover { color: #ff4560; }

.v-form-section { padding: 6rem 0; background: var(--off); }
.v-form-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.v-form-card h2 {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  margin-bottom: .3rem;
}
.v-form-card > p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8e8;
}
.v-section-label {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #eee;
}
.v-form-card .fg label { color: var(--ink); font-size: .73rem; opacity: .7; }
.v-form-card .fg input,
.v-form-card .fg select,
.v-form-card .fg textarea {
  background: var(--off);
  border: 1.5px solid #e0e0e0;
  color: var(--ink);
}
.v-form-card .fg input::placeholder,
.v-form-card .fg textarea::placeholder { color: #aaa; }
.v-form-card .fg input:focus,
.v-form-card .fg select:focus,
.v-form-card .fg textarea:focus { border-color: var(--red); background: #fff; }
.v-form-card .fg select option { background: #fff; color: var(--ink); }
.v-form-card .form-btn { background: var(--red); }
.req-note { color: var(--red); }

.svc-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .5rem 1.5rem;
  margin-bottom: 1.5rem;
}
.svc-chk {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.svc-chk input[type="checkbox"] {
  accent-color: var(--red);
  width: 16px; height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.consent-box {
  background: rgba(208,16,48,.04);
  border: 1px solid rgba(208,16,48,.15);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.consent-box p { font-size: .82rem; color: var(--muted); line-height: 1.75; }

#vendorSuccess {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero { min-height: 86vh; padding: 8rem 0 4.5rem; }
  .hero-content { width: min(680px, 100%); }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 520px; }
  .about-grid    { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual  { max-width: 560px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid   { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .testi-grid    { grid-template-columns: 1fr 1fr; }
  .v-form-card   { padding: 2rem; }
  .req-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .burger { display: flex; }
  .hero {
    min-height: auto;
    padding: 7.2rem 0 3rem;
  }
  .hero::after {
    background:
      linear-gradient(to bottom, rgba(13,13,13,.78) 0%, rgba(13,13,13,.9) 60%, rgba(13,13,13,.94) 100%),
      radial-gradient(circle at 30% 20%, rgba(208,16,48,.2), transparent 34%);
  }
  .hero-content { width: 100%; }
  .hero-eyebrow { margin-bottom: .9rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero-divider { margin-bottom: 1.2rem; }
  .hero-desc { margin-bottom: 1.4rem; }
  .hero-actions { margin-bottom: 1.8rem; }
  .hero-desc { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.2rem; }
  .stat-num { font-size: 1.9rem; }
  .about-checks { grid-template-columns: 1fr; }
  .about-badge {
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.1rem;
  }
  .about-badge-num { font-size: 2rem; }
  .about-badge-txt { font-size: .58rem; }
  .form-card { padding: 1.2rem; }
  .v-form-card { padding: 1.2rem; }
  .cmp-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ba-row { grid-template-columns: 1fr; }
  .process-row { flex-direction: column; gap: 2rem; align-items: center; }
  .process-row::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .frow { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
  .perks-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .btn           { justify-content: center; }
  .hero { padding-top: 6.8rem; }
  .hero-bg { background-position: center top; }
  .hero-stats  { grid-template-columns: 1fr; }
  .compare-wrap { height: 200px; }
  .mobile-drawer a { font-size: 1.08rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(2rem, 10vw, 2.5rem); }
  .hero-eyebrow { letter-spacing: .11em; }
  .btn { width: 100%; }
  .cta-band-btns { width: 100%; }
  .cta-band-btns .btn { width: 100%; }
  .map-wrap { height: 180px; }
  .v-contact-strip .links { gap: 1rem; }
}
