:root {
  /* Color System - Updated to Alibaba Orange & Light Theme */
  --bg-base:       #ffffff;
  --bg-deep:       #f9f9f9;
  --border:        #eeeeee;
  --orange-primary: #ff6600;
  --orange-hover:   #e65c00;
  --orange-bg:      #fff5f0;
  --text-primary:   #000000;
  --text-secondary: #555555;
  --text-dim:       #888888;
  --green-success:  #00c853;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --section-gap: 60px;
  --r-md: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---- BACKGROUND PATTERNS ---- */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(#00000008 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}

.bg-lines {
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 70% 30%, transparent 20%, #ff660005 21%, transparent 22%),
    radial-gradient(circle at 70% 30%, transparent 35%, #ff660003 36%, transparent 37%);
  z-index: -1;
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.logo-text span { color: var(--orange-primary); }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-link-login { font-size: 0.9rem; font-weight: 500; color: var(--text-primary); }
.btn-nav-register {
  background: var(--orange-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* ---- HERO SECTION ---- */
.hero { padding: 60px 0; }
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; background: var(--orange-primary); border-radius: 50%; }

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-highlight { position: relative; color: var(--orange-primary); }
.underline {
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 8px;
  background: var(--orange-primary);
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}

.hero-sub { font-size: 1.1rem; color: var(--text-secondary); max-width: 500px; margin-bottom: 32px; }

.hero-ctas { display: flex; gap: 16px; margin-bottom: 32px; }
.btn-hero-primary {
  background: var(--orange-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-features { display: flex; gap: 24px; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.check { color: var(--orange-primary); margin-right: 4px; }

/* ---- TERMINAL MOCKUP ---- */
.terminal-mockup {
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  font-family: var(--font-mono);
}
.term-header {
  background: #1a1a1a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222;
}
.term-dots { display: flex; gap: 6px; }
.term-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f56; } .dot-y { background: #ffbd2e; } .dot-g { background: #27c93f; }
.term-title { color: #666; font-size: 0.75rem; }
.term-status-live { color: #27c93f; font-size: 0.7rem; font-weight: bold; display: flex; align-items: center; gap: 6px; }
.live-dot { width: 6px; height: 6px; background: #27c93f; border-radius: 50%; }

.term-body { padding: 20px; font-size: 0.85rem; line-height: 1.6; color: #ccc; }
.prompt { color: #888; margin-right: 8px; }
.dim { color: #666; }
.time { color: #444; margin-right: 12px; }
.op { color: #ff9800; font-weight: bold; margin-right: 12px; }
.price { color: #eee; flex-grow: 1; }
.badge-sold {
  color: #27c93f;
  border: 1px solid rgba(39, 201, 63, 0.3);
  padding: 1px 6px;
  font-size: 0.65rem;
  border-radius: 2px;
  font-weight: bold;
}
.term-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.total-val { color: #fff; }
.cursor { color: var(--orange-primary); animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.term-line.new-line {
  animation: slideInTerminal 0.3s ease-out forwards;
}
@keyframes slideInTerminal {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---- INTEGRATION SECTION ---- */
.integration { background: #fafafa; padding: 80px 0; }
.integration-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tagline { color: var(--orange-primary); font-family: var(--font-mono); font-weight: bold; margin-bottom: 16px; font-size: 0.9rem; }
.section-title { font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.orange { color: var(--orange-primary); }
.integration-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 32px; }
.check-item { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }

.integration-actions { display: flex; align-items: center; gap: 24px; }
.btn-orange {
  background: var(--orange-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.compat-box { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--text-dim); max-width: 200px; }
.compat-box img { width: 32px; }

/* ---- CODE MOCKUP ---- */
.code-mockup { background: #0a0a0a; border-radius: 12px; overflow: hidden; font-family: var(--font-mono); }
.code-header { background: #1a1a1a; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.code-title { color: #666; font-size: 0.75rem; }
.btn-copy { background: none; border: 1px solid #333; color: #888; font-size: 0.7rem; padding: 4px 10px; border-radius: 4px; display: flex; align-items: center; gap: 6px; }
.code-body { padding: 20px; font-size: 0.85rem; line-height: 1.5; color: #bbb; }
.ln { color: #444; margin-right: 16px; user-select: none; }
.c-comment { color: #555; }
.c-kw { color: #ff9800; }

/* ---- FEATURES GRID ---- */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }

.feat-card-main {
  grid-column: span 2;
  grid-row: span 2;
  border: 1px solid var(--orange-primary);
  background: var(--orange-bg);
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.feat-icon-box { font-size: 2rem; margin-bottom: 20px; color: var(--orange-primary); }
.feat-icon-box.small { font-size: 1.4rem; margin-bottom: 16px; }
.feat-tag { 
  background: var(--orange-primary); 
  color: white; 
  padding: 4px 10px; 
  font-size: 0.6rem; 
  font-weight: 900; 
  border-radius: 2px; 
  align-self: flex-start;
  margin-bottom: 16px;
}
.feat-card-main h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.feat-card-main p { color: var(--text-secondary); margin-bottom: auto; }

.feat-stats { display: flex; gap: 32px; margin-top: 40px; }
.f-stat { display: flex; flex-direction: column; }
.f-stat .val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.f-stat .lbl { font-size: 0.65rem; color: var(--text-dim); font-weight: bold; }

.feat-card {
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
  background: white;
}
.feat-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.feat-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.4; }

/* ---- PAYMENT STRIP ---- */
.payment-strip { padding: 40px 0; border-bottom: 1px solid var(--border); }
.strip-logos { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.pay-pill { background: #fafafa; border: 1px solid var(--border); padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; }

/* ---- HOW IT WORKS ---- */
.hiw { padding: 80px 0; }
.hiw-steps { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.hiw-step { flex: 1; position: relative; }
.step-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: #eee; margin-bottom: 16px; }
.hiw-step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.hiw-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.hiw-connector { flex: 0.2; height: 2px; background: #eee; }

/* ---- APP MOBILE ---- */
.mobile-app { padding: 100px 0; background: #fafafa; }
.mobile-app-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-features-list { list-style: none; margin: 32px 0; display: grid; gap: 16px; }
.app-features-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text-secondary); }
.app-features-list li::before { content: '✔'; color: var(--orange-primary); }

.app-download-btns { display: flex; gap: 16px; }
.btn-download { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); padding: 12px 20px; border-radius: 8px; background: #fff; font-weight: 700; transition: 0.2s; }
.btn-download:hover { border-color: var(--orange-primary); }

.phone-mockup-new {
  width: 320px;
  height: 640px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.15);
  margin: 0 auto;
  position: relative;
}
.phone-screen {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-header { padding: 16px 24px; display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 800; }
.phone-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.p-date { font-size: 0.8rem; color: #888; font-weight: 700; }
.p-revenue { font-size: 2rem; font-weight: 800; margin: 8px 0; }
.p-trend { font-size: 0.75rem; color: var(--green-success); font-weight: 700; }

.p-notif { background: #f8f9fa; padding: 12px; border-radius: 12px; display: flex; gap: 12px; margin: 24px 0; border: 1px solid #eee; }
.p-notif-icon { width: 32px; height: 32px; background: var(--orange-primary); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.p-notif-text { display: flex; flex-direction: column; gap: 2px; }
.p-notif-text strong { font-size: 0.75rem; }
.p-notif-text span { font-size: 0.7rem; color: #666; }

.p-list { display: grid; gap: 12px; margin-bottom: 24px; }
.p-item { display: flex; justify-content: space-between; font-size: 0.85rem; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }
.p-item span { color: #888; }

.btn-p-action { background: #000; color: #fff; text-align: center; padding: 14px; border-radius: 12px; font-weight: 700; margin-top: auto; font-size: 0.9rem; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 100px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 48px; }
.testi-card-big { grid-column: span 2; background: #fafafa; padding: 60px; border-radius: 24px; border: 1px solid var(--border); }
.testi-card { background: #fff; padding: 40px; border-radius: 20px; border: 1px solid var(--border); }

.quote { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; line-height: 1.3; margin-bottom: 32px; }
.testi-card .quote { font-size: 1.3rem; }

.testi-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 48px; height: 48px; background: #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; }
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-info strong { font-size: 1rem; }
.author-info span { font-size: 0.85rem; color: #888; }

/* ---- COUNTRIES ---- */
.countries-section { background: var(--bg-base); color: var(--text-primary); padding: 100px 0; border-top: 1px solid var(--border); }
.countries-container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: flex-start; }
.countries-text .section-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; color: var(--text-primary); }
.countries-text .section-sub { color: var(--text-secondary); font-size: 1.1rem; max-width: 440px; margin-bottom: 40px; }

.all-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background: #fafafa;
}
.all-active-badge .live-dot { width: 6px; height: 6px; background: #27c93f; border-radius: 50%; box-shadow: 0 0 8px rgba(39,201,63,0.3); }

.countries-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.country-card-new {
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
}
.country-card-new.empty { background: #fcfcfc; }
.country-flag-img {
  width: 40px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}
.country-card-new h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #000; }
.country-card-new .c-stats { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.country-card-new .h-count { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.8rem; }
.country-card-new .status { color: #27c93f; font-family: var(--font-mono); font-size: 0.75rem; display: flex; align-items: center; gap: 6px; font-weight: 600; }
.country-card-new .status .dot { width: 5px; height: 5px; background: #27c93f; border-radius: 50%; }

/* ---- FAQ ---- */
.faq-section { padding: 80px 0; }
.faq-list { margin-top: 40px; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; color: var(--orange-primary); font-size: 1.2rem; }

/* ---- CTA FINAL ---- */
.cta-final { background: var(--bg-base); color: var(--text-primary); padding: 100px 0; text-align: center; border-top: 1px solid var(--border); }
.cta-container { display: flex; flex-direction: column; align-items: center; }
.cta-final .section-title { font-size: 4rem; line-height: 1; color: var(--text-primary); margin-bottom: 24px; }
.cta-final .section-sub { color: var(--text-secondary); margin-bottom: 40px; font-size: 1.1rem; }

.cta-form { display: flex; gap: 0; background: #fff; border: 1px solid var(--border); padding: 6px; border-radius: 8px; width: 100%; max-width: 500px; margin-bottom: 48px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.input-group { display: flex; align-items: center; gap: 12px; padding: 0 16px; flex-grow: 1; }
.mail-icon { color: var(--text-dim); }
.cta-form input { background: none; border: none; color: var(--text-primary); width: 100%; font-size: 1rem; outline: none; }
.btn-cta-start { background: var(--orange-primary); color: #fff; border: none; padding: 14px 32px; border-radius: 4px; font-weight: 700; cursor: pointer; transition: 0.2s; }
.btn-cta-start:hover { background: var(--orange-hover); }

.cta-trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 40px; max-width: 800px; }
.t-badge { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.check-icon { color: var(--orange-primary); font-weight: bold; }

/* ---- FOOTER ---- */
.footer { background: var(--bg-base); color: var(--text-primary); padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; }
.footer-logo span { color: var(--orange-primary); }
.footer-brand p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; max-width: 320px; margin-bottom: 24px; }

.footer-social-new { display: flex; gap: 12px; }
.social-box { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: 0.2s; }
.social-box:hover { border-color: var(--orange-primary); color: var(--orange-primary); background: var(--orange-bg); }

.footer-col-new h4 { font-family: var(--font-mono); font-size: 0.75rem; color: var(--orange-primary); letter-spacing: 0.1em; margin-bottom: 24px; font-weight: 700; }
.footer-col-new { display: flex; flex-direction: column; gap: 14px; }
.footer-col-new a { color: var(--text-secondary); font-size: 0.9rem; transition: 0.2s; }
.footer-col-new a:hover { color: var(--text-primary); padding-left: 4px; }

.trust-item-footer { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 12px; }
.trust-item-footer svg { color: var(--orange-primary); }

.footer-bottom-new { border-top: 1px solid var(--border); padding-top: 40px; text-align: left; color: var(--text-dim); font-size: 0.85rem; }

/* ---- MOBILE MENU ---- */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mob-link { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #000; }
.mob-actions { display: flex; flex-direction: column; gap: 12px; width: 80%; }
.btn-outline-full { text-align: center; padding: 14px; border: 1px solid #eee; border-radius: 8px; font-weight: bold; }
.btn-primary-full { text-align: center; padding: 14px; background: var(--orange-primary); color: #fff; border-radius: 8px; font-weight: bold; }

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---- PREMIUM HOVER EFFECTS & TRANSITIONS ---- */
.btn-hero-primary, .btn-hero-ghost, .btn-nav-register, .btn-orange, .social-box, .btn-copy, .btn-download, .faq-item, .feat-card, .country-card-new, .fab-wifi, .btn-calc-cta, .btn-cta-start {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary:hover, .btn-nav-register:hover, .btn-orange:hover, .btn-calc-cta:hover, .btn-cta-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
  background: var(--orange-hover);
}

.btn-hero-ghost:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
  background: var(--orange-bg);
  transform: translateY(-2px);
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(255, 102, 0, 0.05);
}

.feat-card-main {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-card-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15);
}

.country-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: #ffd8cc;
}

/* Nav Links Hover and Underline Animation */
.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--orange-primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--orange-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* ---- FAQ ACCORDION STYLES ---- */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  border-color: var(--orange-primary);
}
.faq-q {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-q::after {
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item.open {
  border-color: var(--orange-primary);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.05);
}
.faq-item.open .faq-q {
  background-color: var(--orange-bg);
  color: var(--orange-primary);
}
.faq-item.open .faq-q::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--orange-primary);
}
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}
.faq-item.open .faq-a {
  max-height: 200px;
  opacity: 1;
}
.faq-answer {
  padding: 20px 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

/* ---- EARNINGS CALCULATOR ---- */
.calculator-section {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-top: 40px;
  align-items: center;
}
.calc-inputs {
  background: #fafafa;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: grid;
  gap: 32px;
}
.calc-input-group {
  display: grid;
  gap: 12px;
}
.calc-label-val {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.calc-val-display {
  color: var(--orange-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-primary);
  cursor: pointer;
  transition: transform 0.1s;
  box-shadow: 0 2px 6px rgba(255, 102, 0, 0.3);
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: var(--orange-primary);
  cursor: pointer;
  transition: transform 0.1s;
  box-shadow: 0 2px 6px rgba(255, 102, 0, 0.3);
}
.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}
.slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
}

.calc-results {
  background: var(--orange-bg);
  border: 1px solid rgba(255, 102, 0, 0.2);
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.result-box {
  margin-bottom: 24px;
  width: 100%;
}
.result-lbl {
  font-size: 0.75rem;
  color: var(--orange-primary);
  font-weight: 800;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.result-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  transition: transform 0.15s ease-out;
}
.result-val.pulse-val {
  transform: scale(1.05);
}

.result-breakdown {
  display: flex;
  width: 100%;
  justify-content: space-around;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 102, 0, 0.1);
  border-bottom: 1px solid rgba(255, 102, 0, 0.1);
  margin-bottom: 24px;
}
.breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.breakdown-item span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.breakdown-item strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

.calc-insight {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 102, 0, 0.05);
  width: 100%;
  text-align: left;
}
.orange-text {
  color: var(--orange-primary);
  font-weight: 700;
}

.btn-calc-cta {
  background: var(--orange-primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  display: block;
  transition: all 0.3s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .hero-container, .integration-container, .mobile-app-container, .countries-container, .calc-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: 3rem; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .feat-card-main, .testi-card-big { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ---- FLOATING BUTTON & GLOW ---- */
.fab-wifi {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--orange-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(255,102,0,0.3);
  cursor: pointer;
  z-index: 1000;
  animation: pulseGlow 2s infinite;
}
.fab-wifi:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 15px 30px rgba(255, 102, 0, 0.5);
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
  }
}
