/* ============================================================
   PERGOZIP — Design System
   Clean white + natural tones, premium outdoor living
   ============================================================ */

:root {
  --white:   #FFFFFF;
  --off:     #F8F6F2;
  --cream:   #F2EDE5;
  --stone:   #E8E0D4;
  --stone2:  #D4C8B8;
  --bark:    #8C7A68;
  --earth:   #5C4A38;
  --ink:     #1A1714;
  --ink2:    #3A3330;
  --muted:   #8C857E;
  --line:    #E0D8D0;

  /* Accent */
  --sage:    #6B8F71;
  --sage-l:  #A8C5AD;
  --sage-bg: rgba(107,143,113,0.08);
  --forest:  #3D5940;

  /* Typography */
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono:    'DM Mono', monospace;

  /* Spacing */
  --page-px: 64px;
  --section-py: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
.h-display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--ink);
}
.h-section {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--ink);
}
.h-sage { color: var(--sage); }
.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 16px;
}
.sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.2px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  padding: 12px 24px;
  text-decoration: none;
}
.btn.lg { padding: 16px 32px; font-size: 15px; }
.btn-primary {
  background: #1A1714;
  color: #FFFFFF;
}
.btn-primary:hover { background: #2A2521; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--stone2);
}
.btn-outline:hover { border-color: var(--bark); background: var(--cream); }
.btn-ghost {
  background: transparent;
  color: var(--ink2);
  border: 1.5px solid var(--line);
  font-size: 13px;
  padding: 9px 18px;
}
.btn-ghost:hover { background: var(--cream); border-color: var(--stone2); }
.btn-dark {
  background: #1A1714;
  color: #FFFFFF;
  font-size: 13px;
  padding: 9px 18px;
}
.btn-dark:hover { background: #2A2521; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--page-px);
  position: relative;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.1px;
}
.nav-link:hover { color: #FFFFFF; }
.nav.scrolled .nav-link { color: var(--ink2); }
.nav.scrolled .nav-link:hover { color: var(--ink); }
.nav .btn-ghost { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
.nav .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.nav.scrolled .btn-ghost { color: var(--ink2); border-color: var(--line); background: transparent; }
.nav.scrolled .btn-ghost:hover { background: var(--cream); border-color: var(--stone2); }
.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
  width: auto;
  justify-content: flex-end;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.nav.scrolled .lang-switch {
  background: var(--off);
  border-color: var(--line);
}
.lang-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 9px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.2s;
}
.nav.scrolled .lang-btn { color: var(--muted); }
.lang-btn:hover { color: rgba(255,255,255,0.9); }
.nav.scrolled .lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  background: var(--sage);
  color: #FFFFFF;
}
.nav.scrolled .lang-btn.active { color: #FFFFFF; }
.nav-spacer { width: 220px; flex: 0 0 220px; }

/* Logo — absolute center */
.nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  z-index: 2;
}
.nav-logo:hover { opacity: 0.75; }
.nav.scrolled .nav-logo { color: var(--ink); }

/* ── Reveal Overlay ── */
.reveal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1A1714;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.reveal-overlay.wipe { transform: translateY(-100%); }
.reveal-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-logo.fade-in { opacity: 1; transform: translateY(0); }
.reveal-logo.fade-out { opacity: 0; transform: translateY(-12px); transition: opacity 0.4s, transform 0.4s; }
.reveal-logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
}
.reveal-wordmark {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  color: #FFFFFF;
  font-family: var(--display);
  line-height: 1;
}
.reveal-wordmark span { color: var(--sage-l); }
.reveal-tagline {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.reveal-bar {
  width: 100px;
  height: 1.5px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
  overflow: hidden;
}
.reveal-bar-fill {
  height: 100%;
  width: 0;
  background: var(--sage-l);
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-bar-fill.done { width: 100%; }

/* ── Reveal items ── */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.visible { opacity: 1; transform: translateY(0); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}
.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.scene-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #4A6B4F 0%, #3D5940 45%, #2A3A28 100%);
}
.scene-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 15%, rgba(255,255,255,0.08) 0%, transparent 65%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
}
.hero-title {
  font-size: clamp(52px, 7vw, 96px);
  margin-bottom: 24px;
  max-width: 900px;
  color: #FFFFFF;
}
.hero-title .h-sage { color: var(--sage-l); }
.hero-sub {
  max-width: 520px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.6);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary { background: #FFFFFF; color: #1A1714; }
.hero-ctas .btn-primary:hover { background: #F0EBE0; }
.hero-ctas .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,0.35); }
.hero-ctas .btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }

