:root {
  --blue: #0073e7;
  --blue-soft: rgba(0, 115, 231, 0.16);
  --blue-glow: rgba(0, 115, 231, 0.42);
  --bg: #020817;
  --bg-2: #06111f;
  --card: rgba(15, 23, 42, 0.72);
  --card-strong: rgba(10, 18, 34, 0.88);
  --line: rgba(148, 163, 184, 0.16);
  --line-blue: rgba(0, 115, 231, 0.32);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --green: #22c55e;
  --radius: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 115, 231, 0.22), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.13), transparent 28%),
    linear-gradient(180deg, #020817 0%, #030b1d 48%, #020817 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.container.narrow {
  width: min(100% - 40px, 860px);
}

.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

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

.section-bg-blue {
  position: absolute;
  inset: auto -18% 12% -18%;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 40%, rgba(0, 115, 231, 0.2), transparent 34%),
    radial-gradient(circle at 64% 70%, rgba(88, 28, 135, 0.25), transparent 35%);
  filter: blur(20px);
}

.dot-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image: radial-gradient(rgba(148, 163, 184, 0.5) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 32px, 1180px);
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.76);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 184px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 115, 231, 0.2));
}

.footer-logo {
  display: block;
  width: 198px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 115, 231, 0.18));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.desktop-nav a {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 0 36px rgba(0, 115, 231, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta:hover,
.btn-primary:hover {
  background: #005fc4;
  box-shadow: 0 0 48px rgba(0, 115, 231, 0.42);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: calc(100vh - 88px);
  min-height: calc(100svh - 88px);
  padding: 118px 0 52px;
}

.hero::before {
  position: absolute;
  inset: -22% -10% auto;
  height: 62%;
  content: "";
  background:
    radial-gradient(circle at 50% 36%, rgba(0, 115, 231, 0.22), transparent 35%),
    radial-gradient(circle at 18% 16%, rgba(88, 28, 135, 0.18), transparent 36%);
  filter: blur(20px);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1440px);
  margin: 0 auto;
  text-align: center;
}

.hero-copy {
  position: relative;
  width: min(100%, 900px);
  margin: 0 auto;
}

.hero-copy::before {
  position: absolute;
  top: 46%;
  left: 50%;
  width: min(92vw, 780px);
  height: 330px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(0, 115, 231, 0.2), transparent 67%);
  filter: blur(28px);
  transform: translate(-50%, -50%);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(0, 115, 231, 0.32);
  border-radius: 999px;
  background: rgba(0, 115, 231, 0.1);
  padding: 8px 14px;
  color: #93cfff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

h1 {
  margin: 24px 0 22px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.hero h1 {
  max-width: 900px;
  margin: 20px auto 18px;
  font-size: clamp(4rem, 5.15vw, 4.75rem);
  line-height: 1.05;
  font-weight: 880;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 0.96;
  font-weight: 930;
  letter-spacing: -0.07em;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 860;
  letter-spacing: -0.035em;
}

.hero-copy p,
.section-heading p,
.formula-copy p,
.cta-card p {
  color: #aab7cb;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}

.hero-copy p {
  width: min(100%, 760px);
  margin: 0 auto;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.68;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-height: 50px;
  padding: 0 22px;
  font-size: 0.94rem;
}

.button-row {
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
}

.button-row.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 26px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--blue);
  color: white;
  box-shadow: 0 0 36px rgba(0, 115, 231, 0.3);
}

.btn-ghost {
  border: 1px solid rgba(0, 115, 231, 0.32);
  background: rgba(15, 23, 42, 0.64);
  color: #dbeafe;
  backdrop-filter: blur(16px);
}

.btn-ghost:hover {
  border-color: rgba(0, 115, 231, 0.62);
  background: rgba(0, 115, 231, 0.13);
  transform: translateY(-2px);
}

.text-link {
  color: #8fcaff;
  font-weight: 850;
  transition: color 180ms ease;
}

.text-link:hover {
  color: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 0;
}

.hero .trust-row {
  gap: 8px;
  margin-top: 22px;
}

.trust-row span,
.pricing-trust span,
.comparison-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  padding: 10px 14px;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.hero .trust-row span {
  padding: 8px 11px;
  background: rgba(15, 23, 42, 0.48);
  color: #b9c6d8;
  font-size: 0.78rem;
  font-weight: 730;
}

.trust-row i {
  color: var(--green);
  font-style: normal;
}

.hero-carousel-wrap {
  position: relative;
  height: 620px;
  margin-top: 36px;
}

.carousel-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(80vw, 980px);
  height: 540px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0, 115, 231, 0.24), transparent 62%),
    radial-gradient(circle at 30% 20%, rgba(88, 28, 135, 0.28), transparent 46%);
  filter: blur(20px);
  transform: translateX(-50%);
}

