:root {
  --bg-deep: #030014;
  --bg-panel: rgba(18, 18, 40, 0.66);
  --bg-soft: rgba(255, 255, 255, 0.055);
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --primary: #6366f1;
  --primary-glow: #a5b4fc;
  --secondary: #d946ef;
  --cyan: #06b6d4;
  --green: #22c55e;
  --red: #ef4444;
  --card-radius: 24px;
  --inner-radius: 16px;
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --brand-gradient: linear-gradient(135deg, #4f46e5 0%, #9333ea 52%, #06b6d4 100%);
  --text-gradient: linear-gradient(135deg, #ffffff 18%, #a5b4fc 68%, #67e8f9 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
.logo,
.btn {
  font-family: var(--font-heading);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -3;
}

.orb-one {
  width: 500px;
  height: 500px;
  top: -130px;
  left: -120px;
  background: #4f46e5;
}

.orb-two {
  width: 440px;
  height: 440px;
  right: -140px;
  bottom: 12vh;
  background: #d946ef;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 88%);
  pointer-events: none;
  z-index: -2;
}

.glass {
  background: rgba(10, 10, 20, 0.74);
  border-bottom: var(--border-glass);
  backdrop-filter: blur(14px);
}

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: var(--border-glass);
  border-radius: var(--card-radius);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.text-center {
  text-align: center;
}

.top-banner {
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 8px 28px rgba(239, 68, 68, 0.24);
}

.banner-content {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.banner-item span {
  min-width: 0;
  white-space: normal;
}

.banner-item svg {
  width: 18px;
  height: 18px;
}

.banner-hot svg {
  fill: #fcd34d;
  stroke: #fcd34d;
  animation: pulseIcon 2s ease-in-out infinite;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.nav-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--brand-gradient);
  box-shadow: 0 0 22px rgba(99, 102, 241, 0.34);
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 13px 28px;
  border: var(--border-glass);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.nav-link {
  color: #dbe3f0;
  font-size: 0.94rem;
  font-weight: 600;
  opacity: 0.85;
}

.nav-link:hover {
  opacity: 1;
  color: #fff;
}

.status-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14), 0 0 18px rgba(34, 197, 94, 0.8);
}

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

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-gradient);
  box-shadow: 0 0 24px rgba(79, 70, 229, 0.42);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #18b85b 50%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  stroke-width: 2.4;
}

.btn-glass,
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: var(--border-glass);
}

.btn-outline:hover,
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  min-height: 54px;
  padding: 14px 28px;
  font-size: 1.04rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.07);
  border: var(--border-glass);
}

.btn-full {
  width: 100%;
}

.btn-secondary-plan {
  margin-top: 10px !important;
}

.intro-cta {
  margin-top: 26px;
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu-fab {
  display: none;
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 80%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.glow-effect:hover::after {
  left: 140%;
}

.section-padding {
  padding: 76px 0;
}

.hero {
  padding: 144px 0 96px;
  margin-top: -78px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 60px;
  align-items: center;
}

.hero-text {
  min-width: 0;
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 6px 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: 999px;
  color: var(--primary-glow);
  background: rgba(99, 102, 241, 0.15);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-premium svg {
  width: 17px;
  height: 17px;
}

.badge-fuchsia {
  color: #f0abfc;
  border-color: rgba(217, 70, 239, 0.38);
  background: rgba(217, 70, 239, 0.15);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.7rem);
  line-height: 1.04;
  margin-bottom: 22px;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.15rem);
}

.hero-subtitle {
  color: var(--text-body);
  font-size: 1.18rem;
  max-width: 610px;
  margin-bottom: 34px;
}

.hero-actions,
.hero-features {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-bottom: 30px;
}

.h-feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 0.94rem;
}

.h-feat svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.trustpilot-hero,
.trust-badge-header {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 18px;
  margin-top: 30px;
  border: var(--border-glass);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.trustpilot-hero p,
.trust-badge-header span {
  margin: 0;
  color: var(--text-body);
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: #00b67a;
}

.stars svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.hero-visual {
  position: relative;
  min-width: 0;
  perspective: 900px;
}

.visual-card {
  position: relative;
  padding: 14px;
  transform: rotateY(-4deg) rotateX(3deg);
  transition: transform 0.45s ease;
}

.visual-card:hover {
  transform: rotateY(0) rotateX(0);
}

.hero-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--inner-radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  padding: 14px;
  border-radius: 16px;
  animation: float 6s ease-in-out infinite;
}

