/* === Diamond Vault Design System === */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --vault-black: #0a0a0a;
  --vault-dark: #141414;
  --vault-charcoal: #1a1a1a;
  --vault-gold: #c9a84c;
  --vault-gold-light: #e4cc7a;
  --vault-cream: #f5f0e8;
  --vault-white: #fafaf8;
  --vault-gray: #6b6b6b;
  --vault-leather: #8b5e3c;
  --vault-leather-dark: #5c3a1e;
  --vault-red: #c44c4c;
  --vault-green: #4cc96a;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--vault-black);
  color: var(--vault-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.syne { font-family: 'Syne', sans-serif; }

a { color: inherit; text-decoration: none; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-brand {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--vault-cream);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vault-gray);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--vault-gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--vault-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--vault-cream);
  transition: 0.2s;
}

/* === PAGE HERO === */
.page-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, var(--vault-black) 0%, var(--vault-dark) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
}

.page-hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, var(--vault-cream) 40%, var(--vault-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--vault-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === CATALOG FILTERS === */
.filters {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: var(--vault-dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  position: sticky;
  top: 60px;
  z-index: 100;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 100px;
  background: transparent;
  color: var(--vault-gray);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--vault-gold);
  color: var(--vault-cream);
}

.filter-btn.active {
  background: var(--vault-gold);
  border-color: var(--vault-gold);
  color: var(--vault-black);
  font-weight: 600;
}

/* === PRODUCT GRID === */
.products-section {
  padding: 3rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 0.75rem;
  padding-top: 2rem;
}

.category-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--vault-charcoal);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.product-card-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-visual .glove-icon {
  font-size: 4rem;
  opacity: 0.15;
}

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--vault-gold);
  color: var(--vault-black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

.product-card-sport {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--vault-gold);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-position {
  font-size: 0.7rem;
  color: var(--vault-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--vault-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.product-card-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.product-card-spec {
  font-size: 0.7rem;
  color: var(--vault-gray);
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 4px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-card-price .current {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vault-cream);
}

.product-card-price .compare {
  font-size: 0.8rem;
  color: var(--vault-gray);
  text-decoration: line-through;
}

.product-card-link {
  font-size: 0.75rem;
  color: var(--vault-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}

.product-card:hover .product-card-link {
  gap: 0.6rem;
}

/* === PRODUCT DETAIL === */
.product-detail {
  padding: 7rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--vault-gray);
  margin-bottom: 3rem;
}

.product-breadcrumb a {
  color: var(--vault-gray);
  transition: color 0.2s;
}

.product-breadcrumb a:hover {
  color: var(--vault-gold);
}

.product-breadcrumb .sep {
  opacity: 0.3;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-visual {
  aspect-ratio: 1;
  background: var(--vault-charcoal);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-visual .glove-icon-lg {
  font-size: 8rem;
  opacity: 0.1;
}

.product-visual-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.35rem 1rem;
  background: var(--vault-gold);
  color: var(--vault-black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

.product-info-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 0.75rem;
}

.product-info h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.product-info-position {
  font-size: 0.9rem;
  color: var(--vault-gray);
  margin-bottom: 1.5rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--vault-cream);
}

.product-compare-price {
  font-size: 1.1rem;
  color: var(--vault-gray);
  text-decoration: line-through;
}

.product-savings {
  font-size: 0.8rem;
  color: var(--vault-gold);
  margin-bottom: 2rem;
}

.product-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 2.5rem;
}

/* Specs table */
.specs-table {
  width: 100%;
  margin-bottom: 2.5rem;
}

.specs-table .spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.specs-table .spec-label {
  font-size: 0.85rem;
  color: var(--vault-gray);
}

.specs-table .spec-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vault-cream);
}

/* Features list */
.features-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.features-list li {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.features-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.45rem;
  color: var(--vault-gold);
  top: 0.75rem;
}

/* CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--vault-gold);
  color: var(--vault-black);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--vault-gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--vault-gold);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--vault-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* === BUY NOW BUTTON === */
.product-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-buy-now {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, #c9a84c 0%, #e4cc7a 50%, #c9a84c 100%);
  background-size: 200% 200%;
  color: var(--vault-black);
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  text-decoration: none;
}

.btn-buy-now:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45);
}

.btn-buy-now:active {
  transform: translateY(0);
}

.btn-buy-now svg {
  flex-shrink: 0;
}

.btn-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--vault-gray);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.btn-tertiary:hover {
  color: var(--vault-cream);
}

/* === TRUST BADGES STRIP (above-fold, near price) === */
.trust-badges-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--vault-cream);
}