.hero-carousel {
  position: relative;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  top: 20px;
  left: 50%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  background: rgba(6, 17, 31, 0.86);
  box-shadow: var(--shadow);
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 450ms ease,
    filter 450ms ease,
    width 450ms ease,
    height 450ms ease;
  will-change: transform;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
}

.hero-slide::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(to top, rgba(2, 8, 23, 0.92), transparent);
}

.slide-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.hero-slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.slide-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.slide-caption span {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.carousel-arrow {
  position: absolute;
  top: 44%;
  z-index: 12;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  color: white;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.carousel-arrow:hover,
.small-arrow:hover {
  border-color: rgba(0, 115, 231, 0.65);
  background: rgba(0, 115, 231, 0.22);
  transform: translateY(-2px);
}

.carousel-arrow-left {
  left: min(6vw, 70px);
}

.carousel-arrow-right {
  right: min(6vw, 70px);
}

.carousel-dots,
.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  z-index: 20;
}

.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.38);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.dot.active {
  width: 28px;
  background: var(--blue);
}

.section-heading {
  width: min(100%, 820px);
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading .eyebrow {
  margin: 0 auto 18px;
}

.panel-section {
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0) 0%, rgba(6, 17, 31, 0.72) 45%, rgba(2, 8, 23, 0) 100%);
}

.benefit-grid,
.device-grid,
.pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

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

.tilt-card,
.mini-card,
.pricing-card,
.cta-card,
.sticky-card,
.testimonial-panel {
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    var(--card);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.tilt-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 28px;
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.tilt-card::after,
.mini-card::after,
.pricing-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 115, 231, 0.18), transparent 36%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.tilt-card:hover,
.mini-card:hover,
.pricing-card:hover {
  border-color: rgba(0, 115, 231, 0.38);
  box-shadow: 0 30px 90px rgba(0, 115, 231, 0.12);
}

.tilt-card:hover::after,
.mini-card:hover::after,
.pricing-card:hover::after {
  opacity: 1;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(0, 115, 231, 0.3);
  border-radius: 18px;
  background: rgba(0, 115, 231, 0.14);
  color: #9bd4ff;
  font-size: 1.25rem;
  box-shadow: 0 0 34px rgba(0, 115, 231, 0.14);
}

.tilt-card h3,
.mini-card h3,
.pricing-card h3 {
  margin-bottom: 12px;
}

.tilt-card p,
.mini-card p,
.pricing-card p,
.sticky-card p,
.footer-grid p {
  color: #a4b1c5;
  line-height: 1.65;
}

.formula {
  min-height: 100svh;
}

.formula-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(0, 115, 231, 0.3), transparent 32%),
    radial-gradient(circle at 15% 30%, rgba(56, 189, 248, 0.12), transparent 28%),
    linear-gradient(90deg, #020817 0%, #051226 48%, #020817 100%);
}

.formula-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 64px;
  width: min(100% - 64px, 1500px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 70px 0;
}

.formula-copy {
  max-width: 650px;
}

.formula-copy h2 {
  max-width: 700px;
  margin: 24px 0 18px;
  font-size: clamp(3.1rem, 5.7vw, 4.9rem);
}

.check-list,
.sidebar-checks,
.plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list li,
.sidebar-checks li,
.plan-features li {
  position: relative;
  padding-left: 28px;
  color: #d7e0ed;
  line-height: 1.55;
}

.check-list li::before,
.sidebar-checks li::before,
.plan-features li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
  content: "\2713";
}

.sport-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sport-stats span {
  border: 1px solid rgba(0, 115, 231, 0.26);
  border-radius: 999px;
  background: rgba(0, 115, 231, 0.1);
  padding: 8px 12px;
  color: #c7e8ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.formula-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.image-glow {
  position: absolute;
  inset: 12% -4% 8% 20%;
  border-radius: 999px;
  background: rgba(0, 115, 231, 0.35);
  filter: blur(82px);
}

.formula-card {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  height: clamp(680px, 54vw, 740px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 36px;
  background: #06111f;
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(0, 115, 231, 0.18);
  animation: floatCard 6s ease-in-out infinite;
}

.formula-card img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
}

.logos-section {
  padding: 52px 0 96px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 115, 231, 0.1), transparent 36%),
    var(--bg);
}

