/* ==========================================================================
   SUNNIVA LIGHT™ OFFICIAL STORE — AURORA THEME
   Warm Minimalist & Clean Circadian Wellness Design System
   ========================================================================== */

:root {
  /* Warm Aurora Palette */
  --bg-page: #F8F6F1;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDFBF7;
  --bg-surface: #F3EFE6;
  --bg-alt: #EFE9DE;
  
  --text-primary: #242220;
  --text-secondary: #57534E;
  --text-muted: #78716C;
  --text-dim: #A8A29E;
  
  --amber-primary: #E68A2E;
  --amber-hover: #D97706;
  --amber-soft: rgba(230, 138, 46, 0.12);
  --amber-glow: rgba(245, 158, 11, 0.25);
  
  --sage-accent: #3E6B5C;
  --sage-soft: rgba(62, 107, 92, 0.12);
  
  --border-light: rgba(36, 34, 32, 0.08);
  --border-medium: rgba(36, 34, 32, 0.14);
  --border-amber: rgba(230, 138, 46, 0.35);
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(36, 34, 32, 0.04);
  --shadow-md: 0 8px 24px rgba(36, 34, 32, 0.08);
  --shadow-lg: 0 16px 40px rgba(36, 34, 32, 0.12);
  --shadow-glow: 0 0 25px var(--amber-glow);

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   ANNOUNCEMENT & HEADER
   ========================================================================== */
.top-notice-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.top-notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.status-dot-amber {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-primary);
  box-shadow: 0 0 8px var(--amber-primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand-logo-img {
  height: 34px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.desktop-nav a:hover {
  color: var(--amber-primary);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px var(--amber-glow);
  transition: var(--transition);
}

.btn-header-cta:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(36, 34, 32, 0.15);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer-close {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: auto;
}

.drawer-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 34, 32, 0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION — AURORA WARM WELLNESS
   ========================================================================== */
.hero-aurora {
  position: relative;
  padding: 44px 0 56px;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.22) 0%, rgba(248, 246, 241, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--sage-accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: 3.1rem;
  line-height: 1.14;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero-h1 em {
  font-style: italic;
  color: var(--amber-primary);
}

.hero-subhead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.mobile-hero-wrap {
  display: none;
}

/* Hero Key Specs Strip */
.hero-specs-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.spec-pill {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.spec-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--amber-primary);
  font-family: var(--font-sans);
}

.spec-sub {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-aurora-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber-primary) 0%, var(--amber-hover) 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px var(--amber-glow);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn-aurora-primary:hover {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge-item svg {
  width: 16px;
  height: 16px;
  fill: var(--sage-accent);
}

/* Desktop Hero Visual */
.hero-visual-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.hero-visual-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.floating-hero-badge {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 32px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.badge-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
}

.badge-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CLINICAL TRUST TICKER
   ========================================================================== */
.ticker-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.ticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ticker-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.ticker-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ticker-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   SECTIONS & TITLES
   ========================================================================== */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.sub-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--sage-accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SCIENCE / BENCHMARK BENTO GRID
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-amber);
}

.bento-span-2 {
  grid-column: span 2;
}

.bento-icon-chip {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--amber-soft);
  color: var(--amber-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.bento-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bento-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.bento-metrics-row {
  display: flex;
  gap: 14px;
  margin-top: auto;
}

.metric-pill {
  flex: 1;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
}

.metric-pill strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amber-primary);
}

.metric-pill span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HOW IT WORKS (STEP CARDS — STRICT RELATIVE POSITIONING)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative; /* STRICT CONTAINER ANCHOR */
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-amber);
}

.step-img-wrap {
  position: relative; /* STRICT INNER ANCHOR */
  overflow: hidden;
  background: var(--bg-surface);
}

.step-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.step-card:hover .step-img-wrap img {
  transform: scale(1.03);
}

.step-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-amber);
  color: var(--amber-primary);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(36, 34, 32, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.step-body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PACKAGES SECTION (EXACT UNITS 1x, 2x, 3x, 4x)
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.pkg-card {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-primary);
}

.pkg-card.featured {
  border-color: var(--amber-primary);
  background: #FFFDF9;
  box-shadow: 0 8px 30px var(--amber-glow);
}

.pkg-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber-primary) 0%, var(--amber-hover) 100%);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px var(--amber-glow);
  white-space: nowrap;
}

.pkg-header {
  text-align: center;
  margin-bottom: 12px;
}

.pkg-tier-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage-accent);
  background: var(--sage-soft);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}

.pkg-card.featured .pkg-tier-label {
  color: var(--amber-primary);
  background: var(--amber-soft);
}