.float-badge svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan);
}

.float-badge span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.float-badge strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.fb-left {
  left: -26px;
  top: 16%;
}

.fb-right {
  right: -26px;
  bottom: 16%;
  animation-delay: 1.4s;
}

.tech-scroller,
.stats-marquee-section {
  width: 100%;
  overflow: hidden;
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
  background: rgba(255, 255, 255, 0.025);
}

.tech-track,
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 24px 0;
  white-space: nowrap;
  animation: scrollTrack 34s linear infinite;
}

.tech-track span {
  color: #e2e8f0;
  font-weight: 800;
  opacity: 0.82;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: block;
  color: #f0abfc;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 13px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.12rem;
  margin-bottom: 0;
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.intro-floating-img {
  width: min(500px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 28px 45px rgba(99, 102, 241, 0.35));
}

.intro-content {
  padding: clamp(28px, 4vw, 48px);
}

.intro-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.16;
  margin-bottom: 18px;
}

.intro-content p {
  color: var(--text-body);
  font-size: 1.06rem;
  margin-bottom: 0;
}

.offer-banner {
  min-height: 226px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 44px);
  overflow: hidden;
  position: relative;
}

.offer-banner::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.22), transparent 55%);
  pointer-events: none;
}

.offer-content,
.offer-timer {
  position: relative;
}

.offer-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.22);
  font-weight: 900;
  margin-bottom: 12px;
}

.offer-content h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  margin-bottom: 8px;
}

.offer-content p {
  color: var(--text-body);
  font-size: 1.14rem;
  margin-bottom: 22px;
}

.offer-content strong {
  color: #4ade80;
}

.offer-timer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-block {
  width: 92px;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: var(--border-glass);
}

.timer-block span {
  display: block;
  font: 800 2rem/1 var(--font-heading);
}

.timer-block small {
  color: var(--text-muted);
}

.timer-separator {
  color: #fca5a5;
  font-size: 2.4rem;
  font-weight: 800;
}

.device-toggle {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 7px;
  margin-top: 28px;
  border: var(--border-glass);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.toggle-btn {
  min-height: 42px;
  padding: 9px 17px;
  border: 0;
  border-radius: 999px;
  color: var(--text-body);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.toggle-btn.active {
  color: #fff;
  background: var(--brand-gradient);
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  min-height: 630px;
}

.plan-card.popular {
  border-color: rgba(99, 102, 241, 0.7);
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.18), rgba(15, 23, 42, 0.56));
  transform: translateY(-12px);
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--brand-gradient);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
}

.plan-header {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
  font-size: 1.42rem;
  margin-bottom: 14px;
}

.plan-price {
  font: 800 3.45rem/1 var(--font-heading);
}

.plan-period {
  display: block;
  color: var(--text-muted);
  margin-top: 8px;
}

.savings-chip {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 10px;
  color: #f0abfc;
  background: rgba(217, 70, 239, 0.2);
  font-weight: 800;
}

.plan-features {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.feat-item {
  display: flex;
  gap: 11px;
  color: #e2e8f0;
}

.feat-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--secondary);
}

.plan-card .plan-features + .btn {
  margin-top: auto;
}

.plan-card .btn-secondary-plan {
  margin-top: 10px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.payment-row div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 10px 18px;
  border: var(--border-glass);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-body);
  font-weight: 700;
}

.payment-row svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.features-grid-6,
.device-grid,
.tp-grid,
.testimonials-grid {
  display: grid;
  gap: 24px;
}

.features-grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card-clean,
.device-card,
.tp-card,
.testimonial-card {
  padding: 30px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.feature-card-clean:hover,
.device-card:hover,
.tp-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.36);
}

.feature-icon-box,
.device-card > svg {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.26);
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.13);
  color: var(--primary-glow);
  margin-bottom: 20px;
}

.feature-icon-box svg {
  width: 29px;
  height: 29px;
}