.logos-section .section-heading {
  margin-bottom: 34px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 8px 0;
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  top: -2px;
  bottom: -2px;
  z-index: 2;
  width: min(18vw, 220px);
  content: "";
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  animation: marquee 35s linear infinite;
}

.logo-card {
  display: flex;
  width: 170px;
  height: 78px;
  flex: 0 0 170px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.logo-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

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

.mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
}

.mini-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #77c5ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  border: 1px solid rgba(0, 115, 231, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 115, 231, 0.16), transparent 34%),
    rgba(15, 23, 42, 0.72);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.support-strip h3 {
  margin-bottom: 8px;
}

.support-strip p {
  margin-bottom: 8px;
  color: #b8c3d2;
}

.support-strip span {
  color: #77c5ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.comparison-container {
  width: min(100% - 40px, 1180px);
}

.comparison-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 24px;
  align-items: start;
}

.comparison-main,
.comparison-table,
.comparison-sidebar .sticky-card {
  min-width: 0;
}

.comparison-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 1.45fr 1.25fr;
}

.comparison-head {
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 8, 23, 0.74);
}

.comparison-head span {
  padding: 22px 24px;
  color: white;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-head span:nth-child(2) {
  background: linear-gradient(180deg, rgba(0, 115, 231, 0.24), rgba(0, 115, 231, 0.08));
  color: #dff3ff;
}

.comparison-row {
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  padding: 22px 24px;
  color: #bdc6d4;
  font-size: 1rem;
  line-height: 1.62;
}

.comparison-row > div:first-child {
  color: white;
  font-weight: 850;
}

.comparison-row > div:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(0, 115, 231, 0.2), rgba(0, 115, 231, 0.06)),
    rgba(0, 115, 231, 0.05);
  color: #e6f6ff;
}

.comparison-row > div:nth-child(3) {
  color: #8c98aa;
}

.comparison-cta {
  margin-top: 18px;
}

.comparison-sidebar {
  position: relative;
}

.sticky-card {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  border-radius: 30px;
  padding: 26px;
}

.sticky-card .eyebrow {
  margin-bottom: 0;
}

.sticky-card h3 {
  margin: 0;
  font-size: 1.8rem;
}

.rating-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(0, 115, 231, 0.28);
  border-radius: 22px;
  background: rgba(0, 115, 231, 0.1);
  padding: 18px;
}

.rating-card strong {
  color: white;
  font-size: 1.24rem;
}

.rating-card span {
  color: #a9d8ff;
  line-height: 1.5;
}

.sidebar-checks {
  display: grid;
  gap: 12px;
}

.testimonials-section {
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 115, 231, 0.15), transparent 34%),
    var(--bg);
}

.testimonial-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
  align-items: center;
  gap: 58px;
}

.testimonial-images {
  position: relative;
  min-height: 610px;
}

.review-image-card {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  background: #06111f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 500ms ease,
    filter 500ms ease,
    width 500ms ease,
    height 500ms ease;
}

.review-image-card::before {
  position: absolute;
  inset: -20%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(0, 115, 231, 0.22), transparent 68%);
}

.review-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-panel {
  border-radius: 32px;
  padding: 36px;
}

.testimonial-mobile-image {
  display: none;
}

.stars {
  margin-bottom: 20px;
  color: #16a34a;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

blockquote {
  margin: 0 0 28px;
  color: white;
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  font-weight: 780;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.reviewer {
  display: grid;
  gap: 4px;
}

.reviewer strong {
  font-size: 1.05rem;
}

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

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.small-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: white;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.pricing-section {
  background: linear-gradient(180deg, rgba(2, 8, 23, 0), rgba(6, 17, 31, 0.64), rgba(2, 8, 23, 0));
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  padding: 26px;
}

.pricing-card.featured {
  border-color: rgba(0, 115, 231, 0.56);
  background:
    radial-gradient(circle at 40% 0%, rgba(0, 115, 231, 0.22), transparent 42%),
    rgba(15, 23, 42, 0.84);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.36),
    0 0 70px rgba(0, 115, 231, 0.18);
  transform: translateY(-12px);
}

.popular {
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(0, 115, 231, 0.18);
  padding: 7px 11px;
  color: #bfe6ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin: 18px 0 24px;
  color: white;
  font-size: 3.1rem;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.plan-features {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  color: white;
  cursor: pointer;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 850;
}

.faq-item button span {
  display: grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 115, 231, 0.14);
  color: #8bd1ff;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #a8b4c7;
  line-height: 1.7;
  transition:
    max-height 260ms ease,
    padding 260ms ease;
}

.faq-item.open p {
  max-height: 220px;
  padding: 0 24px 22px;
}

.faq-item.open button span {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 64px 36px;
  text-align: center;
}

.cta-card::before {
  position: absolute;
  inset: -30%;
  content: "";
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 115, 231, 0.26), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(88, 28, 135, 0.18), transparent 38%);
}

