:root {
  --primary: #2563EB;
  --primary-2: #3B82F6;
  --deep: #1E40AF;
  --navy: #0F172A;
  --light: #DBEAFE;
  --soft: #EFF6FF;
  --bg: #FFFFFF;
  --bg-2: #F8FAFC;
  --text: #0F172A;
  --muted: #475569;
  --border: #E2E8F0;
  --success: #16A34A;
  --star: #F59E0B;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

p { color: var(--muted); }

.promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px 16px;
  color: #fff;
  background: var(--navy);
  font-size: 0.92rem;
}

.promo a { color: var(--light); font-weight: 800; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.brand img {
  border-radius: 12px;
  border: 1px solid var(--border);
}

.header__nav { margin-left: auto; }

.header__nav-list, .footer ul, .header__mobile-menu ul {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__nav a {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.94rem;
}

.header__nav a:hover { color: var(--primary); }

.header-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-weight: 900;
}

.header__toggle, .mobile-close {
  display: none;
  border: 0;
  background: var(--soft);
  color: var(--deep);
  border-radius: 12px;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.header__mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 23, 42, 0.42);
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(340px, 88vw);
  height: 100vh;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.header__mobile-menu ul {
  flex-direction: column;
  align-items: stretch;
  margin: 58px 0 22px;
}

.header__mobile-menu a {
  display: block;
  padding: 13px 12px;
  border-bottom: 1px solid var(--border);
  font-weight: 850;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.55fr);
  gap: clamp(22px, 4vw, 50px);
  min-height: calc(100vh - 118px);
  padding: clamp(24px, 5vw, 72px) clamp(16px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.14), transparent 34%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.badges span, .plan-tag, .eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--deep);
  background: var(--soft);
  border: 1px solid var(--light);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
  font-size: 0.82rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  color: var(--navy);
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  letter-spacing: 0;
}

.hero-desc {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 24px 0 0;
}

.stats strong {
  display: grid;
  gap: 4px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
  font-size: 1.28rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.value-message {
  max-width: 660px;
  margin: 20px 0 0;
  padding: 14px 16px;
  color: var(--navy);
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover { background: var(--deep); }

.btn-secondary {
  color: var(--deep);
  background: var(--soft);
  border-color: var(--light);
}

.btn-full { width: 100%; }

.offer-card {
  align-self: center;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 390px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.device-spread {
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: 24px;
  display: flex;
  gap: 10px;
  opacity: 0.24;
  pointer-events: none;
}

.section, .page-hero {
  padding: clamp(46px, 7vw, 92px) clamp(16px, 5vw, 72px);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head h2, .page-hero h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero {
  display: grid;
  gap: 18px;
  min-height: 430px;
  align-content: center;
  background: linear-gradient(135deg, var(--soft), #fff);
}

.page-hero p { max-width: 780px; }

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: scroll 42s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee img {
  width: clamp(112px, 20vw, 210px);
  object-fit: cover;
  border-radius: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.carousel--logos .marquee img { aspect-ratio: 16 / 9; }
.carousel--movies .marquee img { aspect-ratio: 1 / 1.482; }
.carousel--devices .marquee img { aspect-ratio: 1 / 1; }
.carousel--sport .marquee img { aspect-ratio: 9 / 16; }
.carousel--wtsp .marquee img { aspect-ratio: 473 / 1024; }

.dark {
  color: #fff;
  background: var(--navy);
}

.dark h2, .dark .section-head p { color: #fff; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

th, td {
  padding: 15px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th { background: var(--soft); color: var(--navy); }
td:nth-child(2) { color: var(--deep); font-weight: 900; }

.pricing { background: var(--bg-2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-grid--small { margin-top: 20px; }

.price-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.price-card--featured {
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.18);
}

.price-card--wide {
  max-width: 1180px;
  margin: 18px auto 0;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.price-card ul, .feature-split ul, .feature-list ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.muted-line { color: #94A3B8; text-decoration: line-through; }
.adult { font-weight: 900; color: var(--navy); }
.per-day { margin: -8px 0 0; }
.payment-icons {
  width: min(531px, 100%);
  margin: 24px auto 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.center-link {
  width: fit-content;
  margin: 22px auto 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-grid article, .review-card, .text-section {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.step-grid span {
  color: var(--primary);
  font-weight: 950;
  font-size: 1.8rem;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(245px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.review-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.review-card small {
  display: inline-flex;
  width: fit-content;
  color: var(--success);
  font-weight: 900;
}

.stars, .rating-summary { color: var(--star); font-weight: 950; }
.rating-summary { text-align: center; }

.feature-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 24px;
}

.faq { background: var(--bg-2); }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

details {
  padding: 17px 19px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.text-section {
  max-width: 980px;
  margin: 22px auto;
}

.text-section .section-head { text-align: left; margin-left: 0; }

.feature-list {
  max-width: 980px;
  margin: 0 auto;
  background: var(--soft);
}

.feature-list ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 22px auto 0;
}

.contact-form form {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 850;
}

input, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.cta-band {
  text-align: center;
  background: var(--navy);
}

.cta-band h2, .cta-band p { color: #fff; }

.footer {
  padding: 46px clamp(16px, 5vw, 72px) 22px;
  color: #CBD5E1;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.footer ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer a { color: #E0F2FE; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.18);
}

.footer-bottom p { color: #CBD5E1; margin: 0; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  color: #fff;
  background: #16A34A;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 950;
}

.floating-whatsapp.is-visible { display: inline-flex; }

.recent-order {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 70;
  display: none;
  gap: 3px;
  width: min(320px, calc(100vw - 120px));
  padding: 13px 42px 13px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 0.86rem;
}

.recent-order.is-visible { display: grid; }

.recent-order span { color: var(--muted); }
.recent-order__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
}

@media (max-width: 1100px) {
  .header__nav, .header-cta { display: none; }
  .header { justify-content: space-between; }
  .header__toggle, .mobile-close { display: inline-grid; place-items: center; }
  .mobile-close { position: absolute; right: 18px; top: 18px; }
  .pricing-grid, .step-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .price-card--wide { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .promo { flex-direction: column; gap: 2px; text-align: center; }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    padding: 28px 16px 90px;
  }
  .badges { order: 1; }
  .hero h1 { order: 2; font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .hero-desc { order: 3; width: 100%; max-width: 100%; }
  .stats { order: 4; grid-template-columns: 1fr; width: 100%; max-width: 100%; }
  .value-message { order: 5; width: 100%; max-width: 100%; }
  .hero-actions { order: 6; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .offer-card { order: 7; width: 100%; max-width: 100%; align-self: stretch; }
  .device-spread { display: none; }
  .section, .page-hero { padding-left: 16px; padding-right: 16px; }
  .section-head { text-align: left; }
  .feature-list ul { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .recent-order {
    bottom: 78px;
    width: min(330px, calc(100vw - 32px));
  }
  h1, h2 { overflow-wrap: anywhere; }
}

@media (max-width: 380px) {
  .brand span { font-size: 0.95rem; }
  .header { padding-left: 12px; padding-right: 12px; }
  .stats strong { font-size: 1.12rem; }
  .btn { padding-left: 14px; padding-right: 14px; }
  .recent-order { font-size: 0.8rem; }
}
