/* ================================================================
   SUN HOME SAUNAS — 2026 DESIGN SYSTEM
   Light theme with selective dark sections
   ================================================================ */

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: #1a1a1a;
  background: #F5F2ED;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--text-primary); }
input, textarea, select { font-family: 'Inter', sans-serif; }

/* ========== TOKENS ========== */
:root {
  /* Brand */
  --orange: #FF5600;
  --orange-hover: #E04D00;
  --amber: #FFB876;
  --green: #22C55E;
  --red: #EF4444;

  /* Backgrounds — light */
  --bg-primary: #F5F2ED;
  --bg-white: #FFFFFF;
  --bg-card: #FAFAF7;
  --bg-elevated: #FFFFFF;
  --bg-warm: #F0EDE6;

  /* Backgrounds — dark sections */
  --bg-dark: #1A1A1A;
  --bg-dark-secondary: #2A2A2A;
  --bg-dark-card: #333333;

  /* Borders */
  --border-subtle: rgba(0,0,0,0.06);
  --border-medium: rgba(0,0,0,0.10);
  --border-strong: rgba(0,0,0,0.18);

  /* Text — light bg */
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-muted: #999999;

  /* Text — dark bg (used in .section-dark) */
  --text-on-dark: #FFFFFF;
  --text-on-dark-secondary: rgba(255,255,255,0.70);
  --text-on-dark-muted: rgba(255,255,255,0.40);

  /* Spacing & Layout */
  --section-gap: clamp(48px, 5vw, 80px);
  --container: min(1280px, 88vw);
  --container-wide: min(1440px, 92vw);
  --container-narrow: min(800px, 88vw);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Fixed heights */
  --header-height: 72px;
  --announce-height: 40px;
  --banner-height: 28px;
}

/* ========== LAYOUT ========== */
.container { width: var(--container); margin: 0 auto; }
.container-wide { width: var(--container-wide); margin: 0 auto; }
.container-narrow { width: var(--container-narrow); margin: 0 auto; }

/* ========== DARK SECTION UTILITY ========== */
.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4, .section-dark h5, .section-dark h6 {
  color: var(--text-on-dark);
}
.section-dark p { color: var(--text-on-dark-secondary); }
.section-dark .overline { color: var(--text-on-dark-muted); }
.section-dark .overline::before,
.section-dark .overline::after { background: var(--text-on-dark-muted); }
.section-dark .accordion-item { border-color: rgba(255,255,255,0.08); }
.section-dark .accordion-trigger { color: var(--text-on-dark); }
.section-dark .accordion-trigger .icon { color: var(--text-on-dark-muted); }
.section-dark .accordion-body-inner { color: var(--text-on-dark-secondary); }
.section-dark .btn-primary { background: #FFFFFF; color: #1A1A1A; box-shadow: none; }
.section-dark .btn-primary:hover { background: #F0F0F0; }
.section-dark .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.15);
}
.section-dark .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.section-dark .btn-ghost {
  color: var(--text-on-dark-secondary);
  border-color: rgba(255,255,255,0.15);
}
.section-dark .btn-ghost:hover {
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

/* ========== CONCEPT BANNER (dev only) ========== */
.concept-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: white;
  text-align: center;
  padding: 5px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  text-align: center;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 400;
  height: var(--announce-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.4s var(--ease-out);
}
.announcement-bar.hidden { transform: translateY(-100%); }
.announcement-bar strong {
  color: var(--orange);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.announcement-bar .divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.12);
  margin: 0 12px;
  vertical-align: middle;
}
.announcement-bar a {
  color: var(--orange);
  font-weight: 600;
  position: relative;
}
.announcement-bar a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s;
}
.announcement-bar a:hover::after { width: 100%; }
.announcement-bar .close-btn {
  position: absolute;
  right: 16px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: color 0.3s;
}
.announcement-bar .close-btn:hover { color: var(--text-primary); }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: calc(var(--banner-height) + var(--announce-height));
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 60px);
  transition: all 0.4s var(--ease-in-out);
  background: transparent;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: clamp(24px, 4vw, 60px);
  right: clamp(24px, 4vw, 60px);
  height: 1px;
  background: var(--border-medium);
  transition: opacity 0.4s;
}
.site-header.scrolled {
  background: rgba(245,242,237,0.92);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.site-header.scrolled::after { opacity: 0; }
.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  height: 26px;
  transition: opacity 0.3s;
}
.header-logo:hover img { opacity: 0.7; }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-action {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.25s;
}
.header-action:hover { color: var(--text-primary); background: rgba(0,0,0,0.04); }
.header-action svg { width: 18px; height: 18px; flex-shrink: 0; }
.header-cart { position: relative; }
.cart-count {
  position: absolute;
  top: 0;
  right: 2px;
  background: var(--bg-dark);
  color: white;
  font-size: 9px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA button in header */
.header-cta {
  background: var(--bg-dark);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
}
.header-cta:hover { background: #333; }
.header-cta svg { width: 14px; height: 14px; }

/* ========== MEGA MENU ========== */
.nav-item {
  position: relative;
}
.nav-item > a {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
  display: inline-block;
}
.nav-item > a:hover,
.nav-item.open > a {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
}
.mega-menu {
  position: fixed;
  top: calc(var(--banner-height) + var(--announce-height) + var(--header-height));
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  z-index: 99;
  display: none !important;
  visibility: hidden;
  animation: megaFadeIn 0.25s var(--ease-out);
}
.nav-item.open .mega-menu { display: block !important; visibility: visible; }
@keyframes megaFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}
.mega-menu-sidebar h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.mega-menu-sidebar ul { list-style: none; }
.mega-menu-sidebar li {
  margin-bottom: 8px;
}
.mega-menu-sidebar li a {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}
.mega-menu-sidebar li a:hover { color: var(--text-primary); }
.mega-menu-sidebar .sidebar-group { margin-bottom: 24px; }
.mega-menu-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mega-product {
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out);
}
.mega-product:hover { transform: translateY(-4px); }
.mega-product-img {
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.mega-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.mega-product h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.mega-product p {
  font-size: 11px;
  color: var(--text-muted);
}
/* Mega menu links grid (for Benefits/Experience) */
.mega-menu-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 280px;
  gap: 32px;
}
.mega-link-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.mega-link-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 400;
  transition: color 0.2s;
}
.mega-link-col a:hover { color: var(--text-primary); }
.mega-menu-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.mega-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Bottom trust bar inside mega menu */
.mega-menu-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
  gap: 24px;
  flex-wrap: wrap;
}
.mega-menu-bottom a {
  color: var(--text-secondary);
  font-weight: 600;
}
.mega-menu-bottom a:hover { color: var(--text-primary); }
.mega-menu-bottom .btn {
  margin-left: auto;
}

