/* ══════════════════════════════════════════════════════════════════
   AKEMI COFFEE BOOST™ — EMBER DESIGN SYSTEM (COFFEE METABOLIC THEME)
   High-energy, roasted dark luxury aesthetic with radiant crema gold
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --bg-main: #0E0B09;
  --bg-surface: #181310;
  --bg-surface-elevated: #221B16;
  --bg-surface-alt: #140F0D;
  --border-subtle: #2D231D;
  --border-highlight: #42342B;
  
  --amber-primary: #E59835;
  --amber-glow: #F59E0B;
  --amber-soft: rgba(245, 158, 11, 0.12);
  --amber-hover: #D97706;
  
  --flame-accent: #EF4444;
  --flame-soft: rgba(239, 68, 68, 0.12);
  
  --text-pure: #FFFDF9;
  --text-main: #EFE9E1;
  --text-muted: #A3968B;
  --text-subtle: #73675D;

  --badge-bg: rgba(229, 152, 53, 0.15);
  --badge-border: rgba(229, 152, 53, 0.35);

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

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 35px rgba(229, 152, 53, 0.28);
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-glow);
  background: var(--amber-soft);
  border: 1px solid var(--badge-border);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-pure);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══ TOP ANNOUNCEMENT BAR ═══ */
.top-bar {
  background: linear-gradient(90deg, #181310 0%, #241A14 50%, #181310 100%);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--amber-glow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ═══ MAIN NAVIGATION (R8.1) ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 11, 9, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  border-radius: 4px;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--amber-glow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--amber-glow);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber-primary) 0%, #C2781E 100%);
  color: #120E0C;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(229, 152, 53, 0.35);
  transition: all 0.25s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229, 152, 53, 0.5);
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-primary) 100%);
}

/* ═══ MOBILE MENU HAMBURGER & DRAWER ═══ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  z-index: 120;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background-color: var(--text-pure);
  margin: 2.5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background-color: var(--bg-surface);
  border-left: 1px solid var(--border-highlight);
  z-index: 110;
  padding: 85px 24px 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.mobile-nav-drawer.open {
  right: 0;
  visibility: visible;
}

.drawer-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-highlight);
  color: var(--text-pure);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--amber-primary) 0%, #C2781E 100%);
  color: #120E0C;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: var(--radius-full);
}

/* ═══ HERO SECTION (R8.2 & R5.4) ═══ */
.hero-section {
  padding: 48px 0 72px 0;
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(229, 152, 53, 0.08) 0%, transparent 60%);
  overflow: hidden;
}

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

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-soft);
  border: 1px solid var(--badge-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-glow);
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.14;
  color: var(--text-pure);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span.highlight {
  color: var(--amber-glow);
  background: linear-gradient(135deg, #F59E0B 0%, #E59835 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text-main);
  margin-bottom: 26px;
  max-width: 580px;
}

.hero-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-pure);
}

.hero-check-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--amber-soft);
  border: 1px solid var(--amber-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-glow);
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-primary) 100%);
  color: #120E0C;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(229, 152, 53, 0.45);
  transition: all 0.25s ease;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(229, 152, 53, 0.6);
  background: linear-gradient(135deg, #FBBF24 0%, var(--amber-glow) 100%);
}

.hero-trust-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-main {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-floating-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: rgba(24, 19, 16, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--badge-border);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-spark-icon {
  font-size: 1.5rem;
}

.badge-text-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-pure);
}

.badge-text-sub {
  font-size: 0.76rem;
  color: var(--amber-glow);
  font-weight: 600;
}

/* ═══ TRUST STATS BAR ═══ */
.stats-bar-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

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

.stat-item {
  padding: 10px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-glow);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══ HOW IT WORKS / 3-STEP RITUAL ═══ */
.how-it-works-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-md);
}

.step-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.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-number-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--amber-primary);
  color: var(--amber-glow);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

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

.step-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 10px;
}

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

/* ═══ INGREDIENT SPOTLIGHT SECTION ═══ */
.ingredients-section {
  padding: 85px 0;
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.ingredient-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

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

.ingredient-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.ingredient-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.ingredient-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══ COMPARISON TABLE ═══ */
.comparison-wrap {
  overflow-x: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
}

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

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

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table th.brand-col {
  background: var(--amber-soft);
  color: var(--amber-glow);
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}

.comparison-table td.brand-col {
  background: rgba(229, 152, 53, 0.04);
  font-weight: 700;
  color: var(--text-pure);
}

.table-check {
  color: var(--amber-glow);
  font-weight: 900;
  font-size: 1.15rem;
}

.table-cross {
  color: var(--text-subtle);
  font-weight: 700;
}

/* ═══ REVIEWS SECTION (6 DETAILED REVIEWS) ═══ */
.reviews-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

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

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--amber-glow);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.94rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-name {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-pure);
}

.author-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber-glow);
  background: var(--amber-soft);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* ═══ FAQ SECTION (10 FAQS) ═══ */
.faq-section {
  padding: 85px 0;
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-subtle);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--amber-primary);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  background: none;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--amber-glow);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-body {
  max-height: 500px;
  transition: max-height 0.35s ease-in-out;
  padding: 0 24px 22px 24px;
}

.faq-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══ PACKAGES SECTION (#packages) (R8.3 & R8.4) ═══ */
.packages-section {
  padding: 95px 0 110px 0;
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

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

.package-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
}

.package-card.highlighted {
  border: 2px solid var(--amber-primary);
  background: linear-gradient(180deg, #1D1612 0%, var(--bg-surface) 100%);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: scale(1.02);
}

.package-badge-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-primary) 100%);
  color: #120E0C;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(229, 152, 53, 0.4);
}

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

