:root {
  color-scheme: light;
  --ink: #101820;
  --navy: #1b2a4a;
  --navy-2: #2e4372;
  --navy-3: #0b1220;
  --amber: #ffc107;
  --amber-soft: #fff4c7;
  --paper: #f6f7fb;
  --surface: #ffffff;
  --muted: #667085;
  --line: #e4e7ec;
  --success: #13795b;
  --danger: #b42318;
  --shadow: 0 24px 80px rgba(16, 24, 40, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); line-height: 1.6; }
body, button, select { font: inherit; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--amber); padding: 10px 14px; border-radius: 10px; font-weight: 850; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 247, 251, 0.9);
  border-bottom: 1px solid rgba(228, 231, 236, 0.85);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 156px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links a { text-decoration: none; color: #344054; font-size: 14px; font-weight: 760; }
.nav-links a:hover { color: var(--navy); }
.language-wrap { position: relative; flex: 0 0 auto; }
.language-select {
  min-width: 154px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--navy);
  border-radius: 12px;
  padding: 10px 34px 10px 12px;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}
.language-select:focus-visible, .button:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(255, 193, 7, .55); outline-offset: 3px; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; color: var(--navy); font-size: 26px; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 14px;
  padding: 12px 18px;
  border: 1px solid transparent;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(27, 42, 74, .2); }
