/* ================================================================
   SCRATCH ERASER™ OFFICIAL STORE — OBSIDIAN CYBER-TECH THEME
   Automotive Nano-Engineering & Precision Clear Coat Restoration
   Palette: Void Black (#08090C), Cyber Surface (#0E1117), Cobalt Glow (#3B82F6),
            Indigo Beam (#6366F1), Flawless Cyan (#0EA5E9), Silver Alloy (#F1F5F9)
   ================================================================ */

:root {
  --bg-void:         #08090C;
  --bg-surface:      #0E1117;
  --bg-card:         rgba(255, 255, 255, 0.035);
  --bg-card-hover:   rgba(255, 255, 255, 0.065);
  --border-glass:    rgba(255, 255, 255, 0.08);
  --border-hi:       rgba(59, 130, 246, 0.45);
  --border-subtle:   rgba(255, 255, 255, 0.06);

  --cobalt-primary:  #3B82F6;
  --cobalt-glow:     rgba(59, 130, 246, 0.28);
  --indigo-accent:   #6366F1;
  --cyan-accent:     #0EA5E9;
  --cyan-glow:       rgba(14, 165, 233, 0.22);
  --emerald-safe:    #10B981;
  --emerald-glow:    rgba(16, 185, 129, 0.25);
  --amber-cta:       #F59E0B;
  --amber-glow:      rgba(245, 158, 11, 0.35);

  --text-main:       #F1F5F9;
  --text-muted:      #94A3B8;
  --text-dim:        #64748B;
  --text-white:      #FFFFFF;

  --font-heading:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:       ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --radius-pill:     9999px;
  --container:       1200px;
  --container-narrow: 840px;
  --transition:      all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET & BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body.theme-obsidian {
  font-family: var(--font-body);
  background-color: var(--bg-void);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 74px;
}

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, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-align: center;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 50%, #6366F1 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 22px var(--cobalt-glow), 0 0 1px rgba(255, 255, 255, 0.6) inset;
  padding: 16px 32px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.48), 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 12px 24px;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hi);
  color: var(--text-white);
  transform: translateY(-1px);
}

/* ── SYSTEM STATUS / URGENCY TICKER ──────────────────────────────────────── */
.sys-bar {
  background: rgba(14, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 20px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 950;
}

.sys-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald-safe);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-safe);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.sys-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-accent);
}