/* ========== MOBILE DRAWER ========== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--bg-white);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 199;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-drawer-overlay.open { display: block; opacity: 1; }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-drawer-header img { height: 22px; }
.mobile-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  color: var(--text-primary);
}
.mobile-drawer-close:hover { background: rgba(0,0,0,0.04); }
.mobile-drawer-close svg { width: 20px; height: 20px; }
.mobile-drawer-nav {
  padding: 16px 0;
}
.mobile-nav-group {
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}
.mobile-nav-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.mobile-nav-group.open .mobile-nav-trigger svg { transform: rotate(180deg); }
.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.mobile-nav-group.open .mobile-nav-sub { max-height: 600px; }
.mobile-nav-sub a {
  display: block;
  padding: 10px 24px 10px 40px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.mobile-nav-sub a:hover { color: var(--text-primary); }
.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-drawer-cta {
  padding: 24px;
}

/* ========== DIVE DEEPER MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--bg-dark);
  border-radius: var(--r-2xl);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-close svg { width: 18px; height: 18px; }
.modal-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-body {
  padding: 32px;
}
.modal-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.modal-body h2 span { color: var(--text-on-dark-muted); font-weight: 300; }
.modal-body p {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.modal-body p strong { color: white; }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border-radius: 100px;
  transition: background 0.25s;
}
.mobile-menu-btn:hover { background: rgba(0,0,0,0.04); }
.mobile-menu-btn svg { width: 22px; height: 22px; }

/* Body offset for fixed elements */
.page-body {
  padding-top: calc(var(--banner-height) + var(--announce-height) + var(--header-height));
}

