/* ─── RESET & TOKENS ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f8f7f5;
  --bg-white: #ffffff;
  --bg-warm:  #f2f0eb;
  --black:    #111111;
  --black-d:  #0a0a0a;
  --t1:       #111111;
  --t2:       #555555;
  --t3:       #999999;
  --border:   #e2dfd8;
  --gold:     #febc21;
  --gold-d:   #d9a000;
  --nav-h:    76px;
  --pad:      clamp(72px, 9vw, 128px);
  --r:        14px;
  --font:     'Inter', -apple-system, sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
textarea { resize: vertical; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.bg-warm { background: var(--bg-warm); }
.bg-black { background: var(--black-d); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.tag.gold { color: var(--gold); }

.display-xl {
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.display-md {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.display-sm {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.white { color: #fff; }
.gold { color: var(--gold); }

.body-lg {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--t2);
  line-height: 1.75;
}
.body-md {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 520px;
}
.body-lg.light, .body-md.light { color: rgba(255,255,255,0.55); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black);
  padding: 13px 26px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(254,188,33,.3); }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--t1);
  padding: 13px 26px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--black); }

.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--black);
  padding: 14px 30px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-d); transform: translateY(-1px); }

.btn-nav {
  display: inline-block;
  background: var(--gold); color: var(--black);
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--gold-d); }

.btn-playstore {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black-d); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.btn-playstore:hover { background: #222; transform: translateY(-1px); }

.btn-submit { width: 100%; justify-content: center; padding: 15px; border-radius: 10px; font-size: 15px; margin-top: 6px; }

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,247,245,0.88);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: var(--nav-h);
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 1px 20px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 52px; width: auto; display: block; mix-blend-mode: multiply; }
.nav-sep { display: block; width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.nav-aps-img { height: 44px; width: auto; display: block; mix-blend-mode: multiply; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--t2); transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }

.nav-end { display: flex; align-items: center; gap: 12px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

.mobile-nav {
  display: none; background: rgba(248,247,245,0.97);
  backdrop-filter: blur(20px);
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  border-bottom: 1px solid var(--border);
  padding: 12px clamp(20px,4vw,48px) 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a { display: block; padding: 13px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--t1); }
.mobile-nav a.mobile-cta { border: none; color: var(--gold); font-weight: 700; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 80px) clamp(20px, 4vw, 48px) 100px clamp(32px, 6vw, 120px);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-left { max-width: 680px; }
.hero-left .hero-body { max-width: 480px; }

.hero-wm { display: none; }

/* white version for dark-background pages (loyalty hero) */
.loyalty-page-hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 1; }
.hero-display {
  font-size: clamp(54px, 7.5vw, 108px);
  font-weight: 900; line-height: 0.97;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-body {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--t2); line-height: 1.65;
  margin-bottom: 40px; max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { display: flex; flex-direction: column; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-n { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.stat-l { font-size: 12px; color: var(--t3); font-weight: 500; margin-top: 2px; }
.stat-div { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ─── TICKER ─────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 20px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-track span { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); }
.ticker-track .dot { color: var(--gold); font-size: 14px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SERIES INTRO ───────────────────────────────────── */
.series-intro { padding: var(--pad) 0; }
.series-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.series-intro-left .display-md { margin-top: 4px; }
.series-intro-right { padding-bottom: 8px; }
.series-intro-right .body-lg { margin-bottom: 28px; }

.series-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block;
  background: var(--bg-warm); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--t1);
}
.series-chips.dark { }
.chip-dark {
  display: inline-block;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75);
}

/* ─── PRODUCT SECTIONS ───────────────────────────────── */
.product-section { padding: var(--pad) 0; border-top: 1px solid var(--border); }
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.product-grid-rev { direction: rtl; }
.product-grid-rev > * { direction: ltr; }

.product-series-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.product-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.product-desc { font-size: 16px; color: var(--t2); line-height: 1.75; margin-bottom: 36px; }

/* Specs */
.spec-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.spec-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spec-k { color: var(--t2); font-weight: 500; }
.spec-v { color: var(--t1); font-weight: 600; text-align: right; }

/* Pricing block */
.pricing-block { margin-bottom: 36px; }
.pricing-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 14px;
}
.price-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.finish-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.finish-dot.nickel { background: linear-gradient(135deg, #c0b090, #e8d8b0); border: 1px solid #bbb; }
.finish-dot.black { background: #222; border: 1px solid #444; }
.finish-dot.ss { background: linear-gradient(135deg, #bbb, #e0e0e0); border: 1px solid #ccc; }
.finish-name { font-size: 14px; font-weight: 500; color: var(--t2); flex: 1; }
.price-line { flex: 1; height: 1px; background: var(--border); max-width: 60px; }
.price-val { font-size: 18px; font-weight: 700; color: var(--t1); }

/* ─── DIAGRAMS ───────────────────────────────────────── */
.diagram-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
}
.angle-svg { width: 100%; max-width: 200px; display: block; margin: 0 auto; }
.runner-svg { width: 100%; display: block; }
.cross-svg { width: 100%; display: block; }
.diagram-note {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t3);
  text-align: center; margin-top: 16px; margin-bottom: 24px;
}
.diagram-meta { border-top: 1px solid var(--border); padding-top: 24px; }

/* Use case grid */
.use-case-grid { display: flex; gap: 24px; }
.use-case { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.use-case span { font-size: 12px; font-weight: 600; color: var(--t2); text-align: center; }

/* Diagram badge */
.diagram-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-warm); border-radius: 10px; padding: 14px 16px;
  margin-top: 16px;
}
.badge-text { font-size: 14px; font-weight: 700; color: var(--t1); line-height: 1.3; }

/* Load visual */
.load-visual {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--border); margin-top: 24px; padding-top: 20px;
}
.load-bar-wrap {
  flex: 1; height: 8px; background: var(--bg-warm);
  border-radius: 4px; overflow: hidden;
}
.load-bar {
  height: 100%; width: 85%;
  background: linear-gradient(90deg, var(--gold), #ffd050);
  border-radius: 4px;
  animation: loadIn 1.5s var(--ease) forwards;
}
@keyframes loadIn { from { width: 0; } to { width: 85%; } }
.load-num { font-size: 18px; font-weight: 800; color: var(--t1); display: block; }
.load-label { font-size: 11px; font-weight: 500; color: var(--t3); }

/* ─── OVERLAY TYPES ──────────────────────────────────── */
.overlay-section { padding: var(--pad) 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .body-md { margin: 16px auto 0; }
.overlay-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.overlay-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.overlay-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); transform: translateY(-3px); }
.overlay-svg { width: 100%; max-width: 140px; margin: 0 auto 20px; display: block; }
.overlay-label { display: flex; align-items: baseline; gap: 8px; justify-content: center; margin-bottom: 10px; }
.overlay-deg { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; color: var(--t1); }
.overlay-name { font-size: 14px; font-weight: 600; color: var(--t2); }
.overlay-desc { font-size: 13px; color: var(--t3); line-height: 1.6; }

/* ─── FINISHES ───────────────────────────────────────── */
.finishes-section { padding: var(--pad) 0; border-top: 1px solid var(--border); }
.finishes-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.finishes-swatches { display: flex; flex-direction: column; gap: 24px; }
.swatch-item { display: flex; align-items: center; gap: 20px; }
.swatch {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.swatch-nickel { background: linear-gradient(135deg, #c0b090 0%, #f0e0c0 50%, #b8a880 100%); }
.swatch-black { background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 50%, #111 100%); }
.swatch-ss { background: linear-gradient(135deg, #aaa 0%, #e0e0e0 50%, #b0b0b0 100%); }
.swatch-name { font-size: 17px; font-weight: 700; color: var(--t1); display: block; }
.swatch-note { font-size: 13px; color: var(--t3); display: block; margin-top: 2px; }

/* ─── DENVER SIZE CHIPS ──────────────────────────────── */
.size-wrap { margin-bottom: 36px; }
.size-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.size-chip {
  display: inline-block;
  background: var(--bg-warm); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 700; color: var(--t1);
}
.size-unit { font-size: 12px; color: var(--t3); font-weight: 600; align-self: center; }

/* ─── PRICING TABLE ──────────────────────────────────── */
.pricing-section { padding: var(--pad) 0; }
.table-wrap { overflow-x: auto; margin-bottom: 20px; }
.price-table { width: 100%; border-collapse: collapse; min-width: 400px; }
.price-table thead th {
  text-align: left;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--t3);
  padding: 14px 20px; border-bottom: 2px solid var(--border);
}
.price-table tbody td {
  padding: 15px 20px;
  font-size: 15px; color: var(--t1); font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.price-table tbody tr:hover td { background: var(--bg-white); }
.price-table tbody td:first-child { font-weight: 700; }
.price-table tbody td:not(:first-child) { font-weight: 600; color: var(--t1); }
.th-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.th-dot.zinc { background: linear-gradient(135deg, #c0c0c0, #e8e8e8); border: 1px solid #bbb; }
.th-dot.blk { background: #222; }
.table-note { font-size: 13px; color: var(--t3); }

/* ─── CATALOGUE ──────────────────────────────────────── */
.catalogue-section { padding: var(--pad) 0; border-top: 1px solid var(--border); }
.catalogue-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cat-text .body-md { margin-bottom: 0; }
.cat-btn { margin-top: 36px; }
.cat-visual { display: flex; justify-content: center; }
.cat-book { position: relative; }
.cat-cover {
  width: 240px; background: var(--black-d);
  border-radius: 12px; padding: 36px 28px;
  min-height: 320px; display: flex; flex-direction: column;
  justify-content: space-between;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
  transform: rotate(-2.5deg);
  transition: transform 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.cat-book:hover .cat-cover { transform: rotate(0deg); }
.cat-cover-logo { margin-bottom: 8px; }
.cat-logo-img { height: 28px; width: auto; }
.cat-cover-text p { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.cat-spine-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 5px; background: var(--gold);
}

/* ─── LOYALTY APP ────────────────────────────────────── */
.loyalty-section { padding: var(--pad) 0; background: var(--bg-white); border-top: 1px solid var(--border); }
.loyalty-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.loyalty-text .display-sm { margin-bottom: 20px; }
.loyalty-text .body-md { margin-bottom: 40px; }
.loyalty-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.lf-item { display: flex; gap: 14px; align-items: flex-start; }
.lf-icon { color: var(--gold); font-size: 8px; margin-top: 5px; flex-shrink: 0; }
.lf-title { font-size: 15px; font-weight: 700; color: var(--t1); margin-bottom: 4px; }
.lf-body { font-size: 14px; color: var(--t2); line-height: 1.6; }

/* Phone mockup */
.loyalty-phone { display: flex; justify-content: center; }
.phone-mockup {
  width: 280px;
  background: var(--black-d);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.1);
}
.phone-screen {
  background: var(--bg);
  border-radius: 26px;
  padding: 20px 16px;
  min-height: 480px;
  overflow: hidden;
}
.app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.app-logo { height: 20px; width: auto; }
.app-points { font-size: 12px; font-weight: 700; color: var(--gold); background: rgba(254,188,33,0.12); padding: 4px 10px; border-radius: 20px; }
.app-card {
  background: var(--black-d); border-radius: 14px; padding: 20px;
  margin-bottom: 16px;
}
.app-card-label { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.app-card-value { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.app-card-sub { font-size: 12px; color: var(--gold); font-weight: 600; }
.app-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
.aq-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--bg-white); border-radius: 10px; padding: 10px 4px;
  font-size: 10px; font-weight: 600; color: var(--t2);
}
.aq-icon { font-size: 16px; }
.app-recent-title { font-size: 12px; font-weight: 700; color: var(--t3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.ar-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.ar-item span:first-child { color: var(--t2); }
.ar-pts { font-weight: 700; color: #22c55e; }
.ar-pts.red { color: #ef4444; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section { padding: var(--pad) 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0;
  font-size: 16px; font-weight: 600; color: var(--t1);
  transition: color 0.2s;
}
.faq-q::after {
  content: '+'; font-size: 20px; font-weight: 300;
  color: var(--t3); flex-shrink: 0; transition: transform 0.3s;
}
.faq-q[aria-expanded="true"] { color: var(--t1); }
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a {
  display: none; padding-bottom: 20px;
}
.faq-a.open { display: block; }
.faq-a p { font-size: 15px; color: var(--t2); line-height: 1.75; }

/* ─── CONTACT ────────────────────────────────────────── */
.contact-section { padding: var(--pad) 0; border-top: 1px solid var(--border); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}
.contact-text .display-sm { margin-bottom: 16px; }
.contact-text .body-md { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.cd-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--t2); transition: color 0.2s;
}
.cd-item:hover { color: var(--t1); }
.cd-item svg { color: var(--gold); flex-shrink: 0; }

/* Form */
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form-wrap { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 13px; font-weight: 600; color: var(--t1); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: var(--font); color: var(--t1);
  background: var(--bg); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(254,188,33,.15);
}
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-note { font-size: 12px; color: var(--t3); text-align: center; margin-top: 6px; }
.form-success { text-align: center; padding: 48px 24px; }
.fs-icon { width: 56px; height: 56px; background: var(--gold); color: var(--black); border-radius: 50%; font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--t2); font-size: 15px; }

/* ─── DEALER STRIP ───────────────────────────────────── */
.dealer-strip { background: var(--black-d); padding: var(--pad) 0; }
.dealer-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.dealer-strip-inner .display-sm { margin-bottom: 12px; }
.dealer-strip-inner .body-md { max-width: none; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--black-d); padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--black); }
.footer-col h6 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── PRODUCT FAMILY CARDS (HOME) ───────────────────── */
.product-families {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 68vh;
  border-top: 1px solid var(--border);
}
.pf-card {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: clamp(40px,5vw,72px) clamp(28px,4vw,56px);
  gap: 32px;
  transition: opacity 0.3s;
  text-decoration: none;
}
.pf-card:hover { opacity: 0.92; }
.pf-card:hover .pf-cta { letter-spacing: 0.02em; }
.pf-dark { background: var(--black-d); border-right: 1px solid rgba(255,255,255,0.06); }
.pf-light { background: var(--bg-warm); }
.pf-inner { position: relative; z-index: 1; display: flex; flex-direction: column; max-width: 300px; }
.pf-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.pf-tag.gold { color: var(--gold); }
.pf-title { font-size: clamp(28px,3.5vw,46px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; color: #fff; margin-bottom: 14px; }
.pf-title.dark { color: var(--t1); }
.pf-sub { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
.pf-sub.dark { color: var(--t2); }
.pf-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.pf-specs span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); }
.pf-specs.dark span { color: var(--t2); background: rgba(0,0,0,0.06); border-color: var(--border); }
.pf-cta { font-size: 14px; font-weight: 700; color: var(--gold); transition: letter-spacing 0.3s; }
.pf-cta.dark { color: var(--black); }
.pf-visual-area { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pf-svg { width: 140px; opacity: 0.85; }
.pf-runner-svg { width: 220px; opacity: 0.9; }
.pf-wm {
  position: absolute; bottom: -24px; right: -16px;
  font-size: clamp(80px,10vw,140px); font-weight: 900; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04); pointer-events: none; user-select: none; line-height: 1; z-index: 0;
}
.pf-wm.dark { color: rgba(0,0,0,0.05); }

/* ─── WHY SECTION (HOME) ─────────────────────────────── */
.why-section { padding: var(--pad) 0; border-top: 1px solid var(--border); }
.why-header { margin-bottom: 64px; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.why-item { padding: 36px 28px; border-right: 1px solid var(--border); }
.why-item:last-child { border-right: none; }
.why-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 20px; }
.why-title { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.why-body { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ─── LOYALTY TEASER (HOME) ──────────────────────────── */
.loyalty-teaser { padding: var(--pad) 0; }
.lt-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.lt-text .display-sm { margin-bottom: 16px; }
.lt-text .body-md { margin-bottom: 0; }
.lt-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; flex-shrink: 0; }
.lt-play { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); padding: 8px 0; transition: color 0.2s; }
.lt-play:hover { color: rgba(255,255,255,0.75); }

/* ─── PAGE HERO (INTERIOR PAGES) ────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--t3); margin-bottom: 28px;
}
.breadcrumb a { color: var(--t3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--t1); }
.breadcrumb span { color: var(--t1); font-weight: 600; }
.breadcrumb-sep { color: var(--border); }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.page-hero-title { font-size: clamp(44px,6vw,80px); font-weight: 900; line-height: 0.97; letter-spacing: -0.035em; margin-bottom: 20px; }
.page-hero-sub { font-size: 16px; color: var(--t2); line-height: 1.7; max-width: 400px; }
.page-hero-right { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding-bottom: 4px; }

/* Product page in-page anchor nav */
.product-nav { position: sticky; top: var(--nav-h); z-index: 90; background: rgba(248,247,245,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.product-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.product-nav-inner::-webkit-scrollbar { display: none; }
.pn-link { display: block; padding: 16px 20px; font-size: 13px; font-weight: 600; color: var(--t3); border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.2s, border-color 0.2s; }
.pn-link:hover { color: var(--t1); }
.pn-link.active { color: var(--t1); border-bottom-color: var(--gold); }

/* Full pricing table for alaska page */
.alaska-price-table { width: 100%; border-collapse: collapse; }
.alaska-price-table th { text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); padding: 14px 20px; border-bottom: 2px solid var(--border); }
.alaska-price-table td { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--border); }
.alaska-price-table td:first-child { font-weight: 700; color: var(--t1); }
.alaska-price-table td:not(:first-child) { font-weight: 600; }
.alaska-price-table tbody tr:hover td { background: var(--bg-white); }

/* Contact page */
.contact-page-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; padding: var(--pad) 0; }
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; }
.contact-card h4 { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 16px; }
.contact-card-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--t2); margin-bottom: 10px; }
.contact-card-item svg { color: var(--gold); flex-shrink: 0; }
.contact-card-item:last-child { margin-bottom: 0; }

/* FAQ page */
.faq-page { padding: var(--pad) 0; }
.faq-categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.faq-cat { padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); color: var(--t2); background: transparent; transition: all 0.2s; }
.faq-cat.active, .faq-cat:hover { background: var(--black); color: #fff; border-color: var(--black); }

/* Loyalty page */
.loyalty-page-hero { padding: calc(var(--nav-h) + 72px) 0 0; background: var(--black-d); }
.loyalty-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; padding-bottom: 72px; }
.loyalty-features-page { padding: var(--pad) 0; }
.lf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lf-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; }
.lf-card-icon { width: 44px; height: 44px; background: rgba(254,188,33,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.lf-card-icon svg { color: var(--gold); }
.lf-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.lf-card p { font-size: 14px; color: var(--t2); line-height: 1.65; }
.how-it-works { padding: var(--pad) 0; background: var(--bg-warm); }
.hiw-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; position: relative; }
.hiw-step { padding: 0 24px; text-align: center; }
.hiw-num { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--black); font-size: 17px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.hiw-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.hiw-body { font-size: 14px; color: var(--t2); line-height: 1.6; }

/* back link */
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--t2); transition: color 0.2s; margin-bottom: 40px; }
.back-link:hover { color: var(--t1); }

/* alaska page hero with product image */
.alaska-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 32px; }
.alaska-hero-text { }
.hero-tag-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.hero-tag-row .tag { margin-bottom: 0; }
.hero-warranty-badge { height: 52px; width: auto; mix-blend-mode: multiply; }
.alaska-hero-img { display: flex; align-items: center; justify-content: center; }
.alaska-product-img { width: 100%; max-width: 320px; height: auto; display: block; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.14)); }