/* ── Product Stage ── */
.product-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0.3s;
}
.product-stage.pd-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Zip screen CSS render */
.zip-render {
  position: relative;
  width: 560px;
  height: 420px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.15)) drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}
.zip-frame {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
}
.zip-top-rail {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  background: linear-gradient(180deg, #4A4540 0%, #3A3530 100%);
  border-radius: 6px 6px 0 0;
  z-index: 3;
}
.zip-top-rail::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.zip-bottom-rail {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20px;
  background: linear-gradient(180deg, #3A3530 0%, #2A2520 100%);
  border-radius: 0 0 6px 6px;
  z-index: 3;
}
.zip-side-rail {
  position: absolute;
  top: 22px; bottom: 20px;
  width: 14px;
  background: linear-gradient(180deg, #3A3530, #2A2520);
  z-index: 3;
}
.zip-side-rail.left { left: 0; border-radius: 0; }
.zip-side-rail.right { right: 0; border-radius: 0; }
.zip-fabric {
  position: absolute;
  top: 22px; bottom: 20px; left: 14px; right: 14px;
  background: linear-gradient(160deg,
    #D8CFC4 0%,
    #C8BEB2 20%,
    #B8AFA4 40%,
    #C4BBB0 60%,
    #D0C7BC 80%,
    #C8BFB4 100%
  );
  overflow: hidden;
}
/* Kumaş dokusu — yatay çizgiler */
.zip-fabric::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.025) 3px,
    rgba(0,0,0,0.025) 4px
  );
}
/* Kumaş parlaması */
.zip-fabric::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 40%; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
/* Zip dikiş şeridi */
.zip-seam {
  position: absolute;
  top: 22px; bottom: 20px;
  width: 3px;
  background: rgba(0,0,0,0.08);
  z-index: 2;
}
.zip-seam.left { left: 14px; }
.zip-seam.right { right: 14px; }

/* View-through — arka plan manzarası */
.zip-view {
  position: absolute;
  top: 22px; bottom: 20px; left: 14px; right: 14px;
  overflow: hidden;
  z-index: 0;
}
.zip-view-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #B8D4E8 0%,
    #C8DDF0 30%,
    #D8E8C8 65%,
    #C8D8A8 100%
  );
}
/* Ağaç siluetleri */
.zip-view-trees {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
}

