/* ================================================================
   EZSTREAM™ — THE OBSIDIAN HOME ENTERTAINMENT TECH THEME
   Style: Dark Luxury Cyber-Minimalism (Linear / Apple Pro / High-Tech 4K)
   Palette: Void Black (#08090C) + Carbon Slate (#0E1117) + Cyber Cyan (#00E5FF) + Electric Violet (#8B5CF6) + Glowing Amber (#F59E0B)
   Fonts: Space Grotesk (Headings), Inter (Body), JetBrains Mono (Tech Specs)
   ================================================================ */

:root {
  --bg-void:        #08090C;
  --bg-surface:     #0E1117;
  --bg-card:        rgba(255, 255, 255, 0.035);
  --bg-card-hover:  rgba(255, 255, 255, 0.07);
  --bg-card-active: rgba(0, 229, 255, 0.08);
  --border-glass:   rgba(255, 255, 255, 0.08);
  --border-hi:      rgba(0, 229, 255, 0.4);
  --border-violet:  rgba(139, 92, 246, 0.35);

  --cyan:           #00E5FF;
  --cyan-glow:      rgba(0, 229, 255, 0.25);
  --violet:         #8B5CF6;
  --violet-glow:    rgba(139, 92, 246, 0.25);
  --emerald:        #10B981;
  --amber:          #F59E0B;
  --amber-glow:     rgba(245, 158, 11, 0.3);

  --text-white:     #FFFFFF;
  --text-primary:   #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted:     #6B7280;

  --font-heading:   'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --radius-pill:    999px;

  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md:      0 6px 20px rgba(0, 0, 0, 0.6);
  --shadow-lg:      0 14px 40px rgba(0, 0, 0, 0.8);

  --transition:     all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-void);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ── Container Utility ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography & Tags ────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label-violet {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet);
  border-color: rgba(139, 92, 246, 0.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.65;
}

/* ── Top Notification Banner ──────────────────────────────────── */
.top-bar {
  background: #0F172A;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-primary);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar strong {
  color: var(--cyan);
  font-weight: 700;
}

/* ── Sticky Header & Nav ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(8, 9, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 0;
  transition: var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px var(--cyan-glow);
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  display: block;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--cyan);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan) 0%, #00B0FF 100%);
  color: #08090C !important;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px var(--cyan-glow);
  transition: var(--transition);
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}

/* ── Mobile Hamburger & Drawer ────────────────────────────────── */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--text-white);
  width: 40px;
  height: 40px;
  z-index: 130;
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-glass);
  z-index: 160;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-glass);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-white);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
}

.drawer-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-nav a:hover {
  color: var(--cyan);
}

.drawer-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--border-glass);
}

.drawer-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--cyan) 0%, #00B0FF 100%);
  color: #08090C !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px var(--cyan-glow);
}

/* ── Hero Section ─────────────────────────────────────────────── */
.hero-section {
  padding: 56px 0 72px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-h1 span.accent-cyan {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 26px;
  backdrop-filter: blur(12px);
}

.hero-price-current {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.hero-price-old {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-decoration: line-through;
  line-height: 1;
}

.hero-save-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan) 0%, #00B0FF 100%);
  color: #08090C !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px var(--cyan-glow);
  transition: var(--transition);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 229, 255, 0.45);
}

.hero-trust-notes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.hero-trust-notes span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.hero-pill-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-pill-icon {
  color: var(--cyan);
  font-weight: 800;
}

.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 229, 255, 0.12);
  border: 1px solid var(--border-glass);
  background: var(--bg-surface);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ── Stats Banner Strip ───────────────────────────────────────── */
.stats-banner {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 38px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  border-left: 2px solid var(--cyan);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ── Section Structure ────────────────────────────────────────── */
.section {
  padding: 84px 0;
}

.section-alt {
  background: #0B0E17;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

/* ── Features Grid ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}

.feature-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.68;
}

/* ── Spotlight / Deep Dive Rows ───────────────────────────────── */
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.spotlight-row:last-child {
  margin-bottom: 0;
}

.spotlight-row.reverse {
  direction: rtl;
}

.spotlight-row.reverse > * {
  direction: ltr;
}

.spotlight-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
  background: var(--bg-surface);
}

.spotlight-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.spotlight-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 18px;
}

.spotlight-content p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 18px;
}

.tech-stat-callout {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--cyan);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px;
}

.tech-stat-callout strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.tech-stat-callout span {
  font-size: 0.85rem;
  color: var(--cyan);
}

/* ── 3-Step How It Works ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--cyan);
}

.step-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000000;
}

.step-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.step-card:hover .step-img-box img {
  transform: scale(1.04);
}

.step-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  color: #08090C;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.62;
}

/* ── Hardware Specifications Table ────────────────────────────── */
.specs-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-glass);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 16px 24px;
  font-size: 0.92rem;
}

.specs-table td:first-child {
  width: 35%;
  font-weight: 700;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.015);
}

.specs-table td:last-child {
  color: var(--text-primary);
}

/* ── Unboxing Manifest ────────────────────────────────────────── */
.unboxing-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.unboxing-img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.manifest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.manifest-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-glass);
  gap: 16px;
}

