/* ═══════════════════════════════════════════════
   PRO TV — Design System & Landing Page Styles
   Dark Mode · Cinematic Streaming · Bento Grid
════════════════════════════════════════════════ */

/* ───── TOKENS ───── */
:root {
  --bg: #070A0F;
  --bg-2: #0D1320;
  --bg-3: #111827;
  --primary: #3B7BFF;
  --primary-glow: rgba(59, 123, 255, 0.35);
  --cta: #FF6A3D;
  --cta-glow: rgba(255, 106, 61, 0.45);
  --text: #E6E8EE;
  --text-muted: #8893A9;
  --accent-green: #B6FF3B;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.09);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font-head: 'Inter', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ───── RESET ───── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ───── CONTAINER ───── */
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ───── TYPOGRAPHY ───── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #7B5EFF 50%, var(--cta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ───── GLASSMORPHISM ───── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ───── BADGE ───── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--primary-glow);
  background: rgba(59, 123, 255, 0.1);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.badge--orange {
  border-color: var(--cta-glow);
  background: rgba(255, 106, 61, 0.1);
  color: var(--cta);
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn--cta {
  background: linear-gradient(135deg, #FF6A3D 0%, #FF4500 100%);
  color: #fff;
  box-shadow: 0 4px 24px var(--cta-glow), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.btn--cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 106, 61, 0.65), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn--sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}

.btn--xl {
  padding: 1.25rem 2.8rem;
  font-size: 1.2rem;
  gap: 0.75rem;
}

.btn--xl .whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ───── PULSE GLOW ANIMATION ───── */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 24px var(--cta-glow), 0 0 0 0 rgba(255, 106, 61, 0);
  }

  50% {
    box-shadow: 0 8px 48px rgba(255, 106, 61, 0.7), 0 0 0 12px rgba(255, 106, 61, 0.07);
  }
}

.pulse-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1rem;
  background: rgba(7, 10, 15, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition);
}

.header.scrolled {
  background: rgba(7, 10, 15, 0.95);
}

/* Remove backdrop-filter when mobile menu is open so .nav.open can escape the containing block */
.header.menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  position: relative;
  z-index: 95;
}

.logo__icon {
  color: var(--primary);
  font-size: 1rem;
}

.logo__accent {
  color: var(--cta);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-inline-start: auto;
}

.nav__link {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--text);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-inline-start: auto;
  z-index: 1000;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(7, 10, 15, 0.75) 0%,
      rgba(7, 10, 15, 0.55) 40%,
      rgba(7, 10, 15, 0.85) 80%,
      rgba(7, 10, 15, 1) 100%),
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(59, 123, 255, 0.12) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 9rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(230, 232, 238, 0.8);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__subtitle strong {
  color: var(--accent-green);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.hero__disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat__number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.scroll-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
  display: block;
}

/* ══════════════════════════════════════
   PAIN POINTS
══════════════════════════════════════ */
.pain {
  background: var(--bg);
  padding-block: 6rem;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pain__card {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
  text-align: left;
}

.pain__card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 123, 255, 0.25);
}

.pain__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pain__card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.pain__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pain__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pain__arrow {
  font-size: 1.5rem;
  color: var(--cta);
}

.pain__cta-text {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   COMPARE (glassmorphism bento)
══════════════════════════════════════ */
.compare {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding-block: 6rem;
}

.compare__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

.compare__table {
  width: 100%;
}

.compare__header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare__th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
}

.compare__th--old {
  color: #FF6B6B;
}

.compare__th--new {
  color: var(--accent-green);
  background: rgba(182, 255, 59, 0.07);
  border-radius: var(--radius-sm);
}

.compare__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: center;
  transition: background var(--transition);
}

.compare__row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.compare__td {
  padding: 0.9rem 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.compare__row .compare__td:first-child {
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
}

.compare__td--old {
  color: #FF6B6B;
}

.compare__td--new {
  font-weight: 600;
  color: var(--text);
}

.accent-green {
  color: var(--accent-green) !important;
}

/* ══════════════════════════════════════
   BENTO GRID — FEATURES
══════════════════════════════════════ */
.features {
  background: var(--bg-2);
  padding-block: 6rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento__card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.bento__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(59, 123, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.bento__card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 123, 255, 0.3);
}

/* Wide card spans 2 cols */
.bento__card--wide {
  grid-column: span 2;
}

.bento__card--support {
  display: flex;
  flex-direction: column;
}

.bento__card--accent-blue::before {
  background: radial-gradient(circle at top right, rgba(59, 123, 255, 0.15), transparent 60%);
}

.bento__card--accent-green::before {
  background: radial-gradient(circle at bottom left, rgba(182, 255, 59, 0.08), transparent 60%);
}

.bento__card--support::before {
  background: radial-gradient(circle at bottom right, rgba(255, 106, 61, 0.08), transparent 60%);
}

.bento__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.bento__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.bento__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.device-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.device-pills span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(59, 123, 255, 0.12);
  border: 1px solid rgba(59, 123, 255, 0.25);
  color: var(--primary);
  letter-spacing: 0.04em;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.3);
  color: #FF6B6B;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF6B6B;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.quality-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  background: rgba(182, 255, 59, 0.1);
  border: 1px solid rgba(182, 255, 59, 0.25);
  color: var(--accent-green);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
  background: var(--bg);
  padding-block: 6rem;
  overflow: hidden;
}

