/* ============================================================
   pro_sport_ari — Landing Page Styles
   Color scheme: #0D0D0D (bg), #1E90FF (accent), #FFFFFF (text)
   Fonts: Oswald (headings) + 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');

/* ---------- 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: 'Roboto', sans-serif;
  background-color: #0D0D0D;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  /* Prevent orphans/widows — ensure at least 2 words on last line */
  text-wrap: pretty;
  /* Prevent horizontal overflow from long unbreakable words */
  overflow-wrap: break-word;
  /* Enable automatic hyphenation for Russian body text */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

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

a {
  color: #1E90FF;
  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: #1E90FF;
  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: #1E90FF;
  text-shadow: 0 0 10px rgba(30, 144, 255, 0.6), 0 0 20px rgba(30, 144, 255, 0.3);
  font-weight: 700;
}

.highlight--strong {
  color: #1E90FF;
  text-shadow: 0 0 15px rgba(30, 144, 255, 0.8), 0 0 30px rgba(30, 144, 255, 0.5), 0 0 45px rgba(30, 144, 255, 0.25);
  font-weight: 700;
}

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

/* Glowing blue text for emphasis */
.glow-text {
  color: #1E90FF;
  text-shadow: 0 0 8px rgba(30, 144, 255, 0.5), 0 0 16px rgba(30, 144, 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, #1E90FF 0%, #0073e6 100%);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.5), 0 0 40px rgba(30, 144, 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(30, 144, 255, 0.7), 0 0 60px rgba(30, 144, 255, 0.4), 0 8px 24px rgba(30, 144, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: #1E90FF;
  border: 2px solid #1E90FF;
}

.btn-outline:hover {
  background-color: #1E90FF;
  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(30, 144, 255, 0.5), 0 0 40px rgba(30, 144, 255, 0.25);
  }
  50% {
    box-shadow: 0 0 35px rgba(30, 144, 255, 0.8), 0 0 70px rgba(30, 144, 255, 0.4), 0 0 100px rgba(30, 144, 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;
}

/* ---------- 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: #1E90FF;
}

/* ============================================================
   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__bg {
  flex: 0 1 57%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__bg img {
  width: min(116%, 810px);
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  border-radius: 18px;
  filter: drop-shadow(0 0 24px rgba(0, 216, 255, 0.16));
  transform: translateX(-12%);
}

.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(2.55rem, 4.45vw, 4.75rem);
  margin-bottom: 0;
  letter-spacing: 0.02em;
  line-height: 1.02;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.hero__fuel {
  display: inline-block;
  margin: 10px 0 20px;
  color: #14D8FF;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.25rem, 3.95vw, 4.15rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transform: rotate(-2deg) skewX(-8deg);
  transform-origin: left center;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  text-shadow:
    0 0 14px rgba(20, 216, 255, 0.32),
    0 4px 0 rgba(0, 98, 150, 0.22);
}

.hero__fuel-line {
  display: inline-block;
  white-space: nowrap;
}

.hero__subs {
  margin-bottom: 22px;
}

.hero__sub {
  position: relative;
  font-size: 1rem;
  color: #FFFFFF;
  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: #14D8FF;
  font-weight: 700;
}

.hero__statement {
  margin: 0 0 24px;
  color: #FFFFFF;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero__btn {
  border-radius: 999px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #1E90FF 0%, #14D8FF 100%);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(30, 144, 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(30, 144, 255, 0.7), 0 0 60px rgba(20, 216, 255, 0.4), 0 8px 24px rgba(30, 144, 255, 0.35);
}

.hero__trust {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #A9A9A9;
  font-weight: 500;
  text-wrap: pretty;
}

.hero__trust-icon {
  color: #14D8FF;
  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__bg {
    flex-basis: 55%;
  }

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

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

/* 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 1fr;
  gap: 32px;
  margin-top: 32px;
}

.problem__stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1E90FF;
  line-height: 1;
  margin-bottom: 8px;
}

.problem__stat-label {
  font-size: 0.9rem;
  color: #FFFFFF;
  text-wrap: pretty;
  max-width: 240px;
}

.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__number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1E90FF;
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 8px;
}

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

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

/* ============================================================
   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: #1E90FF;
}

.product-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card__body {
  padding: 24px;
}

.product-card__number {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: #1E90FF;
  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: #1E90FF;
}

/* ============================================================
   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: #1E90FF;
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: #1E90FF;
}

.pricing-card__badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #1E90FF;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.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;
  text-wrap: pretty;
}

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

.pricing-card__price-current {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
}

.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: #1E90FF;
  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: #1E90FF;
  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: #1A1A1A;
  border-radius: 8px;
  padding: 28px;
  border: 1px solid #222;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: #FFFFFF;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.testimonial-card__author {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.testimonial-card__sport {
  font-size: 0.8rem;
  color: #1E90FF;
}

/* ============================================================
   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: #1E90FF;
}

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

.stat-item__label {
  font-size: 0.9rem;
  color: #FFFFFF;
  text-wrap: pretty;
  max-width: 200px;
}

/* ============================================================
   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 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #1E90FF;
  margin: 24px 0 8px;
  line-height: 1.4;
  text-wrap: balance;
}

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

.about__handle {
  font-size: 0.85rem;
  color: #1E90FF;
}

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

.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: #1E90FF;
}

.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: 400px;
  padding-bottom: 20px;
}

/* ============================================================
   SECTION 1.13 — FINAL CTA
   ============================================================ */
.cta-final {
  text-align: center;
  padding: 100px 20px;
}

.cta-final__text {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 300;
  text-wrap: balance;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.cta-final__sub {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 32px;
  text-wrap: pretty;
}

/* ============================================================
   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: #1E90FF;
  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: #1E90FF;
}

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

.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: #1E90FF;
}

.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__bg {
    flex: 0 0 auto;
    width: 100%;
    max-width: 560px;
  }

  .hero__bg img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
  }

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

  .hero__meta {
    font-size: 0.84rem;
  }

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

  .hero__fuel {
    font-size: clamp(2rem, 7.6vw, 3.05rem);
  }

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

  .section {
    padding: 60px 0;
  }

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

  @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__meta {
    font-size: 0.76rem;
  }

  .hero__title {
    font-size: clamp(2rem, 10.6vw, 2.85rem);
  }

  .hero__fuel {
    font-size: clamp(1.82rem, 9.4vw, 2.55rem);
  }

  .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;
  }
}