.manifest-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.manifest-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text-white);
  font-family: var(--font-heading);
}

.manifest-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.manifest-badge {
  background: rgba(0, 229, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ── Comparison Table ─────────────────────────────────────────── */
.comp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 640px;
}

.comp-table th, .comp-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-glass);
}

.comp-table th {
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.comp-table th.highlight-col {
  background: rgba(0, 229, 255, 0.12);
  color: var(--cyan);
  font-size: 1.05rem;
  border-left: 1px solid rgba(0, 229, 255, 0.3);
  border-right: 1px solid rgba(0, 229, 255, 0.3);
}

.comp-table td.highlight-col {
  background: rgba(0, 229, 255, 0.04);
  font-weight: 600;
  border-left: 1px solid rgba(0, 229, 255, 0.2);
  border-right: 1px solid rgba(0, 229, 255, 0.2);
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.check-icon {
  color: var(--cyan);
  font-weight: bold;
}

.cross-icon {
  color: #EF4444;
  font-weight: bold;
}

/* ── Pricing Bundles Grid ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border: 2px solid var(--cyan);
  background: rgba(0, 229, 255, 0.04);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.2);
  transform: translateY(-6px);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan) 0%, #00B0FF 100%);
  color: #08090C;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px var(--cyan-glow);
}

.pricing-tier-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.pricing-tier-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.pricing-total {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.pricing-original {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-unit-pill {
  display: inline-block;
  background: rgba(0, 229, 255, 0.12);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 800;
}

.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white) !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  border: 1px solid var(--border-glass);
}

.pricing-card.featured .btn-pricing {
  background: linear-gradient(135deg, var(--cyan) 0%, #00B0FF 100%);
  color: #08090C !important;
  box-shadow: 0 8px 24px var(--cyan-glow);
  border: none;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 229, 255, 0.35);
}

.pricing-guarantee-note {
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── Customer Testimonials / Reviews ──────────────────────────── */
.reviews-summary-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}

.rating-score-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-big-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.rating-stars {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.rating-meta-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  color: #F59E0B;
  font-size: 0.95rem;
}

.verified-badge {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.review-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.review-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan);
  border-top: 1px solid var(--border-glass);
  padding-top: 12px;
}

/* ── FAQ Accordion ────────────────────────────────────────────── */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 229, 255, 0.15);
}

.faq-body {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* ── Final Invitation / CTA Banner ────────────────────────────── */
.invitation-section {
  padding: 80px 0;
}

.invitation-card {
  background: linear-gradient(135deg, #0F172A 0%, #060911 100%);
  border: 1px solid var(--cyan);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.invitation-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
  line-height: 1.2;
}

.invitation-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.invitation-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-invitation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan) 0%, #00B0FF 100%);
  color: #08090C !important;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 20px 42px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px var(--cyan-glow);
  transition: var(--transition);
}

.btn-invitation:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 229, 255, 0.45);
}

.invitation-guarantee {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: #050608;
  color: var(--text-muted);
  padding: 64px 0 32px;
  font-size: 0.88rem;
  border-top: 1px solid var(--border-glass);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer-brand p {
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 440px;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-secondary);
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-disclaimer {
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  font-size: 0.82rem;
}

/* ================================================================
   RESPONSIVE DESIGN & MOBILE LAYOUT (R5.1, R5.4)
   ================================================================ */

@media (max-width: 1024px) {
  .hero-h1 { font-size: 2.7rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  /* R5.4 — Hero product image visible above the fold on mobile */
  .hero-section {
    padding: 20px 0 36px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-text-col {
    display: contents;
  }

  .hero-badge-wrap {
    order: 1;
    align-self: flex-start;
    margin-bottom: 2px;
  }

  .hero-h1 {
    order: 2;
    font-size: 2.05rem;
    margin-bottom: 8px;
  }

  .hero-image-col {
    order: 3;
    width: 100%;
    margin-bottom: 12px;
  }

  .hero-image-wrap {
    width: 100%;
    height: 215px;
    max-height: none;
  }

  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-price-card {
    order: 4;
    margin-bottom: 16px;
  }

  .hero-cta-group {
    order: 5;
    width: 100%;
    margin-bottom: 20px;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    order: 6;
    font-size: 1.02rem;
    margin-bottom: 20px;
  }

  .hero-pills {
    order: 7;
    grid-template-columns: 1fr;
  }

  .section-title { font-size: 2rem; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }

  .spotlight-row, .spotlight-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr !important;
  }

  .unboxing-wrap {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .reviews-summary-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.85rem; }
  .section-title { font-size: 1.65rem; }
  .invitation-title { font-size: 1.95rem; }
  .invitation-card { padding: 40px 20px; }
  .hero-price-card { width: 100%; justify-content: space-between; }
  .btn-invitation { width: 100%; font-size: 1.05rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero-h1 { font-size: 1.65rem; }
  .hero-price-current { font-size: 1.65rem; }
  .btn-hero { font-size: 0.98rem; padding: 14px 20px; }
  .hero-image-wrap { height: 180px; }
}
