/* ================================================================
   VITASLIMEX — AURORA THEME DESIGN SYSTEM
   Theme: Aurora (Warm Minimalist & Clean Organic Wellness)
   Palette: Alabaster (#F7F5F0), Deep Forest Green (#1B4332), 
            Pure Cream (#FFFFFF), Sage (#2D6A4F), Warm Amber (#D97706)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --bg-alabaster: #F7F5F0;
  --bg-cream: #FFFFFF;
  --bg-secondary: #EFECE6;
  --bg-dark: #12281E;

  --forest-primary: #1B4332;
  --forest-dark: #143527;
  --forest-light: #2D6A4F;
  --forest-soft: #D8F3DC;

  --accent-amber: #D97706;
  --accent-amber-hover: #B45309;
  --accent-amber-soft: #FEF3C7;

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #F8FAF8;

  --border-color: #E2DDD5;
  --border-focus: #1B4332;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 8px 24px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 16px 36px rgba(27, 67, 50, 0.12);
  --shadow-accent: 0 8px 24px rgba(217, 119, 6, 0.25);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1200px;
  --nav-height: 76px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-alabaster);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Urgency Bar */
.top-bar {
  background: linear-gradient(90deg, #1B4332, #2D6A4F);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.55rem 1rem;
  text-align: center;
  position: relative;
  z-index: 101;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-bar-badge {
  background: var(--accent-amber);
  color: #FFFFFF;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.header-container {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--forest-primary);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* CTA Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-amber), #F59E0B);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.35);
  filter: brightness(1.04);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-nav-cta {
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
}

.btn-pulse {
  animation: subtle-pulse 2.2s infinite ease-in-out;
}

@keyframes subtle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  padding: 0;
  z-index: 120;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--forest-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 110;
  padding: 1.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  visibility: hidden;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--forest-primary);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  padding: 3rem 0 3.5rem;
  background: radial-gradient(circle at 80% 20%, rgba(216, 243, 220, 0.4) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(254, 243, 199, 0.4) 0%, transparent 60%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest-soft);
  color: var(--forest-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-stars {
  color: #F59E0B;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--forest-dark);
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--accent-amber);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-pricing-box {
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--forest-primary);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-callout-main {
  display: flex;
  flex-direction: column;
}

.price-callout-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-callout-value {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--forest-primary);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-callout-value small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-callout-badge {
  background: var(--accent-amber-soft);
  color: var(--accent-amber);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-cta-button {
  width: 100%;
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
}

.hero-guarantee-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item svg {
  color: var(--forest-light);
  flex-shrink: 0;
}

.hero-image-col {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  background: radial-gradient(circle, #FFFFFF 0%, #EFECE6 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 440px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(27, 67, 50, 0.15));
}

.hero-floating-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-soft);
  color: var(--forest-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.badge-text-primary {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.badge-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Section Common Styling */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-light);
  background: var(--forest-soft);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Cards & Feature Boxes */
.card {
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

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

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--forest-soft);
  color: var(--forest-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Ingredients Section */
.ingredient-card {
  background: var(--bg-alabaster);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 4px solid var(--forest-primary);
}

.ingredient-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.ingredient-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-amber);
  letter-spacing: 0.04em;
}

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

/* Comparison Table */
.table-container {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background: #FFFFFF;
}

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

.comparison-table th,
.comparison-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: var(--bg-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.comparison-table th.col-highlight {
  background: var(--forest-primary);
  color: #FFFFFF;
  text-align: center;
}

.comparison-table td.col-highlight {
  background: rgba(216, 243, 220, 0.25);
  font-weight: 700;
  color: var(--forest-dark);
  text-align: center;
}

.icon-check {
  color: #10B981;
  font-weight: 800;
}

.icon-cross {
  color: #EF4444;
  font-weight: 800;
}

/* Timeline / Protocol */
.timeline-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.timeline-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--forest-soft);
  color: var(--forest-primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* Testimonial Cards */
.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-user {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}

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

.review-stars {
  color: #F59E0B;
}

.review-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.review-verified {
  font-size: 0.78rem;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Packages Section (#packages) */
.packages-section {
  background: radial-gradient(circle at 50% 10%, rgba(216, 243, 220, 0.5) 0%, transparent 70%);
  padding: 5rem 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}

.package-card {
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-card.popular {
  border-color: var(--forest-primary);
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.16);
}

.package-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.package-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.3);
  white-space: nowrap;
}

.package-ribbon.amber {
  background: var(--accent-amber);
}

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

.package-supply {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--forest-dark);
}

.package-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.package-image-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.package-image-wrap img {
  max-height: 170px;
  width: auto;
  object-fit: contain;
}

.package-pricing {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--forest-primary);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.price-main small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-original {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-savings {
  display: inline-block;
  background: var(--accent-amber-soft);
  color: var(--accent-amber);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-top: 0.4rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-features li svg {
  color: #10B981;
  flex-shrink: 0;
}

.package-cta {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.package-shipping-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

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

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-dark);
  text-align: left;
  background: none;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--forest-soft);
  color: var(--forest-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-amber-soft);
  color: var(--accent-amber);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  padding-bottom: 1.25rem;
}

.faq-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Country Selection Portal (select-country.html) */
.portal-header {
  text-align: center;
  padding: 3rem 0 2rem;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.step-item.completed {
  color: #10B981;
}

.step-item.active {
  color: var(--forest-primary);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.step-item.completed .step-number {
  background: #10B981;
  color: #FFFFFF;
}

.step-item.active .step-number {
  background: var(--forest-primary);
  color: #FFFFFF;
}

.step-divider {
  width: 32px;
  height: 2px;
  background: var(--border-color);
}

/* Package Selection Notification on select-country.html */
.package-selected-banner {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  max-width: 820px;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.selected-tier-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  min-width: 0;
  flex: 1 1 200px;
}

.selected-tier-badge .badge-icon {
  font-size: 1.3rem;
  color: #2E7D32;
  flex-shrink: 0;
}

.selected-tier-badge .badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1B5E20;
}

.selected-tier-badge strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--forest-dark);
  word-break: break-word;
}

.change-tier-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest-primary);
  text-decoration: underline;
  white-space: normal;
}

.change-tier-link:hover {
  color: var(--forest-dark);
}

.checkout-notice-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--forest-primary);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.checkout-notice-card .notice-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.package-selection-notice {
  font-size: 0.75rem;
  color: var(--forest-primary);
  text-align: center;
  margin-top: 0.45rem;
  font-weight: 600;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.portal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.portal-flag {
  font-size: 2.5rem;
  line-height: 1;
}

.portal-country-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.portal-lang-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--forest-soft);
  color: var(--forest-primary);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.portal-carrier-badge {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.portal-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-top: auto;
}

