/* ============================================================
   pro_sport_ari — Landing Page Styles
   Fonts: Rhythmic RUS (accent) + Oswald (display) + Roboto (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
  font-family: 'Rhythmic RUS';
  src: url('../fonts/rhythmic-rus.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg-dark: #0D0D0D;
  --color-bg-darker: #0A0A0A;
  --color-bg-light: #F5F0E8;
  --color-bg-card-light: #FFFFFF;
  --color-bg-faq: #E8E0D4;
  --color-text-dark: #111111;
  --color-text-muted: #555555;
  --color-text-light: #FFFFFF;
  --color-accent: #14D8FF;
  --color-accent-deep: #0073e6;
  --color-accent-gold: #D4AF37;
  --color-border-dark: #111111;
  --font-display: 'Oswald', sans-serif;
  --font-accent: 'Rhythmic RUS', 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --shadow-neon: 0 0 20px rgba(20, 216, 255, 0.45), 0 0 40px rgba(20, 216, 255, 0.2);
  --shadow-neon-strong: 0 0 30px rgba(20, 216, 255, 0.65), 0 0 60px rgba(20, 216, 255, 0.35);
  --shadow-gold: 0 0 24px rgba(212, 175, 55, 0.45), 0 0 48px rgba(212, 175, 55, 0.2);
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  text-wrap: pretty;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, .heading {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.15;
  /* Balance heading lines for even width distribution */
  text-wrap: balance;
  /* Disable hyphenation on uppercase headings — looks ugly */
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

.section-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.section-subtitle {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.section-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-wrap: pretty;
}

/* ---------- BLUE TEXT GLOW HIGHLIGHT ---------- */
.highlight {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(20, 216, 255, 0.6), 0 0 20px rgba(20, 216, 255, 0.3);
  font-weight: 700;
}

.highlight--strong {
  color: var(--color-accent);
  text-shadow: 0 0 15px rgba(20, 216, 255, 0.8), 0 0 30px rgba(20, 216, 255, 0.5), 0 0 45px rgba(20, 216, 255, 0.25);
  font-weight: 700;
}

/* Glowing blue numbers/stats */
.glow-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(20, 216, 255, 0.7), 0 0 24px rgba(20, 216, 255, 0.4);
}

/* Glowing blue text for emphasis */
.glow-text {
  color: var(--color-accent);
  text-shadow: 0 0 8px rgba(20, 216, 255, 0.5), 0 0 16px rgba(20, 216, 255, 0.25);
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0073e6 100%);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(20, 216, 255, 0.5), 0 0 40px rgba(20, 216, 255, 0.25);
  position: relative;
  overflow: hidden;
}

/* Shine sweep animation on buttons */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3aa8ff 0%, #1a7de6 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(20, 216, 255, 0.7), 0 0 60px rgba(20, 216, 255, 0.4), 0 8px 24px rgba(20, 216, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

/* Extra glowing pulse for buttons */
.btn-glow {
  animation: btn-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(20, 216, 255, 0.5), 0 0 40px rgba(20, 216, 255, 0.25);
  }
  50% {
    box-shadow: 0 0 35px rgba(20, 216, 255, 0.8), 0 0 70px rgba(20, 216, 255, 0.4), 0 0 100px rgba(20, 216, 255, 0.2);
  }
}

.btn-glow:hover {
  animation: none;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.2rem;
}

/* ---------- SECTION SPACING ---------- */
.section {
  padding: 80px 0;
}

.section-dark {
  background-color: #0D0D0D;
}

.section-darker {
  background-color: #0A0A0A;
}

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

/* ---------- DESIGN SYSTEM UTILITIES ---------- */
.font-accent {
  font-family: var(--font-accent);
}

.text-accent {
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(20, 216, 255, 0.45), 0 0 24px rgba(20, 216, 255, 0.2);
}

.text-accent--on-light {
  color: var(--color-accent);
  text-shadow: none;
}

.section-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section-light .section-text {
  color: var(--color-text-dark);
}

.section-light .section-subtitle {
  color: var(--color-accent);
}

.section-title--framed {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--color-border-dark);
  margin-bottom: 1.25rem;
}

.section-light .section-title--framed {
  color: var(--color-text-dark);
}

.section-dark .section-title--framed,
.section-darker .section-title--framed {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-text-light);
}