.trust-badge svg {
  color: var(--vault-gold);
  flex-shrink: 0;
}

/* === LEAD TIME BADGE (near price) === */
.lead-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  background: rgba(76, 201, 106, 0.1);
  border: 1px solid rgba(76, 201, 106, 0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--vault-green);
  letter-spacing: 0.03em;
  margin-left: 0.5rem;
}

.lead-time-badge svg {
  flex-shrink: 0;
}

/* === WHY DIAMOND VAULT — PDP comparison snippet === */
.pdp-compare-snippet {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--vault-charcoal);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
}

.pdp-compare-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 1rem;
}

.pdp-compare-table {
  width: 100%;
}

.pdp-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.pdp-compare-row:last-child {
  border-bottom: none;
}

.pdp-compare-col {
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.55);
  vertical-align: middle;
}

.pdp-compare-feature {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vault-gray);
}

.pdp-compare-header .pdp-compare-col {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vault-gray);
  padding-bottom: 0.5rem;
}

.pdp-compare-header .pdp-compare-us {
  color: var(--vault-gold);
}

.pdp-compare-us {
  background: rgba(201, 168, 76, 0.05);
}

.pdp-compare-win {
  color: var(--vault-cream);
  font-weight: 600;
}

.pdp-compare-lose {
  color: rgba(245, 240, 232, 0.4);
}

.pdp-compare-footnote {
  margin-top: 0.85rem;
  font-size: 0.7rem;
  color: var(--vault-gray);
  line-height: 1.5;
}

.pdp-compare-footnote a {
  color: var(--vault-gold);
  text-decoration: none;
}

.pdp-compare-footnote a:hover {
  text-decoration: underline;
}

/* === SOCIAL PROOF / QUALITY SECTION === */
.pdp-quality-section {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.pdp-quality-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 2rem;
  text-align: center;
}

.pdp-quality-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pdp-quality-card {
  padding: 1.75rem 1.5rem;
  background: var(--vault-charcoal);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
}

.pdp-quality-quote {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  font-style: italic;
  margin-bottom: 1rem;
}

.pdp-quality-attr {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vault-gold);
}

/* === STICKY MOBILE CTA === */
.sticky-mobile-cta {
  display: none; /* shown only on mobile via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1rem 1.25rem;
  background: var(--vault-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(20px);
}

.sticky-mobile-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--vault-cream);
  flex-shrink: 0;
}

.sticky-mobile-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #c9a84c 0%, #e4cc7a 50%, #c9a84c 100%);
  background-size: 200% 200%;
  color: var(--vault-black);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  transition: all 0.2s;
}

.sticky-mobile-btn:hover {
  background-position: 100% 100%;
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.45);
}

/* Trust badges below CTA */
.checkout-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--vault-gray);
  letter-spacing: 0.05em;
}

.trust-item svg {
  color: var(--vault-gold);
  flex-shrink: 0;
}

/* === CHECKOUT SUCCESS PAGE === */
.success-page {
  padding: 10rem 2rem 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    var(--vault-black);
}

.success-container {
  max-width: 600px;
  text-align: center;
}

.success-icon {
  margin-bottom: 2rem;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

.success-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 1.25rem;
}

.success-container h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, var(--vault-cream) 40%, var(--vault-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--vault-gray);
  margin-bottom: 3rem;
}

.success-details {
  text-align: left;
  margin-bottom: 3rem;
  background: var(--vault-charcoal);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.success-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.success-detail-item + .success-detail-item {
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.success-detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.success-detail-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--vault-cream);
  margin-bottom: 0.25rem;
}

.success-detail-item p {
  font-size: 0.85rem;
  color: var(--vault-gray);
  line-height: 1.5;
  margin: 0;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === STORY PAGE === */
.story-section {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.story-section + .story-section {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.story-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.7);
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.story-quote em {
  font-style: italic;
  color: var(--vault-gold-light);
}

.story-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-section p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 1.5rem;
}

.story-section p strong {
  color: var(--vault-cream);
  font-weight: 500;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.story-value {
  padding: 2rem;
  border-left: 2px solid rgba(201, 168, 76, 0.2);
}

.story-value h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.story-value p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--vault-gray);
}

/* === CONTACT / CUSTOM FORM === */
.form-section {
  padding: 3rem 2rem 6rem;
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vault-gray);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--vault-charcoal);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 4px;
  color: var(--vault-cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--vault-gold);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b6b6b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-select option {
  background: var(--vault-dark);
  color: var(--vault-cream);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  padding: 1.5rem;
  background: rgba(76, 201, 106, 0.1);
  border: 1px solid rgba(76, 201, 106, 0.3);
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--vault-green);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--vault-gray);
}

