/* ============================================================
   DOBIE TRANSPORT — design system
   Faithful to the approved home prototype:
   Oswald (display) + Barlow (text), #E4192B red on #0A0A0B black,
   square corners, uppercase display type, 96px section rhythm.
   ============================================================ */

:root {
  --red: #E4192B;
  --red-dark: #C11423;
  --black: #0A0A0B;
  --ink: #111213;
  --gray: #6B7280;
  --gray-2: #9CA3AF;
  --gray-3: #8A8D93;
  --line: #E7E7E4;
  --line-dark: #1E1E20;
  --bg-soft: #FAFAF9;
  --font-display: 'Oswald', sans-serif;
  --font-text: 'Barlow', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
::placeholder { color: var(--gray-2); }

/* Global desktop content width (reduced from 1280 for a more contained look);
   the header keeps 1280 so the full nav + logo row breathes — see below. */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.site-header .container { max-width: 1280px; }
.container.narrow, .narrow { max-width: 880px; }
.narrow-block { max-width: 820px; }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.pt-24 { padding-top: 24px !important; }

h1, h2, h3, .qc-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 28px;
  font-family: var(--font-text); font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--red); color: #fff; }
.btn-lg { height: 54px; padding: 0 34px; }
.btn-header { height: 42px; padding: 0 22px; font-size: 12px; letter-spacing: 1.4px; }
.text-link { font-size: 12.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--red); }
.text-link:hover { color: var(--red-dark); text-decoration: underline; }
.text-link.light { display: inline-block; margin-top: 26px; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 60;
  background: linear-gradient(180deg, rgba(8,8,10,0.62) 0%, rgba(8,8,10,0) 100%);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
/* flex-shrink:0 is load-bearing: without it the crowded header row squeezes
   the logo to ~36px wide (replaced elements can shrink to near zero). */
.logo { flex-shrink: 0; display: block; }
.logo img { height: 48px; width: auto; max-width: none; filter: brightness(0) invert(1); }
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 6px; padding: 12px 12px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.9px; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.3); white-space: nowrap;
}
.main-nav > ul > li > a:hover { color: var(--red); }
.main-nav svg { opacity: 0.7; }

