/* ============================================================
   BEKOM — Design System v2
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --dark-deepest: #020810;
  --dark-navy:    #050D1F;
  --dark-mid:     #0A1628;
  --dark-card:    #0F1E38;
  --dark-border:  #1B3A6B;

  --cyan:         #00D4FF;
  --cyan-dim:     #00AACC;
  --blue-bright:  #1A7FFF;
  --pink:         #E8365D;
  --pink-dim:     #C02848;

  --white:        #FFFFFF;
  --grey-light:   #F5F7FA;
  --grey-mid:     #CBD5E1;
  --grey-text:    #94A3B8;

  --font:         'Inter', sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-glow:  0 0 40px rgba(0, 212, 255, 0.25);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.4);
  --shadow-pink:  0 0 30px rgba(232, 54, 93, 0.4);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:    1200px;

  /* heights used for offset calculations */
  --promo-h:   40px;
  --header-h:  76px;
  --total-nav: 116px; /* promo + header */
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; max-width: 100vw; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--dark-navy);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
  padding-top: var(--promo-h); /* reserve space for fixed promo band */
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-dark  { background: var(--dark-navy); }
.section-mid   { background: var(--dark-mid); }
.section-light { background: var(--grey-light); color: var(--dark-navy); }
.section-white { background: var(--white); color: var(--dark-navy); }

.text-cyan   { color: var(--cyan); }
.text-pink   { color: var(--pink); }
.text-grey   { color: var(--grey-text); }
.text-center { text-align: center; }

/* ── Typography ── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}
.section-light .eyebrow,
.section-white .eyebrow { color: var(--blue-bright); }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; line-height: 1.3; }
p  { font-size: 1rem; line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--cyan); color: var(--dark-navy) !important; }
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-pink { background: var(--pink); color: var(--white) !important; }
.btn-pink:hover { background: var(--pink-dim); transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.btn-outline { background: transparent; color: var(--white) !important; border: 2px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan) !important; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--dark-navy) !important; border: 2px solid var(--dark-border); }
.btn-outline-dark:hover { border-color: var(--blue-bright); color: var(--blue-bright) !important; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: var(--radius-xl);
  font-size: 0.8rem; font-weight: 700;
}
.badge-pink  { background: var(--pink); color: var(--white); }
.badge-cyan  { background: var(--cyan); color: var(--dark-navy); }
.badge-white { background: var(--white); color: var(--dark-navy); border: 1px solid #e2e8f0; }

/* ============================================================
   PROMO BAND — fixed at top, always visible
   ============================================================ */
.promo-band {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--promo-h);
  z-index: 1002;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--pink), #C02848, var(--pink));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 0 16px;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ============================================================
   HEADER / NAV — always navy-glass, enhanced on scroll
   ============================================================ */
.header {
  position: fixed;
  top: var(--promo-h); /* pushed below promo band */
  left: 0; right: 0;
  z-index: 1000;
  /* Always visible navy glass — even at top of page */
  background: rgba(5, 13, 31, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  transition: background var(--transition), box-shadow var(--transition),
              backdrop-filter var(--transition), padding var(--transition);
}
/* Enhanced glass when scrolled down */
.header.scrolled {
  background: rgba(5, 13, 31, 0.92);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.14);
  box-shadow: 0 4px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.03);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  transition: padding var(--transition);
}
.header.scrolled .nav { padding: 14px 24px; }

/* Logo */
.nav-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1; }
.nav-logo img { height: 32px; width: auto; object-fit: contain; }
.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grey-text);
  padding-left: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--grey-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width var(--transition);
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active       { color: var(--white); }
.nav-links a.active::after{ width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile menu — animated slide ── */
.mobile-menu {
  flex-direction: column;
  background: rgba(5, 13, 31, 0.99);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,212,255,0.15);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease, padding 0.3s ease;
  display: flex; /* always flex, visibility controlled by max-height + opacity */
}
.mobile-menu.open {
  max-height: 520px;
  opacity: 1;
  padding: 16px 24px 28px;
}
.mobile-menu a {
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--grey-mid) !important;
  transition: color var(--transition);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--cyan) !important; }

