/* ===================================================
   DESIGN TOKENS — AutoSkin NYC
   =================================================== */
:root {
  --black:       #0a0a0a;
  --bg:          #111111;
  --surface:     #191919;
  --surface-2:   #202020;
  --surface-3:   #2a2a2a;
  --border:      rgba(255,255,255,0.07);
  --border-md:   rgba(255,255,255,0.12);
  --border-lg:   rgba(255,255,255,0.20);
  --white:       #ffffff;
  --off-white:   #e6e6e6;
  --muted:       #888888;
  --muted-2:     #555555;
  --accent:      #c8a96e;      /* warm gold — AutoSkin's primary accent */
  --accent-dim:  rgba(200,169,110,0.12);
  --accent-glow: rgba(200,169,110,0.25);
  --red:         #cc3333;
  --font-main:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;
  --nav-h:       72px;
  --radius:      4px;
  --radius-lg:   8px;
  --max:         1200px;
}

/* ===================================================
   RESET & BASE
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* The active WP theme injects (via wp_head) a reset that paints raw controls
   with #c36 / rgb(204 51 102):
     [type=button],[type=submit],button { border:1px solid #c36; color:#c36 }
   Every styled button/link here already sets its own color/border with higher
   specificity, so the only real leak is the bare hamburger <button>. Neutralize
   the theme's pink border on raw controls WITHOUT setting `color` or
   `background` (those are 0,0,1,0 component rules — overriding them here at
   0,0,1,1 would, e.g., strip the gold fill / black text off the submit
   button and blend text into its background). The theme's transparent
   background is already harmless: component classes out-specify it. */
body.autoskin-landing-page button,
body.autoskin-landing-page input[type="button"],
body.autoskin-landing-page input[type="submit"] {
  border-color: transparent;
}
body.autoskin-landing-page .nav-mobile-btn { border: none; }

/* ===================================================
   TYPOGRAPHY HELPERS
   =================================================== */
.label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: var(--font-cond);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}
.section-title.xl  { font-size: clamp(42px, 7vw, 80px); }
.section-title.lg  { font-size: clamp(34px, 5.5vw, 60px); }
.section-title.md  { font-size: clamp(26px, 4vw, 44px); }
.section-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 640px;
}
.accent-text { color: var(--accent); }

/* ===================================================
   LAYOUT
   =================================================== */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
section { position: relative; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

/* ===================================================
   DIVIDER LINE
   =================================================== */
.divider {
  width: 48px; height: 2px;
  background: var(--accent);
  margin: 20px 0 28px;
}
.divider.center { margin: 20px auto 28px; }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 16px 34px;
}
.btn-primary:hover {
  background: #d9bb80;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200,169,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border: 1px solid var(--border-lg);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 14px 0;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-large { font-size: 17px; padding: 19px 42px; }

/* ===================================================
   HEADER / NAV
   =================================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
header > .container { width: 100%; }
header.scrolled {
  border-bottom-color: rgba(255,255,255,0.30);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10), 0 8px 24px rgba(0,0,0,0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 22px; height: 22px; fill: var(--black); }
.nav-logo-text {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.btn-nav {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--black);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-nav:hover { background: #d9bb80; }
.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 90% 80%, rgba(200,169,110,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--accent);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 6px 14px 6px 10px;
  border-radius: 2px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-h1 {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(52px, 8.5vw, 108px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 30px;
}
.hero-h1 .line-accent {
  color: var(--accent);
  display: block;
}
.hero-h1 .line-stroke {
  -webkit-text-stroke: 1px rgba(255,255,255,0.25);
  color: transparent;
  display: block;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 18px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-trust-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  border-radius: var(--radius);
  margin-bottom: 40px;
}
.hero-price-from {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-price-amount {
  font-family: var(--font-cond);
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-price-note {
  font-size: 13px;
  color: var(--muted-2);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.hero-stat {
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-cond);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===================================================
   PROBLEM SECTION
   =================================================== */
.problem-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-image-wrap {
  position: relative;
}
.problem-image-placeholder {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.problem-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.04) 0%, transparent 60%);
}
.img-icon {
  width: 48px; height: 48px;
  stroke: var(--muted-2);
  fill: none;
  stroke-width: 1;
}
.img-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.problem-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--surface-3);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  width: 200px;
}
.problem-accent-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.problem-accent-title {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.problem-accent-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.problem-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.problem-item:hover { border-color: var(--border-md); }
.problem-item-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.problem-item-title {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}
.problem-item-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===================================================
   SOLUTION SECTION
   =================================================== */
.solution-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 32px;
}
.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid var(--border-md);
  border-radius: 2px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
}
.solution-badge svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; }
.solution-highlight-box {
  background: var(--surface-2);
  border: 1px solid var(--border-md);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-top: 28px;
}
.solution-highlight-box p {
  font-size: 16px;
  color: var(--off-white);
  line-height: 1.7;
  font-style: italic;
}
.solution-image-wrap {
  position: relative;
}
.solution-image-placeholder {
  aspect-ratio: 1/1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.solution-float-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--accent);
  color: var(--black);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}