.button.amber { background: var(--amber); color: #161616; }
.button.ghost { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); color: #fff; }
.button.light { border-color: var(--line); background: #fff; color: var(--navy); }
.button.block { width: 100%; }

.hero { position: relative; overflow: hidden; background: var(--navy-3); color: #fff; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 999px; filter: blur(1px); pointer-events: none; }
.hero::before { width: 480px; height: 480px; right: -160px; top: -180px; background: radial-gradient(circle, rgba(255,193,7,.22), transparent 67%); }
.hero::after { width: 520px; height: 520px; left: -280px; bottom: -340px; background: radial-gradient(circle, rgba(46,67,114,.7), transparent 68%); }
.hero-grid { position: relative; z-index: 1; min-height: 680px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(36px, 7vw, 92px); padding-block: 84px; }
.eyebrow { margin: 0 0 14px; color: #aab6cf; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
.eyebrow.amber { color: #c58f00; }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(46px, 6.4vw, 76px); line-height: .99; letter-spacing: -.055em; font-weight: 900; }
.hero h1 span { color: var(--amber); }
.hero-copy { max-width: 650px; margin: 24px 0 0; color: #c9d1df; font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; color: #aab6c9; font-size: 13px; font-weight: 700; }
.hero-note span::before { content: "✓"; color: var(--amber); margin-inline-end: 7px; }

.phone-stage { position: relative; display: grid; place-items: center; min-height: 520px; }
.route-orbit { position: absolute; inset: 8% 0; border: 1px dashed rgba(255,255,255,.16); border-radius: 50%; transform: rotate(-12deg); }
.route-orbit::before, .route-orbit::after { content: ""; position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 8px rgba(255,193,7,.12); }
.route-orbit::before { top: 22%; left: 4%; }
.route-orbit::after { right: 7%; bottom: 17%; }
.phone {
  width: min(360px, 88vw);
  border-radius: 38px;
  padding: 12px;
  background: #070b12;
  box-shadow: 0 36px 90px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.12);
  transform: rotate(2deg);
}
.phone-screen { min-height: 570px; border-radius: 29px; overflow: hidden; background: #f8f9fc; color: var(--ink); padding: 22px 18px; }
.phone-top { display: flex; justify-content: space-between; align-items: center; color: var(--navy); font-size: 13px; font-weight: 850; }
.route-title { margin: 24px 0 5px; color: var(--navy); font-size: 25px; line-height: 1.15; letter-spacing: -.04em; }
.route-sub { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.map-card { position: relative; height: 176px; overflow: hidden; border-radius: 20px; background: #e9edf5; }
.map-card::before { content: ""; position: absolute; inset: -25%; background: repeating-linear-gradient(28deg, transparent 0 28px, rgba(27,42,74,.08) 29px 33px), repeating-linear-gradient(118deg, transparent 0 48px, rgba(27,42,74,.07) 49px 52px); }
.map-route { position: absolute; inset: 28px 38px; border: 4px solid var(--navy-2); border-left-color: transparent; border-radius: 52% 34% 48% 38%; transform: rotate(-10deg); }
.map-pin { position: absolute; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50% 50% 50% 8px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 900; transform: rotate(-45deg); box-shadow: 0 5px 12px #1b2a4a33; }
.map-pin span { transform: rotate(45deg); }
.pin-1 { left: 30px; bottom: 30px; }.pin-2 { left: 48%; top: 25px; }.pin-3 { right: 32px; bottom: 44px; background: var(--amber); color: #111; }
.saving { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.metric-card { padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.metric-card small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.metric-card b { display: block; color: var(--navy); margin-top: 3px; font-size: 19px; }
.stop-list { margin-top: 12px; display: grid; gap: 8px; }
.stop { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; padding: 10px; border-radius: 13px; background: #fff; border: 1px solid var(--line); }
.stop .number { width: 28px; height: 28px; border-radius: 10px; display: grid; place-items: center; background: var(--amber-soft); color: #725200; font-weight: 900; font-size: 12px; }
.stop b { font-size: 12px; color: var(--navy); }.stop small { display: block; color: var(--muted); font-size: 10px; }.stop .time { color: var(--navy-2); font-weight: 850; font-size: 11px; }

.audience { background: #fff; border-bottom: 1px solid var(--line); }
.audience-row { min-height: 96px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 28px; color: #475467; font-size: 14px; font-weight: 760; }
.audience-row strong { color: var(--navy); }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }
.section { padding-block: clamp(72px, 9vw, 112px); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section h2 { margin: 0; color: var(--navy); font-size: clamp(34px, 5vw, 54px); line-height: 1.05; letter-spacing: -.045em; }
.section-lead { margin: 16px 0 0; color: var(--muted); font-size: 18px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card, .feature-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.step-card .n { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--navy); color: var(--amber); font-weight: 900; }
.step-card h3, .feature-card h3 { margin: 20px 0 8px; color: var(--navy); font-size: 20px; line-height: 1.25; }
.step-card p, .feature-card p { margin: 0; color: var(--muted); }
.features-section { background: #fff; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { background: var(--paper); }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--amber-soft); color: var(--navy); font-size: 22px; }

.confidence { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(32px, 7vw, 92px); align-items: center; }
.confidence-panel { background: var(--navy); color: #fff; border-radius: 30px; padding: clamp(28px, 5vw, 46px); box-shadow: var(--shadow); }
.confidence-panel h2 { color: #fff; }
.confidence-panel p { color: #c4ccdc; }
.trust-list { display: grid; gap: 12px; }
.trust-item { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; padding: 18px; border: 1px solid var(--line); background: #fff; border-radius: 18px; }
.trust-item .check { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--amber-soft); color: #6c4c00; font-weight: 950; }
.trust-item b { color: var(--navy); }.trust-item p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }

.pricing-section { background: var(--navy-3); color: #fff; }
.pricing-section h2 { color: #fff; }
.pricing-section .section-lead { color: #bdc7d8; }
.pricing-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 24px; align-items: stretch; }
.price-card { border-radius: 28px; padding: clamp(26px, 5vw, 42px); background: #fff; color: var(--ink); box-shadow: 0 28px 90px rgba(0,0,0,.32); }
.plan-name { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--navy); font-size: 19px; font-weight: 900; }
.badge { border-radius: 999px; padding: 6px 10px; background: var(--amber-soft); color: #684900; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.billing-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 24px 0; padding: 5px; background: #eef1f7; border-radius: 14px; }
.billing-tab { border: 0; border-radius: 10px; padding: 10px; color: #667085; background: transparent; font-weight: 850; cursor: pointer; }
.billing-tab[aria-selected="true"] { background: #fff; color: var(--navy); box-shadow: 0 4px 14px rgba(16,24,40,.08); }
.price { color: var(--navy); line-height: 1; }
.price .currency { font-size: 20px; font-weight: 800; vertical-align: top; line-height: 1.8; }
.price strong { font-size: clamp(46px, 6vw, 64px); letter-spacing: -.05em; }
.price-period, .price-detail { color: var(--muted); font-size: 13px; }
.price-detail { min-height: 24px; margin: 8px 0 20px; }
.plan-features { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 11px; color: #344054; }
.plan-features li::before { content: "✓"; color: var(--success); font-weight: 950; margin-inline-end: 9px; }
.price-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.pricing-promise { border: 1px solid rgba(255,255,255,.12); border-radius: 28px; padding: clamp(26px, 5vw, 42px); background: rgba(255,255,255,.06); }
.pricing-promise h3 { margin-top: 0; font-size: 27px; }
.pricing-promise ul { list-style: none; padding: 0; display: grid; gap: 17px; color: #d0d6e1; }
.pricing-promise li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.pricing-promise li span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,193,7,.14); color: var(--amber); }

.faq { display: grid; gap: 10px; max-width: 900px; }
.faq details { border: 1px solid var(--line); border-radius: 17px; background: #fff; padding: 0 20px; }
.faq summary { cursor: pointer; list-style: none; padding: 19px 34px 19px 0; color: var(--navy); font-weight: 850; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 15px; font-size: 24px; color: #667085; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: -2px 0 20px; color: var(--muted); }
.final-cta { padding: 0 0 90px; }
.cta-panel { overflow: hidden; position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; border-radius: 30px; padding: clamp(28px, 5vw, 48px); background: var(--amber); color: #151515; }
.cta-panel::after { content: ""; position: absolute; width: 260px; height: 260px; border: 48px solid rgba(27,42,74,.09); border-radius: 50%; right: -100px; top: -130px; }
.cta-panel h2 { margin: 0; font-size: clamp(30px, 5vw, 48px); line-height: 1.05; letter-spacing: -.04em; }
.cta-panel p { margin: 10px 0 0; max-width: 650px; }

.site-footer { background: #080c13; color: #c2cad7; padding: 50px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 36px; }
.footer-brand { gap: 12px; color: #fff; font-size: 19px; font-weight: 850; }
.site-footer .footer-brand img { width: 44px; height: 44px; object-fit: contain; filter: none; }
.footer-copy { max-width: 410px; margin: 18px 0; color: #98a2b3; font-size: 14px; }
.footer-title { color: #fff; font-weight: 850; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #b7c0cf; text-decoration: none; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.09); margin-top: 36px; padding-top: 22px; color: #7f8999; font-size: 12px; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 50; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; text-decoration: none; font-size: 25px; font-weight: 900; box-shadow: 0 14px 34px rgba(0,0,0,.25); }
.whatsapp-float img { width: 29px; height: 29px; }
.consent-banner { position: fixed; left: 18px; bottom: 18px; z-index: 70; width: min(660px, calc(100% - 36px)); display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: #0b1220; color: #fff; box-shadow: 0 22px 70px rgba(0,0,0,.35); }
.consent-banner p { margin: 0; color: #d0d6e1; font-size: 13px; }
.consent-banner div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.consent-banner a, .consent-banner button { border: 0; border-radius: 10px; padding: 9px 11px; background: transparent; color: #fff; font-size: 12px; font-weight: 800; text-decoration: none; cursor: pointer; }
.consent-banner .consent-accept { background: var(--amber); color: #151515; }
.consent-banner .consent-reject { border: 1px solid rgba(255,255,255,.18); }

.legal-hero { background: var(--navy-3); color: #fff; padding: 62px 0 74px; }
.legal-hero .eyebrow { color: var(--amber); }
.legal-hero h1 { margin: 0; max-width: 820px; font-size: clamp(38px, 6vw, 62px); line-height: 1.02; letter-spacing: -.05em; }
.legal-hero p { max-width: 760px; margin: 18px 0 0; color: #c6cedc; font-size: 17px; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 820px); gap: 42px; align-items: start; padding-block: 52px 90px; }
.legal-nav { position: sticky; top: 100px; display: grid; gap: 8px; }
.legal-nav a { padding: 9px 12px; border-radius: 10px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 750; }
.legal-nav a:hover { background: var(--amber-soft); color: var(--navy); }
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: clamp(24px, 5vw, 48px); box-shadow: 0 14px 50px rgba(16,24,40,.06); }
.legal-card section { scroll-margin-top: 110px; }
.legal-card section + section { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 22px; }
.legal-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 23px; line-height: 1.25; letter-spacing: -.025em; }
.legal-card p, .legal-card li { color: #475467; }
.legal-card ul, .legal-card ol { padding-inline-start: 22px; }
.legal-card a { color: var(--navy-2); font-weight: 800; }
.notice { margin: 18px 0; border-inline-start: 4px solid var(--amber); border-radius: 12px; background: #fff8dd; padding: 15px 17px; color: #5f4500; }
.contact-card { display: grid; gap: 10px; margin-top: 30px; padding: 20px; border-radius: 18px; background: var(--paper); }
.contact-card a { text-decoration: none; }

.tracking-shell { min-height: calc(100vh - 76px); display: grid; place-items: start center; padding: 42px 20px 70px; }
.tracking-card { width: min(580px, 100%); background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: clamp(24px, 5vw, 38px); box-shadow: var(--shadow); }
.tracking-pill { display: inline-block; background: var(--amber-soft); color: #664900; border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 900; }
.tracking-card h1 { margin: 18px 0 8px; color: var(--navy); font-size: 32px; line-height: 1.08; letter-spacing: -.035em; }
.tracking-card p { color: var(--muted); }
.tracking-metric { padding: 16px 0; border-top: 1px solid var(--line); }
.tracking-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.tracking-value { color: var(--navy); font-size: 21px; font-weight: 900; margin-top: 3px; }
.tracking-actions { display: grid; gap: 8px; margin-top: 12px; }
.tracking-actions .button { width: 100%; border: 0; cursor: pointer; }
.tracking-actions .button:disabled { opacity: .55; cursor: wait; }
.tracking-card textarea { box-sizing: border-box; width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 12px; font: inherit; resize: vertical; }
.proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 12px 0; }
.proof-grid img { display: block; width: 100%; aspect-ratio: 1.25; object-fit: cover; border-radius: 12px; }
.hidden { display: none !important; }
.error { color: var(--danger); background: #fff0ef; padding: 14px; border-radius: 14px; }

[dir="rtl"] .hero-grid, [dir="rtl"] .confidence, [dir="rtl"] .pricing-grid { direction: rtl; }
[dir="rtl"] .map-pin span { transform: rotate(45deg); }

@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 76px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 70px; }
  .hero-copy { margin-inline: auto; }.hero-actions, .hero-note { justify-content: center; }
  .phone-stage { min-height: 600px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .confidence, .pricing-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }.legal-nav { display: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-shell { min-height: 68px; gap: 10px; }.nav-links { top: 68px; }
  .brand img { width: 134px; }.language-select { min-width: 54px; width: 54px; padding-inline: 8px; color: transparent; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
  .language-select option { color: var(--ink); }
  .hero-grid { min-height: auto; padding-block: 58px 72px; }.hero h1 { font-size: 48px; }
  .hero-actions .button { width: 100%; }.phone { transform: none; }.phone-stage { min-height: 570px; }
  .steps, .features { grid-template-columns: 1fr; }
  .section { padding-block: 70px; }.section-head { margin-bottom: 30px; }
  .audience-row { padding-block: 22px; gap: 10px 16px; }
  .footer-grid { grid-template-columns: 1fr; }.cta-panel { grid-template-columns: 1fr; }.cta-panel .button { width: 100%; }
  .legal-hero { padding: 46px 0 54px; }.legal-layout { padding-top: 24px; }.legal-card { border-radius: 20px; }
  .consent-banner { grid-template-columns: 1fr; bottom: 10px; left: 10px; width: calc(100% - 20px); }.consent-banner div { justify-content: stretch; }.consent-banner a, .consent-banner button { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
/* International prices must fit smaller screens without clipping. */
.market-label { display: block; margin: 1rem 0 .5rem; font-size: .95rem; }
.market-select { width: 100%; margin-bottom: 1rem; }
.price strong { font-size: clamp(2rem, 7vw, 3.5rem); overflow-wrap: anywhere; }