/* Fix btn inside mobile menu */
.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
  border: none;
  width: 100%;
}
.mobile-menu .btn-primary {
  background: var(--cyan) !important;
  color: var(--dark-navy) !important;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--promo-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-deepest);
}
#particles-js {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image {
  position: absolute; inset: 0; z-index: 1;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: opacity 0.5s, background-image 0.3s;
}
@media (max-width: 768px) {
  .hero-bg-image {
    background-image: var(--bg-mobile);
    background-position: center top;
    opacity: 0.65;
  }
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(5,13,31,0.85) 35%,
    rgba(5,13,31,0.45) 65%,
    rgba(5,13,31,0.15) 100%
  );
}
@media (max-width: 768px) {
  .hero-gradient {
    background: linear-gradient(
      180deg,
      rgba(5,13,31,0.55) 0%,
      rgba(5,13,31,0.75) 100%
    );
  }
}
.hero-content {
  position: relative; z-index: 3;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  /* guarantee visibility — no opacity:0 on this element */
  opacity: 1;
}
.hero-title { max-width: 820px; margin-bottom: 22px; }
.hero-title .highlight { color: var(--cyan); }
.hero-subtitle {
  max-width: 560px; color: var(--grey-mid);
  font-size: 1.15rem; margin-bottom: 30px; line-height: 1.8;
}
.hero-price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 32px;
}
.hero-price-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 999px;
  background: rgba(5,13,31,0.45);
  color: var(--grey-mid);
  font-size: 0.86rem;
  backdrop-filter: blur(8px);
}
.hero-price-strip strong { color: var(--cyan); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

/* ── Ensure hero CTA buttons always visible ── */
.hero-cta .btn { opacity: 1 !important; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 8px 16px;
  font-size: 0.85rem; color: var(--grey-mid);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--grey-text); font-size: 0.75rem;
}
.hero-scroll svg { animation: scrollBounce 1.5s ease-in-out infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--cyan); overflow: hidden; }
.stats-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  gap: 24px; flex-wrap: nowrap;
  padding: 18px 24px;
}
.stat-item { display: flex; align-items: center; gap: 10px; color: var(--dark-navy); flex-shrink: 0; }
.stat-item .num { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.stat-item .label { font-size: 0.8rem; font-weight: 600; line-height: 1.2; max-width: 80px; }
.stat-divider { width: 1px; height: 36px; background: rgba(5,13,31,0.2); flex-shrink: 0; }

/* ============================================================
   SECTION HEADERS — always visible
   ============================================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--grey-text); }
.section-dark  .section-header h2 { color: var(--white); }
.section-mid   .section-header h2 { color: var(--white); }
.section-light .section-header h2 { color: var(--dark-navy); }
.section-white .section-header h2 { color: var(--dark-navy); }
.section-light .section-header p  { color: #64748B; }
.section-white .section-header p  { color: #64748B; }

/* ============================================================
   OFFER CARDS
   ============================================================ */
.offers-section { padding: 100px 24px; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width); margin: 0 auto;
}
@media (max-width: 960px) and (min-width: 769px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.offer-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-bright));
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow), var(--shadow-card); }
.offer-card.featured { border-color: var(--cyan); background: linear-gradient(160deg,#0F2040,#071525); }
.offer-card.featured::before { background: linear-gradient(90deg,var(--cyan),var(--pink)); height: 4px; }

.offer-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--pink); color: var(--white);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-xl);
}
.offer-data { font-size: clamp(2.8rem,6vw,4rem); font-weight: 900; line-height: 1; color: var(--cyan); margin-bottom: 4px; }
.offer-data span { font-size: 1.4rem; font-weight: 700; }
.offer-price-wrap { margin-bottom: 24px; }
.offer-price { font-size: 2.6rem; font-weight: 900; line-height: 1.1; color: var(--white); }
.offer-price sup { font-size: 1.2rem; vertical-align: super; }
.offer-price .per { font-size: 1rem; font-weight: 500; color: var(--grey-text); }
.offer-promo {
  display: inline-block; margin-top: 8px;
  background: rgba(232,54,93,0.15); border: 1px solid var(--pink);
  color: var(--pink); font-size: 0.8rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-xl);
}
.offer-divider { border: none; border-top: 1px solid var(--dark-border); margin: 24px 0; }
.offer-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.offer-feature { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--grey-mid); }
.offer-feature .check {
  width: 22px; height: 22px;
  background: rgba(0,212,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 0.7rem; flex-shrink: 0;
}
.offer-extras { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

/* Light theme offer cards */
.section-light .offer-card { background: var(--white); border-color: #E2E8F0; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.section-light .offer-card::before { background: linear-gradient(90deg,var(--blue-bright),var(--cyan)); }
.section-light .offer-card.featured { border-color: var(--blue-bright); background: linear-gradient(160deg,#EFF6FF,#FFF); }
.section-light .offer-data  { color: var(--blue-bright); }
.section-light .offer-price { color: var(--dark-navy); }
.section-light .offer-feature { color: #475569; }
.section-light .offer-feature .check { background: rgba(26,127,255,0.1); color: var(--blue-bright); }
.section-light .offer-divider { border-color: #E2E8F0; }

/* ============================================================
   WHY BEKOM
   ============================================================ */
.why-section { padding: 100px 24px; position: relative; overflow: hidden; }
.why-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(0,212,255,0.06) 0%,transparent 70%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.why-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-image img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }
.why-image-overlay {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(5,13,31,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(0,212,255,0.2); border-radius: var(--radius-md);
  padding: 16px 20px;
}
.why-image-overlay .big   { font-size: 1.8rem; font-weight: 900; color: var(--cyan); }
.why-image-overlay .small { font-size: 0.8rem; color: var(--grey-text); }
.why-content h2 { margin-bottom: 20px; }
.why-content > p { color: var(--grey-text); margin-bottom: 40px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: var(--transition);
}
.why-point:hover .why-point-icon { background: rgba(0,212,255,0.2); transform: scale(1.05); }
.why-point-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-point-text p  { font-size: 0.875rem; color: var(--grey-text); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section { padding: 100px 24px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; max-width: var(--max-width); margin: 60px auto 0; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  position: relative; transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 20px; left: 28px;
  font-size: 5rem; color: var(--blue-bright); opacity: 0.12;
  font-family: Georgia,serif; line-height: 1;
}
.stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; color: #334155; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--blue-bright),var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--white); font-size: 1rem;
}
.author-name   { font-weight: 700; color: var(--dark-navy); font-size: 0.95rem; }
.author-detail { font-size: 0.8rem; color: #64748B; }

/* ============================================================
   STEP ROW — detailed steps in comment-ca-marche.html
   Desktop: number col left + content right
   Mobile: number badge top-left corner of content block
   ============================================================ */
.step-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: flex-start;
}
.step-row-num { text-align: center; }
.step-row-body { padding-top: 8px; }
@media (max-width: 640px) {
  .step-row {
    display: block;
    position: relative;
    padding-left: 64px; /* room for the badge */
  }
  .step-row-num {
    position: absolute;
    top: 0;
    left: 0;
  }
  .step-row-num .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
    margin: 0;
  }
  .step-row-body { padding-top: 0; }
}

/* ============================================================
   STEPS — always visible, no animation conflict
   ============================================================ */
.steps-section { padding: 100px 24px; position: relative; overflow: hidden; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
  max-width: var(--max-width); margin: 60px auto 0; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 40px;
  left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg,var(--cyan),var(--blue-bright),var(--cyan));
  opacity: 0.3;
}
.step-card {
  text-align: center; padding: 36px 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  /* NO opacity:0 here — always visible */
  opacity: 1 !important;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.step-number {
  width: 80px; height: 80px;
  background: linear-gradient(135deg,var(--cyan),var(--blue-bright));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: var(--dark-navy);
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
}
.step-icon { font-size: 2rem; margin-bottom: 20px; }
.step-card h3 { margin-bottom: 12px; color: var(--white) !important; }
.step-card p  { color: var(--grey-text); font-size: 0.9rem; }
.step-badge {
  display: inline-block; margin-top: 16px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan); font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-xl);
}

/* Light steps */
.section-light .step-card { background: var(--white); border-color: #E2E8F0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.section-light .step-card h3 { color: var(--dark-navy) !important; }
.section-light .step-card p  { color: #64748B; }
.section-light .step-badge   { background: rgba(26,127,255,0.08); border-color: rgba(26,127,255,0.2); color: var(--blue-bright); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 100px 24px;
  background: linear-gradient(135deg,var(--dark-deepest) 0%,#0A1E40 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse,rgba(0,212,255,0.1) 0%,transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 16px; color: var(--white); }
.cta-banner p  { color: var(--grey-text); max-width: 500px; margin: 0 auto 40px; font-size: 1.1rem; }
.cta-banner .btn-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-banner .badge-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ============================================================
   COMPARISON TABLE — with visible borders
   ============================================================ */
.comparison-section { padding: 100px 24px; }
.comparison-table-wrap { max-width: 960px; margin: 60px auto 0; overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse; /* collapse for clean borders */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.comparison-table th {
  padding: 18px 20px;
  font-size: 0.9rem; font-weight: 800;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}
.comparison-table td {
  padding: 15px 20px;
  text-align: center; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.comparison-table th:first-child,
.comparison-table td:first-child { text-align: left; }
.comparison-table thead tr { background: var(--dark-mid); }
.comparison-table .bekom-col  { background: rgba(0,212,255,0.08); color: var(--cyan); font-weight: 700; }
.comparison-table .bekom-head {
  background: linear-gradient(135deg,#051A3A,#071828);
  color: var(--cyan);
  border: 2px solid rgba(0,212,255,0.3);
}
.comparison-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.comparison-table .check-yes  { color: var(--cyan); font-size: 1.1rem; }
.comparison-table .check-no   { color: #EF4444; font-size: 1.1rem; }
.comparison-table .label-col  { color: var(--grey-mid); font-size: 0.875rem; font-weight: 600; }

/* Light section table */
.section-light .comparison-table th { border-color: #CBD5E1; }
.section-light .comparison-table td { border-color: #E2E8F0; }
.section-light .comparison-table thead tr { background: var(--dark-navy); }
.section-light .comparison-table .bekom-head { background: linear-gradient(135deg,#051A3A,#071828); }
.section-light .comparison-table tbody tr:nth-child(even) td { background: #F8FAFC; }
.section-light .comparison-table .label-col { color: #475569; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 100px 24px; }
.faq-list { max-width: 760px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--cyan); }
.section-light .faq-item { background: var(--white); border-color: #E2E8F0; }
.section-light .faq-item.open { border-color: var(--blue-bright); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; gap: 16px; user-select: none;
}
.faq-question h4 { font-size: 1rem; font-weight: 600; }
.section-light .faq-question h4 { color: var(--dark-navy); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,212,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cyan); color: var(--dark-navy); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--grey-text); font-size: 0.95rem; line-height: 1.75; }
.section-light .faq-answer p { color: #64748B; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.form-section { padding: 100px 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: var(--max-width); margin: 0 auto; }
.contact-form-section {
  padding: 56px 24px 88px;
}
.contact-form-section .form-card {
  margin-top: -88px;
  position: relative;
  z-index: 3;
  box-shadow: 0 22px 60px rgba(0,0,0,0.32), 0 0 0 1px rgba(0,212,255,0.08);
}
.form-info h2 { margin-bottom: 20px; }
.form-info p  { color: var(--grey-text); margin-bottom: 36px; }
.contact-points { display: flex; flex-direction: column; gap: 20px; }
.contact-point { display: flex; align-items: flex-start; gap: 16px; }
.contact-point-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-point-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.contact-point-text span   { font-size: 0.85rem; color: var(--grey-text); }

.form-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 40px 36px;
}
.form-card h3 { margin-bottom: 8px; }
.form-card .subtitle { color: var(--grey-text); font-size: 0.9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--grey-mid); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  color: var(--white); font-family: var(--font); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group select option { background: var(--dark-mid); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 8px; justify-content: center; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--grey-text); margin-top: 16px; line-height: 1.6; }
.form-success {
  display: none;
  text-align: center;
  padding: 44px 18px 34px;
}
.form-success .success-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.22);
  box-shadow: 0 0 36px rgba(0,212,255,0.16);
  font-size: 2.4rem;
}
.form-success h3 { margin-bottom: 10px; color: var(--white); }
.form-success p {
  max-width: 430px;
  margin: 0 auto;
  color: var(--grey-text);
}
.form-success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px auto 18px;
  max-width: 440px;
}
.form-success-actions .btn {
  justify-content: center;
  width: 100%;
  padding-inline: 20px;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--dark-navy) !important;
}
.btn-whatsapp:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37,211,102,0.35);
}
.success-link {
  display: inline-flex;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.9rem;
}
.success-link:hover { color: var(--white); }

/* ── Form validation states ── */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}
.form-group.has-error label { color: #EF4444; }
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #EF4444;
  margin-top: 5px;
  font-weight: 500;
}
.form-group.has-success input,
.form-group.has-success select {
  border-color: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
/* Shake animation for invalid submit attempt */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.form-shake { animation: shake 0.4s ease; }

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 64px) 24px 80px;
  background: var(--dark-deepest);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-60%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse,rgba(0,212,255,0.08) 0%,transparent 65%);
  pointer-events: none;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: var(--bg-desktop);
  background-size: cover; background-position: center;
  opacity: 0.45;
}
@media (max-width: 768px) {
  .page-hero-bg {
    background-image: var(--bg-mobile);
    background-position: center top;
    opacity: 0.6;
  }
}
.page-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,8,16,0.3) 0%, rgba(5,13,31,0.8) 100%);
}
@media (max-width: 768px) {
  .page-hero-gradient {
    background: linear-gradient(180deg, rgba(2,8,16,0.2) 0%, rgba(5,13,31,0.75) 100%);
  }
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 20px; color: var(--white); }
.page-hero p  { color: var(--grey-mid); font-size: 1.15rem; margin-bottom: 36px; }
.page-hero-compact {
  min-height: 390px;
  padding: calc(var(--header-h) + 42px) 24px 54px;
}
.page-hero-compact p { margin-bottom: 24px; }
.legal-hero {
  min-height: 340px;
}
.page-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.section-jump-nav {
  position: sticky;
  top: var(--total-nav);
  z-index: 850;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(5,13,31,0.92);
  border-top: 1px solid rgba(0,212,255,0.08);
  border-bottom: 1px solid rgba(0,212,255,0.12);
  backdrop-filter: blur(18px);
  overflow-x: auto;
  scrollbar-width: none;
}
.section-jump-nav::-webkit-scrollbar { display: none; }
.section-jump-nav a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--grey-mid);
  font-size: 0.82rem;
  font-weight: 700;
}
.section-jump-nav a:hover {
  color: var(--dark-navy);
  background: var(--cyan);
}
.mobile-plan-shortcuts {
  display: none;
}

/* ── Two-column split layout (image + text) responsive ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-grid .split-img {
    height: 260px !important;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
  }
  .split-grid .split-img-wrap {
    border-radius: 16px;
    overflow: hidden;
  }
  .split-grid .split-img-wrap img,
  .split-grid .split-img-wrap picture img {
    height: 260px;
    width: 100%;
    object-fit: cover;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-deepest);
  border-top: 1px solid var(--dark-border);
  padding: 72px 24px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: var(--max-width); margin: 0 auto 56px;
}
.footer-brand p { color: var(--grey-text); font-size: 0.875rem; line-height: 1.8; margin: 16px 0 24px; max-width: 280px; }
.footer-logo img { height: 28px; width: auto; object-fit: contain; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.social-btn:hover { background: rgba(0,212,255,0.15); border-color: var(--cyan); }
.footer-col h5 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey-text); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.875rem; color: var(--grey-mid); transition: color var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-col ul a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--dark-border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey-text); }
.partner-badge { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--grey-text); }
.partner-badge strong { color: var(--grey-mid); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.8rem; color: var(--grey-text); justify-content: center; }
.breadcrumb a { color: var(--grey-text); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--cyan); }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed; top: var(--promo-h); left: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--cyan),var(--pink));
  z-index: 999; width: 0%;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--cyan); color: var(--dark-navy);
  border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 800;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(0,212,255,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover   { transform: translateY(-3px); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%;
  transform: translate(-50%, 120px);
  width: calc(100% - 32px);
  max-width: 460px;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-md); padding: 16px 18px; z-index: 9000;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.cookie-banner.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.cookie-banner p { font-size: 0.8rem; color: var(--grey-text); line-height: 1.55; }
.cookie-banner p a { color: var(--cyan); }
.cookie-actions { display: flex; gap: 10px; }

/* ============================================================
   GLOW PULSE
   ============================================================ */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.2); }
  50%       { box-shadow: 0 0 40px rgba(0,212,255,0.5), 0 0 80px rgba(0,212,255,0.1); }
}
.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }

