/* ==========================================================================
   VELIN GROUNDING BED SHEETS — AURORA THEME DESIGN SYSTEM
   Palette: Soft Alabaster, Warm Linen, Deep Espresso, Restorative Forest Sage, Solar Amber
   Typography: Plus Jakarta Sans, Inter, IBM Plex Mono
   ========================================================================== */

:root {
  --bg-page:        #F9F8F6;
  --bg-card:        #FFFFFF;
  --bg-soft:        #F3EFEA;
  --bg-cream:       #F7F4EE;
  
  --border-subtle:  #E8E3DA;
  --border-light:   #EFECE6;
  --border-focus:   #2D5A43;

  --text-dark:      #1E1B18;
  --text-body:      #4A453E;
  --text-muted:     #736D64;
  --text-light:     #9E988E;

  --sage-primary:   #2D5A43;
  --sage-hover:     #234734;
  --sage-soft:      #EAF2ED;
  --sage-border:    #C2D9CC;

  --solar-amber:    #D97706;
  --amber-hover:    #B45309;
  --amber-soft:     #FEF3C7;
  --amber-dark:     #92400E;

  --font-heading:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-pill:    9999px;

  --shadow-subtle:  0 2px 8px rgba(30, 27, 24, 0.04);
  --shadow-card:    0 8px 24px rgba(30, 27, 24, 0.06);
  --shadow-hover:   0 14px 36px rgba(30, 27, 24, 0.10);

  --transition:     all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max:  1180px;
}

/* ── RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  font-size: 16px;
}

body.theme-aurora {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION HEADERS ─────────────────────────────────────────────────── */
.section-header-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage-primary);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PROMO URGENCY STRIP ──────────────────────────────────────────────── */
.promo-bar {
  background: var(--text-dark);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 9px 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 101;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--solar-amber);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 8px var(--solar-amber); }
  100% { transform: scale(0.95); opacity: 0.9; }
}

/* ── SITE HEADER & NAVIGATION ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(249, 248, 246, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  width: 100%;
}

.header-inner,
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img,
.nav-brand-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo-subtext {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sage-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-left: 2px solid var(--sage-border);
  padding-left: 10px;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: var(--transition);
  padding: 6px 0;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--sage-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-header,
.btn-nav-cta {
  background: var(--sage-primary);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(45, 90, 67, 0.2);
  white-space: nowrap;
}

.btn-header:hover,
.btn-nav-cta:hover {
  background: var(--sage-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(45, 90, 67, 0.3);
}

.header-back-link {
  display: flex;
  align-items: center;
}

.header-back-link a,
.btn-text-back {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-back-link a:hover,
.btn-text-back:hover {
  color: var(--sage-primary);
}

/* ── HERO SECTION ────────────────────────────────────────────────────── */
.hero-section {
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 18px;
  box-shadow: var(--shadow-subtle);
}

.stars-rating {
  color: #EAB308;
  font-size: 13px;
  letter-spacing: 1px;
}

.hero-badge-text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.hero-title em {
  font-style: normal;
  color: var(--sage-primary);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-price-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.price-left {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-strike {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
}

.price-label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.price-discount-pill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  background: var(--amber-soft);
  color: var(--amber-dark);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(45, 90, 67, 0.28);
}

.btn-primary:hover {
  background: var(--sage-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45, 90, 67, 0.35);
}

.cta-micro-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
}

.hero-product-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-visual:hover .hero-product-img {
  transform: scale(1.02);
}

.hero-floating-pill {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-floating-pill strong {
  color: var(--text-dark);
}

/* ── 3 BENEFIT PILLARS SECTION ───────────────────────────────────────── */
.benefits-section {
  padding: 88px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--sage-border);
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  background: var(--sage-soft);
  color: var(--sage-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── FEATURE SPOTLIGHTS (DEEP COPY ROWS) ──────────────────────────────── */
.spotlights-section {
  padding: 88px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-subtle);
}

.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.spotlight-row:last-child {
  margin-bottom: 0;
}

.spotlight-row.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.spotlight-row.reverse .spotlight-visual {
  order: 2;
}

.spotlight-row.reverse .spotlight-copy {
  order: 1;
}

.spotlight-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  width: 100%;
}

.spotlight-copy h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.spotlight-copy p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.spotlight-copy p:last-of-type {
  margin-bottom: 24px;
}

.spotlight-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spotlight-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-dark);
}

.spotlight-bullets li span.check {
  color: var(--sage-primary);
  font-weight: 800;
}