.solution-float-badge .price-big {
  display: block;
  font-size: 26px;
  line-height: 1;
}

/* ===================================================
   WHAT'S INCLUDED
   =================================================== */
.included-section { background: var(--bg); }
.included-header { text-align: center; margin-bottom: 64px; }
.included-header .section-sub { margin: 0 auto; text-align: center; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.included-card {
  background: var(--surface);
  padding: 36px 30px;
  position: relative;
  transition: background 0.25s;
}
.included-card:hover { background: var(--surface-2); }
.included-card-num {
  font-family: var(--font-cond);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: -0.02em;
}
.included-card-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.included-card-title {
  font-family: var(--font-cond);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}
.included-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.included-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius);
  max-width: 760px;
  margin: 0 auto;
}
.included-note-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.included-note p {
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.6;
}

/* ===================================================
   BEFORE / AFTER
   =================================================== */
.ba-section { background: var(--black); }
.ba-header { text-align: center; margin-bottom: 64px; }
.ba-header .section-sub { margin: 0 auto; text-align: center; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  border: 1px solid var(--border);
}
.ba-panel {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface);
  display: flex;
  align-items: flex-end;
}
.ba-panel.before { background: linear-gradient(135deg, #1a1410 0%, #0f0e0c 100%); }
.ba-panel.after  { background: linear-gradient(135deg, #14171a 0%, #0c0e10 100%); }
.ba-panel-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  opacity: 0.4;
}
.ba-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ba-label-tag {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ba-panel.before .ba-label-tag { color: rgba(255,255,255,0.35); }
.ba-panel.after .ba-label-tag  { color: var(--accent); }
.ba-label-desc {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}
.ba-panel.after .ba-label-desc { color: rgba(200,169,110,0.7); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}
.ba-divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0;
}
.ba-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ba-result-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.ba-result-card:hover { border-color: var(--accent); }
.ba-result-icon { font-size: 28px; margin-bottom: 10px; }
.ba-result-title {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}
.ba-result-text { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ===================================================
   PRICING
   =================================================== */
.pricing-section { background: var(--surface); }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-sub { margin: 0 auto; text-align: center; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, var(--bg) 70%);
}
.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  white-space: nowrap;
}
.pricing-card-type {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.pricing-card-price {
  font-family: var(--font-cond);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.pricing-card-price sup {
  font-size: 28px;
  vertical-align: middle;
  color: var(--accent);
}
.pricing-card-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}
.pricing-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.5;
}
.check-icon {
  width: 18px; height: 18px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2.5; }
.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 20px 24px;
  background: var(--bg);
  border: 1px dashed var(--border-md);
  border-radius: var(--radius);
}

/* ===================================================
   WHY AUTOSKIN
   =================================================== */
.why-section { background: var(--bg); }
.why-header { text-align: center; margin-bottom: 64px; }
.why-header .section-sub { margin: 0 auto; text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.why-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: var(--border-md); transform: translateY(-2px); }
.why-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.why-card-title {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.why-vs {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-vs-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface-3);
}
.why-vs-col-head {
  padding: 16px 24px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.why-vs-col-head.feature { color: var(--muted); }
.why-vs-col-head.autoskin { color: var(--accent); text-align: center; }
.why-vs-col-head.carwash { color: var(--muted-2); text-align: center; }
.why-vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  transition: background 0.15s;
}
.why-vs-row:hover { background: rgba(255,255,255,0.02); }
.why-vs-cell {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--off-white);
  display: flex;
  align-items: center;
}
.why-vs-cell.center { justify-content: center; text-align: center; }
.why-vs-cell.yes-cell { color: var(--accent); font-weight: 600; }
.why-vs-cell.no-cell  { color: var(--muted-2); }

