/* ════════════════════════════════════════════
   DM Construction Group — Kitchen LP v2
   Design: Corporate Clean · Navy + Yellow
════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TOKENS ── */
:root {
  --c-yellow:      #F5C200;
  --c-yellow-d:    #D9AC00;
  --c-yellow-bg:   rgba(245,194,0,0.10);
  --c-yellow-brd:  rgba(245,194,0,0.35);
  --c-navy:        #1B2340;
  --c-navy-mid:    #28345C;
  --c-ink:         #0E1520;
  --c-text:        #3A3C50;
  --c-muted:       #7A7D92;
  --c-bg:          #F3F4F9;
  --c-white:       #FFFFFF;
  --c-line:        rgba(0,0,0,0.08);
  --c-line-light:  rgba(255,255,255,0.10);

  --r:    8px;
  --r-lg: 14px;
  --r-xl: 20px;

  --sh-sm: 0 2px 10px rgba(0,0,0,0.06);
  --sh-md: 0 8px 28px rgba(0,0,0,0.10);
  --sh-lg: 0 24px 60px rgba(0,0,0,0.14);

  --dur: 0.25s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  line-height: 1.12;
  color: var(--c-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 0.95rem; font-weight: 700; }

.v2-eyebrow {
  display: inline-flex; align-items: center;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 100px; margin-bottom: 18px;
}
.v2-ey-yellow { background: var(--c-yellow-bg); color: #8C6F00; border: 1px solid var(--c-yellow-brd); }
.v2-ey-navy   { background: rgba(27,35,64,0.07); color: var(--c-navy); border: 1px solid rgba(27,35,64,0.14); }
.v2-ey-white  { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.88); border: 1px solid rgba(255,255,255,0.18); }

/* ── LAYOUT ── */
.v2-container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.v2-section { padding: 88px 0; }
.v2-section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.v2-section-header h2 { margin-bottom: 14px; }
.v2-section-header > p { color: var(--c-muted); font-size: 1.02rem; line-height: 1.75; }

/* ── BUTTONS ── */
.v2-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.01em;
  transition: all var(--dur) var(--ease);
  white-space: nowrap; cursor: pointer;
  border: 2px solid transparent; justify-content: center;
}
.v2-btn-yellow  { background: var(--c-yellow); color: var(--c-navy); border-color: var(--c-yellow); }
.v2-btn-yellow:hover  { background: var(--c-yellow-d); border-color: var(--c-yellow-d); }
.v2-btn-navy    { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.v2-btn-navy:hover    { background: var(--c-navy-mid); border-color: var(--c-navy-mid); }
.v2-btn-outline { background: transparent; color: var(--c-navy); border-color: rgba(27,35,64,0.30); }
.v2-btn-outline:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.v2-btn-outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,0.40); }
.v2-btn-outline-w:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.70); }
.v2-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.v2-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  height: 68px;
}
.v2-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 20px;
  max-width: 1160px; margin: 0 auto;
}
.v2-logo-img { height: 44px; width: auto; display: block; }
.v2-nav { display: none; align-items: center; gap: 28px; }
.v2-nav a {
  font-size: 0.88rem; font-weight: 500; color: var(--c-text);
  transition: color var(--dur);
}
.v2-nav a:hover { color: var(--c-navy); }
.v2-header-actions { display: flex; align-items: center; gap: 12px; }
.v2-header-phone {
  display: none; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.88rem; color: var(--c-ink);
}
.v2-burger {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--c-white); border: 1.5px solid var(--c-line);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; flex-shrink: 0; transition: background var(--dur);
}
.v2-burger:hover { background: var(--c-bg); }
.v2-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--c-ink); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.v2-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.v2-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.v2-mobile-nav {
  display: none; position: absolute; top: 68px; left: 0; right: 0;
  background: var(--c-white); border-bottom: 1px solid var(--c-line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10); z-index: 99;
  flex-direction: column;
}
.v2-mobile-nav.open { display: flex; }
.v2-mobile-nav a {
  padding: 16px 24px; font-weight: 500; font-size: 1rem;
  border-bottom: 1px solid var(--c-line); color: var(--c-ink);
}
.v2-mobile-nav a:last-child { border-bottom: none; }