/* Floating info cards */
.zip-callout {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  min-width: 130px;
  z-index: 20;
  animation: calloutIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.pd-revealed .zip-callout { }
.zip-callout .c-k {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8C857E;
  margin-bottom: 4px;
  font-family: var(--mono);
}
.zip-callout .c-v {
  font-size: 15px;
  font-weight: 700;
  color: #1A1714;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.zip-callout .c-v small {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.c-tl { top: 30px; left: -30px; animation-delay: 0.5s; }
.c-ml { top: 50%; transform: translateY(-50%); left: -40px; animation-delay: 0.6s; }
.c-bl { bottom: 40px; left: -20px; animation-delay: 0.7s; }
.c-tr { top: 20px; right: -30px; animation-delay: 0.55s; }
.c-mr { top: 50%; transform: translateY(-50%); right: -40px; animation-delay: 0.65s; }

@keyframes calloutIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  width: 100%;
  max-width: 1400px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.h-stat {
  flex: 1;
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.h-stat:last-child { border-right: none; }
.h-stat-n {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 4px;
}
.h-stat-n sup { font-size: 16px; color: var(--sage-l); font-weight: 700; }
.h-stat-t { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ── Products Section ── */
.products-sec {
  padding: var(--section-py) var(--page-px);
  background: var(--white);
}
.products-wrap { max-width: 1400px; margin: 0 auto; }
.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.product-card {
  background: var(--white);
  padding: 44px 40px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.product-card:hover { background: var(--off); }
.product-card.featured { background: #1A1714; }
.product-card.featured:hover { background: #2A2521; }
.pc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  font-family: var(--mono);
}
.product-card.featured .pc-tag { color: var(--sage-l); }
.pc-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}
.product-card.featured .pc-title { color: #FFFFFF; }
.pc-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
  flex: 1;
}
.product-card.featured .pc-desc { color: rgba(255,255,255,0.5); }
.pc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.pc-spec {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--ink2);
  background: var(--off);
}
.product-card.featured .pc-spec {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}
.pc-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card.featured .pc-link { color: var(--sage-l); }

/* ── Crawlable product details (SEO/GEO) ── */
.products-details-crawl {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pdc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.pdc-item + .pdc-item { margin-top: 8px; }
.pdc-summary {
  cursor: pointer;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.pdc-summary::-webkit-details-marker { display: none; }
.pdc-summary::marker { content: ""; }
.pdc-summary::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  color: var(--muted);
}
.pdc-item[open] .pdc-summary::after { content: "–"; }
.pdc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.pdc-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.pdc-body h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 24px 0 12px;
  font-family: var(--mono);
}
.pdc-body h4:first-of-type { margin-top: 0; }
.pdc-seo, .pdc-body > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Features ── */
.features-sec {
  padding: var(--section-py) var(--page-px);
  background: var(--off);
  border-top: 1px solid var(--line);
}
.features-wrap { max-width: 1400px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.feature-item {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-item:hover { background: var(--off); }
.fi-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.fi-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.fi-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 10px;
}
.fi-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Markets Section ── */
.markets-sec {
  padding: var(--section-py) var(--page-px);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.markets-wrap { max-width: 1400px; margin: 0 auto; }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.market-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--off);
  transition: all 0.2s;
}
.market-card:hover {
  border-color: var(--sage-l);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mc-flag { font-size: 28px; margin-bottom: 12px; display: block; }
.mc-country {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.mc-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── CTA ── */
.cta-sec {
  padding: 120px var(--page-px);
  background: #1A1714;
  text-align: center;
}
.cta-wrap { max-width: 700px; margin: 0 auto; }
.cta-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.05;
}
.cta-title span { color: var(--sage-l); }
.cta-sub { color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; }
.btn-sage {
  background: var(--sage);
  color: #FFFFFF;
  border: none;
}
.btn-sage:hover { background: var(--forest); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); }

/* ── Footer ── */
.footer {
  background: #1A1714;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px var(--page-px) 40px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  max-width: 220px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FFFFFF; }
.footer-bottom {
  max-width: 1400px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  :root { --page-px: 32px; }
  .products-header { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --page-px: 20px; --section-py: 60px; }
  .nav-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-logo { position: static; left: auto; top: auto; transform: none; }
  .nav-right { width: auto; gap: 6px; }
  .nav-wa-label { display: none; }
  .nav-right .btn-ghost { padding: 9px 12px; }
  .nav-right .btn-dark { padding: 9px 14px; font-size: 13px; }
  .lang-switch { padding: 2px; gap: 1px; }
  .lang-btn { padding: 5px 6px; font-size: 10px; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 44px; letter-spacing: -1.5px; }
  .zip-render { width: 340px; height: 260px; }
  .c-tl, .c-ml, .c-bl { left: -10px; }
  .c-tr, .c-mr { right: -10px; }
}

/* ── Product tabs ── */
.prod-tabs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2px;
}
.prod-tab {
  background: var(--off);
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.prod-tab:hover { background: var(--cream); }
.prod-tab.active { background: var(--white); }
.prod-tab-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 5px;
  font-family: var(--mono);
}
.prod-tab.active .prod-tab-tag { color: var(--sage); }
.prod-tab-title {
  font-size: 15px; font-weight: 700;
  color: var(--ink2); letter-spacing: -0.3px;
}
.prod-tab.active .prod-tab-title { color: var(--ink); }

/* Product detail */
.prod-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}
.pd-left {
  background: var(--white);
  padding: 44px 40px;
}
.pd-title {
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.5px; color: var(--ink);
  margin-bottom: 4px; line-height: 1.1;
  font-family: var(--display);
}
.pd-sub {
  font-size: 13px; color: var(--sage);
  font-weight: 600; margin-bottom: 16px;
  font-family: var(--mono);
}
.pd-desc {
  font-size: 14px; line-height: 1.7;
  color: var(--muted); margin-bottom: 20px;
}
.pd-motor {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--off);
  border-radius: 10px;
  margin-top: 4px;
}
.pd-motor-label {
  font-size: 10px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em; font-family: var(--mono);
  white-space: nowrap;
}
.pd-motor-val {
  font-size: 13px; font-weight: 600; color: var(--ink2);
}
.pd-right { background: var(--off); }
.pd-visual {
  width: 100%; height: 100%;
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.pd-visual-placeholder {
  text-align: center;
}
.pd-visual-icon { font-size: 64px; margin-bottom: 16px; }
.pd-visual-hint {
  font-size: 12px; color: var(--muted);
  font-weight: 500;
}

/* ── Dealers ── */
.dealers-sec {
  padding: var(--section-py) var(--page-px);
  background: #1A1714;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dealers-wrap { max-width: 1400px; margin: 0 auto; }
.dealers-sec .kicker { color: var(--sage-l); }
.dealers-sec .h-section { color: #FFFFFF; }
.dealers-sec .h-sage { color: var(--sage-l); }
.dealers-sec .sub { color: rgba(255,255,255,0.5); }
.dealers-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}
.dealer-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.dealer-perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
}
.dp-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.dp-title {
  font-size: 15px; font-weight: 700;
  color: #FFFFFF; margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.dp-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }
.dealers-sec .markets-grid { margin-top: 0; }
.dealers-sec .market-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.dealers-sec .market-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--sage-l);
}
.dealers-sec .mc-country { color: #FFFFFF; }
.dealers-sec .mc-note { color: rgba(255,255,255,0.4); }

/* CTA note */
.cta-wa-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .prod-tabs { grid-template-columns: repeat(2,1fr); }
  .prod-detail { grid-template-columns: 1fr; }
  .dealers-header { grid-template-columns: 1fr; }
}

/* ── Hero photo stage ── */
.hero-photo-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-product-photo {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
}
.hero-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,23,20,0.35) 100%);
}
.hero-photo-stage .zip-callout {
  z-index: 10;
}
.hero-photo-stage .c-tl { top: 24px; left: -20px; }
.hero-photo-stage .c-ml { top: 45%; left: -30px; }
.hero-photo-stage .c-bl { bottom: 60px; left: 20px; }
.hero-photo-stage .c-tr { top: 24px; right: -20px; }
.hero-photo-stage .c-mr { top: 45%; right: -30px; }