/* Guarantee Section */
.guarantee-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.guarantee-badge-img {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  font-size: 2.8rem;
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest-dark);
}

.guarantee-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Sticky Bottom Mobile Bar */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.sticky-bar-info {
  display: flex;
  flex-direction: column;
}

.sticky-bar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest-dark);
}

.sticky-bar-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sticky-bar-price strong {
  color: var(--forest-primary);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.92rem;
  max-width: 380px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: #64748B;
  text-align: center;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Policy Pages Layout */
.policy-page {
  padding: 4rem 0;
  min-height: 70vh;
}

.policy-content {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 2rem 0 0.75rem;
}

.policy-content p,
.policy-content li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-box {
  background: var(--bg-alabaster);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

/* ================================================================
   RESPONSIVE DESIGN & MOBILE FOLD RULES
   ================================================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 2rem auto 0;
  }
  .package-card.popular {
    transform: none;
  }
  .portal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 844px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .sticky-bottom-bar {
    display: flex;
  }

  /* MOBILE FOLD CRITICAL RULES (Ensure image + CTA fit above 844px) */
  .hero {
    padding: 10px 0 18px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .hero-text-col {
    display: contents; /* Allows reordering children with the image col */
  }
  .hero-badge-container {
    order: 1;
    margin-bottom: 2px;
  }
  .hero-title {
    order: 2;
    font-size: 1.55rem;
    line-height: 1.15;
    margin-bottom: 2px;
  }
  .hero-image-col {
    order: 3;
    width: 100%;
    max-width: 170px;
    margin: 0 auto 4px;
  }
  .hero-image-wrapper {
    padding: 0.4rem;
    border-radius: var(--radius-sm);
  }
  .hero-image-wrapper img {
    max-height: 145px;
    width: auto;
    margin: 0 auto;
  }
  .hero-floating-badge {
    display: none; /* Hide floating badge on small viewports to save vertical space */
  }
  .hero-pricing-box {
    order: 4;
    padding: 6px 10px;
    margin: 2px 0 4px;
  }
  .price-callout-value {
    font-size: 1.2rem;
  }
  .hero-cta-group {
    order: 5;
    margin-top: 2px;
  }
  .hero-cta-button {
    padding: 10px 16px;
    font-size: 0.92rem;
  }
  .hero-guarantee-note {
    font-size: 0.74rem;
    margin-top: 2px;
  }
  .hero-trust-bar {
    order: 6;
    gap: 0.5rem;
    font-size: 0.74rem;
    padding-top: 4px;
  }
  .hero-subtitle {
    order: 7;
    font-size: 0.9rem;
    line-height: 1.45;
    margin-top: 6px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .portal-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 3rem;
  }
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .policy-content {
    padding: 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .btn-nav-cta {
    display: none; /* Avoid crowding top navbar on extra small screens */
  }
  .hero-title {
    font-size: 1.55rem;
  }
  .price-callout-main {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .hero-pricing-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 320px Strict Clamp Overrides */
@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
  }
  .top-bar {
    font-size: 0.72rem;
    padding: 0.4rem 0.5rem;
  }
  .hero-title {
    font-size: 1.35rem;
  }
  .hero-cta-button {
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
  }
  .btn-primary {
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
  }
  .portal-card {
    padding: 1.25rem 0.75rem;
  }
}
