/* ================================================================
   PODBLOOM™ OFFICIAL STORE — NORDIC DESIGN SYSTEM
   Clean Scandinavian Product Experience (Minimalist, Organic, Crisp)
   Palette: Warm Paper (#F9F8F5), Crisp White (#FFFFFF), Deep Slate (#18181B),
            Sage Forest (#2D6A4F / #40916C), Mint Mist (#E8F5E9), Amber Gold (#D97706)
   Typography: DM Serif Display (Headings), Plus Jakarta Sans (Body), IBM Plex Mono (Data)
   ================================================================ */

:root {
  --bg-paper:        #F9F8F5;
  --bg-card:         #FFFFFF;
  --bg-dark:         #131915;
  --bg-subtle:       #F0EDE6;
  --border-light:    #E5E2DA;
  --border-mid:      #D1CDC4;

  --sage-dark:       #1B4332;
  --sage-primary:    #2D6A4F;
  --sage-light:      #52B788;
  --sage-soft:       #E8F5E9;
  --sage-glow:       rgba(45, 106, 79, 0.18);

  --ocean-blue:      #1D4ED8;
  --ocean-soft:      #EFF6FF;

  --gold:            #D97706;
  --gold-soft:       #FEF3C7;

  --text-primary:    #18181B;
  --text-secondary:  #3F3F46;
  --text-muted:      #71717A;
  --text-dim:        #A1A1AA;

  --font-serif:      'DM Serif Display', Georgia, serif;
  --font-sans:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:       'IBM Plex Mono', monospace;

  --container:       1180px;
  --container-narrow: 860px;
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-pill:     9999px;
  --shadow-sm:       0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card:     0 8px 28px rgba(24, 24, 27, 0.06);
  --shadow-hover:    0 16px 40px rgba(45, 106, 79, 0.12);
  --transition:      all 0.22s 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: light; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg-paper);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: var(--text-primary); line-height: 1.25; }
ul, ol { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 20px; }

/* ── TOP ANNOUNCEMENT BAR ────────────────────────────────────── */
.top-bar {
  background: var(--sage-dark);
  color: #FFFFFF;
  text-align: center;
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.top-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top-bar-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* ── HEADER & NAVIGATION (R8.1) ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 248, 245, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-img {
  height: 38px;
  width: auto;
}

/* Desktop Navigation (4 Core Links, 32px spacing, NO country dropdown) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover {
  color: var(--sage-primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage-primary);
  transition: width 0.2s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px var(--sage-glow);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--sage-glow);
}

/* Mobile Hamburger Toggle */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
}
.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 110;
  padding: 85px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-nav-drawer.active {
  right: 0;
  visibility: visible;
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer-links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.drawer-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
}

/* ── HERO SECTION (R8.2 & R5.4) ─────────────────────────────── */
.hero-section {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-text-col {
  min-width: 0;
}
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(45, 106, 79, 0.2);
}
.hero-rating-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.hero-title {
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
}
.hero-pricing-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--sage-primary);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-price-left {
  display: flex;
  flex-direction: column;
}
.hero-price-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.hero-price-value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--sage-dark);
  font-weight: 700;
}
.hero-price-strike {
  font-size: 1.05rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 6px;
  font-family: var(--font-sans);
}
.hero-price-badge {
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px var(--sage-glow);
  transition: var(--transition);
  align-self: flex-start;
}
.btn-primary-hero:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--sage-glow);
}
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-item svg {
  width: 15px;
  height: 15px;
  fill: var(--sage-primary);
}