/* ── Spec table ── */
.spec-table {
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spec-label {
  color: var(--muted);
  font-weight: 600;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding-top: 1px;
}
.spec-value {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

/* ── Product photos ── */
.pd-photo-wrap {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.pd-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-photo-alt { }

/* ── Gallery ── */
.gallery-sec {
  padding: var(--section-py) 0;
  overflow: hidden;
  background: var(--off);
  border-top: 1px solid var(--line);
}
.gallery-head {
  padding: 0 var(--page-px);
  margin-bottom: 48px;
}
.gallery-track-wrap {
  overflow: hidden;
  width: 100%;
}
.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.gallery-card {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

/* ── Product highlights ── */
.pd-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 24px;
}
.pd-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--off);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.pd-hl-icon { font-size: 18px; flex-shrink: 0; }
.pd-hl-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  letter-spacing: -0.1px;
}
.pd-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pd-spec-btn {
  flex: 1;
  justify-content: center;
  min-width: 160px;
}

/* ── Modal ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.6);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  animation: backdropIn 0.25s ease;
}
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 1000px;
  max-height: 92vh;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalUp 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
@keyframes modalUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
  z-index: 10;
}
.modal-close:hover { background: var(--off); color: var(--ink); }
.modal-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.modal-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 4px;
  font-family: var(--display);
}
.modal-sub {
  font-size: 13px;
  color: var(--sage);
  font-weight: 600;
  font-family: var(--mono);
}
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow-y: auto;
  flex: 1;
}
.modal-seo {
  padding: 32px 40px;
  border-right: 1px solid var(--line);
  overflow-y: auto;
}
.modal-seo h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 28px 0 12px;
  font-family: var(--mono);
}
.modal-seo h3:first-child { margin-top: 0; }
.modal-seo p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.modal-use-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-use-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.modal-use-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.modal-use-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.modal-use-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.modal-why-list {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-why-list li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.modal-specs {
  padding: 32px 40px;
  overflow-y: auto;
  background: var(--off);
}
.modal-specs h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 16px;
  font-family: var(--mono);
}

@media (max-width: 768px) {
  .modal-body { grid-template-columns: 1fr; }
  .modal-seo { border-right: none; border-bottom: 1px solid var(--line); }
  .modal-header, .modal-seo, .modal-specs { padding: 24px 20px; }
  .pd-highlights { grid-template-columns: 1fr; }
}

/* ── Trust Section ── */
.trust-sec {
  padding: var(--section-py) var(--page-px);
  background: #1A1714;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-wrap { max-width: 1400px; margin: 0 auto; }
.trust-sec .kicker { color: var(--sage-l); }
.trust-sec .h-section { color: #FFFFFF; }
.trust-sec .h-sage { color: var(--sage-l); }
.trust-sec .sub { color: rgba(255,255,255,0.45); }
.trust-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}
.trust-item {
  background: rgba(255,255,255,0.02);
  padding: 36px 32px;
  transition: background 0.2s;
}
.trust-item:hover { background: rgba(255,255,255,0.05); }
.ti-icon { font-size: 28px; margin-bottom: 16px; }
.ti-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.ti-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}
.trust-markets {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.trust-markets-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.trust-flags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-flag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.trust-flag span:first-child { font-size: 18px; }

@media (max-width: 1100px) {
  .trust-header { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ── Font overrides — Inter for UI, Cormorant for display ── */
.nav-link, .btn, .kicker, .sub, .pc-tag, .pd-sub,
.spec-label, .spec-value, .fi-desc, .ti-desc,
.h-stat-t, .mc-note, .footer-links a,
.pd-hl-label, .pd-desc, .pd-actions,
.modal-seo p, .modal-seo h3, .modal-why-list li,
.modal-use-desc, .modal-use-title,
.hero-tag, .fi-num, .fi-desc {
  font-family: var(--sans);
}

/* Hero title — big serif italic for drama */
.hero-title .h-sage {
  font-style: italic;
  font-weight: 500;
}

/* Section headings — serif, no italic by default */
.h-section .h-sage {
  font-style: italic;
  font-weight: 500;
}

/* Product tab titles — Inter medium */
.prod-tab-title {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--ink2);
  letter-spacing: -0.2px;
}
.prod-tab.active .prod-tab-title { color: var(--ink); }

/* pd-title stays serif */
.pd-title { font-family: var(--display) !important; }
.modal-title { font-family: var(--display) !important; font-style: normal; }
.cta-title { font-family: var(--display) !important; }
.h-stat-n { font-family: var(--display) !important; }

/* Highlight labels — Inter */
.pd-hl-label { font-family: var(--sans); font-size: 12px; }

/* Feature titles — Inter bold */
.fi-title { font-family: var(--sans); font-weight: 700; }
.ti-title { font-family: var(--sans); font-weight: 700; }

/* Spec table — Inter */
.spec-row { font-family: var(--sans); }

/* Product tab extra rounding */
.prod-tab:first-child { border-radius: 22px 0 0 0; }
.prod-tab:last-child  { border-radius: 0 22px 0 0; }

/* pd-left padding tweak */
.pd-left { padding: 48px 44px; }

/* Softer separator lines */
.prod-detail { gap: 1px; }

/* pd-highlights softer */
.pd-hl {
  border-radius: 12px;
  background: var(--off);
  border-color: var(--line);
}

/* ── Product Animation ── */
.pd-anim-right {
  display: flex !important;
  flex-direction: column;
  background: var(--white) !important;
  padding: 32px 32px 28px !important;
  gap: 20px;
}
.pd-anim-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-anim-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.anim-replay-btn {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 5px 12px;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}
.anim-replay-btn:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--bark);
}

/* ── Colour Selector ── */
.colour-selector {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.cs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
  margin-bottom: 12px;
}
.cs-swatches {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cs-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 6px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  background: var(--off);
  cursor: pointer;
  transition: all 0.18s;
  min-width: 56px;
  font-family: var(--sans);
}
.cs-swatch:hover {
  border-color: var(--stone2);
  background: var(--white);
}
.cs-swatch.active {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(107,143,113,0.2);
}
.cs-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
  display: block;
  flex-shrink: 0;
}
.cs-custom {
  background: linear-gradient(135deg, #e8d4f0 0%, #d0e8f0 50%, #f0e8d0 100%);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1.5px dashed var(--stone2);
}
.cs-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  max-width: 48px;
}
.cs-current {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-cur-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
  display: inline-block;
}
.cs-cur-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  font-family: var(--mono);
}