/* ── 3-STEP HOW-TO RITUAL ────────────────────────────────────────────── */
.steps-section {
  padding: 88px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.step-img-frame {
  height: 230px;
  overflow: hidden;
  background: var(--bg-soft);
}

.step-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.step-card:hover .step-img-frame img {
  transform: scale(1.04);
}

.step-body {
  padding: 28px 24px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--sage-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.step-body h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── 6 APPLICATION ZONES ─────────────────────────────────────────────── */
.zones-section {
  padding: 88px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-subtle);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.zone-card:hover {
  border-color: var(--sage-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.zone-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.zone-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.zone-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── UNBOXING HARDWARE MANIFEST ──────────────────────────────────────── */
.unboxing-section {
  padding: 88px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.unboxing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.unboxing-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  width: 100%;
}

.unboxing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unbox-item-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.unbox-icon-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage-primary);
  text-align: center;
}

.unbox-content h4 {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.unbox-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.unbox-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  background: var(--sage-soft);
  color: var(--sage-primary);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ── 3-YEAR COST COMPARISON TABLE ────────────────────────────────────── */
.comparison-section {
  padding: 88px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-subtle);
}

.table-responsive-wrapper,
.comparison-table-wrapper,
.specs-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  margin: 1.5rem 0;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  text-align: left;
  min-width: 520px;
}

.specs-table th {
  background: var(--text-dark);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 20px;
}

.specs-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  text-align: left;
  min-width: 580px;
}

.comparison-table th {
  background: var(--text-dark);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 20px;
}

.comparison-table th.col-highlight {
  background: var(--sage-primary);
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.winner-cell {
  background: #F4FAF6;
  font-weight: 700;
  color: var(--sage-primary);
}

.comparison-table tr.winner-row td {
  background: var(--sage-soft);
  font-weight: 800;
  color: var(--sage-primary);
}

/* ── 11-ROW TECHNICAL SPECIFICATIONS ─────────────────────────────────── */
.specs-section {
  padding: 88px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.specs-sheet {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:nth-child(even) {
  background: #FFFFFF;
}

.spec-key {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.spec-val {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  max-width: 55%;
}

/* ── 6 CUSTOMER REVIEWS ──────────────────────────────────────────────── */
.reviews-section {
  padding: 88px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-subtle);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: #EAB308;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-headline {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 22px;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-sub {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ── 10 ACCESSIBLE FAQS ──────────────────────────────────────────────── */
.faq-section {
  padding: 88px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-toggle-icon {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--sage-primary);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  display: none;
}

.faq-item.active {
  background: #FFFFFF;
  border-color: var(--sage-primary);
  box-shadow: var(--shadow-subtle);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* ── 3 PACKAGES CONVERSION SECTION (#packages) ───────────────────────── */
.packages-section {
  padding: 96px 0 120px;
  background: var(--bg-soft);
  border-top: 2px solid var(--sage-primary);
  position: relative;
}

.packages-intro-banner {
  background: var(--sage-primary);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.packages-intro-text h3 {
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.packages-intro-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.packages-guarantee-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  background: var(--solar-amber);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.package-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.package-card.featured {
  border: 2px solid var(--solar-amber);
  transform: scale(1.03);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.package-card.best-deal {
  border: 2px solid var(--sage-primary);
}

.pkg-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ribbon-amber {
  background: var(--solar-amber);
  color: #FFFFFF;
}

.ribbon-sage {
  background: var(--sage-primary);
  color: #FFFFFF;
}

.pkg-header {
  text-align: center;
  margin-bottom: 20px;
}

.pkg-qty {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pkg-sublabel {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.pkg-price-block {
  text-align: center;
  background: var(--bg-page);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  margin-bottom: 24px;
}

.pkg-unit-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  line-height: 1;
}

.pkg-unit-text {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.pkg-total-row {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.pkg-orig-price {
  text-decoration: line-through;
  color: var(--text-light);
}

.pkg-savings-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 800;
  background: var(--amber-soft);
  color: var(--amber-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-top: 10px;
}

.pkg-features-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.pkg-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.pkg-features-list li span.check {
  color: var(--sage-primary);
  font-weight: 800;
  flex-shrink: 0;
}

.btn-package-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  padding: 16px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
  width: 100%;
}

.btn-package-cta:hover {
  background: var(--sage-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 90, 67, 0.25);
}

.package-card.featured .btn-package-cta {
  background: var(--solar-amber);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
}

.package-card.featured .btn-package-cta:hover {
  background: var(--amber-hover);
}

.pkg-cta-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.35;
}

/* ── STICKY BOTTOM BAR ───────────────────────────────────────────────── */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-product-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.sticky-title-box h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.sticky-price-box {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sage-primary);
}

.sticky-btn-cta {
  background: var(--solar-amber);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sticky-btn-cta:hover {
  background: var(--amber-hover);
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-col p {
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-disclaimer-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 24px;
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
}

/* ── PORTAL & COUNTRY SELECTION PAGE STYLES (`select-country.html`) ─── */
.portal-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.portal-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portal-security-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-primary);
  background: var(--sage-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.portal-container {
  max-width: 860px;
  margin: 40px auto 80px;
  padding: 0 16px;
  box-sizing: border-box;
}

.portal-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.portal-step {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-light);
  background: var(--bg-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-align: center;
}

.portal-step.done {
  color: var(--sage-primary);
  background: var(--sage-soft);
}

.portal-step.active {
  color: #FFFFFF;
  background: var(--solar-amber);
}

.package-selected-alert {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--solar-amber);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-subtle);
  box-sizing: border-box;
}

.selected-tier-badge span {
  font-size: 13.5px;
  color: var(--text-dark);
}

.selected-tier-badge #tier-name-display {
  font-weight: 700;
  color: var(--sage-primary);
}

.tier-select-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.change-tier-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--solar-amber);
}

.change-tier-btn:hover {
  text-decoration: underline;
}

.checkout-notice-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--sage-primary);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-subtle);
}

.checkout-notice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--sage-primary);
  margin-bottom: 8px;
}

.checkout-notice-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.country-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.country-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  box-sizing: border-box;
}

