/* ==========================================================================
   ZUEKKOS SLIPIX™ — NORDIC THEME DESIGN SYSTEM
   Editorial Health, Ergonomics & Mobility Testing Lab
   Palette: Clean Paper #FAF9F6, Deep Ink #1C1917, Clinical Teal #0F766E, Amber #D97706
   Typography: Plus Jakarta Sans, Inter, IBM Plex Mono
   ========================================================================== */

:root {
  --bg-page:        #FAF9F6;
  --bg-card:        #FFFFFF;
  --bg-soft:        #F4F1EA;
  --bg-subtle:      #EFECE5;
  
  --border-subtle:  #E5E0D5;
  --border-light:   #EAE5DC;
  --border-focus:   #0F766E;

  --text-dark:      #1C1917;
  --text-body:      #44403C;
  --text-muted:     #78716C;
  --text-light:     #A8A29E;

  --teal-primary:   #0F766E;
  --teal-hover:     #115E59;
  --teal-soft:      #E6F4F1;
  --teal-border:    #99F6E4;

  --amber-primary:  #D97706;
  --amber-hover:    #B45309;
  --amber-soft:     #FEF3C7;
  --amber-dark:     #92400E;

  --font-heading:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-pill:    9999px;

  --shadow-subtle:  0 2px 8px rgba(28, 25, 23, 0.04);
  --shadow-card:    0 8px 24px rgba(28, 25, 23, 0.06);
  --shadow-hover:   0 14px 36px rgba(28, 25, 23, 0.10);

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

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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

a {
  color: var(--teal-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--teal-hover);
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION HEADERS ─────────────────────────────────────────────────── */
.section-header-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-primary);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

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

/* ── PROMO URGENCY STRIP ──────────────────────────────────────────────── */
.promo-bar {
  background: var(--text-dark);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 9px 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 101;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--amber-primary);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 8px var(--amber-primary); }
  100% { transform: scale(0.95); opacity: 0.9; }
}

/* ── SITE HEADER & NAVIGATION ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  width: 100%;
}

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

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

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

.logo-subtext {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-left: 2px solid var(--teal-border);
  padding-left: 10px;
  line-height: 1.2;
}

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

.desktop-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: var(--transition);
  padding: 6px 0;
  white-space: nowrap;
}

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

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

.btn-header {
  background: var(--teal-primary);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.2);
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}

/* ── HERO SECTION (DESKTOP & MOBILE FOLD PARITY) ─────────────────────── */
.hero-section {
  padding: 40px 0 56px;
  position: relative;
  overflow: hidden;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-badge-wrap {
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-soft);
  color: var(--teal-primary);
  border: 1px solid var(--teal-border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-price-box {
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.price-strike {
  font-size: 1.05rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-current {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--teal-primary);
  font-family: var(--font-heading);
}

.price-save-badge {
  background: var(--amber-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-primary {
  background: var(--teal-primary);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  text-align: center;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
}

.btn-primary:hover {
  background: var(--teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.35);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

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

.hero-visual {
  position: relative;
}

.hero-img-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  padding: 12px;
  position: relative;
}

.hero-img-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.hero-floating-pill {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(28, 25, 23, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── TRUST BADGES BAR ─────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}

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

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

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

.trust-text h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-text p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── SECTION COMMON ──────────────────────────────────────────────────── */
.py-section {
  padding: 80px 0;
}

.bg-white {
  background-color: #FFFFFF;
}

/* ── 6 APPLICATION & WELLNESS ZONES ───────────────────────────────────── */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.zone-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--teal-primary);
}

.zone-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.zone-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.zone-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── STEP-BY-STEP SETUP GUIDE (3 STEPS) ──────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.step-badge {
  display: inline-block;
  background: var(--teal-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.step-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--border-light);
  background: var(--bg-soft);
}

.step-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ── 11-ROW SPECIFICATIONS (RESPONSIVE STACKED ON MOBILE) ─────────────── */
.specs-table-wrapper {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.specs-table th {
  background: var(--text-dark);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 22px;
}

.specs-table td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

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

.specs-table tr:nth-child(even) {
  background: #FCFBF9;
}

/* ── COMPARISON TABLE ─────────────────────────────────────────────────── */
.comparison-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-top: 24px;
}

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

.comparison-table th {
  background: var(--text-dark);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 20px;
}

.comparison-table th.highlight-col {
  background: var(--teal-primary);
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.comparison-table td.highlight-col {
  background: var(--teal-soft);
  font-weight: 700;
  color: var(--teal-primary);
}

/* ── 4 PACKAGES SECTION ───────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.package-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

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

.package-card.popular {
  border-color: var(--teal-primary);
  box-shadow: 0 8px 30px rgba(15, 118, 110, 0.15);
}

.package-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 18px;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

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

.package-pricing {
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  margin-bottom: 20px;
}

.pkg-price-large {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--teal-primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.pkg-unit-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pkg-retail {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.package-features li::before {
  content: '✓';
  color: var(--teal-primary);
  font-weight: 800;
}

.pkg-cta-wrapper {
  margin-top: auto;
}

.pkg-subtext {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.35;
}

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

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

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

.review-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.review-body {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 18px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  font-size: 12.5px;
}

.reviewer-name {
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-badge {
  color: var(--teal-primary);
  font-family: var(--font-mono);
  font-size: 11px;
}

/* ── 10 FAQS ACCORDION ────────────────────────────────────────────────── */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.active {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-subtle);
}

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

.faq-question:hover {
  color: var(--teal-primary);
}

.faq-icon {
  font-size: 22px;
  line-height: 1;
  color: var(--teal-primary);
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── STICKY BOTTOM CONVERSION BAR ─────────────────────────────────────── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(28, 25, 23, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

/* The 320px layout already keeps the primary hero offer action in view.
   Suppress the fixed duplicate there so it cannot cover another CTA. */
@media (max-width: 340px) {
  .sticky-cta-bar,
  .sticky-cta-bar.visible {
    display: none;
  }
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.sticky-timer-text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--amber-soft);
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: #D6D3D1;
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #A8A29E;
  display: block;
  margin-top: 4px;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-contact {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-contact a {
  color: #5EEAD4;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-links a {
  color: #D6D3D1;
}

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

.footer-guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 118, 110, 0.25);
  border: 1px solid var(--teal-primary);
  color: #5EEAD4;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  margin-top: 18px;
}

.footer-disclaimer-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.65;
  color: #A8A29E;
}

.footer-disclaimer p {
  margin-bottom: 10px;
}

.footer-copyright {
  margin-top: 16px;
  font-size: 0.75rem;
  color: #78716C;
}

/* ── COUNTRY SELECTOR PAGE SPECIFIC ───────────────────────────────────── */
.page-select-country .country-portal-main {
  padding: 40px 0 80px;
}

.stepper-section {
  padding: 24px 0 36px;
}

.checkout-stepper {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 0 auto;
  padding: 0;
  max-width: 680px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  background: var(--bg-soft);
  border: 2px solid var(--border-subtle);
  color: var(--text-muted);
}

.step-complete .step-indicator {
  background: var(--teal-soft);
  border-color: var(--teal-primary);
  color: var(--teal-primary);
}

.step-active .step-indicator {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  color: #FFFFFF;
}

.step-details {
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.step-label {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.package-recap-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  flex-wrap: wrap;
  gap: 16px;
}

.recap-badge {
  background: var(--teal-soft);
  color: var(--teal-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: inline-block;
}

.recap-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.recap-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.recap-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal-primary);
  font-family: var(--font-heading);
}

.recap-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkout-notice-card {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.notice-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.notice-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 4px;
}

.notice-text {
  font-size: 0.9rem;
  color: #1E40AF;
  line-height: 1.55;
}

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

.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

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

.country-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

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

.country-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.country-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--teal-primary);
  background: var(--teal-soft);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.country-note {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.5;
}

.country-currency {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.country-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── LEGAL & CONTACT PAGES ────────────────────────────────────────────── */
.legal-content-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}

.legal-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.legal-page-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.legal-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.legal-body h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
}

.legal-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 0 0 20px 24px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-highlight {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal-primary);
  display: block;
  margin: 4px 0 2px;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-page);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

/* ── MOBILE DRAWER NAVIGATION ────────────────────────────────────────── */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 7px;
  cursor: pointer;
  z-index: 101;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-page);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

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