/* ===================================================
   PROCESS
   =================================================== */
.process-section {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-sub { margin: 0 auto; text-align: center; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(200,169,110,0.2) 100%);
  z-index: 0;
}
.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  transition: all 0.2s;
}
.process-step:hover .process-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}
.process-step-icon { font-size: 24px; margin-bottom: 16px; }
.process-step-title {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===================================================
   REVIEWS
   =================================================== */
.reviews-section { background: var(--surface); }
.reviews-header { text-align: center; margin-bottom: 16px; }
.reviews-header .section-sub { margin: 0 auto; text-align: center; }
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px auto 48px;
}
.reviews-score-num {
  font-family: var(--font-cond);
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.reviews-score-stars { font-size: 22px; letter-spacing: 2px; color: var(--accent); }
.reviews-score-label { font-size: 13px; color: var(--muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--border-md); }
.review-stars { font-size: 14px; color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--off-white); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author-name {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}
.review-author-label { font-size: 12px; color: var(--muted); margin-top: 2px; }
.review-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.review-badge-icon { font-size: 12px; }
.review-badge-text { font-size: 11px; color: var(--muted-2); }

/* ===================================================
   SERVICE AREA (SEO)
   =================================================== */
.area-section { background: var(--bg); }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.area-tag {
  padding: 8px 16px;
  border: 1px solid var(--border-md);
  border-radius: 2px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--accent); color: var(--accent); }
.area-address-block {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 8px;
}
.area-address-title {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.area-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.area-info-row:last-child { border-bottom: none; }
.area-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.area-info-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.area-info-value {
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.5;
}
.area-info-value a { color: var(--accent); }
.area-info-value a:hover { text-decoration: underline; }

/* ===================================================
   FAQ
   =================================================== */
.faq-section { background: var(--surface); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-sub { margin: 0 auto; text-align: center; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question.open { color: var(--accent); }
.faq-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  transition: all 0.25s;
  font-style: normal;
}
.faq-question.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer p + p { margin-top: 12px; }

/* ===================================================
   QUOTE FORM
   =================================================== */
.form-section { background: var(--bg); }
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.form-left { position: sticky; top: calc(var(--nav-h) + 40px); }
.form-trust-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--off-white);
}
.form-trust-icon {
  width: 34px; height: 34px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.form-contact-bar {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
}
.form-contact-bar p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.form-contact-links { display: flex; flex-direction: column; gap: 8px; }
.form-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: color 0.2s;
}
.form-contact-link:hover { color: var(--accent); }
.form-contact-link svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; }

/* FORM CARD */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 36px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  padding-left: 4px;
}
.form-label span { color: var(--accent); margin-left: 2px; }
.form-control {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-md);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-control::placeholder { color: var(--muted-2); }
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.form-control option { background: var(--surface-3); }
select.form-control {
  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 d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
/* iOS Safari: empty <input type="date"> collapses/squishes until a value
   is set — the native value box shrink-wraps to content. Force full width,
   reset the webkit appearance, and pin a min-height matching text inputs. */
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  min-height: 49px;
  line-height: 1.2;
}
input[type="date"].form-control::-webkit-date-and-time-value {
  text-align: left;
  margin: 0;
  min-height: 1.2em;
}
input[type="date"].form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
input[type="date"].form-control::-webkit-calendar-picker-indicator {
  filter: invert(0.65);
  opacity: 0.8;
}
.form-file-wrap {
  width: 100%;
  background: var(--bg);
  border: 1px dashed var(--border-md);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.form-file-wrap:hover {
  border-color: var(--accent);
  background: rgba(200,169,110,0.03);
}
.form-file-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.form-file-icon { font-size: 28px; margin-bottom: 10px; }
.form-file-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.form-file-text strong { color: var(--accent); font-weight: 600; }
.form-file-hint { font-size: 12px; color: var(--muted-2); margin-top: 6px; }
.form-submit-wrap { margin-top: 8px; }
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 16px;
  letter-spacing: 0.12em;
}
.btn-submit svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 14px;
  line-height: 1.5;
}

