/* ==========================================================================
   TITANCUT PRO™ — OFFICIAL STORE STYLESHEET
   Theme: Ember (Deep Charcoal, Gunmetal, Titanium Silver, Blaze Orange)
   ========================================================================== */

:root {
  /* Core Color Palette */
  --bg-obsidian:       #0A0A0C;
  --bg-charcoal:       #121215;
  --bg-surface:        #18181D;
  --bg-card:           #1F1F26;
  --bg-card-hover:     #26262F;
  --bg-accent-soft:    rgba(249, 115, 22, 0.08);

  --border-subtle:     #2A2A34;
  --border-focus:      #F97316;
  --border-card:       #32323E;

  --blaze-primary:     #F97316;
  --blaze-hover:       #EA580C;
  --blaze-dark:        #C2410C;
  --blaze-glow:        rgba(249, 115, 22, 0.28);

  --ink-white:         #FFFFFF;
  --ink-silver:        #F4F4F5;
  --ink-body:          #D4D4D8;
  --ink-muted:         #A1A1AA;
  --ink-dim:           #71717A;

  --emerald-safe:      #10B981;
  --emerald-glow:      rgba(16, 185, 129, 0.20);

  /* Typography */
  --font-heading:      'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Radii */
  --radius-sm:         6px;
  --radius-md:         10px;
  --radius-lg:         16px;
  --radius-xl:         22px;
  --radius-pill:       9999px;

  --container:         1160px;
  --transition:        all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET & GLOBAL ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body.theme-ember {
  font-family: var(--font-body);
  background-color: var(--bg-obsidian);
  color: var(--ink-body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  overflow-wrap: break-word;
}

p, span, strong, h1, h2, h3, h4, h5, h6, li, td, th {
  overflow-wrap: break-word;
}

a[href^="mailto:"] {
  word-break: break-all;
}

.break-all {
  word-break: break-all;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink-white);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 68px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--blaze-primary);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.06rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── BUTTONS & BADGES ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--blaze-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.42);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--ink-silver);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--blaze-primary);
  color: var(--ink-white);
  transform: translateY(-1px);
}

/* ── TOP URGENCY BANNER ─────────────────────────────────────────────────── */
.urgency-banner {
  background: linear-gradient(90deg, #18181D 0%, #221A16 50%, #18181D 100%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--ink-silver);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.02em;
}

.urgency-banner .banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.urgency-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--blaze-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--blaze-primary);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.timer-digits {
  color: var(--blaze-primary);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

/* ── HEADER NAVIGATION ───────────────────────────────────────────────────── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.desktop-nav a:hover {
  color: var(--blaze-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 14px var(--blaze-glow);
}

.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.45);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 8px;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--ink-silver);
  border-radius: 2px;
  transition: var(--transition);
}

/* 1024px Header Collapse Rule */
@media (max-width: 1024px) {
  .desktop-nav,
  .btn-header,
  .header-actions .btn-secondary,
  .logo-subtext {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
  }
  .header-inner {
    padding-right: 0;
  }
}

/* ── MOBILE DRAWER NAVIGATION ─────────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  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: 280px;
  max-width: 80vw;
  background: var(--bg-charcoal);
  border-left: 1px solid var(--border-subtle);
  z-index: 999;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.drawer-close {
  font-size: 26px;
  line-height: 1;
  color: var(--ink-muted);
  padding: 4px;
}

.drawer-close:hover {
  color: var(--ink-white);
}

.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: 600;
  color: var(--ink-silver);
  display: block;
  padding: 6px 0;
}

.drawer-nav a:hover {
  color: var(--blaze-primary);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.drawer-guarantee {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
}

/* ── HERO SECTION ────────────────────────────────────────────────────────── */
.hero-section {
  padding: 48px 0 64px;
  background: radial-gradient(circle at 50% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 65%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-silver);
  margin-bottom: 18px;
}

.hero-stars {
  color: #FBBF24;
  letter-spacing: 2px;
  font-size: 14px;
}

.hero-title {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--ink-white);
}

.hero-title .highlight {
  color: var(--blaze-primary);
  background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-price-strip {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.hero-price-label {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}

.hero-price-current {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink-white);
  font-family: var(--font-heading);
}

.hero-price-regular {
  font-size: 1.1rem;
  color: var(--ink-dim);
  text-decoration: line-through;
}

.hero-price-savings {
  background: rgba(249, 115, 22, 0.16);
  color: var(--blaze-primary);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
}

.hero-cta-wrapper {
  margin-bottom: 22px;
}

.hero-cta-wrapper .btn-primary {
  width: 100%;
  max-width: 440px;
  font-size: 1.05rem;
  padding: 17px 24px;
}

.hero-trust-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--ink-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--blaze-primary);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  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-card:hover img {
  transform: scale(1.02);
}