.country-card:hover {
  border-color: var(--solar-amber);
  box-shadow: var(--shadow-hover);
}

.country-card.featured {
  border: 2px solid var(--sage-primary);
}

.country-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.country-flag {
  font-size: 30px;
}

.country-name {
  font-size: 1.35rem;
  color: var(--sage-primary);
  margin-bottom: 2px;
}

.country-currency-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.country-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 20px;
}

.country-details-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-details-list li span.check {
  color: var(--sage-primary);
  font-weight: 800;
}

.btn-country-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--solar-amber);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 15px;
  border-radius: var(--radius-pill);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-country-cta:hover {
  background: var(--amber-hover);
}

.country-cta-subnote {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

.packages-trust-banner {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
  margin-top: 32px;
}

/* ── RESPONSIVE RULES (R5.1 - R5.4) ─────────────────────────────────── */
@media (max-width: 1024px) {
  .package-cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .package-card.featured {
    transform: none;
  }
  .package-card.featured:hover {
    transform: translateY(-4px);
  }
  .benefits-grid,
  .steps-grid,
  .reviews-grid,
  .zones-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* The full six-item navigation does not fit at tablet/compact-desktop widths. */
  .desktop-nav,
  .btn-header,
  .logo-subtext {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-section {
    padding: 20px 0 40px;
  }

  /* CRITICAL MOBILE FOLD HIERARCHY (390x844 Rule R5.4) */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero-badge-wrap {
    order: 1;
    margin-bottom: 8px;
    padding: 4px 10px;
  }

  .hero-title {
    order: 2;
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-visual {
    order: 3;
    margin-bottom: 12px;
    width: 100%;
  }

  .hero-img-wrap {
    max-height: 190px;
    border-radius: var(--radius-md);
  }

  .hero-product-img {
    height: 190px;
    width: 100%;
    object-fit: cover;
  }

  .hero-floating-pill {
    display: none;
  }

  .hero-price-box {
    order: 4;
    padding: 10px 14px;
    margin-bottom: 12px;
  }

  .price-current {
    font-size: 1.55rem;
  }

  .hero-cta-stack {
    order: 5;
    margin-bottom: 10px;
    width: 100%;
  }

  .btn-primary {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
  }

  .hero-trust-row {
    order: 6;
    padding-top: 8px;
    margin-bottom: 12px;
    gap: 8px;
    font-size: 11.5px;
  }

  .hero-subtitle {
    order: 7;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .benefits-grid,
  .steps-grid,
  .reviews-grid,
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-row,
  .spotlight-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .spotlight-row.reverse .spotlight-visual {
    order: unset;
  }

  .spotlight-row.reverse .spotlight-copy {
    order: unset;
  }

  .unboxing-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sticky-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .sticky-btn-cta {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Keep the specification comparison fully readable without clipping. */
  .specs-table {
    min-width: 0;
    table-layout: fixed;
  }

  .specs-table th,
  .specs-table td {
    padding: 12px 10px;
    overflow-wrap: anywhere;
  }

  .specs-table th:first-child,
  .specs-table td:first-child {
    width: 34%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .packages-intro-banner {
    padding: 16px;
  }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 16px;
  }

  .spec-val {
    text-align: left;
    max-width: 100%;
  }

  .unbox-item-row {
    grid-template-columns: 32px 1fr;
  }

  .unbox-badge {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ── MOBILE NAVIGATION & DRAWER ────────────────────────────────────── */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 7px;
  cursor: pointer;
  z-index: 101;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 28, 20, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-page);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px 8px;
}

.drawer-nav {
  flex: 1;
  padding: 24px 0;
  overflow-y: auto;
}

.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.drawer-nav a:hover {
  color: var(--sage-primary);
}

.drawer-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.drawer-guarantee {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .desktop-nav,
  .btn-header,
  .logo-subtext {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
}

