/* ═══════════════════════════════════════════════════════════════
   Simless — Global Stylesheet
   Brand: deep navy + blue #4A8FFF + teal #2DD4BF + orange #FF7A35
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:        #07091A;
  --bg2:       #0C0F24;
  --card:      #0F1628;
  --card2:     #172039;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(74,143,255,0.2);

  --blue:      #4A8FFF;
  --blue-dark: #1D4ED8;
  --teal:      #2DD4BF;
  --orange:    #FF7A35;
  --purple:    #A78BFA;
  --gold:      #F5A623;
  --green:     #34D399;
  --red:       #F87171;

  --text:      #F0F4FF;
  --text2:     #8DA2C4;
  --text3:     #4A6580;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --shadow-card: 0 4px 24px rgba(0,0,16,0.5);
  --shadow-glow: 0 0 60px rgba(74,143,255,0.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════ BUTTONS ══════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #7C3AED);
  color: #fff;
  box-shadow: 0 4px 20px rgba(74,143,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(74,143,255,0.45);
}
.btn-outline {
  border: 1px solid var(--border2);
  color: var(--blue);
  background: rgba(74,143,255,0.06);
}
.btn-outline:hover {
  background: rgba(74,143,255,0.12);
  border-color: var(--blue);
}
.btn-ghost {
  color: var(--text2);
  background: transparent;
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-sm); }

/* ══════════════════════ NAV ══════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7,9,26,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: rgba(74,143,255,0.12); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), #7C3AED);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
}
.logo-text { color: var(--text); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text2);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: 0.3s; }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--text2);
}
.nav-mobile a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-mobile.open { display: flex; }

/* ══════════════════════ HERO ══════════════════════ */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; max-width: 640px; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(74,143,255,0.15);
  top: -100px; right: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(124,58,237,0.12);
  bottom: 0; left: -50px;
}
.hero-glow-3 {
  width: 300px; height: 300px;
  background: rgba(45,212,191,0.08);
  top: 40%; right: 30%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(74,143,255,0.08);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Phone mockup */
.hero-phone {
  position: absolute;
  right: max(40px, calc((100vw - 1160px) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.phone-frame {
  width: 280px;
  height: 570px;
  background: #0A0D1E;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(74,143,255,0.1),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  animation: float-phone 6s ease-in-out infinite;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000;
  border-radius: 100px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 42px;
}
.app-ui {
  padding: 52px 16px 16px;
  height: 100%;
  background: linear-gradient(160deg, #07091A 0%, #0C1A4A 60%, #0F1628 100%);
  overflow: hidden;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.app-greeting { display: flex; flex-direction: column; gap: 2px; }
.app-hi { font-size: 11px; font-weight: 700; color: #F0F4FF; }
.app-sub { font-size: 9px; color: #8DA2C4; }
.app-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A8FFF, #7C3AED);
}
.app-card {
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 12px;
}
.app-card-blue {
  background: linear-gradient(135deg, #1D4ED8, #4338CA);
}
.card-label { font-size: 8px; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.card-country { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.card-data { }
.data-bar { height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-bottom: 4px; }
.data-fill { height: 100%; background: rgba(255,255,255,0.8); border-radius: 2px; }
.data-text { font-size: 8px; color: rgba(255,255,255,0.7); }
.app-section-title { font-size: 9px; font-weight: 700; color: #8DA2C4; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.app-plan-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 6px;
}
.plan-flag { font-size: 14px; }
.plan-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.plan-name { font-size: 9px; font-weight: 600; color: #F0F4FF; }
.plan-price { font-size: 8px; color: #8DA2C4; }
.plan-buy {
  padding: 4px 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #4A8FFF, #7C3AED);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

/* ══════════════════════ PROVIDERS BAR ══════════════════════ */
.providers-bar {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.providers-bar .container {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.providers-label {
  font-size: 12px;
  color: var(--text3);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.providers-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.provider-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: -0.01em;
  transition: color 0.2s;
  cursor: default;
}
.provider-logo:hover { color: var(--text2); }

/* ══════════════════════ FEATURES ══════════════════════ */
.features {
  padding: 100px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(74,143,255,0.1);
  border: 1px solid var(--border2);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(74,143,255,0.25);
  transform: translateY(-2px);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,143,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }

.feature-card-accent {
  background: linear-gradient(135deg, rgba(74,143,255,0.08), rgba(124,58,237,0.08));
  border-color: rgba(74,143,255,0.2);
  grid-column: span 1;
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(74,143,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.feature-icon-teal { background: rgba(45,212,191,0.12); color: var(--teal); }
.feature-icon-orange { background: rgba(255,122,53,0.12); color: var(--orange); }
.feature-icon-purple { background: rgba(167,139,250,0.12); color: var(--purple); }
.feature-icon-green { background: rgba(52,211,153,0.12); color: var(--green); }
.feature-icon-gold { background: rgba(245,166,35,0.12); color: var(--gold); }

.feature-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}
.feature-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(74,143,255,0.12);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════ HOW IT WORKS ══════════════════════ */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--border2), transparent);
  margin-top: 28px;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7C3AED);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(74,143,255,0.3);
}
.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* ══════════════════════ PRICING TEASER ══════════════════════ */
.pricing-teaser { padding: 100px 24px; }
.pricing-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pricing-teaser-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-plan {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.mini-plan:hover {
  border-color: var(--border2);
  transform: translateX(4px);
}
.mini-plan-featured {
  border-color: rgba(74,143,255,0.3);
  background: linear-gradient(135deg, rgba(74,143,255,0.06), rgba(124,58,237,0.04));
}
.mini-plan-flag { font-size: 28px; }
.mini-plan-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mini-plan-name { font-size: 14px; font-weight: 600; }
.mini-plan-meta { font-size: 12px; color: var(--text2); }
.mini-plan-price { font-size: 16px; font-weight: 800; color: var(--blue); }

/* ══════════════════════ TESTIMONIALS ══════════════════════ */
.testimonials {
  padding: 100px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border2); }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.author-avatar-1 { background: linear-gradient(135deg, #4A8FFF, #7C3AED); }
.author-avatar-2 { background: linear-gradient(135deg, #2DD4BF, #1D4ED8); }
.author-avatar-3 { background: linear-gradient(135deg, #FF7A35, #F5A623); }
.author-name { font-size: 13px; font-weight: 700; }
.author-role { font-size: 11px; color: var(--text3); }

/* ══════════════════════ DOWNLOAD ══════════════════════ */
.download {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,143,255,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.download-inner { position: relative; z-index: 1; }
.download-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.download-sub { font-size: 17px; color: var(--text2); margin-bottom: 40px; }
.download-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  transition: all 0.2s;
  min-width: 180px;
}
.store-btn:hover {
  background: var(--card2);
  border-color: rgba(74,143,255,0.3);
  transform: translateY(-1px);
}
.store-btn-apple svg { color: #fff; }
.store-btn-top { font-size: 10px; color: var(--text2); }
.store-btn-main { font-size: 16px; font-weight: 700; }
.download-note { font-size: 12px; color: var(--text3); }

/* ══════════════════════ FOOTER ══════════════════════ */
.footer {
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-tagline { font-size: 13px; color: var(--text3); line-height: 1.6; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3);
  transition: all 0.2s;
}
.social-link:hover { color: var(--blue); border-color: var(--border2); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text2); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-paddle strong { color: var(--text2); }

/* ══════════════════════ PAGE HERO (inner pages) ══════════════════════ */
.page-hero {
  padding: 120px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(74,143,255,0.1) 0%, transparent 70%);
  top: 0; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════ PRICING PAGE ══════════════════════ */
.pricing-section { padding: 64px 24px 100px; }
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}
.billing-toggle span { font-size: 14px; color: var(--text2); }
.toggle-pill {
  position: relative;
  width: 52px; height: 28px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-pill.active { background: linear-gradient(90deg, var(--blue), #7C3AED); border-color: transparent; }
.toggle-pill-dot {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s;
}
.toggle-pill.active .toggle-pill-dot { left: 27px; }
.billing-badge {
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(52,211,153,0.12);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 80px;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.plan-card:hover { transform: translateY(-2px); }
.plan-card-featured {
  border-color: rgba(74,143,255,0.4);
  background: linear-gradient(135deg, rgba(74,143,255,0.06), rgba(124,58,237,0.04));
}
.plan-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(90deg, var(--blue), #7C3AED);
  border-radius: 0 0 10px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.plan-desc { font-size: 13px; color: var(--text2); margin-bottom: 24px; line-height: 1.6; }
.plan-price-block { margin-bottom: 28px; }
.plan-price-amount { font-size: 44px; font-weight: 900; letter-spacing: -0.03em; }
.plan-price-currency { font-size: 24px; font-weight: 700; vertical-align: super; color: var(--text2); }
.plan-price-period { font-size: 13px; color: var(--text2); margin-top: 4px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text2);
}
.plan-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2334D399' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.plan-cta { width: 100%; }
.plan-cta.featured { background: linear-gradient(135deg, var(--blue), #7C3AED) !important; }

/* Paddle overlay container */
.paddle-checkout { display: none; }

/* ══════════════════════ ESIM PACKS (pricing) ══════════════════════ */
.packs-section { padding: 0 24px 100px; }
.packs-section h2 { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 12px; letter-spacing: -0.02em; }
.packs-sub { text-align: center; font-size: 15px; color: var(--text2); margin-bottom: 40px; }
.regions-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.region-tab {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.region-tab:hover, .region-tab.active {
  background: var(--card2);
  border-color: var(--border2);
  color: var(--text);
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.pack-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.pack-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.pack-flag { font-size: 24px; margin-bottom: 10px; }
.pack-country { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.pack-detail { font-size: 12px; color: var(--text2); margin-bottom: 12px; }
.pack-footer { display: flex; justify-content: space-between; align-items: center; }
.pack-price { font-size: 16px; font-weight: 800; color: var(--blue); }
.pack-buy-btn {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(74,143,255,0.12);
  border: 1px solid var(--border2);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  transition: background 0.2s;
}
.pack-buy-btn:hover { background: rgba(74,143,255,0.22); }

/* ══════════════════════ SUPPORT PAGE ══════════════════════ */
.support-section { padding: 40px 24px 100px; }
.support-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.support-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  position: sticky;
  top: 84px;
}
.support-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text2);
  transition: all 0.15s;
}
.support-sidebar a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.support-sidebar a.active { color: var(--blue); background: rgba(74,143,255,0.08); }
.support-content { }
.support-cat { margin-bottom: 48px; }
.support-cat-title {
  font-size: 20px; font-weight: 800; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--card2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 10px;
  color: var(--text2);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.faq-item.open .faq-a { display: block; }

.contact-card {
  background: linear-gradient(135deg, rgba(74,143,255,0.08), rgba(124,58,237,0.06));
  border: 1px solid rgba(74,143,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(74,143,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.contact-info p { font-size: 13px; color: var(--text2); margin-bottom: 16px; line-height: 1.6; }

/* ══════════════════════ LEGAL PAGES ══════════════════════ */
.legal-section {
  padding: 40px 24px 100px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-meta { font-size: 13px; color: var(--text3); margin-bottom: 48px; }
.legal-section h2 { font-size: 22px; font-weight: 700; margin: 40px 0 14px; letter-spacing: -0.01em; }
.legal-section h3 { font-size: 16px; font-weight: 600; margin: 24px 0 10px; }
.legal-section p { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.legal-section ul { padding-left: 20px; margin-bottom: 14px; }
.legal-section li { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 6px; }
.legal-section a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-highlight {
  background: rgba(74,143,255,0.06);
  border: 1px solid rgba(74,143,255,0.15);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1024px) {
  .hero-phone { display: none; }
  .hero .container { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .packs-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 100px 24px 60px; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; gap: 24px; }
  .step-connector { display: none; }
  .step { max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .support-grid { grid-template-columns: 1fr; }
  .support-sidebar { position: static; }
  .providers-bar .container { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .packs-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
  .contact-card { flex-direction: column; }
}

/* ══════════════════════ SCROLL ANIMATIONS ══════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