@media (min-width: 900px) {
  .v2-nav { display: flex; }
  .v2-header-phone { display: inline-flex; }
  .v2-burger { display: none; }
  .v2-header-inner { padding: 0 32px; }
}

/* ════════════════════════════════════════════
   HERO — Split layout
════════════════════════════════════════════ */
.v2-hero {
  background: var(--c-white);
  padding: 72px 0 60px;
  overflow: hidden;
}
.v2-hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
.v2-hero-content { display: flex; flex-direction: column; }
.v2-hero-content h1 { margin-bottom: 18px; }
.v2-hero-content h1 em { font-style: italic; color: var(--c-yellow-d); }
.v2-hero-sub {
  font-size: 1.08rem; color: var(--c-muted);
  line-height: 1.75; margin-bottom: 0; max-width: 520px;
}

/* Stat row */
.v2-stat-row {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  margin: 28px 0 32px;
}
.v2-hstat {
  flex: 1 1 80px; padding: 16px 12px;
  border-right: 1px solid var(--c-line); text-align: center;
  min-width: 70px;
}
.v2-hstat:last-child { border-right: none; }
.v2-hstat-num {
  display: block; font-size: 1.55rem; font-weight: 900;
  color: var(--c-navy); line-height: 1; margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.v2-hstat-label {
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--c-muted);
}

/* Hero buttons */
.v2-hero-btns {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.v2-trust-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.v2-trust-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--c-muted);
}
.v2-trust-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%; background: var(--c-yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231B2340' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Hero media */
.v2-hero-media {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; background: var(--c-bg);
  box-shadow: var(--sh-lg);
  position: relative;
}
.v2-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.v2-hero-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--c-white); border-radius: var(--r-lg);
  padding: 14px 20px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 12px;
}
.v2-hero-badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--c-yellow); display: flex; align-items: center; justify-content: center;
  color: var(--c-navy); font-size: 1.2rem;
}
.v2-hero-badge-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--c-ink); }
.v2-hero-badge-text span { font-size: 0.72rem; color: var(--c-muted); }

@media (min-width: 640px) {
  .v2-hero-btns { flex-direction: row; }
}
@media (min-width: 1024px) {
  .v2-hero-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .v2-hero { padding: 88px 0 72px; }
}

/* ════════════════════════════════════════════
   INCLUDED — Services cards on light bg
════════════════════════════════════════════ */
.v2-included { background: var(--c-bg); }
.v2-included-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
.v2-scard {
  background: var(--c-white); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--dur), border-color var(--dur), transform var(--dur);
}
.v2-scard:hover {
  box-shadow: var(--sh-md);
  border-color: var(--c-yellow-brd);
  transform: translateY(-3px);
}
.v2-scard-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--c-navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-yellow); flex-shrink: 0;
}
.v2-scard-icon svg { width: 24px; height: 24px; }
.v2-scard h3 { font-size: 1.02rem; color: var(--c-ink); }
.v2-scard p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.65; }

@media (min-width: 640px) { .v2-included-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .v2-included-grid { grid-template-columns: repeat(4, 1fr); } }