/* ============================================================
   POLITIQUE DE CONFIDENTIALITE
   ============================================================ */
.legal-content {
  max-width: 800px; margin: 0 auto; padding: 60px 24px 100px;
  line-height: 1.8;
}
.legal-content h2 { font-size: 1.4rem; margin: 48px 0 16px; color: var(--cyan); }
.legal-content h3 { font-size: 1.1rem; margin: 32px 0 12px; color: var(--white); }
.legal-content p  { color: var(--grey-mid); margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 16px 20px; color: var(--grey-mid); }
.legal-content ul li { margin-bottom: 8px; list-style: disc; }
.legal-content a  { color: var(--cyan); }
.policy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 42px;
}
.policy-toc a {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(0,212,255,0.16);
  background: rgba(255,255,255,0.03);
  color: var(--cyan) !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 700;
}
.policy-toc a:hover {
  background: rgba(0,212,255,0.12);
  color: var(--white) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid   { grid-template-columns: 1fr; }
  .why-image  { display: none; }
  .form-grid  { grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .promo-band {
    height: 36px;
    font-size: 0.74rem;
    line-height: 1.2;
    padding: 0 10px;
  }
  :root {
    --promo-h: 36px;
    --total-nav: 112px;
  }

  /* ── Offer cards — popular card first on mobile via order ── */
  .offers-grid { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .offer-card.featured { order: -1; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  /* ── Step card mobile: number badge top-left corner ── */
  .step-card {
    text-align: left;
    padding: 24px 20px 24px 72px; /* left space for number */
    min-height: unset;
  }
  .step-number {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin: 0;
  }
  .step-icon { font-size: 1.5rem; margin-bottom: 8px; }
  .step-badge { display: inline-block; margin-top: 10px; }

  .testimonial-grid { grid-template-columns: 1fr; }

  /* ── Stats bar (ribbon) — horizontal scroll, no wrap ── */
  .stats-bar { padding: 0; }
  .stats-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 14px 20px;
    gap: 16px;
  }
  .stats-inner::-webkit-scrollbar { display: none; }
  .stat-divider { display: flex; }
  .stat-item .num { font-size: 1.25rem; }
  .stat-item .label { font-size: 0.72rem; }

  .comparison-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table th,
  .comparison-table td { padding: 11px 12px; font-size: 0.8rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero { min-height: 790px; }
  .hero-content { padding: calc(var(--header-h) + 18px) 24px 54px; }
  .hero-title {
    font-size: 2.65rem;
    line-height: 1.08;
    margin-bottom: 18px;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-cta .btn-lg { padding: 15px 28px; font-size: 1rem; }
  .hero-price-strip { margin-bottom: 26px; }
  .hero-price-strip span { font-size: 0.8rem; padding: 7px 12px; }
  .page-hero-compact { min-height: 330px; padding: calc(var(--header-h) + 34px) 18px 44px; }
  .contact-hero {
    min-height: 245px;
    padding: calc(var(--header-h) + 16px) 18px 24px;
    text-align: left;
  }
  .contact-hero .page-hero-content {
    max-width: 340px;
    margin: 0;
  }
  .contact-hero .breadcrumb,
  .contact-hero .eyebrow {
    justify-content: flex-start;
    text-align: left;
  }
  .contact-hero h1 {
    font-size: 1.95rem;
    line-height: 1.08;
    margin-bottom: 12px;
  }
  .contact-hero p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0;
  }
  .contact-hero .page-hero-bg {
    opacity: 0.36;
    background-position: center 22%;
  }
  .contact-hero .page-hero-gradient {
    background: linear-gradient(180deg, rgba(2,8,16,0.72) 0%, rgba(5,13,31,0.92) 100%);
  }
  .mobile-plan-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px 14px 4px;
    background: var(--dark-navy);
  }
  .mobile-plan-shortcuts a {
    min-width: 0;
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,212,255,0.16);
    text-align: center;
  }
  .mobile-plan-shortcuts strong,
  .mobile-plan-shortcuts span {
    display: block;
  }
  .mobile-plan-shortcuts strong {
    color: var(--cyan);
    font-size: 0.9rem;
  }
  .mobile-plan-shortcuts span {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
  }
  .page-hero-actions .btn-lg { padding: 14px 22px; font-size: 0.98rem; }
  .section-jump-nav {
    justify-content: flex-start;
    top: var(--total-nav);
    padding: 10px 14px;
  }
  .offer-card { padding: 28px 24px; max-width: 100%; width: 100%; }
  .form-card  { padding: 28px 24px; }

  /* ── Contact page — form first on mobile ── */
  .form-card  { order: -1; }
  .contact-form-section {
    padding-top: 24px;
  }
  .contact-form-section .form-card { margin-top: 0; }
  .form-info  { order: 1; overflow-x: hidden; }
  .form-info > div[style*="display:flex"] { flex-wrap: wrap !important; }
  .form-info .btn { flex-shrink: 0; }
  .form-section { padding: 60px 16px; }

  /* ── Global overflow guard ── */
  section, .container, header, footer, .stats-bar, .promo-band {
    max-width: 100vw;
    overflow-x: hidden;
  }
  img, table { max-width: 100%; }
  .policy-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .policy-table table,
  .policy-table thead,
  .policy-table tbody,
  .policy-table tr {
    min-width: 620px;
  }
}
@media (max-width: 480px) {
  .hero-badges { display: none; }
  .promo-band  { font-size: 0.7rem; letter-spacing: 0; }
  .hero-price-strip { display: grid; grid-template-columns: 1fr; max-width: 260px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; text-align: center; }
  .cookie-banner {
    bottom: 14px;
    width: calc(100% - 24px);
    padding: 14px;
  }
  .cookie-actions .btn { flex: 1; justify-content: center; padding-inline: 12px; }
  .whatsapp-sticky {
    left: 18px;
    bottom: 18px;
  }
}

/* ══════════════════════════════════════════
   Sticky WhatsApp Button — icon only, same row as back-to-top
   ══════════════════════════════════════════ */
.whatsapp-sticky {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9500;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.94);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-sticky.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.whatsapp-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.65);
  color: #fff;
  text-decoration: none;
}
.whatsapp-sticky svg { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-sticky i { font-size: 28px; line-height: 1; }
.whatsapp-sticky-label { display: none !important; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.75); }
}