/* hero stat row (page heroes) */
.hero-stat-row { display: flex; gap: 0; margin-bottom: 20px; }
.hs-item { display: flex; flex-direction: column; padding-right: 24px; margin-right: 24px; border-right: 1px solid var(--border); }
.hs-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hs-n { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--t1); }
.hs-l { font-size: 11px; color: var(--t3); font-weight: 500; margin-top: 2px; }

/* ideal-for chips */
.ideal-for { margin-bottom: 28px; }
.ideal-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.ideal-chip { display: inline-block; background: rgba(254,188,33,0.1); border: 1px solid rgba(254,188,33,0.25); padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--t1); }

/* comparison note */
.comparison-note { background: var(--bg-warm); border-radius: 10px; padding: 16px; margin-top: 0; }
.cn-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.cn-body { font-size: 13px; color: var(--t2); line-height: 1.65; }

/* wide open banner */
.wide-open-banner { display: flex; gap: 12px; align-items: flex-start; background: rgba(254,188,33,0.08); border: 1px solid rgba(254,188,33,0.2); border-radius: 10px; padding: 16px; }
.wob-title { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 4px; }
.wob-body { font-size: 13px; color: var(--t2); line-height: 1.6; }

/* install steps (alaska page diagram) */
.install-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.is-step { display: flex; gap: 10px; align-items: flex-start; }
.is-n { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); color: var(--black); font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.is-t { font-size: 13px; color: var(--t2); line-height: 1.55; }