.hero-floating-badge {
  position: absolute;
  bottom: 34px;
  right: 34px;
  background: rgba(18, 18, 21, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-silver);
  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) {
  .urgency-banner {
    padding: 6px 0;
    font-size: 11.5px;
  }
  .urgency-banner .banner-inner {
    gap: 6px;
    line-height: 1.35;
  }
  .header-inner {
    height: 56px;
  }
  .site-logo img {
    height: 28px;
  }
  .hero-section {
    padding: 12px 0 28px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-visual {
    order: 1;
    max-width: 260px;
    margin: 0 auto;
  }
  .hero-card {
    padding: 8px;
    border-radius: var(--radius-md);
  }
  .hero-card img {
    max-height: 135px;
    object-fit: contain;
  }
  .hero-floating-badge {
    bottom: 12px;
    right: 12px;
    padding: 4px 8px;
    font-size: 10.5px;
  }
  .hero-copy {
    order: 2;
    text-align: center;
  }
  .hero-rating-badge {
    margin-bottom: 6px;
    padding: 4px 10px;
    font-size: 11.5px;
  }
  .hero-stars {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-price-strip {
    padding: 6px 14px;
    margin-bottom: 12px;
    gap: 8px;
  }
  .hero-price-label {
    font-size: 12px;
  }
  .hero-price-current {
    font-size: 1.35rem;
  }
  .hero-price-regular {
    font-size: 0.95rem;
  }
  .hero-price-savings {
    font-size: 11px;
    padding: 2px 6px;
  }
  .hero-cta-wrapper {
    margin-bottom: 10px;
  }
  .hero-cta-wrapper .btn-primary {
    max-width: 100%;
    padding: 12px 18px;
    font-size: 0.92rem;
  }
  .hero-trust-notes {
    justify-content: center;
    gap: 10px;
    font-size: 11px;
  }
}

/* ── TRUST BAR / HIGHLIGHT STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-charcoal);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blaze-primary);
  font-size: 20px;
  flex-shrink: 0;
}

.trust-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-white);
  margin-bottom: 2px;
}

.trust-card-desc {
  font-size: 12px;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ── PROBLEM VS SOLUTION (THE KITCHEN HYGIENE THREAT) ────────────────────── */
.problem-section {
  background: var(--bg-charcoal);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: var(--bg-surface);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-table td {
  font-size: 14.5px;
}

.comparison-table tr.highlight-row {
  background: rgba(249, 115, 22, 0.06);
}

.comparison-table tr.highlight-row td {
  color: var(--ink-white);
  font-weight: 600;
}

.comparison-table .badge-titan {
  color: var(--blaze-primary);
  font-weight: 700;
}

.comparison-table .badge-hazard {
  color: #EF4444;
  font-weight: 600;
}

/* ── 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-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--blaze-primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.step-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-charcoal);
  position: relative;
}

.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.step-card:hover .step-img-wrap img {
  transform: scale(1.04);
}

.step-num-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blaze-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.step-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step-title {
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: var(--ink-white);
}

.step-desc {
  font-size: 0.94rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-img-wrap {
    height: 190px;
  }
}

/* ── DEEP FEATURES / SPECIFICATIONS ──────────────────────────────────────── */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
  margin-bottom: 56px;
}

.features-split.reverse {
  grid-template-columns: 1fr 1fr;
}

.features-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.features-copy h3 {
  font-size: 1.85rem;
  margin-bottom: 14px;
}

.features-copy p {
  font-size: 1.02rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink-silver);
}

.feature-bullets li svg {
  width: 18px;
  height: 18px;
  color: var(--blaze-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .features-split, .features-split.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── SPECIFICATIONS TABLE (MOBILE UNCLIPPED STACKED CARD) ────────────────── */
.specs-table-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.specs-table th, .specs-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.specs-table th {
  background: var(--bg-surface);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blaze-primary);
  width: 32%;
}

.specs-table td {
  font-size: 14.5px;
  color: var(--ink-silver);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

/* Responsive Stacked-Card Rule for Specs at <= 768px */
@media (max-width: 768px) {
  .specs-table-wrapper {
    background: transparent;
    border: none;
    overflow: visible;
  }
  .specs-table {
    min-width: 0 !important;
    width: 100% !important;
    display: block;
  }
  .specs-table thead {
    display: none;
  }
  .specs-table tbody {
    display: block;
    width: 100%;
  }
  .specs-table tr {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: 14px 16px;
  }
  .specs-table th {
    display: block;
    width: 100%;
    padding: 0 0 6px 0;
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--blaze-primary);
  }
  .specs-table td {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    font-size: 14px;
    color: var(--ink-white);
  }
}

/* ── PACKAGES & PRICING SECTION (CONVERSION FOCUS) ───────────────────────── */
.packages-section {
  background: radial-gradient(circle at 50% 10%, rgba(249, 115, 22, 0.12) 0%, var(--bg-obsidian) 70%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.package-card.popular {
  border: 2px solid var(--blaze-primary);
  box-shadow: 0 8px 30px var(--blaze-glow);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, var(--bg-card) 25%);
}

.package-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px var(--blaze-glow);
  white-space: nowrap;
}

.package-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.package-name {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.package-discount-tag {
  display: inline-block;
  background: rgba(249, 115, 22, 0.16);
  color: var(--blaze-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.package-pricing {
  text-align: center;
  margin-bottom: 24px;
}

.package-price-unit {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--ink-white);
  line-height: 1;
}

.package-price-unit span {
  font-size: 1rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.package-price-total {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-top: 8px;
}

.package-price-regular {
  text-decoration: line-through;
  color: var(--ink-dim);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-silver);
}

.package-features li svg {
  width: 16px;
  height: 16px;
  color: var(--blaze-primary);
  flex-shrink: 0;
}

.package-cta-btn {
  width: 100%;
  font-size: 14px;
  padding: 16px 20px;
}

@media (max-width: 990px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    gap: 32px;
  }
}

/* ── 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-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--blaze-primary);
  transform: translateY(-3px);
}

.review-stars {
  color: #FBBF24;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink-white);
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.94rem;
  color: var(--ink-muted);
  line-height: 1.62;
  margin-bottom: 18px;
  flex: 1;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  font-size: 12.5px;
}

.review-author {
  font-weight: 700;
  color: var(--ink-silver);
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--emerald-safe);
  font-weight: 600;
}

@media (max-width: 860px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ── FAQ ACCORDION SECTION ───────────────────────────────────────────────── */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-white);
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blaze-primary);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blaze-primary);
  color: #FFFFFF;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  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(18, 18, 21, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 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: 18px;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticky-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-white);
  line-height: 1.2;
}