.hero-image-wrap {
  position: relative;
  min-width: 0;
}
.hero-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border-light);
}
.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 1.1rem;
}
.floating-text-top {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}
.floating-text-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--sage-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── HOW IT WORKS SECTION ───────────────────────────────────── */
.how-section {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage-primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-mid);
}
.step-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.step-img-wrap img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.step-card:hover .step-img-wrap img {
  transform: scale(1.03);
}
.step-number-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.9);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.step-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
}
.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── TECHNOLOGY & COMPARISON SECTION ────────────────────────── */
.tech-section {
  padding: 90px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.tech-content {
  min-width: 0;
}
.tech-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.tech-content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.tech-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.tech-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.point-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: bold;
  font-size: 0.75rem;
}
.point-text strong {
  color: var(--text-primary);
}
.point-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.tech-img-wrap {
  min-width: 0;
}
.tech-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Comparison Table */
.comparison-wrap {
  margin-top: 48px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  min-width: 580px;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table th {
  background: var(--bg-paper);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.comparison-table th.col-highlight {
  background: var(--sage-soft);
  color: var(--sage-dark);
  border-left: 2px solid var(--sage-primary);
  border-right: 2px solid var(--sage-primary);
}
.comparison-table td.col-highlight {
  background: rgba(232, 245, 233, 0.4);
  border-left: 2px solid var(--sage-primary);
  border-right: 2px solid var(--sage-primary);
  font-weight: 600;
  color: var(--sage-dark);
}
.check-yes {
  color: var(--sage-primary);
  font-weight: bold;
}
.check-no {
  color: #DC2626;
  font-weight: bold;
}

/* ── UNBOXING SECTION ───────────────────────────────────────── */
.unboxing-section {
  padding: 90px 0;
}
.unboxing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.unboxing-img-wrap {
  min-width: 0;
}
.unboxing-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 100%;
  height: auto;
}
.unboxing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.unboxing-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.unboxing-item-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--sage-soft);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.unboxing-item-title {
  font-weight: 600;
  color: var(--text-primary);
}
.unboxing-item-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ── REVIEWS SECTION ────────────────────────────────────────── */
.reviews-section {
  padding: 90px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  min-width: 0;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-mid);
}
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
}
.review-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.author-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.92rem;
}
.author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.verified-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--sage-dark);
  background: var(--sage-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* ── FAQ ACCORDION SECTION ──────────────────────────────────── */
.faq-section {
  padding: 90px 0;
}
.faq-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-item.active {
  border-color: var(--sage-light);
  box-shadow: 0 4px 20px var(--sage-glow);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  cursor: pointer;
  background: transparent;
  gap: 16px;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--sage-soft);
  color: var(--sage-dark);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.25s ease;
  padding: 0 24px;
}
.faq-item.active .faq-body {
  max-height: 500px;
  padding: 0 24px 24px;
}
.faq-body p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ── PACKAGES SECTION (#packages) (R8.3 & R8.4) ─────────────── */
.packages-section {
  padding: 90px 0 110px;
  background: var(--bg-paper);
  position: relative;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.package-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-width: 0;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.package-card.highlighted {
  border: 2px solid var(--sage-primary);
  box-shadow: 0 12px 36px var(--sage-glow);
  transform: scale(1.03);
}
.package-card.highlighted:hover {
  transform: scale(1.03) translateY(-4px);
}
.package-badge-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px var(--sage-glow);
  white-space: nowrap;
}
.package-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}
.package-tier-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.package-savings-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage-dark);
  background: var(--sage-soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.package-price-wrap {
  text-align: center;
  margin: 16px 0;
}
.package-unit-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--sage-dark);
  line-height: 1;
  font-weight: 700;
}
.package-each-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.package-total-price {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 4px;
}
.package-strike-price {
  text-decoration: line-through;
  color: var(--text-dim);
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.package-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.package-feature-item svg {
  width: 16px;
  height: 16px;
  fill: var(--sage-primary);
  flex-shrink: 0;
}

.package-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px var(--sage-glow);
  transition: var(--transition);
  text-align: center;
}
.package-cta-btn:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--sage-glow);
}
.package-card.highlighted .package-cta-btn {
  background: var(--sage-dark);
}
.package-card.highlighted .package-cta-btn:hover {
  background: var(--sage-primary);
}