/* ════════════════════════════════════════════
   RANGE — Split section (photo + checklist)
════════════════════════════════════════════ */
.v2-range { background: var(--c-white); }
.v2-range-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1fr; align-items: center;
}
.v2-range-photo {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; background: var(--c-bg);
  box-shadow: var(--sh-md);
}
.v2-range-photo img { width: 100%; height: 100%; object-fit: cover; }
.v2-range-text { display: flex; flex-direction: column; gap: 20px; }
.v2-range-text > p { color: var(--c-muted); line-height: 1.75; font-size: 1rem; }
.v2-check-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.v2-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.93rem; color: var(--c-text); line-height: 1.5;
}
.v2-check-list li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%; background: var(--c-navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

@media (min-width: 900px) {
  .v2-range-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.v2-stats-bar { background: var(--c-navy); padding: 56px 0; }
.v2-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.v2-stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.v2-stat-item:last-child { border-right: none; }
.v2-stat-num {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
  color: var(--c-yellow); line-height: 1; margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.v2-stat-label {
  font-size: 0.76rem; font-weight: 600;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase; letter-spacing: 0.09em; line-height: 1.4;
}

/* ════════════════════════════════════════════
   PROCESS — Numbered cards
════════════════════════════════════════════ */
.v2-process { background: var(--c-bg); }
.v2-process-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
.v2-process-step {
  background: var(--c-white); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: box-shadow var(--dur), transform var(--dur);
}
.v2-process-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--c-yellow);
}
.v2-process-step:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.v2-process-num {
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  color: var(--c-yellow); letter-spacing: -0.04em;
}
.v2-process-step h3 { color: var(--c-ink); font-size: 1.02rem; }
.v2-process-step p { color: var(--c-muted); font-size: 0.88rem; line-height: 1.65; }

@media (min-width: 640px) { .v2-process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .v2-process-grid { grid-template-columns: repeat(4, 1fr); } }

/* ════════════════════════════════════════════
   NOT FOR YOU — Dark navy, split
════════════════════════════════════════════ */
.v2-not-for { background: var(--c-navy); padding: 88px 0; }
.v2-notfor-grid {
  display: grid; gap: 56px; align-items: center;
  grid-template-columns: 1fr;
}
.v2-notfor-photo {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 1; max-width: 420px; margin: 0 auto;
  background: var(--c-navy-mid);
}
.v2-notfor-photo img { width: 100%; height: 100%; object-fit: cover; }
.v2-notfor-text { display: flex; flex-direction: column; gap: 16px; }
.v2-notfor-text h2 { color: var(--c-white); }
.v2-notfor-text > p { color: rgba(255,255,255,0.68); line-height: 1.75; font-size: 0.98rem; }
.v2-notfor-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.v2-notfor-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: rgba(255,255,255,0.78);
}
.v2-notfor-list li::before {
  content: '×';
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.45);
  line-height: 22px; text-align: center; margin-top: 1px;
}

@media (min-width: 900px) {
  .v2-notfor-grid { grid-template-columns: 1fr 1fr; }
  .v2-notfor-photo { max-width: none; margin: 0; }
}

/* ════════════════════════════════════════════
   PORTFOLIO — Cards with caption below image
════════════════════════════════════════════ */
.v2-portfolio { background: var(--c-white); }
.v2-portfolio-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
.v2-pcard {
  background: var(--c-white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  transition: box-shadow var(--dur), transform var(--dur);
}
.v2-pcard:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.v2-pcard-img { aspect-ratio: 4/3; overflow: hidden; background: var(--c-bg); }
.v2-pcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.v2-pcard:hover .v2-pcard-img img { transform: scale(1.04); }
.v2-pcard-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.v2-pcard-loc {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--c-muted); font-weight: 600;
}
.v2-pcard-title { font-size: 0.95rem; font-weight: 700; color: var(--c-ink); }
.v2-pcard-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem; font-weight: 700; color: var(--c-yellow-d);
  margin-top: 4px; transition: gap var(--dur);
}
.v2-pcard:hover .v2-pcard-cta { gap: 8px; }

@media (min-width: 640px) { .v2-portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .v2-portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

/* ════════════════════════════════════════════
   OWNER — White bg, split
════════════════════════════════════════════ */
.v2-owner { background: var(--c-bg); padding: 88px 0; }
.v2-owner-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1fr; align-items: center;
}
.v2-owner-photo {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 3/4; max-width: 360px; margin: 0 auto;
  background: var(--c-bg); box-shadow: var(--sh-md);
}
.v2-owner-photo img { width: 100%; height: 100%; object-fit: cover; }
.v2-owner-text { display: flex; flex-direction: column; gap: 18px; }
.v2-owner-text h2 { color: var(--c-ink); }
.v2-owner-text p { color: var(--c-muted); line-height: 1.78; font-size: 1rem; }
.v2-owner-sig { margin-top: 8px; }
.v2-owner-name { font-weight: 800; font-size: 1rem; color: var(--c-ink); }
.v2-owner-title { font-size: 0.85rem; color: var(--c-muted); margin-top: 2px; }
.v2-owner-creds {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
}
.v2-owner-cred {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600;
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: 100px; padding: 5px 12px;
  color: var(--c-text); box-shadow: var(--sh-sm);
}