.carousel {
  margin-block: 2.5rem;
  border-radius: var(--radius-md);
  /* Make sure focus or scrolling doesn't show outline */
  outline: none;
}

.carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__track>* {
  scroll-snap-align: start;
}

.testimonial {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 600px) {
  .testimonial {
    flex: 0 0 calc(50% - 0.625rem);
    /* Half width minus half the gap */
  }
}

@media (min-width: 1024px) {
  .testimonial {
    flex: 0 0 calc(33.333% - 0.833rem);
    /* Third width minus 2/3 of the gap */
  }
}

.testimonial__stars {
  color: #FFB800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.testimonial__text {
  font-size: 0.95rem;
  color: rgba(230, 232, 238, 0.85);
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7B5EFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

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

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.carousel__btn:hover {
  background: rgba(59, 123, 255, 0.2);
  border-color: var(--primary);
  color: var(--primary);
}

.carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.carousel__dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════
   CALCULATOR
══════════════════════════════════════ */
.calculator {
  background: var(--bg-2);
  padding-block: 6rem;
}

.calc-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.calc-box__header {
  padding: 3rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-box__header .section-title {
  margin-bottom: 0.5rem;
}

.calc-box__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  position: relative;
}

.calc-col {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.calc-col--old {
  background: rgba(255, 107, 107, 0.03);
}

.calc-col--new {
  background: radial-gradient(circle at top, rgba(182, 255, 59, 0.08), transparent 80%);
}

.calc-col__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.calc-col--old .calc-col__title {
  color: #FF6B6B;
}

.calc-col--new .calc-col__title {
  color: var(--accent-green);
}

.calc-list {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1;
}

.calc-list li {
  display: flex;
  justify-content: space-between;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.calc-list li span:last-child {
  font-weight: 600;
  color: var(--text);
}

.calc-total {
  font-family: var(--font-head);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  color: var(--text);
}

.calc-total strong {
  font-size: 1.4rem;
  font-weight: 800;
}

.calc-yearly {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.calc-yearly strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--text);
}

.calc-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.calc-box__footer {
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-savings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.calc-savings__label {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.calc-savings__amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, #B6FF3B 0%, #3B7BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(182, 255, 59, 0.3);
}

.calc-note {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq {
  background: var(--bg);
  padding-block: 6rem;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: pointer;
}

.faq__item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  list-style: none;
  /* removes default arrow */
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  padding-right: 1rem;
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  /* Turns + into x */
}

.faq__item[open] .faq__question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq__answer {
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__answer p:not(:last-child) {
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.final-cta {
  position: relative;
  background: var(--bg);
  padding-block: 7rem;
  text-align: center;
  overflow: hidden;
}

.final-cta__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255, 106, 61, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(59, 123, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.final-cta__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.final-cta__guarantee {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.final-cta__guarantee span {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(230, 232, 238, 0.7);
}

.final-cta__note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 2.5rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-inline-start: auto;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--text);
}

.hide-mobile {
  display: none;
}

/* ══════════════════════════════════════
   SCROLL FADE-IN ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESELLER PROMO
══════════════════════════════════════ */
.reseller-promo {
  background: var(--bg);
  padding-block: 4rem 6rem;
}

.reseller-promo__card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 106, 61, 0.3);
  text-align: center;
  background: linear-gradient(135deg, rgba(7, 10, 15, 0.8) 0%, rgba(255, 69, 0, 0.05) 100%);
}

.reseller-promo__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.reseller-promo__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.reseller-promo__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0;
}

.reseller-promo__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.reseller-promo__list .icon {
  color: var(--cta);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(7, 10, 15, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: center;
    justify-content: flex-start;
    padding-block-start: 7rem;
    gap: 2rem;
    z-index: 90;
    padding-inline: 2rem;
    padding-block-end: 2rem;
    overflow-y: auto;
  }

  .nav.open .nav__link {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav.open .nav__link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    transform: translateY(-2px);
  }

  .hamburger {
    display: flex;
  }

  #header-cta {
    display: none;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento__card--wide {
    grid-column: 1 / -1;
  }

  .bento__card--support {
    grid-column: 1 / -1;
  }

  .calc-box__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .calc-vs {
    position: static;
    transform: none;
    margin: -1.5rem auto;
    width: 44px;
    height: 44px;
  }

  .compare__header,
  .compare__row {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .bento {
    grid-template-columns: 1fr;
  }

  .bento__card--wide,
  .bento__card--support {
    grid-column: auto;
  }

  .compare__header,
  .compare__row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .compare__header .compare__th--feature,
  .compare__row .compare__td:first-child {
    display: none;
  }

  .compare__th--old,
  .compare__th--new {
    font-size: 0.75rem;
    text-align: center;
  }

  .compare__td {
    font-size: 0.82rem;
    text-align: center;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__copy {
    margin-inline-start: 0;
  }

  .hero__stats {
    gap: 1.5rem;
  }

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

  .final-cta__guarantee {
    flex-direction: column;
    align-items: center;
  }

  .hide-mobile {
    display: none;
  }

  .btn--xl {
    font-size: 1rem;
    padding: 1.1rem 1.8rem;
  }
  
  .reseller-promo__card .btn,
  .btn--cta {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hide-mobile {
    display: inline;
  }
}