/* ========== TYPOGRAPHY UTILITIES ========== */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.overline::before,
.overline::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  opacity: 0.4;
}
.section-header { text-align: center; margin-bottom: clamp(28px, 3vw, 44px); }
.section-header h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}
.section-header p {
  margin-top: 16px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-secondary);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.gradient-text {
  color: var(--orange);
}
/* Mixed weight heading — bold first part, lighter second */
.heading-light {
  font-weight: 300;
  color: var(--text-secondary);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--bg-dark);
  color: white;
  box-shadow: none;
}
.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: rgba(0,0,0,0.04);
  border-color: var(--text-primary);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
}
.btn-ghost:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: rgba(0,0,0,0.02);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ========== CARDS ========== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}
.card:hover {
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* ========== PRODUCT CARDS ========== */
.product-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.5s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-warm);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bg-dark);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}
.product-badge.orange { background: var(--orange); }
.product-badge.green { background: var(--green); }
.product-ar-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border-subtle);
  z-index: 2;
}
.product-ar-badge svg { width: 14px; height: 14px; }
.product-quick-actions {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 3;
}
.product-card:hover .product-quick-actions { opacity: 1; }
.quick-action-btn {
  padding: 12px 24px;
  border-radius: 50px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s;
}
.quick-action-btn:hover { transform: scale(1.05); }
.quick-action-btn.primary { background: var(--bg-dark); }
.quick-action-btn.ghost { border: 1px solid rgba(255,255,255,0.4); }
.product-info { padding: 18px 20px 22px; }
.product-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: var(--orange); font-size: 12px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--text-muted); }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.price-current { font-family: 'Space Grotesk'; font-size: 18px; font-weight: 700; }
.price-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.price-affirm { display: block; font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.price-affirm span { color: var(--orange); font-weight: 600; }

/* ========== TRUST BAR ========== */
.trust-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  background: var(--bg-white);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-bar-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.trust-bar-item p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Trust marquee (legacy) */
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar-label {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar-logos {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  flex-shrink: 0;
}
.trust-bar-logos img {
  height: clamp(14px, 1.8vw, 20px);
  opacity: 0.25;
  filter: grayscale(100%);
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.trust-bar-logos img:hover { opacity: 0.5; }

/* ========== CELEBRITY CARDS ========== */
.celeb-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}
.celeb-card:hover {
  border-color: rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.celeb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.celeb-card:hover img { transform: scale(1.06); }
.celeb-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.celeb-name {
  font-family: 'Space Grotesk';
  font-size: 14px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}
.celeb-verified {
  width: 14px;
  height: 14px;
  background: #3595F6;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.celeb-verified svg { width: 8px; height: 8px; }
.celeb-handle { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ========== BENEFIT ITEMS ========== */
.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all 0.4s var(--ease-out);
}
.benefit-card:hover { border-color: rgba(0,0,0,0.12); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.benefit-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.benefit-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ========== COMPARISON TABLE ========== */
.comparison-table-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
}
.comparison-table thead th {
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: 'Space Grotesk';
  font-size: 13px;
  font-weight: 700;
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.highlight { color: var(--orange); position: relative; }
.comparison-table thead th.highlight::before {
  content: 'Most Popular';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: white;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.comparison-table tbody td {
  padding: 14px 24px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.comparison-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text-primary); }
.comparison-table tbody tr:hover td { background: rgba(0,0,0,0.01); }
.check { color: var(--orange); font-size: 16px; }
.cross { color: var(--text-muted); }

/* ========== QUIZ ========== */
.quiz-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 36px;
}
.quiz-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.quiz-progress-dot { height: 3px; flex: 1; border-radius: 2px; background: var(--border-medium); }
.quiz-progress-dot.active { background: var(--bg-dark); }
.quiz-question {
  font-family: 'Space Grotesk';
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quiz-option {
  border: 1px solid var(--border-medium);
  border-radius: var(--r-md);
  padding: 18px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.quiz-option:hover { border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.02); }
.quiz-option.selected { border-color: var(--text-primary); background: rgba(0,0,0,0.03); }
.quiz-option-icon { font-size: 28px; margin-bottom: 6px; }
.quiz-option-label { font-size: 13px; font-weight: 600; }

/* ========== FINANCING ========== */
.financing-container {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.calc-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.calc-price { font-family: 'Space Grotesk'; font-size: 44px; font-weight: 800; letter-spacing: -1px; }
.calc-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.calc-divider { height: 1px; background: var(--border-subtle); margin: 20px 0; }
.calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.calc-row-label { font-size: 13px; color: var(--text-muted); }
.calc-row-value { font-size: 13px; font-weight: 600; }
.calc-highlight {
  background: rgba(255,86,0,0.06);
  border: 1px solid rgba(255,86,0,0.12);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-highlight-label { font-size: 13px; color: var(--orange); font-weight: 700; }
.calc-highlight-value { font-family: 'Space Grotesk'; font-size: 24px; font-weight: 800; }
.calc-highlight-value span { font-size: 13px; font-weight: 400; color: var(--text-muted); }

/* ========== REVIEWS ========== */
.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: border-color 0.4s;
}
.review-card:hover { border-color: rgba(0,0,0,0.12); }
.review-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.review-author-name { font-size: 14px; font-weight: 600; }
.review-author-detail { font-size: 12px; color: var(--text-muted); }
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== FOOTER ========== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 72px 0 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 26px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-on-dark-muted); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: white;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: var(--text-on-dark-secondary);
}
.footer-col a { display: block; font-size: 13px; color: var(--text-on-dark-muted); margin-bottom: 10px; }
.footer-col a:hover { color: white; }
.footer-newsletter p { font-size: 13px; color: var(--text-on-dark-muted); margin-bottom: 14px; line-height: 1.5; }
.footer-newsletter-form { display: flex; gap: 6px; }
.footer-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  color: white;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.footer-newsletter-form input::placeholder { color: var(--text-on-dark-muted); }
.footer-newsletter-form input:focus { border-color: rgba(255,255,255,0.3); }
.footer-newsletter-form button {
  background: white;
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  transition: all 0.3s;
}
.footer-newsletter-form button:hover { background: #eee; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 11px; color: var(--text-on-dark-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 11px; color: var(--text-on-dark-muted); }
.footer-bottom-links a:hover { color: var(--text-on-dark-secondary); }

/* ========== AI CHAT WIDGET ========== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.chat-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.chat-trigger:hover { transform: scale(1.08); box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
.chat-trigger svg { width: 24px; height: 24px; color: white; }
.chat-preview {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 340px;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  overflow: hidden;
  display: none;
}
.chat-preview.open { display: block; animation: slideUp 0.4s var(--ease-out); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-header {
  background: var(--bg-card);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.chat-header-text h4 { font-size: 13px; font-weight: 700; }
.chat-header-text p { color: var(--text-muted); font-size: 10px; }
.chat-body { padding: 18px; }
.chat-message {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.chat-suggestions { display: flex; flex-direction: column; gap: 6px; }
.chat-suggestion {
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
  text-align: left;
}
.chat-suggestion:hover { border-color: var(--text-primary); color: var(--text-primary); background: rgba(0,0,0,0.02); }

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 20px 0;
}
.breadcrumbs a:hover { color: var(--text-primary); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--text-secondary); }

/* ========== TABS ========== */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border-subtle); }
.tab {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.tab:hover { color: var(--text-secondary); }
.tab.active { color: var(--text-primary); border-bottom-color: var(--text-primary); }
.tab-content { display: none; padding: 32px 0; }
.tab-content.active { display: block; }

/* Dark section tabs override */
.section-dark .tabs { border-color: rgba(255,255,255,0.08); }
.section-dark .tab { color: var(--text-on-dark-muted); }
.section-dark .tab:hover { color: var(--text-on-dark-secondary); }
.section-dark .tab.active { color: var(--text-on-dark); border-bottom-color: var(--text-on-dark); }

/* ========== ACCORDION ========== */
.accordion-item { border-bottom: 1px solid var(--border-subtle); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}
.accordion-trigger .icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.accordion-item.open .accordion-trigger .icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.accordion-item.open .accordion-body { max-height: 500px; }
.accordion-body-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== FORM INPUTS ========== */
.input {
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.input::placeholder { color: var(--text-muted); }
.input:focus { border-color: var(--text-primary); }
.input-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== SCROLL ANIMATIONS (JS-driven) ========== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .comparison-table thead th { padding: 14px 12px; font-size: 12px; }
  .comparison-table tbody td { padding: 12px; font-size: 12px; }
}
@media (max-width: 768px) {
  :root {
    --header-height: 56px;
    --announce-height: 48px;
    --banner-height: 24px;
  }

  .concept-banner {
    font-size: 7px;
    letter-spacing: 2px;
    padding: 3px 12px;
  }

  .announcement-bar {
    font-size: 11px;
    padding: 6px 36px 6px 12px;
    line-height: 1.35;
  }
  .announcement-bar .divider { display: none; }
  .announcement-bar .close-btn { right: 8px; font-size: 16px; }

  .site-header { padding: 0 12px; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-logo img { height: 22px; }
  .header-action span:not(.cart-count) { display: none; }
  .header-action { padding: 8px; gap: 0; }
  .header-actions { gap: 0; }

  .comparison-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table { min-width: 520px; }
  .comparison-table thead th { padding: 12px 10px; font-size: 11px; }
  .comparison-table tbody td { padding: 10px; font-size: 11px; }

  .calc-price { font-size: 32px !important; }

  .trust-bar { padding: 16px 0; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-main { grid-template-columns: 1fr; }

  .chat-widget { bottom: 80px; right: 16px; }
  .chat-trigger { width: 48px; height: 48px; }
  .chat-trigger svg { width: 20px; height: 20px; }
  .chat-preview { width: 290px; }

  .section-header h2 { letter-spacing: -1px; }
  .section-header p { font-size: 14px; padding: 0 8px; }
}

@media (max-width: 480px) {
  :root {
    --announce-height: 52px;
  }
  .btn { padding: 12px 24px; font-size: 13px; }
  .btn-lg { padding: 14px 28px; font-size: 14px; }
  .announcement-bar { font-size: 10px; padding: 6px 32px 6px 8px; }
  .comparison-table { min-width: 480px; }
  .trust-bar-grid { grid-template-columns: 1fr; }
  .calc-price { font-size: 28px !important; }
}