.section-title--framed-dark {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid var(--color-border-dark);
  background-color: var(--color-border-dark);
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.section-subtitle--accent {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  color: var(--color-accent);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-subtitle--accent--center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.section-light .section-intro {
  color: var(--color-text-dark);
}

/* ---------- CARD PRODUCT (unified) ---------- */
.card-product {
  background-color: var(--color-bg-card-light);
  border: 2px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section-dark .card-product,
.section-darker .card-product {
  background-color: #1A1A1A;
  border-color: #333;
}

.card-product__img-wrap {
  padding: 0;
  background: #0a0a0a;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-product__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.card-product__img--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.card-product__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-product__label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.card-product__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.2;
  margin-bottom: 10px;
  text-wrap: balance;
}

.section-light .card-product__title,
.section-light .card-product__desc {
  color: var(--color-text-dark);
}

.card-product__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
  text-wrap: pretty;
}

.card-product__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 0 14px;
}

.section-dark .card-product__divider,
.section-darker .card-product__divider {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.card-product__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ---------- CARD ---------- */
.card {
  background-color: #1A1A1A;
  border-radius: 8px;
  padding: 30px 24px;
  border: 1px solid #222;
  transition: border-color 0.3s ease;
}

.card:hover {
  border-color: var(--color-accent);
}

/* ============================================================
   SECTION 1.1 — HERO
   ============================================================ */
.hero {
  background-color: #0D0D0D;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 82px;
  right: 3vw;
  width: 230px;
  height: 520px;
  background:
    linear-gradient(135deg, transparent 42%, rgba(255,255,255,0.08) 43% 58%, transparent 59%),
    linear-gradient(35deg, transparent 42%, rgba(255,255,255,0.06) 43% 58%, transparent 59%);
  opacity: 0.7;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3.6vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
  min-height: 78vh;
  padding: 48px clamp(28px, 5vw, 68px) 64px;
  position: relative;
  z-index: 1;
}

.hero__visual {
  flex: 0 1 52%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__packages-frame {
  border: 2px solid rgba(20, 216, 255, 0.35);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-neon);
  max-width: 100%;
}

.hero__packages-frame img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.hero__overlay {
  display: none;
}

.hero__content {
  flex: 0 1 43%;
  min-width: 0;
  text-align: left;
  padding: 0;
  max-width: 540px;
}

.hero__meta {
  margin-bottom: 14px;
  color: #BDBDBD;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  line-height: 1.12;
  color: var(--color-text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.hero__subs {
  margin-bottom: 22px;
}

.hero__sub {
  position: relative;
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 12px;
  padding-left: 28px;
  text-wrap: pretty;
}

.hero__sub::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.hero__statement {
  margin: 0 0 24px;
  color: var(--color-text-light);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero__btn {
  border-radius: 999px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #14D8FF 100%);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(20, 216, 255, 0.5), 0 0 40px rgba(20, 216, 255, 0.25);
}

.hero__btn:hover {
  background: linear-gradient(135deg, #3aa8ff 0%, #28ddff 100%);
  color: #FFFFFF;
  box-shadow: 0 0 30px rgba(20, 216, 255, 0.7), 0 0 60px rgba(20, 216, 255, 0.4), 0 8px 24px rgba(20, 216, 255, 0.35);
}

.hero__trust {
  position: relative;
  margin-top: 18px;
  padding-left: 28px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
  text-wrap: pretty;
  max-width: 100%;
}

.hero__trust::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================================
   SECTION 1.2 — MARQUEE
   ============================================================ */
.marquee {
  background-color: #090909;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #8E8E8E;
}

.marquee__inner span {
  display: inline-block;
  padding: 0 30px;
}

.marquee__inner b {
  color: #14D8FF;
  font-weight: 700;
}

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

@media (max-width: 1100px) {
  .hero__inner {
    gap: 28px;
    padding-left: 32px;
    padding-right: 24px;
  }

  .hero__visual {
    flex-basis: 55%;
  }

  .hero__content {
    flex-basis: 45%;
  }
}

/* ============================================================
   SECTION 1.3 — PROBLEM
   ============================================================ */
.problem {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.problem--framed {
  border: 2px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 48px 40px;
  background-color: var(--color-bg-card-light);
}

.problem__heading {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.problem__body {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.65;
  margin-bottom: 12px;
  text-align: left;
  text-wrap: pretty;
}

.problem__emphasis {
  font-weight: 700;
  margin: 20px 0;
}

/* Fallback for browsers that don't support gap in flexbox (Safari < 14.1) */
@supports not (gap: 1px) {
  .problem__text {
    margin-right: 60px;
  }
  .about__image {
    margin-right: 60px;
  }
}

.problem__text {
  flex: 1 1 400px;
}

.problem__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.problem__stat {
  text-align: left;
}

.problem__stat-value {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.problem__stat-label {
  display: none;
}

.problem__image {
  flex: 1 1 400px;
}

.problem__image img {
  border-radius: 8px;
  width: 100%;
}

/* ============================================================
   SECTION 1.4 — WHAT CHANGES (4 cards)
   ============================================================ */
.changes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.change-card {
  text-align: left;
}

.change-card__label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.change-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.change-card__desc {
  font-size: 0.95rem;
  color: #FFFFFF;
  text-wrap: pretty;
}

.changes__header {
  margin-bottom: 2rem;
}

/* ============================================================
   SECTION 1.5 — STARTER KIT
   ============================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background-color: #1A1A1A;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #222;
  transition: border-color 0.3s;
}

.product-card:hover {
  border-color: var(--color-accent);
}

.product-card__img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  background: #111;
}

.product-card__body {
  padding: 24px;
}

.product-card__number {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.product-card__title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.product-card__desc {
  font-size: 0.9rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-wrap: pretty;
}

.product-card__price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================================
   SECTION 1.8 — PRICING (id=choose)
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background-color: #1A1A1A;
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid #222;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-neon-strong);
}

.pricing-card--vip {
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.pricing-card__crown {
  position: absolute;
  top: -14px;
  right: 20px;
  width: 32px;
  height: 32px;
  color: var(--color-accent-gold);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

.pricing-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-light);
  background-color: var(--color-accent);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.pricing-card--vip .pricing-card__badge {
  background-color: var(--color-accent-gold);
  color: #1a1a1a;
}

.pricing-card__badge--hidden {
  display: none;
}

.pricing-card__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 20px;
}

.pricing-card__extra-label {
  text-align: left;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card__title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-style: italic;
  text-wrap: pretty;
}

.pricing-card__price {
  margin-bottom: 20px;
}

.pricing-card__price-current {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(20, 216, 255, 0.4);
}

.pricing-card--featured .pricing-card__price-current {
  color: var(--color-accent);
  text-shadow: 0 0 16px rgba(20, 216, 255, 0.5);
  font-size: 3.2rem;
}

.pricing-card__price-current--accent {
  color: var(--color-accent);
}

.pricing-card--vip .pricing-card__price-current {
  color: var(--color-accent-gold);
  font-size: 3rem;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.55);
}

.section-light .faq-item__answer a {
  color: var(--color-accent-deep);
  text-decoration: underline;
}

.pricing-card__price-old {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #666;
  text-decoration: line-through;
  margin-left: 8px;
}

.pricing-card__savings {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 24px;
  text-wrap: pretty;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card__features li {
  font-size: 0.9rem;
  color: #FFFFFF;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  text-wrap: pretty;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-card__btn {
  margin-top: auto;
}

/* ============================================================
   SECTION 1.9 — TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--color-bg-card-light);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text-dark);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.4;
  text-wrap: pretty;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--color-text-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.testimonial-card__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0 0 16px;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.testimonial-card__sport {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonials__title-line {
  display: block;
}

/* ============================================================
   SECTION 1.10 — STATS BLOCK
   ============================================================ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  background-color: #1A1A1A;
  border-radius: 8px;
  border: 1px solid #222;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
  min-height: 160px;
}

.stat-item:hover {
  border-color: var(--color-accent);
}

.stat-item__value {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: left;
  text-wrap: pretty;
  max-width: 100%;
  line-height: 1.35;
}

.stat-item {
  text-align: left;
  align-items: flex-start;
}

.stats__subtitle {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  text-wrap: balance;
}

.stats__subtitle-line {
  display: block;
}

/* ============================================================
   SECTION 1.11 — ABOUT
   ============================================================ */
.about {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about__image {
  flex: 0 0 350px;
}

.about__image img {
  border-radius: 8px;
  width: 100%;
}

.about__text {
  flex: 1 1 400px;
}

.about__text p {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.about__quote-block {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--color-accent);
  background: rgba(20, 216, 255, 0.06);
  border-radius: 0 8px 8px 0;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.45;
  text-wrap: balance;
}

.about__title-accent {
  display: block;
  margin-top: 0.25em;
}

.about__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.about__handle {
  font-size: 0.85rem;
  color: var(--color-accent);
}

/* ============================================================
   SECTION 1.12 — FAQ
   ============================================================ */
.faq__list {
  max-width: 800px;
  margin: 40px auto 0;
}

.section-light .faq-item {
  background-color: var(--color-bg-faq);
  border-radius: 10px;
  margin-bottom: 12px;
  border: none;
  overflow: hidden;
}

.section-light .faq-item__question {
  color: var(--color-text-dark);
  padding: 18px 20px;
}

.section-light .faq-item__answer {
  color: var(--color-text-dark);
}

.section-light .faq-item--open .faq-item__answer {
  padding: 0 20px 20px;
}

.faq-item {
  border-bottom: 1px solid #222;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.7;
  text-wrap: pretty;
}

.faq-item--open .faq-item__answer {
  max-height: 2000px;
  padding-bottom: 20px;
}

/* ============================================================
   SECTION 1.13 — FINAL CTA
   ============================================================ */
.cta-final {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0.88)),
    url('../images/7.jpg') center / cover no-repeat;
  z-index: 0;
}

.cta-final > * {
  position: relative;
  z-index: 1;
}

.cta-final__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.cta-final__line {
  display: block;
}

/* ============================================================
   SECTION 1.14 — FOOTER & DISCLAIMER
   ============================================================ */
.footer {
  background-color: #0A0A0A;
  padding: 60px 20px 30px;
  text-align: center;
  border-top: 1px solid #1A1A1A;
}

.footer__brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-wrap: pretty;
}

.footer__copyright {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 8px;
}

.footer__links {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 30px;
  text-wrap: pretty;
}

.footer__links a {
  color: #666;
  margin: 0 8px;
}

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

.disclaimer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  color: #555;
  line-height: 1.7;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.disclaimer p {
  margin-bottom: 12px;
  text-wrap: pretty;
}

/* ============================================================
   SECTION 2 — MODAL FORM
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal--open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.85);
}

.modal__content {
  position: relative;
  background-color: #1A1A1A;
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 440px;
  width: 90%;
  z-index: 1;
  border: 1px solid #333;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #909090;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.modal__close:hover {
  color: #FFFFFF;
}

.modal__title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.modal__sub {
  font-size: 0.85rem;
  color: #FFFFFF;
  margin-bottom: 28px;
  text-wrap: pretty;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  background-color: #0D0D0D;
  border: 1px solid #333;
  border-radius: 4px;
  color: #FFFFFF;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form__input--error {
  border-color: #E74C3C;
}

.form__error {
  font-size: 0.8rem;
  color: #E74C3C;
  margin-top: 4px;
  display: none;
  text-wrap: pretty;
}

.form__error--visible {
  display: block;
}

.form__hint {
  font-size: 0.8rem;
  color: #FFFFFF;
  margin-top: 4px;
  text-wrap: pretty;
}

.form__submit {
  width: 100%;
  margin-top: 12px;
}

/* ============================================================
   RESPONSIVE — 768px (tablet)
   ============================================================ */
@media (max-width: 768px) {
  .hero::after {
    display: none;
  }

  .hero__inner {
    flex-direction: column;
    gap: 32px;
    min-height: auto;
    padding: 28px 16px 42px;
  }

  .hero__visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 560px;
    order: -1;
  }

  .hero__packages-frame img {
    max-width: 100%;
  }

  .hero__content {
    text-align: center;
    flex: 0 0 auto;
    max-width: 540px;
  }

  .hero__title {
    font-size: clamp(1.45rem, 5.5vw, 2.25rem);
  }

  .hero__sub {
    display: inline-block;
    text-align: left;
    max-width: 520px;
  }

  .hero__trust {
    display: inline-block;
    text-align: left;
    max-width: 520px;
  }

  .section {
    padding: 60px 0;
  }

  .problem {
    flex-direction: column;
    gap: 32px;
  }

  .problem--framed {
    padding: 28px 20px;
  }

  .problem__image {
    order: -1;
  }

  @supports not (gap: 1px) {
    .problem {
      gap: 0;
    }
    .problem__text {
      margin-right: 0;
      margin-bottom: 32px;
    }
    .about__image {
      margin-right: 0;
      margin-bottom: 32px;
    }
  }

  .problem__stats {
    gap: 24px;
  }

  .stats__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .about {
    flex-direction: column;
    gap: 32px;
  }

  .about__image {
    flex: 0 0 auto;
    max-width: 280px;
  }

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

/* ============================================================
   RESPONSIVE — 375px (mobile)
   ============================================================ */
@media (max-width: 480px) {
  .hero__inner {
    gap: 24px;
    padding-top: 20px;
  }

  .hero__title {
    font-size: clamp(1.25rem, 6.5vw, 1.85rem);
  }

  .hero__statement {
    font-size: 0.96rem;
  }

  .hero__btn {
    width: 100%;
    max-width: 260px;
    padding-inline: 22px;
  }

  .marquee {
    padding: 14px 0;
  }

  .marquee__inner {
    font-size: 0.78rem;
  }

  .marquee__inner span {
    padding: 0 18px;
  }

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

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

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

  .problem__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-item {
    padding: 24px 16px;
    min-height: 130px;
  }

  .stat-item__value {
    font-size: 2.2rem;
  }

  .stat-item__label {
    font-size: 0.8rem;
  }

  .modal__content {
    padding: 28px 20px;
  }
}