/* FORM SUCCESS */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success-icon { font-size: 56px; margin-bottom: 20px; }
.form-success h3 {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 360px; margin: 0 auto; }

/* ===================================================
   FINAL CTA
   =================================================== */
.final-cta {
  background: var(--black);
  border-top: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200,169,110,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.final-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.final-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.final-trust-item span { font-size: 16px; }

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: 14px; color: var(--muted); line-height: 1.5; }
.footer-contact-text a { color: var(--accent); }
.footer-contact-text a:hover { text-decoration: underline; }
.footer-hours { margin-top: 4px; font-size: 13px; color: var(--muted-2); line-height: 1.7; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--muted-2); }
.footer-copy a { color: var(--muted); transition: color 0.2s; }
.footer-copy a:hover { color: var(--accent); }

/* ===================================================
   STICKY MOBILE CTA
   =================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid var(--border-md);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
}
.sticky-cta-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.sticky-cta-call {
  background: var(--surface-3);
  color: var(--white);
  border: 1px solid var(--border-md);
}
.sticky-cta-call:hover { background: var(--surface-2); }
.sticky-cta-quote {
  background: var(--accent);
  color: var(--black);
}
.sticky-cta-quote:hover { background: #d9bb80; }

/* ===================================================
   MOBILE NAV MENU
   =================================================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 12px 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
.mobile-menu-divider {
  width: 40px; height: 1px;
  background: var(--border-md);
  margin: 8px 0;
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-results { grid-template-columns: repeat(2, 1fr); }
  .form-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-left { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-mobile-btn { display: flex; }
  .btn-nav { display: none; }
  .hero-h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stat { border-right: none; padding-right: 0; margin-right: 0; }
  .problem-grid, .solution-inner, .area-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-accent-card { display: none; }
  .included-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ba-results { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .form-card { padding: 28px 20px; }
  /* Single column on mobile: drop the grid gap so the ONLY vertical spacing
     between fields is .form-group's margin-bottom — otherwise grouped fields
     get gap(20) + margin(36) while standalone fields get just margin(36),
     which is the uneven spacing seen on mobile. */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
  .why-vs { overflow-x: auto; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions .btn { justify-content: center; }
  .hero-actions { flex-direction: row; align-items: stretch; flex-wrap: nowrap; gap: 12px; }
  .hero-actions .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding-left: 16px; padding-right: 16px; }
  .hero-badge { font-size: 10px; }
}

@media (max-width: 480px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-divider { display: none; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ===================================================
   WP-INTEGRATION ADJUSTMENTS
   (Contact Form 7 / admin-bar offsets)
   =================================================== */
.form-card .wpcf7-form-control-wrap { display: block; }
/* CF7 default formatting injects a <br> between the label and the field —
   strip it so the label sits tight against its input. */
.form-card .form-label + br,
.form-card label + br,
.form-card .form-group > br { display: none; }
/* CF7's wpautop wraps stray markup in <p> with UA/theme top+bottom margins,
   which stacks unevenly on top of .form-group spacing. Zero it so the
   .form-group margin is the single source of vertical rhythm. */
.form-card .wpcf7 p { margin: 0; }
.form-card .wpcf7-not-valid-tip {
  color: var(--red);
  font-size: 12px;
  margin-top: 6px;
}
.form-card .wpcf7-response-output {
  border-radius: var(--radius);
  margin: 16px 0 0;
  padding: 14px 18px;
  font-size: 14px;
}
.form-card .wpcf7 form.invalid .wpcf7-response-output,
.form-card .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: var(--red);
  color: var(--red);
}
.form-card .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--accent);
  color: var(--accent);
}
.form-card input[type="submit"].btn-primary {
  width: 100%;
  border: none;
  font-family: var(--font-cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

body.admin-bar header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar header { top: 46px; }
}