@media (min-width: 900px) {
  .v2-owner-grid { grid-template-columns: 380px 1fr; gap: 80px; }
  .v2-owner-photo { max-width: none; margin: 0; }
}

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
.v2-reviews { background: var(--c-white); }
.v2-reviews-badges {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; margin-bottom: 16px;
  flex-wrap: wrap;
}
.v2-reviews-badges img { height: 22px; width: auto; }
.v2-reviews-grid {
  display: grid; gap: 20px; grid-template-columns: 1fr;
}
.v2-review-card {
  background: var(--c-bg); border-radius: var(--r-lg);
  padding: 28px; border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--dur);
}
.v2-review-card:hover { box-shadow: var(--sh-sm); }
.v2-stars { color: var(--c-yellow); font-size: 1rem; letter-spacing: 3px; }
.v2-review-text { font-size: 0.92rem; color: var(--c-text); line-height: 1.75; }
.v2-reviewer-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.v2-reviewer-name { font-weight: 700; font-size: 0.88rem; color: var(--c-ink); }
.v2-review-source { font-size: 0.75rem; color: var(--c-muted); }
.v2-review-link {
  display: inline-block; font-size: 0.75rem;
  color: var(--c-yellow-d); font-weight: 600;
}
.v2-review-link:hover { text-decoration: underline; }

@media (min-width: 640px) { .v2-reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .v2-reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ════════════════════════════════════════════
   CTA BANNER — Navy, centered
════════════════════════════════════════════ */
.v2-cta-banner { background: var(--c-navy); padding: 80px 0; text-align: center; }
.v2-cta-banner h2 { color: var(--c-white); margin-bottom: 16px; }
.v2-cta-banner p { color: rgba(255,255,255,0.62); margin-bottom: 40px; font-size: 1.02rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.v2-cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.v2-cta-btns .v2-btn { min-width: 220px; }
@media (min-width: 640px) { .v2-cta-btns { flex-direction: row; justify-content: center; } }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.v2-faq { background: var(--c-bg); }
.v2-faq-list {
  max-width: 780px; margin: 0 auto;
  background: var(--c-white); border-radius: var(--r-xl);
  border: 1px solid var(--c-line); overflow: hidden;
  box-shadow: var(--sh-sm);
}
.v2-faq-item { border-bottom: 1px solid var(--c-line); }
.v2-faq-item:last-child { border-bottom: none; }
.v2-faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px; text-align: left;
  font-size: 0.97rem; font-weight: 600; color: var(--c-ink);
  transition: color var(--dur);
}
.v2-faq-question:hover { color: var(--c-navy); }
.v2-faq-icon {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: var(--c-bg); border: 1.5px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy);
  transition: all 0.25s var(--ease);
}
.v2-faq-item.open .v2-faq-icon {
  background: var(--c-yellow); border-color: var(--c-yellow);
  color: var(--c-navy); transform: rotate(45deg);
}
.v2-faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease); }
.v2-faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.92rem; color: var(--c-muted); line-height: 1.75;
}
.v2-faq-item.open .v2-faq-answer { max-height: 320px; }

/* ════════════════════════════════════════════
   QUOTE FORM — Dark navy
════════════════════════════════════════════ */
.v2-quote { background: var(--c-navy); }
.v2-quote-wrap { max-width: 700px; margin: 0 auto; }
.v2-quote .v2-section-header h2 { color: var(--c-white); }
.v2-quote .v2-section-header > p { color: rgba(255,255,255,0.55); }

.v2-step-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 36px;
}
.v2-step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.35);
  transition: all 0.25s;
}
.v2-step-dot.active { border-color: var(--c-yellow); color: var(--c-yellow); background: rgba(245,194,0,0.12); }
.v2-step-dot.done   { border-color: var(--c-yellow); background: var(--c-yellow); color: var(--c-navy); }
.v2-step-line { flex: 1; height: 1px; background: rgba(255,255,255,0.12); max-width: 64px; }

.v2-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl); padding: 36px 28px;
}
.v2-form-step { display: none; }
.v2-form-step.active { display: block; }
.v2-step-title { font-size: 1.05rem; font-weight: 700; color: var(--c-white); margin-bottom: 6px; }
.v2-step-sub { font-size: 0.86rem; color: rgba(255,255,255,0.52); margin-bottom: 24px; }