/* ── Dual Colour Selector ── */
.dual-cs { }
.dual-cs-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.dcs-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--off);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.18s;
}
.dcs-tab:hover { border-color: var(--stone2); color: var(--ink2); }
.dcs-tab.active {
  border-color: var(--sage);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(107,143,113,0.15);
}
.dcs-tab .dcs-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* ── Quote Form ── */
.quote-sec {
  padding: var(--section-py) var(--page-px);
  background: #111210;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.quote-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quote-left { padding-top: 8px; }
.quote-contact-hints {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.qch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.qch-item span:first-child { font-size: 16px; }
.qch-item a {
  color: var(--sage-l);
  text-decoration: none;
}
.qch-item a:hover { text-decoration: underline; }

.quote-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.qf-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.qf-input::placeholder { color: rgba(255,255,255,0.3); }
.qf-input:focus { border-color: var(--sage); }
.qf-select {
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  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='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.qf-select option { background: #1A1A18; color: #FFFFFF; }
.qf-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.qf-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.qf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.qf-error {
  font-size: 12px;
  color: #F0856A;
  font-family: var(--sans);
}
.qf-note {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-family: var(--sans);
  line-height: 1.5;
  margin-top: -4px;
}
.qf-success {
  text-align: center;
  padding: 40px 20px;
}
.qf-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.qf-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-family: var(--display);
}
.qf-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-family: var(--sans);
}

@media (max-width: 1100px) {
  .quote-wrap { grid-template-columns: 1fr; gap: 40px; }
  .qf-row { grid-template-columns: 1fr; }
}

/* ── Glass Static Visuals ── */
.glass-static-wrap {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.glass-static-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}
.glass-static-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off);
  border-radius: 14px;
  padding: 8px;
  border: 1px solid var(--line);
}
.glass-static-svg {
  width: 100%;
  height: auto;
  display: block;
}
.glass-specs-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.glass-spec-col { }
.gs-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: var(--mono);
  margin-bottom: 10px;
}
.gs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
  gap: 8px;
}
.gs-row span { color: var(--muted); font-family: var(--sans); }
.gs-row strong { color: var(--ink); font-weight: 600; font-family: var(--sans); text-align: right; }