.cta-card > * {
  position: relative;
  z-index: 2;
}

.cta-card .eyebrow {
  margin: 0 auto 22px;
}

.cta-card h2 {
  margin-bottom: 18px;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 8, 23, 0.94);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
  color: #94a3b8;
  transition: color 180ms ease;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  width: min(100% - 40px, 1180px);
  margin: 34px auto 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding-top: 22px;
  color: #64748b;
  font-size: 0.9rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 14px;
  }

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

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 24px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.7);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
    background: white;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    background: rgba(2, 8, 23, 0.94);
    padding: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    border-radius: 16px;
    padding: 13px 14px;
    color: #dbeafe;
    font-weight: 780;
  }

  .mobile-nav a:hover {
    background: rgba(0, 115, 231, 0.12);
  }

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

  .formula-inner,
  .testimonial-stage,
  .comparison-layout {
    grid-template-columns: 1fr;
  }

  .formula-inner {
    width: min(100% - 40px, 780px);
    min-height: auto;
    padding: 110px 0 72px;
  }

  .formula-media {
    justify-content: center;
    order: -1;
  }

  .formula-card {
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .sticky-card {
    position: relative;
    top: auto;
  }

  .testimonial-images {
    display: none;
  }

  .testimonial-panel {
    max-width: 680px;
    margin: 0 auto;
  }

  .testimonial-mobile-image {
    display: block;
    width: min(100%, 520px);
    aspect-ratio: 16 / 10;
    margin: 0 auto 26px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 26px;
    object-fit: cover;
  }

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

@media (max-width: 760px) {
  .container,
  .container.narrow,
  .comparison-container {
    width: min(100% - 28px, 100%);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: calc(100vh - 78px);
    min-height: calc(100svh - 78px);
    padding: 106px 0 44px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.3rem);
    letter-spacing: -0.075em;
  }

  .hero h1 {
    max-width: 100%;
    margin: 18px auto 16px;
    font-size: clamp(42px, 10.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.055em;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .hero-actions,
  .button-row,
  .support-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .trust-row span,
  .pricing-trust span,
  .comparison-trust span {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: min(100%, 280px);
    min-height: 48px;
    padding: 0 18px;
  }

  .hero .trust-row {
    gap: 8px;
    margin-top: 20px;
  }

  .hero .trust-row span {
    width: auto;
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .hero-carousel-wrap {
    height: 500px;
    margin-top: 30px;
  }

  .carousel-arrow {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .carousel-arrow-left {
    left: 20px;
  }

  .carousel-arrow-right {
    right: 20px;
  }

  .carousel-dots {
    bottom: 28px;
  }

  .benefit-grid,
  .device-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .formula {
    min-height: auto;
  }

  .formula-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .comparison-head {
    display: none;
  }

  .comparison-table {
    display: grid;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-row {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  }

  .comparison-row > div {
    padding: 18px;
  }

  .comparison-row > div:first-child {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    background: rgba(2, 8, 23, 0.6);
    font-size: 1.08rem;
  }

  .comparison-row > div:nth-child(2)::before,
  .comparison-row > div:nth-child(3)::before {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-row > div:nth-child(2)::before {
    color: #93cfff;
    content: "LuxuryTV";
  }

  .comparison-row > div:nth-child(3)::before {
    color: #94a3b8;
    content: "Andere aanbieders";
  }

  .testimonial-panel,
  .cta-card {
    padding: 24px;
    border-radius: 28px;
  }

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

  .logos-section .section-heading {
    margin-bottom: 28px;
  }

  .logo-marquee {
    margin-top: 0;
  }

  .logo-card {
    width: 130px;
    height: 58px;
    flex-basis: 130px;
    border-radius: 18px;
    padding: 12px;
  }

  .logo-card img {
    max-height: 32px;
  }

  blockquote {
    font-size: 1.28rem;
  }

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

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

@media (max-width: 480px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 12px;
  }

  .brand-logo {
    width: 154px;
  }

  .footer-logo {
    width: 176px;
  }

  .hero-shell {
    width: min(100% - 20px, 100%);
  }

  .hero-slide {
    border-radius: 24px;
  }

  .hero-slide img {
    border-radius: 22px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