.packages-guarantee-note {
  text-align: center;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.packages-guarantee-note svg {
  width: 18px;
  height: 18px;
  fill: var(--sage-primary);
}

/* ── STICKY BOTTOM CONVERSION BAR ───────────────────────────── */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 12px 20px;
  z-index: 95;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-bottom-bar.visible {
  transform: translateY(0);
}
.sticky-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-bar-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.sticky-bar-savings {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage-dark);
  background: var(--sage-soft);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.sticky-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px var(--sage-glow);
  white-space: nowrap;
}
.sticky-bar-cta:hover {
  background: var(--sage-dark);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #18181B;
  color: #E4E4E7;
  padding: 64px 0 32px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h4 {
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer-brand p {
  color: #A1A1AA;
  line-height: 1.6;
  max-width: 420px;
}
.footer-col h5 {
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #A1A1AA;
}
.footer-links a:hover {
  color: #FFFFFF;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: #71717A;
}

/* ── COUNTRY SELECTION PORTAL STYLES (select-country.html) ──── */
.country-portal-wrap {
  min-height: 100vh;
  background-color: var(--bg-paper);
}
.country-portal-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 18px 24px;
}
.country-portal-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.country-portal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}
.country-portal-back:hover {
  color: var(--sage-primary);
}
.country-ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage-dark);
  background: var(--sage-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.country-main-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.country-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.country-step {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.country-step.done {
  background: #E5E7EB;
  color: #4B5563;
}
.country-step.active {
  background: var(--sage-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--sage-glow);
}
.country-step.pending {
  background: #F3F4F6;
  color: #9CA3AF;
}
.country-step-divider {
  color: #9CA3AF;
  font-weight: bold;
}
.country-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.country-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-width: 0;
}
.country-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sage-light);
}
.country-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.country-flag-name {
  display: flex;
  align-items: center;
  gap: 12px;
}
.country-flag {
  font-size: 2rem;
  line-height: 1;
}
.country-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
}
.country-courier-tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--sage-dark);
  background: var(--sage-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.country-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}
.country-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.country-info-item svg {
  width: 14px;
  height: 14px;
  fill: var(--sage-primary);
}
.country-cta-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sage-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.country-cta-btn:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

/* ── POLICY PAGES (privacy, terms, contact) ─────────────────── */
.policy-page-wrap {
  padding: 60px 0 100px;
}
.policy-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.policy-card h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}
.policy-card h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
}
.policy-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
.policy-card ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  max-width: 540px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}
.form-input {
  padding: 12px 16px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--sage-primary);
  box-shadow: 0 0 0 3px var(--sage-glow);
}

/* ── RESPONSIVE OVERRIDES (320px, 390px, 768px, 1024px) ────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .package-card.highlighted { transform: none; }
  .package-card.highlighted:hover { transform: translateY(-4px); }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .tech-grid { grid-template-columns: 1fr; }
  .unboxing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .country-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .hero-section { padding: 20px 0 40px; }
  .hero-title { font-size: 1.95rem; margin-bottom: 8px; line-height: 1.2; }
  
  /* CRITICAL MOBILE FOLD (R5.4): display contents to place image right after title */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-text-col {
    display: contents;
  }
  .hero-badge-row { order: 1; margin-bottom: 6px; }
  .hero-title { order: 2; margin-bottom: 8px; }
  .hero-image-col {
    order: 3;
    width: 100%;
    max-width: 180px;
    margin: 0 auto 10px;
  }
  .hero-image-wrap {
    width: 100%;
  }
  .hero-image-wrap .hero-main-img {
    max-height: 160px;
    object-fit: cover;
  }
  .hero-floating-card { display: none; }
  .hero-pricing-box {
    order: 4;
    padding: 10px 14px;
    margin-bottom: 10px;
  }
  .hero-cta-stack {
    order: 5;
    width: 100%;
  }
  .btn-primary-hero {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.88rem;
    text-align: center;
  }
  .hero-subtitle {
    order: 6;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 12px;
  }
  .hero-trust-row {
    order: 7;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.76rem;
  }

  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .section-title { font-size: 1.75rem; }
  .sticky-bar-title { display: none; }
  .sticky-bar-inner { justify-content: center; }
  .sticky-bar-cta { width: 100%; text-align: center; justify-content: center; }
  .policy-card { padding: 24px 16px; }
}

@media (max-width: 480px) {
  .btn-nav-cta { display: none; }
  .header-actions { gap: 8px; }
  .country-progress-bar { flex-wrap: wrap; gap: 6px; font-size: 0.72rem; }
  .country-step { padding: 4px 10px; }
  .country-step-divider { font-size: 0.7rem; }
  .sticky-bar-cta { font-size: 0.8rem; padding: 10px 14px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.7rem; }
  .package-tier-name { font-size: 1.35rem; }
  .package-unit-price { font-size: 2rem; }
  .btn-primary-hero { font-size: 0.82rem; padding: 12px 14px; }
  .country-name { font-size: 1.15rem; }
  .container { padding: 0 16px; }
}