/* ── Font Awesome icon sizing ── */
.social-btn i          { font-size: 1.15rem; line-height: 1; }
.contact-point-icon i  { font-size: 1.3rem;  line-height: 1; }
.footer-col a i        { font-size: 0.85rem; width: 14px; flex-shrink: 0; text-align: center; color: var(--cyan); }

/* ── Offers Cards Section (contact page) ── */
.offers-cards-section {
  padding: 96px 24px;
  background:
    linear-gradient(180deg, var(--dark-navy) 0%, var(--dark-deepest) 45%, #030B18 100%);
  border-top: 1px solid rgba(0,212,255,0.1);
  position: relative;
  overflow: hidden;
}
.offers-cards-section::before {
  content: '';
  position: absolute;
  top: -240px;
  left: 50%;
  width: 760px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,212,255,0.1) 0%, transparent 68%);
  pointer-events: none;
}
.offers-cards-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 48px;
}
.offers-cards-header h2 { margin-bottom: 12px; }
.offers-cards-sub {
  color: var(--grey-text);
  font-size: 0.9rem;
  margin-top: 10px;
}
.offers-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.offer-hcard {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    var(--dark-card);
  border: 1px solid rgba(100,148,190,0.28);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  box-shadow: 0 16px 42px rgba(0,0,0,0.24);
}
.offer-hcard::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-bright));
}
.offer-hcard:hover {
  border-color: rgba(0,212,255,0.45);
  transform: translateY(-5px);
}
.offer-hcard--popular {
  border-color: var(--cyan);
  background:
    linear-gradient(160deg, rgba(0,212,255,0.12) 0%, rgba(15,30,56,0.98) 55%),
    var(--dark-card);
  box-shadow: 0 22px 54px rgba(0,0,0,0.32), 0 0 46px rgba(0,212,255,0.16);
  transform: translateY(-10px);
}
.offer-hcard--popular:hover {
  transform: translateY(-14px);
}
.offer-hcard--popular::before {
  background: linear-gradient(90deg, var(--cyan), var(--pink));
}
.offer-hcard-popular-tag {
  align-self: flex-start;
  border: 1px solid rgba(0,212,255,0.26);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(0,212,255,0.1);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: -8px;
}
.offer-hcard-top { display: flex; flex-direction: column; gap: 10px; }
.offer-hcard-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--white);
}
.offer-hcard-network {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--cyan);
  color: var(--dark-deepest);
  padding: 2px 7px;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 4px;
}
.offer-hcard-price {
  font-size: 2.45rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.offer-hcard-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grey-text);
}
.offer-hcard-badge { align-self: flex-start; }
.badge-outline-sm {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--grey-mid);
}
.offer-hcard-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.offer-hcard-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.025);
  font-size: 0.875rem;
}
.feat-label { color: var(--grey-text); }
.feat-val { font-weight: 600; color: var(--white); text-align: right; }
.feat-val.cyan { color: var(--cyan); }
.btn-hcard {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.btn-hcard:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
  transform: translateY(-1px);
}
.btn-hcard--primary {
  background: var(--cyan);
  color: var(--dark-deepest);
  border-color: var(--cyan);
}
.btn-hcard--primary:hover { background: var(--cyan-dim); border-color: var(--cyan-dim); color: var(--dark-deepest); }
.offers-cards-note {
  text-align: center;
  color: var(--grey-text);
  font-size: 0.78rem;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .offers-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .offer-hcard--popular,
  .offer-hcard--popular:hover { transform: none; }
}
@media (max-width: 600px) {
  .offers-cards-section { padding: 60px 16px; }
  .form-success-actions { grid-template-columns: 1fr; }
  .offer-hcard { padding: 24px 20px; }
  .offer-hcard-name { align-items: flex-start; }
  .offer-hcard-price { font-size: 2.15rem; }
}

/* ── Hero Offers Card (contact page) ── */
.hero-offers-card {
  margin-top: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 460px;
  backdrop-filter: blur(10px);
}
.hero-offers-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-text);
  margin-bottom: 12px;
}
.hero-offer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  color: var(--white);
}
.hero-offer-row:last-of-type { border-bottom: none; }
.hero-offer-star { font-size: 0.85em; }
.hero-offer-price {
  font-weight: 700;
  color: var(--cyan);
  font-size: 1rem;
}
.hero-offer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.badge-pink {
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.badge-outline {
  background: transparent;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
}
@media (max-width: 600px) {
  .hero-offers-card { max-width: 100%; }
}