/* How works grid (denver page) */
.how-works-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 0; }
.hw-step { padding: 28px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r); }
.hw-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--black); font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hw-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.hw-body { font-size: 13px; color: var(--t2); line-height: 1.65; }

/* Runner features list */
.runner-features { display: flex; flex-direction: column; gap: 10px; }
.rf-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--t2); }

/* Finish compare (denver finishes) */
.finish-compare { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.fc-item { display: flex; gap: 14px; align-items: flex-start; }
.fc-swatch { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.fc-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.fc-note { font-size: 13px; color: var(--t2); line-height: 1.6; }

/* Install grid (denver install) */
.install-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.install-card { padding: 32px 24px; border-right: 1px solid var(--border); }
.install-card:last-child { border-right: none; }
.ic-n { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 14px; }
.ic-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.ic-body { font-size: 13px; color: var(--t2); line-height: 1.65; }

/* FAQ group */
.faq-group { margin-bottom: 60px; }
.faq-group-title { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding-bottom: 16px; border-bottom: 2px solid var(--gold); margin-bottom: 0; display: inline-block; }
.faq-list { max-width: 100%; }
.faq-cta { border-top: 1px solid var(--border); padding-top: 60px; margin-top: 20px; }

/* nav active */
.nav-links a.active { color: var(--black); font-weight: 700; }

/* ─── LOYALTY PAGE ────────────────────────────────────── */
.loyalty-page-hero { background: var(--black); padding: calc(var(--nav-h) + 72px) 0 80px; }
.loyalty-page-hero .tag { color: var(--gold); }
.loyalty-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 32px; }
.loyalty-features-page { padding: var(--pad) 0; }

/* Phone mockup */
.phone-mockup { width: 280px; background: #111; border-radius: 32px; padding: 16px; box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08); position: relative; }
.phone-screen { background: #fff; border-radius: 20px; overflow: hidden; padding: 16px; }
.app-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }
.app-logo { height: 20px; }
.app-points { font-size: 13px; font-weight: 700; color: var(--black); }
.app-card { background: linear-gradient(135deg, #111 0%, #333 100%); border-radius: 14px; padding: 18px; color: #fff; margin-bottom: 14px; }
.app-card-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.app-card-value { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--gold); margin-bottom: 2px; }
.app-card-sub { font-size: 11px; color: rgba(255,255,255,0.4); }
.app-quick { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 14px; }
.aq-item { background: #f8f7f5; border-radius: 10px; padding: 10px 6px; text-align: center; }
.aq-icon { font-size: 16px; margin-bottom: 4px; }
.aq-item span { font-size: 9px; font-weight: 600; color: #555; display: block; }
.app-recent { }
.app-recent-title { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #999; margin-bottom: 10px; }
.ar-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 12px; color: #333; }
.ar-item:last-child { border-bottom: none; }
.ar-pts { font-weight: 700; color: #22c55e; }
.ar-pts.red { color: #ef4444; }

/* Play store button */
.btn-playstore { display: inline-flex; align-items: center; gap: 10px; background: var(--black); color: #fff; padding: 14px 24px; border-radius: 50px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.btn-playstore:hover { background: #333; transform: translateY(-1px); }

/* ─── CONTACT PAGE ────────────────────────────────────── */
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-info-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 0; }
.contact-form-wrap { background: var(--bg-white); border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.contact-card { background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.contact-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.contact-card-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.contact-card-item:last-child { border-bottom: none; }
.contact-card-item a { color: var(--t1); text-decoration: none; font-weight: 500; }
.contact-card-item a:hover { color: var(--gold); }

/* Form styles */
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--t2); }
.fg input, .fg select, .fg textarea { background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-family: var(--font); font-size: 14px; color: var(--t1); outline: none; transition: border-color 0.2s; width: 100%; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; }
.btn-submit { margin-top: 4px; width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--t3); margin-top: 6px; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px; text-align: center; }
.fs-icon { width: 56px; height: 56px; background: #22c55e; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; margin: 0 auto 20px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--t2); }

/* ─── CATALOGUE SECTION ───────────────────────────────── */
.catalogue-section { padding: var(--pad) 0; }
.catalogue-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cat-text { }
.cat-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; }
.cat-book { display: flex; justify-content: center; }
.cat-cover { width: 240px; height: 320px; background: var(--black); border-radius: 6px 16px 16px 6px; padding: 32px 28px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 8px 12px 40px rgba(0,0,0,0.18), -4px 0 0 0 #1e1e1e; position: relative; overflow: hidden; }
.cat-cover::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background: linear-gradient(135deg, transparent 40%, rgba(254,188,33,0.04)); }
.cat-cover-logo img { height: 24px; filter: brightness(0) invert(1); }
.cat-cover-text p { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.cat-spine-line { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--gold); border-radius: 6px 0 0 6px; }
.cat-logo-img { height: 20px; }

/* Chips reused on denver page */
.series-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-block; background: rgba(17,17,17,0.06); border: 1px solid var(--border); padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--t1); }

/* Load bar (denver) */
.load-visual { display: flex; gap: 14px; align-items: center; margin-top: 16px; }
.load-bar-wrap { flex: 1; height: 6px; background: var(--border); border-radius: 4px; overflow: hidden; }
.load-bar { height: 100%; width: 65%; background: var(--gold); border-radius: 4px; }
.load-num { font-size: 18px; font-weight: 800; color: var(--t1); }
.load-label { font-size: 11px; color: var(--t3); }
.load-info { display: flex; flex-direction: column; }

/* ─── BRAND SPLASH ───────────────────────────────────── */
.brand-splash {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}
.brand-splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  will-change: transform, opacity;
  transition: transform 0.05s linear, opacity 0.05s linear;
}
.bs-logo {
  width: clamp(260px, 38vw, 520px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.bs-aps {
  width: clamp(180px, 26vw, 360px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.bs-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  animation: bsHintPulse 2.2s ease-in-out infinite;
}
@keyframes bsHintPulse { 0%,100%{opacity:0.4;transform:translateX(-50%) translateY(0)} 50%{opacity:1;transform:translateX(-50%) translateY(-4px)} }

/* ─── HINGE NAME BANNER ──────────────────────────────── */
.hinge-name-banner { background: var(--black); padding: 20px 0; text-align: center; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 32px; }
.hinge-warranty-badge { height: 80px; width: auto; mix-blend-mode: screen; }
.hinge-name-text {
  display: inline-block;
  font-family: 'Norwester', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #ffffff;
  text-shadow: 0 0 30px #febc21, 0 0 60px rgba(254,188,33,0.35), 0 0 8px #febc21;
  line-height: 1;
}

/* ─── ZERO SLAM TECHNOLOGY ───────────────────────────── */
.zero-slam-section { padding: var(--pad) 0; background: var(--bg-white); border-top: 1px solid var(--border); }
.zero-slam-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.zs-image { display: flex; align-items: center; justify-content: center; }
.zs-img { width: 100%; max-width: 480px; height: auto; display: block; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.zs-features { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.zs-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--t2); font-weight: 500; }
.zs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ─── ACCESSORIES SECTION ────────────────────────────── */
.accessories-section { padding: var(--pad) 0; }
.accessories-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.accessories-header { text-align: left; }
.acc-header-img { height: 72px; width: auto; display: block; margin-bottom: 20px; mix-blend-mode: multiply; }
.acc-sub { font-size: 16px; color: var(--t2); max-width: 380px; line-height: 1.7; }
.accessories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.acc-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 24px; text-align: center; }
.acc-img { width: auto; max-width: 100%; height: 160px; object-fit: contain; display: block; margin: 0 auto 20px; }
.acc-warranty-img { height: 120px; mix-blend-mode: multiply; }
.acc-name { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.acc-desc { font-size: 14px; color: var(--t2); line-height: 1.65; }

/* ─── FOOTER APS + CONTACT ───────────────────────────── */
.footer-aps-img { height: 48px; width: auto; display: block; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.footer-contact a, .footer-contact span { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .series-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .finishes-inner { grid-template-columns: 1fr; gap: 48px; }
  .catalogue-inner { grid-template-columns: 1fr; gap: 48px; }
  .loyalty-inner { grid-template-columns: 1fr; gap: 56px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .product-grid { gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item { border-bottom: 1px solid var(--border); }
  .why-item:nth-child(2) { border-right: none; }
  .lf-grid { grid-template-columns: 1fr 1fr; }
  .hiw-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .loyalty-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .alaska-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-page-inner { grid-template-columns: 1fr; gap: 48px; }
  .lt-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-families { min-height: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-sep { display: none; }
  .nav-aps-img { display: none; }
  .logo-img { height: 40px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-grid-rev { direction: ltr; }
  .overlay-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat { padding: 0 16px; }
  .stat-n { font-size: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .dealer-strip-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px 20px; }
  .use-case-grid { gap: 12px; }
  .phone-mockup { width: 240px; }
  .cat-cover { display: none; }
  .product-families { grid-template-columns: 1fr; }
  .pf-dark { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pf-card { min-height: 340px; }
  .pf-visual-area { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; }
  .lf-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .loyalty-page-hero .breadcrumb { display: none; }
}

@media (max-width: 480px) {
  .hero-display { font-size: 46px; }
  .display-md { font-size: 38px; }
  .display-sm { font-size: 30px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-div { display: none; }
  .stat { padding: 0; }
  .overlay-svg { max-width: 110px; }
}