.sticky-meta {
  font-size: 12px;
  color: var(--blaze-primary);
  font-weight: 600;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-btn-cta {
  font-size: 13.5px;
  padding: 11px 22px;
}

@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: var(--bg-charcoal);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 32px;
  font-size: 13px;
  color: var(--ink-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-subtle);
  margin-bottom: 32px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}

.footer-nav a:hover {
  color: var(--blaze-primary);
}

.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(--ink-dim);
}

/* ── LEGAL / AUXILIARY PAGES STYLING ─────────────────────────────────────── */
.legal-content-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 32px auto 0;
  max-width: 860px;
}

.legal-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.legal-page-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--ink-white);
}

.legal-date {
  font-size: 13px;
  color: var(--blaze-primary);
  font-weight: 600;
}

.legal-body h2 {
  font-size: 1.45rem;
  color: var(--ink-white);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-body p, .legal-body li {
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .legal-content-wrapper {
    padding: 24px 18px;
  }
}

/* ── COUNTRY SELECTION PORTAL STYLING ────────────────────────────────────── */
.country-portal-wrapper {
  max-width: 780px;
  margin: 40px auto 60px;
}

.country-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  transition: var(--transition);
  position: relative;
}

.country-card.featured {
  border: 2px solid var(--blaze-primary);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, var(--bg-card) 30%);
  box-shadow: 0 8px 30px var(--blaze-glow);
}

.country-flag-details {
  display: flex;
  align-items: center;
  gap: 16px;
}

.country-flag-icon {
  font-size: 38px;
  line-height: 1;
}

.country-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-white);
  margin-bottom: 4px;
}

.country-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--emerald-safe);
  font-weight: 600;
}

.country-cta-btn {
  font-size: 13.5px;
  padding: 14px 26px;
}