.package-tier-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.package-savings-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--amber-glow);
  background: var(--amber-soft);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.package-img-wrap {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-img-wrap img {
  max-height: 100%;
  object-fit: contain;
}

.package-price-wrap {
  text-align: center;
  margin-bottom: 22px;
}

.package-unit-price {
  font-family: var(--font-heading);
  font-size: 2.55rem;
  font-weight: 900;
  color: var(--text-pure);
  line-height: 1.1;
}

.package-each-label {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.package-strike-price {
  text-decoration: line-through;
  color: var(--text-subtle);
}

.package-total-price {
  font-size: 0.94rem;
  color: var(--amber-glow);
  font-weight: 700;
  margin-top: 6px;
}

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

.package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.package-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--amber-glow);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--amber-primary) 0%, #C2781E 100%);
  color: #120E0C;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(229, 152, 53, 0.35);
  transition: all 0.25s ease;
  text-align: center;
}

.package-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229, 152, 53, 0.55);
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-primary) 100%);
}

.package-selection-notice {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.packages-guarantee-note {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.packages-guarantee-note svg {
  width: 22px;
  height: 22px;
  fill: var(--amber-glow);
  flex-shrink: 0;
}

/* ═══ STICKY BOTTOM CONVERSION BAR ═══ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(24, 19, 16, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-highlight);
  padding: 12px 20px;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(110%);
  transition: transform 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

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

.sticky-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-pure);
}

.sticky-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber-glow);
  background: var(--amber-soft);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.sticky-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber-primary) 100%);
  color: #120E0C;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--radius-full);
}

/* ═══ FOOTER ═══ */
.site-footer {
  background-color: #080605;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-pure);
  margin-bottom: 12px;
}

.footer-links h5 {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  color: var(--text-pure);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--amber-glow);
}

.footer-disclaimer {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  margin-bottom: 24px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-subtle);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

/* ═══ COUNTRY PORTAL (select-country.html) ═══ */
.portal-container {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 20px;
}

.portal-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 10px 20px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-subtle);
}

.progress-step.completed {
  color: var(--text-muted);
}

.progress-step.active {
  color: var(--amber-glow);
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.progress-step.active .step-num {
  background: var(--amber-glow);
  color: #120E0C;
}

.country-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.country-option-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
  text-decoration: none;
}

.country-option-card:hover {
  border-color: var(--amber-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.country-flag {
  font-size: 2.2rem;
}

.country-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
}

.country-subtext {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.country-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--amber-primary) 0%, #C2781E 100%);
  color: #120E0C;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: var(--radius-full);
}

/* ═══ OVERFLOW FIX FOR LONG STRINGS & DETAILS ═══ */
.contact-detail, .contact-detail a {
  word-break: break-all;
  overflow-wrap: anywhere;
}

.contact-desc, .contact-title, .legal-content p, .legal-content li {
  overflow-wrap: anywhere;
}

/* ═══ RESPONSIVE BREAKPOINTS (R5.1 & R5.4) ═══ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-cta-wrapper {
    align-items: center;
  }
  .hero-highlights-list {
    align-items: center;
  }
  .hero-trust-subtext {
    justify-content: center;
  }
  .steps-grid, .ingredients-grid, .reviews-grid, .packages-grid {
    grid-template-columns: 1fr;
  }
  .package-card.highlighted {
    transform: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .nav-cta-btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .section-title {
    font-size: 1.95rem;
  }
  .hero-img-main {
    max-width: 360px;
  }
  .sticky-cta-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .country-option-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .country-flag-title {
    flex-direction: column;
    gap: 8px;
  }
}

/* CRITICAL MOBILE FOLD (R5.4) & NARROW RESPONSIVENESS */
@media (max-width: 640px) {
  .hero-section {
    padding: 16px 0 32px 0;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-content-col {
    display: contents;
  }
  .hero-pill-badge {
    order: 1;
    margin-bottom: 6px;
    font-size: 0.72rem;
    padding: 4px 10px;
  }
  .hero-title {
    order: 2;
    font-size: 1.85rem;
    line-height: 1.16;
    margin-bottom: 8px;
  }
  .hero-img-box {
    order: 3;
    width: 100%;
    max-width: 170px;
    margin: 0 auto 8px auto;
  }
  .hero-img-main {
    max-height: 155px;
    width: auto;
    object-fit: contain;
  }
  .hero-floating-badge {
    display: none;
  }
  .hero-subtitle {
    order: 4;
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }
  .hero-highlights-list {
    display: none; /* Keep clean and above 844px fold */
  }
  .hero-cta-wrapper {
    order: 5;
    width: 100%;
    align-items: center;
    margin-bottom: 8px;
  }
  .btn-primary-hero {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.9rem;
  }
  .hero-trust-subtext {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.74rem;
    gap: 4px;
  }
  .portal-container {
    padding: 0 14px;
    margin: 32px auto;
  }
  .portal-progress-bar {
    padding: 8px 12px;
    margin-bottom: 24px;
    box-sizing: border-box;
  }
  .progress-step {
    font-size: 0.75rem;
    gap: 5px;
  }
  .step-num {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .package-unit-price {
    font-size: 2.1rem;
  }
  .package-tier-name {
    font-size: 1.3rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .portal-container {
    padding: 0 10px;
  }
  .portal-progress-bar {
    padding: 6px 8px;
  }
  .progress-step {
    font-size: 0.7rem;
    gap: 4px;
  }
  .step-num {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }
}