.v2-radio-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.v2-radio-label {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: var(--r); cursor: pointer;
  font-size: 0.92rem; color: rgba(255,255,255,0.78);
  transition: all var(--dur);
}
.v2-radio-label:hover { border-color: var(--c-yellow); color: var(--c-white); background: rgba(245,194,0,0.07); }
.v2-radio-label input[type="radio"] { width: 17px; height: 17px; accent-color: var(--c-yellow); flex-shrink: 0; }
.v2-radio-label:has(input:checked) { border-color: var(--c-yellow); color: var(--c-white); background: rgba(245,194,0,0.10); }

.v2-sublabel {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.v2-sublabel + .v2-sublabel, .v2-radio-group + .v2-sublabel { margin-top: 20px; }

.v2-form-row { display: grid; gap: 14px; grid-template-columns: 1fr; margin-bottom: 14px; }
@media (min-width: 600px) { .v2-form-row.two-col { grid-template-columns: 1fr 1fr; } }

.v2-field { display: flex; flex-direction: column; gap: 6px; }
.v2-field label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.07em; }
.v2-field input, .v2-field select {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: var(--r); padding: 13px 16px;
  font-size: 0.93rem; color: var(--c-white);
  transition: border-color var(--dur);
  width: 100%; font-family: inherit;
}
.v2-field input::placeholder { color: rgba(255,255,255,0.28); }
.v2-field input:focus, .v2-field select:focus {
  outline: none; border-color: var(--c-yellow);
  background: rgba(255,255,255,0.09);
}
.v2-field select { color: rgba(255,255,255,0.68); }
.v2-field select option { background: var(--c-navy); color: var(--c-white); }
.v2-field-error { font-size: 0.78rem; color: #FC8181; display: none; }
.v2-field-error.visible { display: block; }

.v2-form-actions { display: flex; gap: 12px; margin-top: 28px; }
.v2-form-actions .v2-btn { flex: 1; justify-content: center; }
.v2-btn-back {
  background: transparent; color: rgba(255,255,255,0.52);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: var(--r); padding: 14px 20px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all var(--dur);
}
.v2-btn-back:hover { color: var(--c-white); border-color: rgba(255,255,255,0.35); }
.v2-form-err { color: #FC8181; font-size: 0.86rem; text-align: center; margin-top: 12px; display: none; }
.v2-form-err.visible { display: block; }
.v2-form-privacy {
  text-align: center; margin-top: 14px;
  font-size: 0.74rem; color: rgba(255,255,255,0.34);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.v2-footer { background: var(--c-ink); padding: 60px 0 28px; }
.v2-footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr; margin-bottom: 44px;
}
.v2-footer-logo { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.80; }
.v2-footer-desc { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 240px; }
.v2-footer-col h4 { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.11em; margin-bottom: 14px; }
.v2-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.v2-footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--dur); }
.v2-footer-col ul li a:hover { color: var(--c-yellow); }
.v2-footer-contact li { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.v2-footer-contact li a { color: rgba(255,255,255,0.55); transition: color var(--dur); }
.v2-footer-contact li a:hover { color: var(--c-yellow); }
.v2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
}
.v2-footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.24); }
.v2-footer-bottom a { color: rgba(255,255,255,0.36); }
.v2-footer-bottom a:hover { color: var(--c-yellow); }

@media (min-width: 640px) { .v2-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .v2-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .v2-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ════════════════════════════════════════════
   STICKY MOBILE CTA
════════════════════════════════════════════ */
.v2-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--c-ink); border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; padding: 10px 12px; gap: 10px;
  transform: translateY(100%); transition: transform 0.3s var(--ease);
}
.v2-sticky.visible { transform: translateY(0); }
.v2-sticky-btn {
  flex: 1; padding: 12px 8px; border-radius: var(--r);
  font-size: 0.86rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; transition: all var(--dur); border: none;
}
.v2-sticky-btn svg { width: 16px; height: 16px; }
.v2-sticky-call { background: var(--c-yellow); color: var(--c-navy); }
.v2-sticky-call:hover { background: var(--c-yellow-d); }
.v2-sticky-quote { background: var(--c-white); color: var(--c-ink); }
.v2-sticky-quote:hover { background: var(--c-bg); }

@media (min-width: 900px) { .v2-sticky { display: none; } }