.form-error {
  padding: 1rem;
  background: rgba(196, 76, 76, 0.1);
  border: 1px solid rgba(196, 76, 76, 0.3);
  border-radius: 8px;
  color: var(--vault-red);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: none;
}

.form-error.show {
  display: block;
}

/* === FEATURED BANNER === */
.featured-banner {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--vault-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.featured-banner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-banner p {
  color: var(--vault-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* === SITE FOOTER === */
.site-footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  background: var(--vault-black);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.footer-logo {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--vault-gray);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--vault-gray);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--vault-cream);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--vault-gray);
}

/* === UTILITY === */
.text-gold { color: var(--vault-gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Product visual backgrounds by category */
.visual-infield { background: linear-gradient(135deg, #1a1610 0%, #141414 60%, rgba(201, 168, 76, 0.05) 100%); }
.visual-outfield { background: linear-gradient(135deg, #10141a 0%, #141414 60%, rgba(76, 130, 201, 0.05) 100%); }
.visual-catcher { background: linear-gradient(135deg, #1a1014 0%, #141414 60%, rgba(201, 76, 76, 0.05) 100%); }
.visual-first-base { background: linear-gradient(135deg, #141a10 0%, #141414 60%, rgba(76, 201, 106, 0.05) 100%); }
.visual-fastpitch { background: linear-gradient(135deg, #1a1018 0%, #141414 60%, rgba(201, 76, 168, 0.05) 100%); }
.visual-slowpitch { background: linear-gradient(135deg, #101a1a 0%, #141414 60%, rgba(76, 168, 201, 0.05) 100%); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state p {
  color: var(--vault-gray);
  font-size: 1rem;
}

/* === QUIZ CTA BANNER === */
.quiz-cta-banner {
  margin: 2.5rem auto;
  max-width: 800px;
  padding: 2rem 2.5rem;
  background: var(--vault-charcoal);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.quiz-cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  font-size: 1.5rem;
}

.quiz-cta-body {
  flex: 1;
}

.quiz-cta-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 0.4rem;
}

.quiz-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vault-cream);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.quiz-cta-text {
  font-size: 0.85rem;
  color: var(--vault-gray);
  line-height: 1.5;
}

.quiz-cta-action {
  flex-shrink: 0;
}

.quiz-cta-action .btn-outline-quiz {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--vault-gold);
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--vault-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.quiz-cta-action .btn-outline-quiz:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateX(2px);
}

/* Homepage hero CTA — full-width statement card */
.quiz-cta-homepage {
  margin: 0 auto;
  max-width: 900px;
  padding: 3rem;
  text-align: center;
  position: relative;
}

.quiz-cta-homepage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vault-gold), transparent);
}

.quiz-cta-homepage-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quiz-cta-homepage h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--vault-cream);
}

.quiz-cta-homepage p {
  font-size: 1rem;
  color: var(--vault-gray);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .filters {
    top: 52px;
    padding: 1rem 1rem;
    gap: 0.4rem;
  }

  .filter-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-visual {
    aspect-ratio: 4/3;
  }

  /* Mobile: trust badges wrap to 2 per row */
  .trust-badges-strip {
    gap: 0.4rem;
  }

  .trust-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.7rem;
  }

  /* Mobile: lead time badge drops below price row */
  .product-price-row {
    flex-wrap: wrap;
  }

  .lead-time-badge {
    margin-left: 0;
  }

  /* Mobile: PDP comparison snippet collapses */
  .pdp-compare-row {
    grid-template-columns: 1.4fr 1.1fr 1fr 1fr;
  }

  .pdp-compare-col {
    padding: 0.55rem 0.5rem;
    font-size: 0.75rem;
  }

  /* Mobile: quality cards stack */
  .pdp-quality-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pdp-quality-card {
    padding: 1.25rem 1.1rem;
  }

  /* Mobile: show sticky CTA — add bottom padding so sticky bar doesn't overlap content */
  .sticky-mobile-cta {
    display: flex;
  }

  .product-detail {
    padding-bottom: 7rem; /* extra space for sticky CTA */
  }

  .story-values {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products-section {
    padding: 2rem 1rem 4rem;
  }

  /* ============================== */
  /* COMPARE PAGE */
  /* ============================== */

  /* Hero */
  .compare-hero {
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .compare-hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 50% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
      linear-gradient(180deg, var(--vault-black) 0%, var(--vault-dark) 100%);
    z-index: 0;
  }

  .compare-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
  }

  .compare-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .compare-eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--vault-gold);
    margin-bottom: 1.5rem;
  }

  .compare-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, var(--vault-cream) 40%, var(--vault-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .compare-subtitle {
    font-size: 1.15rem;
    color: var(--vault-gray);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Comparison Table */
  .compare-table-section {
    padding: 4rem 2rem 5rem;
    background: var(--vault-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
  }

  .compare-table-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }

  .compare-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
  }

  .compare-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.9rem;
  }

  .compare-table th {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vault-gray);
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    white-space: nowrap;
  }

  .compare-table th.compare-th-dv {
    color: var(--vault-gold);
    border-bottom: 2px solid var(--vault-gold);
  }

  .compare-th-brand {
    width: 160px;
  }

  .compare-dv-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--vault-gold);
    color: var(--vault-black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
  }

  .compare-table tbody tr {
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
    transition: background 0.15s;
  }

  .compare-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.03);
  }

  .compare-table td {
    padding: 1rem 1.25rem;
    color: rgba(245, 240, 232, 0.7);
    vertical-align: top;
  }

  .compare-cell-dv {
    background: rgba(201, 168, 76, 0.04);
  }

  .compare-cell-dv strong {
    color: var(--vault-cream);
    font-weight: 600;
  }

  .compare-row-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vault-gray);
    white-space: nowrap;
    vertical-align: middle;
  }

  /* Quality badges */
  .compare-badge-consistent {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.25rem;
  }

  .compare-badge-consistent {
    background: rgba(76, 201, 106, 0.15);
    color: var(--vault-green);
  }

  .compare-badge-heritage {
    background: rgba(201, 168, 76, 0.15);
    color: var(--vault-gold);
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.25rem;
  }

  .compare-badge-variable {
    background: rgba(196, 76, 76, 0.15);
    color: #e07070;
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.25rem;
  }

  .compare-badge-good {
    background: rgba(100, 140, 201, 0.15);
    color: #7aa8e0;
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.25rem;
  }

  /* Verdict badges */
  .compare-verdict-dv {
    color: var(--vault-gold);
    font-weight: 600;
    font-size: 0.85rem;
  }

  .compare-verdict-heritage {
    color: rgba(245, 240, 232, 0.5);
    font-style: italic;
    font-size: 0.85rem;
  }

  .compare-verdict-budget {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.85rem;
  }

  .compare-verdict-safe {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.85rem;
  }

  .compare-table-note {
    font-size: 0.72rem;
    color: var(--vault-gray);
    line-height: 1.6;
    max-width: 700px;
    margin-top: 0.75rem;
  }

  /* Key Differentiators */
  .compare-differentiators {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .compare-diff-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .compare-section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-top: 0.75rem;
    line-height: 1.1;
    background: linear-gradient(180deg, var(--vault-cream) 40%, var(--vault-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .compare-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .compare-card {
    padding: 2.5rem 2rem;
    background: var(--vault-charcoal);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s;
  }

  .compare-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
  }

  .compare-card-icon {
    font-size: 1.5rem;
    color: var(--vault-gold);
    margin-bottom: 1.5rem;
  }

  .compare-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--vault-cream);
  }

  .compare-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--vault-gray);
    margin-bottom: 1rem;
  }

  .compare-card p:last-child {
    margin-bottom: 0;
  }

  /* Truth section */
  .compare-truth {
    padding: 5rem 2rem;
    background: var(--vault-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }

  .compare-truth-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .compare-truth-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vault-gold);
    margin-bottom: 2rem;
  }

  .compare-quote {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.7;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.6);
    font-style: normal;
    border: none;
    margin: 0;
    padding: 0;
  }

  .compare-quote em {
    font-style: italic;
    color: var(--vault-gold-light);
  }

  /* CTA section */
  .compare-cta {
    padding: 6rem 2rem;
    text-align: center;
  }

  .compare-cta-inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .compare-cta h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(180deg, var(--vault-cream) 40%, var(--vault-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .compare-cta > .compare-cta-inner > p {
    color: var(--vault-gray);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }

  .compare-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .compare-email-cta {
    padding: 2.5rem;
    background: var(--vault-charcoal);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 8px;
  }

  .compare-email-cta > p {
    font-size: 0.9rem;
    color: var(--vault-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .compare-email-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .compare-email-input {
    max-width: 280px;
    flex: 1;
    min-width: 200px;
  }

  /* Quiz CTA responsive */
  .quiz-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
  }

  .quiz-cta-action {
    align-self: center;
  }

  .quiz-cta-homepage {
    padding: 2rem 1.5rem;
  }

  .quiz-cta-homepage h3 {
    font-size: 1.4rem;
  }

  .quiz-cta-homepage p {
    font-size: 0.9rem;
  }

  /* Responsive for compare page */
  @media (max-width: 768px) {
    .compare-cards {
      grid-template-columns: 1fr;
    }

    .compare-table th,
    .compare-table td {
      padding: 0.85rem 0.75rem;
      font-size: 0.82rem;
    }

    .compare-table-note {
      font-size: 0.68rem;
    }

    .compare-differentiators {
      padding: 3rem 1rem;
    }

    .compare-cta {
      padding: 3rem 1rem;
    }

    .compare-email-form {
      flex-direction: column;
      align-items: stretch;
    }

    .compare-email-input {
      max-width: none;
    }
  }

/* === FIND YOUR GLOVE QUIZ === */
.quiz-section {
  padding: 5rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.quiz-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vault-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.quiz-title {
  font-size: 2rem;
  color: var(--vault-cream);
  margin-bottom: 0.5rem;
}

.quiz-subtitle {
  color: var(--vault-gray);
  font-size: 0.95rem;
}

.quiz-container {
  background: var(--vault-charcoal);
  border: 1px solid rgba(245, 240, 232, 0.07);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  min-height: 280px;
}

/* Progress dots */
.quiz-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.quiz-step {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.15);
  transition: all 0.25s;
}

.quiz-step.active {
  background: var(--vault-gold);
  transform: scale(1.25);
}

.quiz-step.done {
  background: rgba(201, 168, 76, 0.4);
}

/* Panels */
.quiz-panel {
  display: none;
}

.quiz-panel.active {
  display: block;
  animation: quizFadeIn 0.3s ease;
}

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

.quiz-question {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vault-cream);
  margin-bottom: 1.75rem;
  text-align: center;
}

/* Option grid — default 3-col for Q1 (6 options) */
.quiz-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.quiz-options-2col {
  grid-template-columns: repeat(2, 1fr);
}

.quiz-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.1rem 0.75rem;
  background: var(--vault-dark);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 6px;
  color: var(--vault-cream);
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}

.quiz-option:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-1px);
}