.mega {
  position: absolute; top: 100%; left: 0;
  padding-top: 10px; display: none; z-index: 70;
}
/* Keep wide panels inside the viewport: right-align the last items' menus */
.main-nav > ul > li:nth-last-child(-n+2) .mega { left: auto; right: 0; }
.has-menu:hover .mega, .has-menu:focus-within .mega, .has-menu.open .mega { display: block; }
.mega-inner {
  display: flex; gap: 40px; background: var(--black);
  border: 1px solid var(--line-dark); border-top: 2px solid var(--red);
  padding: 26px 30px; box-shadow: 0 24px 60px rgba(10,10,12,0.4);
}
.mega-col { min-width: 190px; }
.mega-title {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--gray-3);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line-dark);
}
.mega-col a { display: block; padding: 5px 0; font-size: 14px; color: #D6D8DC; white-space: nowrap; }
.mega-col a:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.lang-switch { display: flex; border: 1px solid rgba(255,255,255,0.35); }
.lang-switch a {
  width: 38px; height: 32px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: rgba(255,255,255,0.8);
}
.lang-switch a.on { background: #fff; color: var(--ink); }
.header-phone { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 0.5px; color: #fff; white-space: nowrap; }
.header-phone:hover { color: var(--red); }

.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.4); width: 44px; height: 40px; cursor: pointer; padding: 10px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2px; background: #fff; }

.mobile-nav { display: none; background: var(--black); border-top: 1px solid var(--line-dark); max-height: calc(100vh - 78px); overflow-y: auto; }
.mobile-nav[hidden] { display: none !important; }
.mn-group { border-bottom: 1px solid var(--line-dark); }
.mn-link { display: block; padding: 15px 24px; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.mn-sub { padding: 0 24px 14px; display: none; }
.mn-group.open .mn-sub { display: block; }
.mn-sub a { display: block; padding: 7px 0 7px 12px; color: #C9CCD1; font-size: 14px; border-left: 2px solid var(--line-dark); }

/* ── HERO ───────────────────────────────────────────────── */
.hero { position: relative; background: var(--black); overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,10,0.85) 0%, rgba(8,8,10,0.6) 45%, rgba(8,8,10,0.3) 100%),
              linear-gradient(0deg, rgba(8,8,10,0.5) 0%, rgba(8,8,10,0) 28%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(720px 420px at 82% 10%, rgba(228,25,43,0.14), transparent 65%),
    url('/assets/doberman-dark-v2.jpg') right -80px center / 900px auto no-repeat,
    var(--black);
  opacity: 0.9;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; padding-top: 150px; padding-bottom: 88px;
}
.hero-grid.hero-solo { grid-template-columns: 1fr; padding-bottom: 72px; }
.hero-copy h1 { font-size: clamp(34px, 4.6vw, 56px); color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.hero-copy .kicker { margin-bottom: 10px; }
.hero-p { margin: 24px 0 0; font-size: 17.5px; line-height: 1.65; color: #C9CCD1; max-width: 560px; text-wrap: pretty; }
.hero-p b { color: #fff; }
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-ctas.center { justify-content: center; }
.center-block { text-align: center; margin: 0 auto; max-width: 720px; }
.center-block .hero-p { margin-left: auto; margin-right: auto; }
.ty-check { width: 64px; height: 64px; margin: 0 auto 24px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 700; }

/* Quote card — "Dobie Form General v2" */
.hero-form { justify-self: end; width: 100%; max-width: 470px; }
.quote-card {
  background: #fff; border-top: 3px solid var(--red); border-radius: 0 0 8px 8px;
  box-shadow: 0 24px 60px rgba(10,10,12,0.2); padding: 26px 26px 22px;
}
.qc-title { font-size: 21px; letter-spacing: 0.3px; color: var(--ink); }
.qc-sub { margin: 6px 0 0; font-size: 14px; color: var(--gray); }
.quote-form .hp, .contact-form .hp { position: absolute; left: -9999px; }

.qz-promise { display: flex; align-items: center; gap: 8px; margin: 8px 0 18px; font-size: 13.5px; font-weight: 700; color: #33343A; }
.qz-promise-check { color: var(--red); display: inline-flex; }
.qz-progress-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.qz-step-label { font-size: 11px; font-weight: 800; letter-spacing: 1.4px; color: var(--gray-2); }
.qz-pct { font-size: 11px; font-weight: 800; letter-spacing: 0.6px; color: var(--red); }
.qz-bar { height: 6px; background: #EDEDEA; border-radius: 3px; overflow: hidden; margin-bottom: 20px; }
.qz-bar-fill { height: 100%; width: 5%; background: var(--red); border-radius: 3px; transition: width 0.35s ease; }

.qz-sectionlabel { font-size: 12px; font-weight: 800; letter-spacing: 1.2px; color: var(--gray-2); margin-bottom: 12px; }
.qz-cards { display: flex; flex-direction: column; gap: 10px; }
.qz-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  border: 2px solid #E3E3DF; background: #fff; border-radius: 8px; padding: 14px 16px;
  cursor: pointer; text-align: left; font-family: var(--font-text); color: #B9BAC0;
  min-height: 44px; transition: border-color 0.12s, background 0.12s;
}
.qz-card:hover { border-color: var(--red); }
.qz-card.on { border-color: var(--red); background: #FDF1F0; }
.qz-card-txt { flex: 1; }
.qz-card-txt b { display: block; font-weight: 800; font-size: 14.5px; letter-spacing: 0.3px; color: var(--ink); }
.qz-card-txt small { display: block; font-size: 12.5px; color: var(--gray); margin-top: 2px; }
.qz-badge { width: 40px; height: 40px; border-radius: 8px; background: #F3F3F0; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: #33343A; flex: none; }

.qz-dtitle { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: var(--ink); }
.qz-dsub { font-size: 12.5px; color: var(--gray); margin: 2px 0 16px; }
.qz-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.qz-grid2:first-of-type { margin-top: 0; }
.qz-grid3 { display: grid; grid-template-columns: 1fr 1fr 0.7fr; gap: 12px; }
/* Mobile: one input per line in every quote form (client 2026-08-10) */
@media (max-width: 560px) {
  .qz-grid2, .qz-grid3 { grid-template-columns: 1fr; }
  .qz-phone-row { flex-wrap: wrap; }
  .qz-ccode { width: 100%; }
}
.qz-label { font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--gray-2); margin-bottom: 6px; }
.qz-opt { color: #B9BAC0; font-weight: 600; letter-spacing: 0.4px; text-transform: none; }
.qz-input {
  width: 100%; box-sizing: border-box; padding: 12px; border: 2px solid #E3E3DF; border-radius: 6px;
  font-family: var(--font-text); font-size: 14px; color: var(--ink); background: #fff; outline: none;
}
.qz-input:focus { border-color: var(--red); }
textarea.qz-input { resize: vertical; }
.qz-select:invalid, .qz-select option[value=""] { color: var(--gray-2); }

.qz-chiprow { display: flex; gap: 8px; }
.qz-chip {
  flex: 1; border: 2px solid #E3E3DF; background: #fff; color: var(--ink); border-radius: 6px;
  font-family: var(--font-text); font-weight: 800; font-size: 12px; letter-spacing: 0.3px;
  padding: 12px 6px; cursor: pointer; min-height: 44px;
}
.qz-chip:hover { border-color: var(--red); }
.qz-chip.on { border-color: var(--red); background: #FDF1F0; color: #B01F15; }

.qz-qualify { border: 1px solid #ECECE8; background: #FAFAF8; border-radius: 6px; padding: 12px 14px 4px; margin-top: 14px; }
.qz-qrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 0; }
.qz-qrow + .qz-qrow, .qz-qmore .qz-qrow { border-top: 1px solid #ECECE8; }
.qz-qrow > span:first-child { font-size: 13px; font-weight: 800; flex: 1; color: var(--ink); }
.qz-pillrow { display: flex; gap: 6px; flex: none; }
.qz-pill {
  border: 2px solid #E3E3DF; background: #fff; color: var(--ink); border-radius: 99px;
  font-family: var(--font-text); font-weight: 800; font-size: 11.5px; padding: 8px 14px;
  cursor: pointer; min-height: 36px;
}
.qz-pill.on { border-color: var(--red); background: #FDF1F0; color: #B01F15; }
.qz-qnote { font-size: 11px; color: var(--gray-2); padding: 6px 0 8px; line-height: 1.5; margin: 0; }

.qz-phone-block { margin-top: 12px; }
.qz-phone-row { display: flex; gap: 8px; }
.qz-ccode { width: 150px; flex: none; font-size: 13px; padding: 12px 6px; }
.qz-phone { flex: 1; min-width: 0; }
.qz-wanote { display: flex; align-items: center; gap: 7px; margin-top: 8px; font-size: 12.5px; color: #33343A; font-weight: 600; }
.qz-wa-ico { color: #25D366; display: inline-flex; }

.qz-asap {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  border: 1px solid #ECECE8; background: #FAFAF8; border-radius: 6px; padding: 13px 15px;
  margin-top: 14px; cursor: pointer; font-family: var(--font-text); text-align: left;
}
.qz-asap-txt b { display: block; font-weight: 800; font-size: 14px; color: var(--ink); }
.qz-asap-txt small { display: block; font-size: 12.5px; color: var(--gray); margin-top: 2px; }
.qz-switch { width: 46px; height: 26px; border-radius: 13px; background: #D6D6D2; position: relative; transition: background 0.2s; flex: none; display: block; }
.qz-switch i { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.qz-asap.on .qz-switch { background: var(--red); }
.qz-asap.on .qz-switch i { transform: translateX(20px); }

.qz-error { background: #FDF1F0; border: 1px solid #F3C4C0; color: #B01F15; font-size: 13px; font-weight: 600; padding: 10px 12px; border-radius: 6px; margin-top: 14px; }
.qz-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; border-top: 1px solid #ECECE8; padding-top: 16px; }
.qz-back { border: none; background: transparent; cursor: pointer; font-family: var(--font-text); font-size: 13px; font-weight: 800; color: var(--gray); letter-spacing: 0.5px; min-height: 44px; padding: 0; }
.qz-back:hover { color: var(--ink); }
.qz-taphint { margin-left: auto; font-size: 12px; color: var(--gray-2); font-weight: 600; }
.qz-next { margin-left: auto; border-radius: 6px; min-height: 50px; height: auto; padding: 14px 26px; }
.qz-next[disabled] { opacity: 0.6; pointer-events: none; }

.qz-success { text-align: center; padding: 8px 0 4px; }
.qz-casebadge { display: inline-block; background: var(--black); color: #fff; font-weight: 800; font-size: 9.5px; letter-spacing: 1.2px; padding: 5px 10px; border-radius: 99px; margin-bottom: 12px; }
.qz-check { width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: #fff; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.qz-caseh { font-family: var(--font-display); font-weight: 600; font-size: 20px; text-transform: uppercase; line-height: 1.15; color: var(--ink); }
.qz-casebody { font-size: 14px; line-height: 1.6; color: #33343A; margin: 10px auto 16px; max-width: 480px; text-align: left; }
.qz-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #25D366; color: #0C0D10; font-weight: 900; font-size: 13.5px; letter-spacing: 0.8px;
  padding: 16px; border-radius: 6px; max-width: 480px; margin: 0 auto; text-transform: uppercase;
}
.qz-wa-btn:hover { background: #1FB558; color: #0C0D10; }
.qz-success-note { font-size: 12px; color: var(--gray-2); margin: 12px 0 0; line-height: 1.6; }
.qz-success-note strong { color: #33343A; }
.qz-again { margin-top: 14px; font-size: 12px; color: var(--gray-2); cursor: pointer; text-decoration: underline; background: none; border: none; font-family: var(--font-text); }

/* No-JS fallback: show everything, native submit */
.no-js .qz-step[hidden], .no-js .qz-branch[hidden], .no-js [data-qualify][hidden], .no-js .qz-qmore[hidden] { display: block !important; }
.no-js .qz-taphint, .no-js .qz-progress { display: none; }

/* Contact form (classic single-step) */
.qf-fields { display: flex; flex-wrap: wrap; gap: 10px; }
.qf-field { display: block; flex: 1 1 100%; }
.qf-field.fw-half { flex: 1 1 calc(50% - 5px); }
.qf-field > span { display: none; }
.qf-field input, .qf-field textarea {
  width: 100%; box-sizing: border-box; border: 2px solid #E3E3DF; border-radius: 6px; padding: 12px;
  font-family: var(--font-text); font-size: 14px; color: var(--ink); background: #fff;
}
.qf-field textarea { resize: vertical; }
.qf-field input:focus, .qf-field textarea:focus { outline: none; border-color: var(--red); }
.qf-nav { margin-top: 16px; }
.qf-nav .btn { width: 100%; height: 48px; border-radius: 6px; }
.qf-note { margin: 12px 0 0; text-align: center; font-size: 12.5px; color: var(--gray-2); }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: var(--black); padding: 24px 0; overflow: hidden; }
.stats-track { display: flex; width: max-content; animation: dbMarquee 36s linear infinite; }
.stats-bar:hover .stats-track { animation-play-state: paused; }
@keyframes dbMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.stat { padding: 0 52px; text-align: center; border-right: 1px solid var(--line-dark); }
.stat-v { font-family: var(--font-display); font-weight: 600; font-size: 30px; color: #fff; line-height: 1; }
.stat-v span { color: var(--red); }
.stat-l { margin-top: 6px; font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gray-3); white-space: nowrap; }

/* ── SECTIONS ───────────────────────────────────────────── */
.section { padding: 88px 0; }
.section.dark { background: var(--black); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: #A3A6AD; }
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head h2, .sec-head-row h2, .section h2 { font-size: clamp(28px, 3.4vw, 42px); color: var(--ink); }
.section.dark .sec-head h2 { color: #fff; }
.sec-sub { margin: 16px auto 0; font-size: 16.5px; line-height: 1.6; color: var(--gray); max-width: 620px; text-wrap: pretty; }
.section.dark .sec-sub { color: #A3A6AD; margin-left: 0; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.lead { font-size: 18px; line-height: 1.7; color: #3A3D42; text-wrap: pretty; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  background: var(--bg-soft); border: 1px solid var(--line); padding: 28px 26px;
  color: inherit; transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(10,10,12,0.09); color: inherit; }
.card h3 { font-size: 17px; letter-spacing: 0.4px; color: var(--ink); }
.card p { margin: 10px 0 0; font-size: 14px; line-height: 1.6; color: var(--gray); flex: 1; }
.card-link { margin-top: 14px; color: var(--red); font-weight: 700; }
.svc-grid { grid-template-columns: repeat(4, 1fr); }
.svc-card.hot { border: 1px solid var(--red); }
.badge {
  display: inline-block; background: rgba(228,25,43,0.08); color: var(--red);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 5px 10px; margin-bottom: 14px;
}
.badge-hot { background: var(--red); color: #fff; }
.svc-card .text-link { margin-top: 16px; }

/* Why (Built Different) */
.why-section .why-h2 { font-size: clamp(32px, 4vw, 46px); }
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; margin-top: 56px; align-items: start; }
.why-img { position: relative; margin-bottom: 34px; }
.why-img img { width: 100%; height: 440px; object-fit: cover; }
.why-badge { position: absolute; left: -24px; bottom: -34px; background: var(--red); color: #fff; padding: 20px 26px; }
.why-badge b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1; }
.why-badge span { display: block; margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-item { display: flex; gap: 18px; }
.why-n {
  width: 32px; height: 32px; flex-shrink: 0; background: rgba(228,25,43,0.14); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
}
.why-item h3 { font-size: 16px; letter-spacing: 0.8px; }
.why-item p { margin: 8px 0 0; font-size: 14.5px; line-height: 1.65; color: #9CA0A6; max-width: 520px; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.step { position: relative; text-align: center; }
.step-n {
  width: 52px; height: 52px; margin: 0 auto; border: 2px solid var(--red); border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--red);
}
.step h3 { margin-top: 22px; font-size: 15px; letter-spacing: 0.8px; }
.step p { margin: 10px 0 0; font-size: 14px; line-height: 1.65; color: var(--gray); }

/* Coverage */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cov-card { border: 1px solid var(--line-dark); padding: 34px 32px; }
.cov-card.cov-mx { border-color: var(--red); }
.cov-card h3 { font-size: 20px; }
.cov-card p { margin: 12px 0 18px; font-size: 15px; }
.cov-links { display: flex; flex-direction: column; gap: 8px; }
.cov-links a { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* Carousel */
.carousel-section { background: var(--black); color: #fff; padding: 88px 0; }
.carousel-section h2 { color: #fff; }
.carousel-section .sec-sub { color: #A3A6AD; }
.car-arrows { display: flex; gap: 10px; }
.car-prev, .car-next {
  width: 44px; height: 44px; background: transparent; border: 1px solid #3A3A3C; color: #fff;
  font-size: 16px; cursor: pointer;
}
.car-prev:hover, .car-next:hover { border-color: var(--red); background: var(--red); }
.carousel { overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }
.carousel::-webkit-scrollbar { display: none; }
.car-track { display: flex; gap: 14px; padding: 0 32px; width: max-content; }
.car-slide { margin: 0; flex-shrink: 0; }
.car-slide img { width: 380px; height: 285px; object-fit: cover; }
.car-more { margin-top: 36px; text-align: center; }
.car-more .btn-dark { background: transparent; border: 1px solid #3A3A3C; }
.car-more .btn-dark:hover { border-color: var(--red); background: var(--red); }

/* Gallery */
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 26px 0 36px; }
.pill { display: inline-flex; padding: 11px 22px; background: #F3F3F1; color: var(--gray); font-size: 13.5px; font-weight: 600; }
.pill:hover { background: var(--ink); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-item { margin: 0; }
.g-item img { width: 100%; height: 240px; object-fit: cover; }
.g-item figcaption { font-size: 12.5px; color: var(--gray-2); padding: 8px 2px 0; }

/* Proof strip */
.proof-strip { padding: 88px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-grid figure { margin: 0; }
.proof-grid img { width: 100%; height: 300px; object-fit: cover; }
.proof-grid figcaption { font-size: 12.5px; color: var(--gray-2); padding: 8px 2px 0; }

/* Definition / text sections */
.definition-section { padding-bottom: 44px; }
.definition-section h2, .guide-body h2, .cost-section h2, .equipment-section h2, .list-section h2 { margin-bottom: 18px; }
.guide-body { padding: 44px 0; }
.guide-body p { font-size: 16.5px; line-height: 1.75; color: #3A3D42; }
.list-section { padding: 44px 0; }
.list-section.light { background: var(--bg-soft); padding: 60px 0; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.check-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.check-list li::before {
  content: ''; position: absolute; left: 2px; top: 17px; width: 12px; height: 7px;
  border-left: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red); transform: rotate(-45deg);
}
.steps-section { background: #fff; }
.equipment-section { padding: 44px 0; }
.cost-section { padding: 44px 0; }
.data-table { width: 100%; border-collapse: collapse; margin-top: 22px; }
.data-table th, .data-table td { text-align: left; padding: 13px 16px; font-size: 15px; border-bottom: 1px solid var(--line); }
.data-table thead th { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; }
.data-table tbody th { font-weight: 700; width: 38%; }
.data-table.on-dark th, .data-table.on-dark td { border-color: var(--line-dark); color: #D6D8DC; }
.data-table.on-dark tbody th { color: #fff; }
.pair-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.pair h2 { font-size: 19px; margin-bottom: 12px; }
.pair p { font-size: 14.5px; line-height: 1.7; color: var(--gray); }
.text-pairs { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px 0; }

/* Answer box (AEO) */
.answer-section { padding: 56px 0 20px; }
.answer-box { border: 1px solid var(--line); border-left: 3px solid var(--red); padding: 28px 30px; background: #fff; box-shadow: 0 10px 30px rgba(10,10,12,0.05); }
.answer-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.answer-box p { margin: 0; font-size: 16.5px; line-height: 1.7; }
.answer-list { margin: 0; padding-left: 22px; font-size: 16px; line-height: 1.9; }
.reviewed-by { margin: 18px 0 0; font-size: 13px; color: var(--gray-2); }

/* Subgrid / related */
.subgrid-section { background: var(--bg-soft); border-top: 1px solid var(--line); }
.related-section { padding: 56px 0 72px; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.related-links a { display: inline-flex; padding: 12px 20px; border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.related-links a:hover { border-color: var(--red); color: var(--red); }
.featured-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.featured-list a { display: block; padding: 20px 22px; border: 1px solid var(--line-dark); color: #D6D8DC; font-size: 15px; font-weight: 600; }
.featured-list a:hover { border-color: var(--red); color: #fff; }
.term-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.term-card { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border: 1px solid var(--line); background: var(--bg-soft); font-family: var(--font-display); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink); }
.term-card:hover { border-color: var(--red); color: var(--red); }
.glossary-p { font-size: 16.5px; line-height: 1.75; color: #3A3D42; }

/* FAQ */
.faq-section { background: #fff; }
.faq-h2 { text-align: center; margin-bottom: 36px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 4px; cursor: pointer; font-size: 15.5px; font-weight: 700; color: var(--ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item svg { flex-shrink: 0; color: var(--gray); transition: transform 0.2s; }
.faq-item[open] svg { transform: rotate(180deg); }
.faq-item p { margin: 0; padding: 0 4px 22px; font-size: 15px; line-height: 1.7; color: var(--gray); max-width: 760px; }
.tab-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.tab { border: none; cursor: pointer; padding: 13px 28px; font-family: var(--font-text); font-size: 14px; font-weight: 600; background: #F3F3F1; color: var(--gray); }
.tab:hover { color: var(--ink); }
.tab.on { background: var(--ink); color: #fff; }
.tab-panel { display: none; }
.tab-panel.on { display: block; }

/* Reviews */
.reviews-band { position: relative; }
.review-rotator { position: relative; max-width: 920px; margin: 36px auto 0; }
.review { display: none; margin: 0; }
.review.on { display: block; }
.stars { color: var(--red); font-size: 14px; letter-spacing: 3px; font-weight: 700; }
.stars span { font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase; margin-left: 8px; }
.review p {
  margin: 18px 0 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.4; letter-spacing: 0.4px; text-transform: uppercase; color: #fff; text-wrap: pretty;
}
.review footer { margin-top: 14px; font-size: 14px; color: var(--gray-3); }
.rev-dots { display: flex; justify-content: center; gap: 6px; margin-top: 26px; }
.rev-dot { width: 5px; height: 4px; border: none; padding: 0; background: #4A4A4C; cursor: pointer; transition: width 0.2s; }
.rev-dot.on { width: 26px; background: var(--red); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.review-card { margin: 0; background: var(--bg-soft); border: 1px solid var(--line); padding: 28px 26px; }
.review-card p { margin: 14px 0 0; font-size: 16px; line-height: 1.6; font-weight: 600; color: var(--ink); }
.review-card footer { margin-top: 14px; font-size: 13.5px; color: var(--gray); }
.google-note { margin-top: 32px; font-size: 15px; color: var(--gray); }

/* Founders / about */
.founders-section { padding-top: 64px; }
.founders-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.founders-photo { margin: 0; }
.founders-photo img { width: 100%; height: auto; }
.founders-copy h2 { font-size: clamp(30px, 3.6vw, 44px); }
.founders-copy .lead { margin-top: 18px; }
.founder-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.ffact { border: 1px solid var(--line); padding: 18px 20px; }
.ffact b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 19px; text-transform: uppercase; color: var(--red); }
.ffact span { display: block; margin-top: 4px; font-size: 13px; color: var(--gray); }
.entity-section .data-table { margin-top: 26px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.channel { border-bottom: 1px solid var(--line); padding: 16px 0; }
.channel span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-2); }
.channel a, .channel b { display: block; margin-top: 4px; font-size: 16.5px; font-weight: 600; color: var(--ink); }
.channel a:hover { color: var(--red); }

/* Final CTA */
.final-cta { position: relative; background: var(--black); padding: 104px 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(640px 320px at 50% 0%, rgba(228,25,43,0.16), transparent 70%),
    url('/assets/doberman-dark-v2.jpg') center 40% / 1100px auto no-repeat;
  opacity: 0.55;
}
.final-cta .container { position: relative; }
.final-cta h2 { font-size: clamp(32px, 4.4vw, 52px); color: #fff; }
.final-cta h2 span { display: block; }
.final-cta p { margin: 20px auto 0; font-size: 16.5px; line-height: 1.6; color: #A3A6AD; max-width: 560px; }
.final-cta p b { color: var(--red); font-weight: 600; }
.cta-btns { display: flex; justify-content: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.cta-btns .btn-ghost { border-color: #4A4A4C; font-family: var(--font-display); font-size: 16px; letter-spacing: 0.8px; }
.cta-btns .btn-ghost:hover { border-color: var(--red); }
.cta-bullets, .ft-bullets { display: flex; justify-content: center; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.cta-bullets span, .ft-bullets span { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-3); }
.cta-bullets i, .ft-bullets i { width: 5px; height: 5px; background: var(--red); }

/* Breadcrumbs */
.crumbs { background: #fff; border-bottom: 1px solid var(--line); }
.crumbs .container { display: flex; align-items: center; gap: 10px; padding-top: 14px; padding-bottom: 14px; font-size: 13px; flex-wrap: wrap; }
.crumbs a { color: var(--gray); }
.crumbs a:hover { color: var(--red); }
.crumbs span { color: var(--gray-2); }
.crumbs b { color: var(--ink); font-weight: 600; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 72px 0 0; }
.ft-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.1fr 1.15fr; gap: 44px; }
.ft-brand img { height: 42px; width: auto; }
.ft-brand p { margin: 20px 0 0; font-size: 14.5px; line-height: 1.7; color: var(--gray); max-width: 300px; text-wrap: pretty; }
.ft-social { display: flex; gap: 10px; margin-top: 22px; }
.ft-social a { width: 38px; height: 38px; border: 1px solid #E0E0DD; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray); }
.ft-social a:hover { border-color: var(--red); color: var(--red); }
.ft-brand .ft-bullets { justify-content: flex-start; gap: 10px 22px; margin-top: 20px; }
.ft-powered a b { color: var(--ink); }
.ft-powered a:hover b { color: var(--red); }
.ft-title { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink); }
.ft-links { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.ft-links a { font-size: 14px; color: var(--gray); }
.ft-links a:hover { color: var(--red); }
.ft-contact { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.ft-contact span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-2); }
.ft-contact a, .ft-contact b { display: block; margin-top: 3px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.ft-contact a:hover { color: var(--red); }
.ft-bottom { border-top: 1px solid #ECECE9; margin-top: 60px; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ft-legal { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 13px; }
.ft-legal span { color: var(--gray-2); }
.ft-legal a { color: var(--gray); }
.ft-powered { font-size: 13px; color: var(--gray-2); }
.ft-powered b { color: var(--ink); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1300px) {
  .main-nav > ul > li > a { padding: 12px 8px; font-size: 11.5px; }
  .header-phone { display: none; }
}
@media (max-width: 1180px) {
  .cards-grid, .svc-grid, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .main-nav, .lang-switch { display: none; }
  .nav-toggle { display: flex; }
  .site-header { background: var(--black); position: sticky; top: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 64px; }
  .hero-form { justify-self: stretch; max-width: 560px; }
  .why-grid, .coverage-grid, .founders-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pair-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-list, .term-grid, .reviews-grid, .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-nav:not([hidden]) { display: block; }
}
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .cards-grid, .svc-grid, .cards-grid.three, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .car-slide img { width: 280px; height: 210px; }
  .car-track { padding: 0 20px; }
  .hero-grid { padding-top: 48px; padding-bottom: 56px; }
  .why-img { margin-left: 24px; }
  .founders-grid { gap: 32px; }
  .featured-list, .term-grid, .reviews-grid, .proof-grid { grid-template-columns: 1fr; }
  .qf-field.fw-third { flex: 1 1 calc(50% - 5px); }
}
@media (max-width: 520px) {
  .cards-grid, .svc-grid, .cards-grid.three, .gallery-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .quote-card { padding: 22px 18px 18px; }
  .ft-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (min-width: 1025px) and (max-width: 1279px) {
  .ft-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .stats-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── LINKS PAGE (linktree-style) ────────────────────────── */
.links-page { position: relative; min-height: 100vh; background: var(--black); overflow: hidden; }
.lk-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(720px 400px at 50% 0%, rgba(228,25,43,0.18), transparent 70%),
    url('/assets/doberman-dark-v2.jpg') center 30% / 1200px auto no-repeat;
  opacity: 0.6;
}
.lk-col { position: relative; max-width: 560px; margin: 0 auto; padding: 56px 22px 48px; text-align: center; }
.lk-mark { display: none; }
.lk-logo { margin: 0 auto; height: 60px; width: auto; filter: brightness(0) invert(1); }
.lk-name { margin-top: 18px; font-size: 24px; color: #fff; }
.lk-tag { margin: 8px 0 0; font-size: 13.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-3); }
.lk-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.lk-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 54px; padding: 14px 20px; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px;
  color: #fff; font-size: 13.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(255,255,255,0.04); transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.lk-btn:hover { border-color: var(--red); color: #fff; transform: translateY(-2px); }
.lk-btn.lk-red { background: var(--red); border-color: var(--red); }
.lk-btn.lk-red:hover { background: var(--red-dark); }
.lk-btn.lk-wa { background: #25D366; border-color: #25D366; color: #0C0D10; font-weight: 900; }
.lk-btn.lk-wa:hover { background: #1FB558; color: #0C0D10; }
.lk-btn.lk-dark { background: #fff; border-color: #fff; color: var(--ink); }
.lk-btn.lk-dark:hover { background: #ECECE9; color: var(--ink); }
.lk-social { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.lk-social a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.lk-social a:hover { border-color: var(--red); color: var(--red); }
.lk-foot { margin-top: 30px; font-size: 12px; color: var(--gray-3); }

/* ── GOOGLE PLACES AUTOCOMPLETE DROPDOWN ────────────────── */
.pac-container {
  font-family: 'Barlow', sans-serif;
  border: 1px solid var(--line);
  border-top: none;
  box-shadow: 0 14px 34px rgba(10,10,12,0.18);
  border-radius: 0 0 8px 8px;
  margin-top: -2px;
  z-index: 5000;
}
.pac-item { padding: 10px 14px; font-size: 13.5px; border-top: 1px solid #F1F1EE; cursor: pointer; }
.pac-item:first-child { border-top: none; }
.pac-item:hover, .pac-item-selected { background: #FDF1F0; }
.pac-icon { display: none; }
.pac-item-query { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.pac-matched { color: var(--red); }

/* ── INSTANT QUOTE RESULT PAGE ──────────────────────────── */
.dq-hero .hero-grid { padding-bottom: 48px; }
.dq-section { background: var(--bg-soft); padding-top: 48px; }
.dq-empty { text-align: center; max-width: 560px; margin: 0 auto; padding: 40px 0; }
.dq-empty h2 { margin-bottom: 14px; }
.dq-empty p { color: var(--gray); margin: 0 0 26px; }
.dq-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 20px; align-items: start; }
.dq-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px; box-shadow: 0 14px 40px rgba(10,10,12,0.06); }
.dq-card-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gray-2); margin-bottom: 16px; }
.dq-vehicle { font-family: var(--font-display); font-weight: 600; font-size: 26px; text-transform: uppercase; color: var(--ink); margin-bottom: 20px; }
.dq-route { border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; margin-bottom: 18px; }
.dq-point { display: flex; align-items: center; gap: 12px; }
.dq-point small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray-2); }
.dq-point b { font-size: 15.5px; color: var(--ink); }
.dq-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); flex: none; }
.dq-dot-red { background: var(--red); }
.dq-line { width: 2px; height: 22px; background: var(--line); margin-left: 5px; }
.dq-facts { width: 100%; border-collapse: collapse; }
.dq-facts th, .dq-facts td { text-align: left; padding: 10px 4px; font-size: 14.5px; border-top: 1px solid #F1F1EE; }
.dq-facts th { color: var(--gray); font-weight: 600; width: 42%; }
.dq-facts td { font-weight: 700; color: var(--ink); }
.dq-price { border-top: 3px solid var(--red); }
.dq-amount { font-family: var(--font-display); font-weight: 700; font-size: 52px; line-height: 1; color: var(--ink); }
.dq-amount span { letter-spacing: 0.5px; }
.dq-price-note { margin-top: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); }
.dq-pending p { background: #FDF6E8; border: 1px solid #F0DFBB; color: #7A5A16; font-size: 13.5px; padding: 12px 14px; border-radius: 6px; margin: 12px 0 0; }
.dq-included { list-style: none; margin: 22px 0; padding: 0; }
.dq-included li { position: relative; padding: 8px 0 8px 28px; font-size: 14.5px; color: #33343A; border-bottom: 1px solid #F1F1EE; }
.dq-included li::before { content: ''; position: absolute; left: 2px; top: 15px; width: 11px; height: 6px; border-left: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red); transform: rotate(-45deg); }
.dq-confirm { width: 100%; border-radius: 6px; }
.dq-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
.dq-download, .dq-wa, .dq-call {
  display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px;
  border: 1px solid var(--line); border-radius: 6px; background: #fff; cursor: pointer;
  font-family: var(--font-text); font-size: 12.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ink); padding: 10px;
}
.dq-download:hover, .dq-call:hover { border-color: var(--red); color: var(--red); }
.dq-wa { background: #25D366; border-color: #25D366; color: #0C0D10; }
.dq-wa:hover { background: #1FB558; color: #0C0D10; }
.dq-map-card { margin-top: 20px; }
#dq-map { width: 100%; height: 420px; border-radius: 8px; background: #ECECE9; }
.dq-fine { margin: 22px auto 0; max-width: 860px; font-size: 12.5px; color: var(--gray-2); text-align: center; line-height: 1.6; }
@media (max-width: 900px) {
  .dq-grid { grid-template-columns: 1fr; }
  .dq-amount { font-size: 44px; }
  #dq-map { height: 320px; }
}

/* Print = "Download Quote" */
@media print {
  .site-header, .site-footer, .dq-hero .hero-bg, .dq-confirm, .dq-actions,
  .dq-map-card, .crumbs, .mobile-nav { display: none !important; }
  .dq-hero { background: #fff !important; }
  .dq-hero .hero-copy h1 { color: #000 !important; text-shadow: none; }
  .dq-hero .hero-p { color: #333 !important; }
  .dq-section { background: #fff; padding: 0; }
  .dq-card { box-shadow: none; border: 1px solid #ddd; page-break-inside: avoid; }
  .dq-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