.pkg-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pkg-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pkg-img-wrap {
  text-align: center;
  margin: 12px 0 16px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-img-wrap img {
  max-height: 135px;
  width: auto;
  object-fit: contain;
}

.pkg-pricing-box {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  margin-bottom: 18px;
}

.pkg-price-main {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pkg-curr {
  font-size: 1.1rem;
}

.pkg-per-unit {
  font-size: 0.76rem;
  color: var(--amber-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.pkg-price-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.76rem;
}

.pkg-retail {
  text-decoration: line-through;
  color: var(--text-dim);
}

.pkg-savings {
  color: var(--sage-accent);
  font-weight: 800;
}

.pkg-features-list {
  list-style: none;
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pkg-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.btn-pkg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-medium);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  text-align: center;
  transition: var(--transition);
}

.pkg-card.featured .btn-pkg-cta {
  background: var(--amber-primary);
  border-color: var(--amber-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--amber-glow);
}

.btn-pkg-cta:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Package Confirmation Disclosure Note */
.pkg-confirmation-note {
  text-align: center;
  margin: 16px auto 28px;
  max-width: 680px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: var(--shadow-sm);
}

.pkg-confirmation-note strong {
  color: var(--amber-primary);
}

/* Guarantee Card */
.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.guarantee-icon {
  font-size: 2.8rem;
  line-height: 1;
}

.guarantee-text strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   REVIEWS & FAQ
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.review-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--text-primary);
}

.reviewer-badge {
  color: var(--sage-accent);
  font-weight: 700;
  font-size: 0.74rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--amber-primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   STICKY BOTTOM ACTION DOCK (FLOATING 10PX MARGIN)
   ========================================================================== */
.action-dock {
  position: fixed;
  bottom: 10px;
  left: 12px;
  right: 12px;
  max-width: 480px;
  margin: 0 auto;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px rgba(36, 34, 32, 0.15), 0 0 20px var(--amber-glow);
  padding: 8px 16px;
  transform: translateY(140%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.action-dock.active {
  transform: translateY(0);
}

.dock-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dock-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dock-deal {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dock-price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.dock-price {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--amber-primary);
}

.dock-savings {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage-accent);
}

.btn-dock-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber-primary) 0%, var(--amber-hover) 100%);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px var(--amber-glow);
  white-space: nowrap;
  transition: var(--transition);
}

.btn-dock-cta:hover {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 48px 0 32px;
  margin-top: 40px;
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--amber-primary);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-visual-col {
    display: none;
  }
  
  .mobile-hero-wrap {
    display: block;
    margin: 12px auto 18px;
    text-align: center;
  }
  
  .mobile-hero-img {
    max-height: 130px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ticker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .btn-header-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-h1 {
    font-size: 2.2rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .guarantee-card {
    flex-direction: column;
    text-align: center;
  }
}

/* STRICT MOBILE FOLD PRIORITY (<= 480px) */
@media (max-width: 480px) {
  .top-notice-bar {
    padding: 6px 8px;
    font-size: 0.65rem;
    line-height: 1.2;
  }
  
  .top-notice-inner {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .notice-sep,
  .notice-item-sub,
  .notice-item-extra {
    display: none;
  }

  .header-inner {
    padding: 10px 0;
  }
  
  .brand-logo-img {
    height: 28px;
  }
  
  .hero-aurora {
    padding: 16px 0 22px;
  }
  
  .hero-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
    margin-bottom: 8px;
  }
  
  .hero-h1 {
    font-size: 1.6rem;
    line-height: 1.18;
    margin-bottom: 8px;
  }
  
  .hero-subhead {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }
  
  .mobile-hero-wrap {
    margin: 0 auto 10px;
  }
  
  .mobile-hero-img {
    max-height: 105px;
  }
  
  .hero-specs-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px 6px;
    margin-bottom: 14px;
  }
  
  .spec-label {
    font-size: 0.56rem;
  }
  
  .spec-val {
    font-size: 0.88rem;
  }
  
  .spec-sub {
    font-size: 0.58rem;
  }
  
  .btn-aurora-primary {
    font-size: 0.92rem;
    padding: 12px 20px;
    width: 100%;
  }
  
  .hero-trust-row {
    font-size: 0.72rem;
    gap: 10px;
    justify-content: center;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .ticker-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .action-dock {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 7px 12px;
  }
  
  .dock-deal {
    font-size: 0.72rem;
  }
  
  .dock-price {
    font-size: 0.92rem;
  }
  
  .btn-dock-cta {
    font-size: 0.76rem;
    padding: 7px 12px;
  }
}

/* SMALL MOBILE BREAKPOINTS (<= 360px & 320px) */
@media (max-width: 360px) {
  .hero-h1 {
    font-size: 1.45rem;
  }
  
  .mobile-hero-img {
    max-height: 95px;
  }
  
  .hero-specs-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .action-dock {
    left: 8px;
    right: 8px;
    padding: 6px 10px;
  }
  
  .dock-container {
    gap: 8px;
  }
  
  .dock-deal {
    font-size: 0.68rem;
  }
  
  .dock-price {
    font-size: 0.88rem;
  }
  
  .btn-dock-cta {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}