.feature-card-clean h3,
.device-card h3,
.tp-card h3,
.testimonial-card h3 {
  margin-bottom: 10px;
  font-size: 1.23rem;
}

.feature-card-clean p,
.device-card p,
.tp-card p,
.testimonial-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.device-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.device-card {
  text-align: center;
}

.device-card > svg {
  padding: 15px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.guide-card {
  min-height: 172px;
  padding: 24px 18px;
  color: #fff;
  cursor: pointer;
  border: var(--border-glass);
}

.guide-card.active {
  border-color: #8b5cf6;
  box-shadow: 0 0 26px rgba(139, 92, 246, 0.18);
  background: rgba(139, 92, 246, 0.08);
}

.guide-card svg {
  width: 46px;
  height: 46px;
  color: var(--primary-glow);
  margin: 0 auto 16px;
}

.guide-card span,
.guide-card small {
  display: block;
}

.guide-card span {
  font-weight: 900;
  font-size: 1.08rem;
}

.guide-card small {
  color: var(--text-muted);
  margin-top: 6px;
}

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

.step-card {
  position: relative;
  padding: 36px 26px 26px;
}

.step-card > span {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--secondary);
  border: 4px solid #0f172a;
  font-weight: 900;
}

.step-card p {
  color: var(--text-body);
  margin-bottom: 0;
}

.sports-section,
.cinema-section,
.comparison-section {
  position: relative;
}

.sports-section .btn,
.cinema-section .btn {
  margin-top: 30px;
}

.reverse-grid .hero-text {
  order: 2;
}

.reverse-grid .hero-visual {
  order: 1;
}

.tp-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.tp-card strong {
  display: inline-block;
  margin-top: 18px;
}

.quiz-container {
  max-width: 860px;
  min-height: 430px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  display: grid;
  place-items: center;
}

.quiz-step,
.quiz-result {
  display: none;
  width: 100%;
  text-align: center;
}

.quiz-step.active,
.quiz-result.active {
  display: block;
  animation: fadeIn 0.28s ease;
}