.quiz-option.selected {
  border-color: var(--vault-gold);
  background: rgba(201, 168, 76, 0.12);
}

.quiz-option-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.quiz-option-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--vault-cream);
}

.quiz-option-sub {
  font-size: 0.72rem;
  color: var(--vault-gray);
}

/* Email step */
.quiz-email-note {
  text-align: center;
  color: var(--vault-gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.quiz-email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.quiz-email-input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--vault-dark);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 4px;
  color: var(--vault-cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.quiz-email-input:focus {
  outline: none;
  border-color: var(--vault-gold);
}

.quiz-email-error {
  text-align: center;
  color: var(--vault-red);
  font-size: 0.8rem;
  margin-top: 0.75rem;
  min-height: 1.1rem;
}

/* Loading state */
.quiz-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
  color: var(--vault-gray);
  font-size: 0.9rem;
}

.quiz-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(201, 168, 76, 0.15);
  border-top-color: var(--vault-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Results */
.quiz-results-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.quiz-results-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vault-gold);
  margin-bottom: 0.4rem;
}

.quiz-results-title {
  font-size: 1.5rem;
  color: var(--vault-cream);
}

.quiz-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-result-card {
  background: var(--vault-dark);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.quiz-result-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vault-cream);
}

.quiz-result-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vault-gold);
}

.quiz-result-meta {
  font-size: 0.78rem;
  color: var(--vault-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.quiz-result-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.quiz-result-actions .btn-primary,
.quiz-result-actions .btn-secondary {
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  text-align: center;
}

.quiz-results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 240, 232, 0.07);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vault-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* Mobile quiz */
@media (max-width: 600px) {
  .quiz-section {
    padding: 3rem 1rem;
  }

  .quiz-container {
    padding: 1.5rem 1rem;
  }

  .quiz-title {
    font-size: 1.5rem;
  }

  .quiz-question {
    font-size: 1.05rem;
  }

  .quiz-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .quiz-options-2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .quiz-email-form {
    flex-direction: column;
  }

  .quiz-email-input {
    width: 100%;
  }

  .quiz-result-actions .btn-primary,
  .quiz-result-actions .btn-secondary {
    font-size: 0.7rem;
    padding: 0.65rem 0.75rem;
  }

  .quiz-results-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .quiz-results-footer .btn-secondary {
    justify-content: center;
  }
}