.timer-digits {
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(14, 165, 233, 0.18);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(14, 165, 233, 0.4);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

/* ── FLOATING GLASS HEADER ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 12px;
  z-index: 900;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14, 17, 23, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 26px;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.desktop-nav a:hover {
  color: var(--cyan-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header {
  font-size: 13px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 14px var(--cobalt-glow);
}

.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.5);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 6px;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* 1024px Header Collapse Rule */
@media (max-width: 1024px) {
  .desktop-nav,
  .btn-header,
  .header-actions .btn-secondary {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
  }
  .header {
    padding: 0 16px;
  }
}

/* ── MOBILE DRAWER NAVIGATION ─────────────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 360px;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-glass);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.drawer-close {
  font-size: 26px;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  padding: 6px 0;
}

.drawer-nav a:hover {
  color: var(--cyan-accent);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.drawer-guarantee {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
}

/* ── HERO SECTION ────────────────────────────────────────────────────────── */
.hero-section {
  padding: 44px 0 60px;
  background: radial-gradient(circle at 50% 15%, rgba(59, 130, 246, 0.09) 0%, transparent 65%);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 40px;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 16px;
}

.hero-stars {
  color: #FBBF24;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero-title {
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 50%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.hero-price-strip {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}

.hero-price-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-price-current {
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.hero-price-regular {
  font-size: 1.05rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.hero-price-savings {
  background: rgba(14, 165, 233, 0.16);
  color: var(--cyan-accent);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
}

.hero-cta-wrapper {
  margin-bottom: 18px;
}

.hero-cta-wrapper .btn-primary {
  width: 100%;
  max-width: 440px;
  font-size: 1.02rem;
  padding: 16px 24px;
}

.hero-trust-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--cyan-accent);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-floating-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(14, 17, 23, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-floating-badge .pulse-green {
  width: 7px;
  height: 7px;
  background: var(--emerald-safe);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-safe);
}

/* ── MOBILE FOLD SPECIFIC OPTIMIZATIONS (<= 860px) ───────────────────────── */
@media (max-width: 860px) {
  .sys-bar {
    padding: 6px 12px;
    font-size: 11px;
  }
  .header {
    top: 6px;
    padding: 0 12px;
  }
  .header-inner {
    height: 54px;
    padding: 8px 16px;
  }
  .site-logo img {
    height: 26px;
  }
  .hero-section {
    padding: 12px 0 24px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-visual {
    order: 1;
    max-width: 250px;
    margin: 0 auto;
  }
  .hero-card {
    padding: 8px;
    border-radius: var(--radius-md);
  }
  .hero-card img {
    max-height: 130px;
    object-fit: contain;
  }
  .hero-floating-badge {
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 10px;
  }
  .hero-copy {
    order: 2;
    text-align: center;
  }
  .hero-rating-badge {
    margin-bottom: 6px;
    padding: 3px 10px;
    font-size: 11px;
  }
  .hero-stars {
    font-size: 11.5px;
    letter-spacing: 1px;
  }
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .hero-subtitle {
    font-size: 0.86rem;
    line-height: 1.38;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-price-strip {
    padding: 5px 12px;
    margin-bottom: 10px;
    gap: 8px;
  }
  .hero-price-label {
    font-size: 11.5px;
  }
  .hero-price-current {
    font-size: 1.35rem;
  }
  .hero-price-regular {
    font-size: 0.92rem;
  }
  .hero-price-savings {
    font-size: 10.5px;
    padding: 2px 6px;
  }
  .hero-cta-wrapper {
    margin-bottom: 8px;
  }
  .hero-cta-wrapper .btn-primary {
    max-width: 100%;
    padding: 12px 16px;
    font-size: 0.92rem;
  }
  .hero-trust-notes {
    justify-content: center;
    gap: 8px;
    font-size: 10.5px;
  }
}

/* ── TRUST BAR / TELEMETRY HIGHLIGHTS ────────────────────────────────────── */
.telemetry-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-glass);
  padding: 22px 0;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.telemetry-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.telemetry-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.telemetry-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.telemetry-sub {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .telemetry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .telemetry-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ── SECTION COMMONS ─────────────────────────────────────────────────────── */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-glass);
}

.section-alt {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-accent);
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  margin-bottom: 16px;
  color: #FFFFFF;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── BENTO GRID ──────────────────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 24px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.bento-card.span-2-col {
  grid-column: span 2;
}

.bento-card.span-2-row {
  grid-row: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt-primary);
  font-size: 22px;
  margin-bottom: 20px;
}

.bento-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.bento-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-img-wrap {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.bento-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.span-2-col,
  .bento-card.span-2-row {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ── 4-STEP HOW IT WORKS ─────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.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 {
  transform: translateY(-3px);
  border-color: var(--border-hi);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.step-img-frame {
  height: 180px;
  overflow: hidden;
  background: #000000;
  position: relative;
}

.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-number-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14, 17, 23, 0.9);
  border: 1px solid var(--border-glass);
  color: var(--cyan-accent);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.step-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 990px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PACKAGES & PRICING SECTION ──────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.package-card.popular {
  border: 2px solid var(--cyan-accent);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08) 0%, var(--bg-card) 35%);
  box-shadow: 0 10px 32px var(--cyan-glow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 18px;
}

.package-name {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.package-savings-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--emerald-safe);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.package-price-wrap {
  text-align: center;
  margin-bottom: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.package-price-per-unit {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.package-price-per-unit span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-price-total {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 4px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.package-features li {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.package-features li svg {
  width: 14px;
  height: 14px;
  color: var(--cyan-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-card .btn-primary {
  width: 100%;
  padding: 13px 18px;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SPECIFICATIONS TABLE ────────────────────────────────────────────────── */
.specs-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.95rem;
}

.specs-table th {
  background: var(--bg-surface);
  color: var(--cyan-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  width: 38%;
}

.specs-table td {
  color: var(--text-main);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

/* 768px Stacked Card Specs Table Rule */
@media (max-width: 768px) {
  .specs-table-wrapper {
    background: transparent;
    border: none;
  }
  .specs-table,
  .specs-table tbody,
  .specs-table tr {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
  }
  .specs-table tr {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    padding: 14px 18px;
  }
  .specs-table th,
  .specs-table td {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    padding: 4px 0 !important;
    border: none !important;
  }
  .specs-table th {
    background: transparent;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cyan-accent);
    margin-bottom: 4px;
  }
  .specs-table td {
    font-size: 0.92rem;
    color: var(--text-main);
  }
}

/* ── REVIEWS SECTION ─────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hi);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.05rem;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--emerald-safe);
  font-weight: 600;
}

.review-stars {
  color: #FBBF24;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 13px;
}

.review-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.review-date {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 14px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ ACCORDION ───────────────────────────────────────────────────────── */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hi);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-accent);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--cyan-accent);
  color: #FFFFFF;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-answer p {
  margin: 0;
}

/* ── STICKY BOTTOM CONVERSION BAR ────────────────────────────────────────── */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-glass);
  padding: 10px 0;
  z-index: 850;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-thumb {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.sticky-meta {
  font-size: 11.5px;
  color: var(--cyan-accent);
  font-weight: 600;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-btn-cta {
  font-size: 13px;
  padding: 10px 20px;
}

@media (max-width: 640px) {
  .sticky-product-info {
    display: none;
  }
  .sticky-actions {
    width: 100%;
  }
  .sticky-btn-cta {
    width: 100%;
    text-align: center;
  }
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.main-footer {
  background: #060709;
  border-top: 1px solid var(--border-glass);
  padding: 56px 0 32px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 32px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}

.footer-nav a:hover {
  color: var(--cyan-accent);
}

.footer-disclaimers {
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ── LEGAL & COUNTRY SELECTION PAGES ─────────────────────────────────────── */
.legal-content-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 32px auto 0;
  max-width: 860px;
}

.legal-header {
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.legal-page-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.legal-date {
  font-size: 13px;
  color: var(--cyan-accent);
  font-weight: 600;
}

.legal-body h2 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-body p, .legal-body li {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .legal-content-wrapper {
    padding: 24px 18px;
  }
}

.country-portal-wrapper {
  max-width: 840px;
  margin: 36px auto 60px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 840px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .country-grid {
    grid-template-columns: 1fr;
  }
}

.country-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: var(--transition);
}

.country-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.country-card.featured {
  border: 2px solid var(--cyan-accent);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, var(--bg-surface) 35%);
}

.country-flag-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-flag-icon {
  font-size: 28px;
  line-height: 1;
}

.country-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.country-status-tag {
  font-size: 11px;
  color: var(--emerald-safe);
  font-weight: 600;
}

.country-cta-btn {
  font-size: 12px;
  padding: 8px 14px;
}