.quiz-options {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.quiz-btn {
  min-width: 170px;
  min-height: 142px;
  padding: 22px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: var(--border-glass);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font-weight: 900;
}

.quiz-btn:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.quiz-btn svg {
  width: 34px;
  height: 34px;
  color: var(--secondary);
}

.quiz-btn span {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.75rem;
}

.success-icon {
  width: 52px;
  height: 52px;
  color: var(--green);
}

.quiz-plan-card {
  width: min(380px, 100%);
  margin: 22px auto;
  padding: 26px;
  border-radius: var(--inner-radius);
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(99, 102, 241, 0.32);
}

.quiz-plan-card h4 {
  font: 800 1.45rem/1.2 var(--font-heading);
  margin: 0 0 12px;
}

.quiz-plan-card .quiz-price {
  display: block;
  font: 800 3rem/1 var(--font-heading);
  margin-bottom: 12px;
}

.comparison-container {
  overflow-x: auto;
  border: var(--border-glass);
  border-radius: var(--card-radius);
  background: rgba(15, 23, 42, 0.48);
}

.comp-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.comp-table th,
.comp-table td {
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.comp-table th {
  color: var(--text-muted);
  font-size: 1.03rem;
}

.comp-table th:last-child,
.comp-table td:last-child {
  background: rgba(99, 102, 241, 0.13);
  color: #fff;
  font-weight: 900;
  border-left: 1px solid rgba(99, 102, 241, 0.28);
}

.marquee-track {
  gap: 18px;
  padding: 28px 0;
}

.stat-card-clean {
  flex: 0 0 auto;
  min-width: 230px;
  padding: 18px 24px;
  color: var(--text-body);
  font-weight: 800;
}

.stat-card-clean span {
  color: var(--primary-glow);
  font-size: 1.25rem;
  margin-right: 8px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card .stars {
  margin-bottom: 18px;
  color: #fbbf24;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
}

.reviewer > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-gradient);
  font-weight: 900;
}

.reviewer h3 {
  margin: 0;
  font-size: 1rem;
}

.reviewer small {
  color: var(--text-muted);
}

.footer-lux {
  background: #020617;
  border-top: var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 340px;
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-links h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  color: #64748b;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(12px);
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-content {
  width: min(380px, calc(100% - 32px));
  margin: 80px auto;
  padding: 24px;
  border: var(--border-glass);
  border-radius: var(--card-radius);
  background: rgba(15, 23, 42, 0.94);
}

.close-menu-btn {
  margin-left: auto;
  display: flex;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.mobile-link {
  padding: 15px 12px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.fomo-toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 120;
  min-width: 320px;
  max-width: min(360px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 46px 16px 18px;
  border: var(--border-glass);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.fomo-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.fomo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #059669);
  flex: 0 0 auto;
}

.fomo-icon svg {
  width: 21px;
  height: 21px;
}

.fomo-content h3,
.fomo-content p {
  margin: 0;
}

.fomo-content h3 {
  font-size: 0.95rem;
}

.fomo-content p {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.fomo-content small {
  color: #4ade80;
}

.fomo-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 1.4rem;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 130;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  border-top: var(--border-glass);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  color: var(--text-body);
}

.btn-cookie-accept {
  min-height: 42px;
  padding: 10px 20px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  cursor: pointer;
  font-weight: 800;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

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

@keyframes pulseIcon {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.78;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: none !important;
  }

  .mobile-menu-fab {
    position: fixed;
    top: 62px;
    right: 18px;
    z-index: 220;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: var(--border-glass);
    border-radius: 999px;
    color: #fff;
    background: var(--brand-gradient);
    box-shadow: 0 10px 26px rgba(79, 70, 229, 0.34);
    font: 800 1.35rem/1 var(--font-heading);
    cursor: pointer;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-grid,
  .intro-layout,
  .reverse-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle,
  .section-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-features {
    justify-content: center;
  }

  .visual-card {
    transform: none;
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .reverse-grid .hero-text,
  .reverse-grid .hero-visual {
    order: initial;
  }

  .pricing-container,
  .features-grid-6,
  .tp-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card.popular {
    transform: none;
  }

  .device-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .banner-content,
  .offer-banner,
  .cookie-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .banner-content {
    padding: 10px 0;
    gap: 6px;
  }

  .banner-item {
    justify-content: center;
    flex-wrap: wrap;
  }

  .banner-item span {
    overflow-wrap: anywhere;
  }

  .banner-hot span {
    max-width: 265px;
  }

  .navbar {
    padding: 12px 0;
  }

  .logo {
    font-size: 1.25rem;
    max-width: 250px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions > a.btn-icon {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .mobile-menu-fab {
    top: 104px;
    right: 14px;
  }

  .hero {
    margin-top: -68px;
    min-height: auto;
    padding: 118px 0 62px;
  }

  .hero-title {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.18rem;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    max-width: 300px;
    font-size: 1.02rem;
    overflow-wrap: break-word;
  }

  .badge-premium {
    max-width: 330px;
    justify-content: center;
    white-space: normal;
  }

  .hero-actions {
    width: min(100%, 330px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-cta .btn,
  .intro-cta {
    width: min(100%, 330px);
  }

  .hero-features {
    flex-direction: column;
    gap: 11px;
  }

  .trustpilot-hero,
  .trust-badge-header {
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  .float-badge {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .section-padding {
    padding: 54px 0;
  }

  .section-heading h2,
  .section-heading p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .intro-content {
    width: 100%;
    padding: 24px 18px;
    overflow: hidden;
  }

  .intro-content h2 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.78rem;
    overflow-wrap: break-word;
  }

  .intro-content p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .timer-block {
    width: 72px;
    min-height: 76px;
  }

  .timer-block span {
    font-size: 1.55rem;
  }

  .timer-separator {
    font-size: 1.65rem;
  }

  .device-toggle {
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    border-radius: 18px;
  }

  .toggle-btn {
    width: 100%;
    min-width: 0;
    padding: 10px 6px;
    font-size: 0.86rem;
    line-height: 1.15;
  }

  .plan-card,
  .feature-card-clean,
  .device-card,
  .tp-card,
  .testimonial-card {
    padding: 24px;
  }

  .device-grid,
  .guide-grid,
  .guide-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quiz-options {
    display: grid;
  }

  .quiz-btn {
    width: 100%;
    min-height: 118px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .fomo-toast {
    left: 50%;
    bottom: 16px;
    transform: translate(-50%, 150%);
  }

  .fomo-toast.show {
    transform: translate(-50%, 0);
  }

  .cookie-content {
    width: 100%;
    min-height: 0;
    padding: 16px 24px;
  }

  .cookie-content p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    overflow-wrap: anywhere;
  }
}

body.payment-modal-open {
  overflow: hidden;
}

.payment-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 260;
}

.payment-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.payment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 20, 0.74);
  backdrop-filter: blur(10px);
}

.payment-modal__dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(calc(100vh - 48px), 760px);
  overflow-y: auto;
  padding: 34px;
  z-index: 1;
}

.payment-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.payment-modal__content {
  display: grid;
  gap: 18px;
}

.payment-warning,
.transfer-warning,
.transfer-notice {
  padding: 16px 18px;
  border: 1px solid rgba(248, 113, 113, 0.38);
  border-radius: 16px;
  background: rgba(127, 29, 29, 0.22);
  color: #fecaca;
}

.payment-warning strong,
.transfer-warning strong,
.transfer-notice strong {
  color: #fff;
}

.payment-summary,
.transfer-summary-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.payment-summary span,
.transfer-summary-card span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.payment-summary strong,
.transfer-summary-price {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: #fff;
}

.payment-summary small,
.transfer-summary-card p {
  color: var(--text-body);
  margin: 0;
}

.payment-modal__actions,
.transfer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.transfer-actions > :only-child {
  grid-column: 1 / -1;
  width: min(100%, 320px);
  justify-self: center;
}

.payment-modal__footer {
  display: flex;
  justify-content: center;
}

.transfer-hero .hero-visual {
  display: flex;
  align-items: center;
}

.transfer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
}

.transfer-card {
  padding: 30px;
}

.transfer-detail-list {
  display: grid;
  gap: 14px;
}

.transfer-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.transfer-detail-row span {
  color: var(--text-muted);
}

.transfer-detail-row strong {
  color: #fff;
  text-align: right;
  overflow-wrap: anywhere;
}

.transfer-steps {
  margin: 0;
  padding-left: 22px;
  color: var(--text-body);
  display: grid;
  gap: 10px;
}

@media (max-width: 980px) {
  .transfer-grid,
  .payment-modal__actions,
  .transfer-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .payment-modal {
    padding: 14px;
  }

  .comparison-container {
    border-radius: 20px;
  }

  .comp-table {
    min-width: 620px;
  }

  .comp-table th,
  .comp-table td {
    padding: 16px 14px;
    font-size: 0.94rem;
  }

  .payment-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .payment-row div {
    width: 100%;
    justify-content: center;
  }

  .payment-modal__dialog,
  .transfer-card {
    padding: 24px;
  }

  .payment-modal__close {
    top: 14px;
    right: 14px;
  }

  .payment-summary,
  .transfer-summary-card {
    padding: 18px;
  }

  .payment-summary strong,
  .transfer-summary-price {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .payment-summary small,
  .payment-warning,
  .transfer-notice,
  .transfer-warning {
    font-size: 0.94rem;
  }

  .transfer-detail-row {
    flex-direction: column;
  }

  .payment-modal__actions .btn,
  .payment-modal__footer .btn,
  .transfer-actions .btn {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .device-toggle {
    width: 100%;
    max-width: 100%;
  }

  .toggle-btn {
    min-height: 58px;
    padding: 12px 8px;
    font-size: 0.82rem;
  }

  .plan-card,
  .feature-card-clean,
  .transfer-card {
    padding: 20px;
  }

  .plan-header {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .plan-header h3 {
    font-size: 1.28rem;
  }

  .plan-price {
    font-size: 2.65rem;
  }

  .payment-modal {
    padding: 10px;
  }

  .payment-modal__dialog {
    max-height: calc(100vh - 20px);
    padding: 20px 18px 18px;
    border-radius: 20px;
  }

  .payment-modal__content {
    gap: 14px;
  }

  .payment-modal__actions {
    gap: 10px;
  }
}