.drawer-close {
  font-size: 28px;
  line-height: 1;
  color: var(--text-dark);
}

.drawer-nav {
  flex: 1;
  padding: 24px 0;
  overflow-y: auto;
}

.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

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

/* ── RESPONSIVE RULES & QA BREAKPOINTS ────────────────────────────────── */
@media (max-width: 1200px) {
  .logo-subtext {
    display: none;
  }
  .desktop-nav ul {
    gap: 16px;
  }
  .desktop-nav a {
    font-size: 13px;
  }
  .btn-header {
    padding: 8px 16px;
    font-size: 13px;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1024px Viewport Rule: Collapses Desktop Nav into Mobile Drawer (No Right Edge Overflow) */
@media (max-width: 1024px) {
  .desktop-nav,
  .btn-header,
  .logo-subtext {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-section {
    padding: 12px 0 28px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-visual {
    order: 1;
    margin: 0 auto;
    max-width: 280px;
  }
  .hero-visual .hero-img-card {
    padding: 8px;
    border-radius: var(--radius-md);
  }
  .hero-visual .hero-img-card img {
    max-height: 175px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  .hero-copy {
    order: 2;
  }
  .hero-badge-wrap {
    margin-bottom: 6px;
  }
  .hero-title {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .hero-price-box {
    padding: 6px 12px;
    margin-bottom: 10px;
    gap: 8px;
  }
  .price-current {
    font-size: 1.55rem;
  }
  .hero-cta-stack .btn-primary {
    padding: 11px 18px;
    font-size: 0.98rem;
  }
  .zones-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* 768px Mobile Specifications Table Stacked-Card Rule (Zero Clipping) */
@media (max-width: 768px) {
  .specs-table {
    min-width: 0 !important;
    width: 100% !important;
    display: block !important;
  }
  .specs-table thead {
    display: none !important;
  }
  .specs-table tbody {
    display: block !important;
    width: 100% !important;
  }
  .specs-table tr {
    display: block !important;
    width: 100% !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid var(--border-light) !important;
  }
  .specs-table tr:nth-child(even) {
    background: var(--bg-soft) !important;
  }
  .specs-table td {
    display: block !important;
    width: 100% !important;
    padding: 3px 0 !important;
    border: none !important;
    font-size: 13.5px !important;
    text-align: left !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .specs-table td:first-child {
    font-family: var(--font-mono) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: var(--teal-primary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 2px !important;
  }
  .specs-table td:last-child {
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .countries-grid {
    grid-template-columns: 1fr;
  }
}

/* 390x844 Mobile Fold Specific Optimization */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }
  .hero-img-card {
    padding: 6px;
  }
  .hero-price-box {
    padding: 8px 12px;
    margin-bottom: 12px;
  }
  .price-current {
    font-size: 1.55rem;
  }
  .btn-primary {
    padding: 14px 20px;
    font-size: 14.5px;
    width: 100%;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
