:root {
  --bg: #030405;
  --section: #060708;
  --panel: #111214;
  --panel-soft: #17181b;
  --line: rgba(255, 255, 255, 0.09);
  --line-blue: rgba(28, 30, 255, 0.62);
  --text: #f3f3f3;
  --muted: #85858c;
  --blue: #1717f5;
  --blue-bright: #4a4aff;
  --lime: #b5ff38;
  --green: #6fd36f;
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(181, 255, 56, 0.13), transparent 25%),
    radial-gradient(circle at 16% 18%, rgba(74, 74, 255, 0.18), transparent 27%),
    radial-gradient(circle at 50% 105%, rgba(43, 214, 108, 0.1), transparent 36%),
    linear-gradient(145deg, #030405 0%, #07080c 44%, #020305 100%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, auto, auto, 96px 96px, 96px 96px;
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: #050608;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__inner {
  width: min(280px, calc(100vw - 72px));
  display: grid;
  gap: 18px;
  justify-items: center;
}

.site-loader__logo {
  width: min(190px, 50vw);
  filter: drop-shadow(0 8px 24px rgba(74, 74, 255, 0.12));
  animation: loaderLogoPulse 1.8s ease-in-out infinite;
}

.site-loader__bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-loader__progress {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-bright), #7f8cff 45%, var(--lime));
  transform-origin: left center;
  animation: loaderProgress 1.3s ease forwards;
  box-shadow: 0 0 24px rgba(181, 255, 56, 0.24);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(74, 74, 255, 0.045) 18% 18.3%, transparent 18.3% 100%),
    linear-gradient(65deg, transparent 0 28%, rgba(181, 255, 56, 0.04) 28% 28.25%, transparent 28.25% 100%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.035), transparent 18%);
  opacity: 0.9;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(45deg, rgba(181, 255, 56, 0.015) 0 1px, transparent 1px 34px);
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

a {
  color: inherit;
}

.gym-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.gym-line,
.gym-shape {
  position: absolute;
  opacity: 0.22;
}

.gym-line {
  width: 360px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(181, 255, 56, 0.38), transparent);
  animation: lineDrift 13s ease-in-out infinite;
}

.gym-line-one {
  left: 4%;
  top: 18%;
  --line-rotate: -18deg;
  transform: rotate(-18deg);
}

.gym-line-two {
  right: 1%;
  bottom: 26%;
  --line-rotate: 14deg;
  transform: rotate(14deg);
  animation-delay: -5s;
}

.gym-line-three {
  left: 42%;
  top: 62%;
  width: 520px;
  --line-rotate: -6deg;
  transform: rotate(-6deg);
  animation-delay: -9s;
}

.gym-shape {
  display: grid;
  place-items: center;
  border: 2px solid rgba(181, 255, 56, 0.28);
  filter: drop-shadow(0 0 18px rgba(181, 255, 56, 0.08));
  animation: gymFloat 12s ease-in-out infinite;
}

.gym-dumbbell {
  left: 5%;
  top: 28%;
  width: 180px;
  height: 34px;
  border: 0;
  border-top: 8px solid rgba(181, 255, 56, 0.24);
  border-bottom: 8px solid rgba(181, 255, 56, 0.24);
  transform: rotate(-16deg);
}

.gym-dumbbell::before,
.gym-dumbbell::after {
  content: "";
  position: absolute;
  top: -20px;
  width: 22px;
  height: 58px;
  border-radius: 4px;
  background: rgba(181, 255, 56, 0.22);
}

.gym-dumbbell::before {
  left: 0;
}

.gym-dumbbell::after {
  right: 0;
}

.gym-kettlebell {
  right: 8%;
  top: 22%;
  width: 92px;
  height: 92px;
  border-radius: 42% 42% 48% 48%;
  animation-delay: -3s;
}

.gym-kettlebell::before {
  content: "";
  position: absolute;
  top: -24px;
  width: 54px;
  height: 36px;
  border: 8px solid rgba(181, 255, 56, 0.22);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.gym-plate {
  right: 11%;
  bottom: 18%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border-color: rgba(74, 74, 255, 0.3);
  animation-delay: -7s;
}

.gym-plate::before {
  content: "";
  width: 42px;
  height: 42px;
  border: 2px solid rgba(74, 74, 255, 0.28);
  border-radius: 50%;
}

.gym-barbell {
  left: 50%;
  bottom: 8%;
  width: 260px;
  height: 18px;
  border: 0;
  border-top: 5px solid rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) rotate(4deg);
  animation-delay: -10s;
}

.gym-barbell::before,
.gym-barbell::after {
  content: "";
  position: absolute;
  top: -23px;
  width: 28px;
  height: 52px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.gym-barbell::before {
  left: 14px;
}

.gym-barbell::after {
  right: 14px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 24px 36px;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.2rem);
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-image {
  gap: 0;
}

.brand-image img {
  display: block;
  width: clamp(240px, 18vw, 330px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(74, 74, 255, 0.2));
}

.brand strong {
  background: linear-gradient(90deg, var(--blue-bright), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-btn,
.primary-button,
.ghost-button,
.whatsapp-button,
.plan-language button {
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font: 800 0.95rem var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lang-switch {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.lang-btn {
  min-width: 48px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

.lang-btn.is-active {
  background: var(--blue);
  color: #fff;
}

.primary-button,
.ghost-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  position: relative;
  overflow: hidden;
}

.primary-button {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #3434ff 62%, #2bd66c);
  color: #fff;
  box-shadow: 0 0 0 rgba(74, 74, 255, 0);
  animation: buttonPulse 2.5s ease-in-out infinite;
}

.ghost-button {
  background: transparent;
  color: #c6c6cb;
}

.whatsapp-button {
  border-color: rgba(111, 211, 111, 0.7);
  background: linear-gradient(135deg, #45c95f, #7ce071);
  color: #fff;
  animation: whatsappPulse 2.1s ease-in-out infinite;
}

.primary-button::after,
.whatsapp-button::after,
.ghost-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.3) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.primary-button:hover::after,
.whatsapp-button:hover::after,
.ghost-button:hover::after {
  transform: translateX(130%);
}

.whatsapp-button::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset -5px -5px 0 -4px currentColor;
}

.primary-button:hover,
.ghost-button:hover,
.whatsapp-button:hover,
.plan-language button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  box-shadow: 0 16px 42px rgba(23, 23, 245, 0.32);
}

.section-block {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(74, 74, 255, 0.035), transparent 24%),
    radial-gradient(circle at 88% 100%, rgba(181, 255, 56, 0.032), transparent 24%),
    rgba(3, 4, 5, 0.34);
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.section-block > * {
  position: relative;
  z-index: 1;
}

.section-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(74, 74, 255, 0.045) 24% 24.25%, transparent 24.25% 100%),
    linear-gradient(62deg, transparent 0 70%, rgba(181, 255, 56, 0.035) 70% 70.25%, transparent 70.25% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 62px);
  opacity: 0.7;
}

.section-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--accent-x, 80%) var(--accent-y, 20%), rgba(181, 255, 56, 0.07), transparent 24%),
    radial-gradient(circle at calc(100% - var(--accent-x, 80%)) calc(100% - var(--accent-y, 20%)), rgba(74, 74, 255, 0.065), transparent 28%);
  opacity: 0.9;
}

.intro-cta,
.method,
.faq {
  --accent-x: 16%;
  --accent-y: 18%;
}

.problem,
.comparison,
.plans,
.testimonials,
.prozis,
.final-cta {
  --accent-x: 84%;
  --accent-y: 22%;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: calc(100vh - 94px);
  padding: clamp(160px, 14vw, 210px) 24px 0;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(3, 4, 5, 0.78), rgba(3, 4, 5, 0.88)),
    url("https://images.unsplash.com/photo-1534258936925-c58bed479fcb?auto=format&fit=crop&w=1800&q=70") center / cover;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 50%;
  width: min(68vw, 860px);
  height: min(68vw, 860px);
  border: 1px solid rgba(181, 255, 56, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 49%, rgba(181, 255, 56, 0.14) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(74, 74, 255, 0.18) 50%, transparent 51%);
  animation: orbitSpin 24s linear infinite;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  margin-top: 18px;
  padding: 0 18px 84px;
}

.hero h1,
.intro-cta h2,
.about h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(5.5rem, 9vw, 9.5rem);
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong,
.final-cta strong {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--blue-bright), var(--lime));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  filter: drop-shadow(0 0 18px rgba(181, 255, 56, 0.16));
  animation: transformGlow 2.8s ease-in-out infinite;
}

.hero h1 strong::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0.08em;
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(181, 255, 56, 0.9), rgba(74, 74, 255, 0.8), transparent);
  transform: scaleX(0.2);
  transform-origin: left;
  opacity: 0.85;
  animation: transformUnderline 2.8s ease-in-out infinite;
}

.hero h1 strong::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.95) 48%, transparent 60% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: transformSweep 3.2s ease-in-out infinite;
  pointer-events: none;
}

.hero p,
.intro-cta p,
.section-heading p,
.final-cta p,
.about-copy p,
.plan-card p {
  color: #b8b8c0;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 700;
  line-height: 1.75;
}

.hero p {
  max-width: 680px;
  margin: 36px auto 54px;
  color: #cfcfd5;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-blue);
  border-radius: 7px;
  background: #101114;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.18) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: mediaSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  border-radius: 14px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
}

.media-art,
.portrait-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 255, 255, 0.18), transparent 9%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12)),
    url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?auto=format&fit=crop&w=1300&q=80") center / cover;
  filter: saturate(0.72) contrast(1.04) brightness(0.78);
}

.hero-photo-art {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.24), transparent 16%),
    linear-gradient(180deg, rgba(2, 3, 5, 0.04), rgba(2, 3, 5, 0.26)),
    linear-gradient(90deg, rgba(2, 3, 5, 0.18), rgba(2, 3, 5, 0.04) 38%, rgba(2, 3, 5, 0.22) 100%),
    url("assets/daniel-hero-photo-wide.jpg") center 50% / cover no-repeat;
  filter: saturate(1.02) contrast(1.04) brightness(1.04);
}

.portrait-art {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  background: #08090a;
}

.portrait-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% 24%;
  filter: saturate(1.02) contrast(1.05) brightness(1.24);
}

.portrait-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.training-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.media-tag {
  position: absolute;
  left: 30px;
  bottom: 86px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.hero-photo-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(181, 255, 56, 0.32);
  border-radius: 999px;
  background: rgba(3, 4, 5, 0.56);
  color: #f4f7ef;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 1;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: calc(100% - 44px);
  margin: -54px auto 0;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 3;
}

.stats-strip article {
  display: grid;
  gap: 14px;
  min-height: 144px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(181, 255, 56, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(14, 16, 20, 0.96), rgba(18, 20, 26, 0.9));
  animation: cardDrift 5.5s ease-in-out infinite;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.stats-strip article:nth-child(2) {
  animation-delay: -1.5s;
}

.stats-strip article:nth-child(3) {
  animation-delay: -3s;
}

.stats-strip strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.stats-strip span {
  color: #eeeeef;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.play-chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.intro-cta,
.section-heading,
.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(72px, 9vw, 112px) 24px;
  text-align: center;
}

.compact-heading {
  padding-bottom: 48px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue-bright);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.intro-cta h2,
.section-heading h2 {
  font-size: clamp(3.7rem, 5.4vw, 5.8rem);
}

.intro-cta p,
.section-heading p {
  margin: 26px 0 38px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 540px) minmax(0, 600px);
  gap: clamp(48px, 7vw, 84px);
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 9vw, 112px) 24px;
}

.method {
  padding: clamp(70px, 8vw, 108px) 24px;
}

.problem,
.comparison,
.prozis,
.faq {
  padding: clamp(70px, 8vw, 108px) 24px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 360px));
  gap: 18px;
  justify-content: center;
}

.problem-grid,
.compare-grid,
.faq-grid {
  display: grid;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

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

.problem-grid article {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 260px;
  padding: clamp(30px, 3.4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 100% 0%, rgba(181, 255, 56, 0.16), transparent 42%),
    rgba(8, 9, 11, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.problem-grid article {
  min-height: 280px;
  align-content: start;
}

.problem-grid article:hover,
.problem-grid article:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(181, 255, 56, 0.48);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.36), 0 0 34px rgba(181, 255, 56, 0.07);
}

.problem-grid article::before {
  content: "";
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-bright), var(--lime));
  box-shadow: 0 0 18px rgba(181, 255, 56, 0.3);
}

.problem-grid span {
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(255, 255, 255, 0.11);
  font-family: var(--font-display);
  font-size: clamp(5rem, 7vw, 7.2rem);
  line-height: 1;
}

.problem-grid strong {
  color: #fff;
  max-width: 92%;
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  font-weight: 900;
  line-height: 1.2;
}

.problem-grid p {
  color: #d5d6dc;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  font-weight: 800;
  line-height: 1.6;
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

.compare-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.highlight-card {
  border-color: rgba(181, 255, 56, 0.36);
  background:
    radial-gradient(circle at top right, rgba(181, 255, 56, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 70px rgba(181, 255, 56, 0.06);
}

.compare-card h3 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.compare-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 34px;
  color: #d6d6dc;
  font-weight: 800;
  line-height: 1.45;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.muted-card li::before {
  content: "×";
  color: #7d8089;
}

.highlight-card li::before {
  content: "✓";
  color: var(--lime);
}

.faq-grid {
  max-width: 820px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.026);
  overflow: hidden;
}

.faq-grid summary {
  padding: 22px 24px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.faq-grid summary::marker {
  color: var(--lime);
}

.faq-grid p {
  margin: 0;
  padding: 0 24px 22px;
  color: #bfc0c8;
  font-weight: 700;
  line-height: 1.65;
}

.prozis-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(181, 255, 56, 0.34);
  border-radius: 9px;
  background:
    radial-gradient(circle at top right, rgba(181, 255, 56, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(23, 23, 245, 0.14), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32), 0 0 34px rgba(181, 255, 56, 0.08);
}

.prozis-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 5vw, 5.6rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.prozis-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #d5d6dc;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.6;
}

.code-panel {
  display: grid;
  gap: 8px;
  min-width: 190px;
  padding: 18px 22px;
  border: 1px dashed rgba(181, 255, 56, 0.5);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.34);
  text-align: center;
}

.code-panel span {
  color: #aeb0b8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.code-panel strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
}

.copy-code-button {
  min-height: 38px;
  border: 1px solid rgba(181, 255, 56, 0.36);
  border-radius: 5px;
  background: rgba(181, 255, 56, 0.1);
  color: #fff;
  font: 900 0.82rem var(--font-body);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.copy-code-button:hover {
  transform: translateY(-2px);
  background: rgba(181, 255, 56, 0.18);
}

.prozis-button {
  min-width: 190px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: none;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #45c95f, #7ce071);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 95;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 74, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.8);
  color: #fff;
  font: 900 1.5rem/1 var(--font-body);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, border-color 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(181, 255, 56, 0.54);
  background: rgba(11, 14, 18, 0.92);
  transform: translateY(-2px);
}

.method-grid article {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(23, 23, 245, 0.11), transparent 38%),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.method-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--lime));
}

.method-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(181, 255, 56, 0.35);
}

.method-grid span {
  color: rgba(181, 255, 56, 0.8);
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
}

.method-grid h3 {
  margin: 32px 0 14px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.portrait-frame {
  width: 100%;
  aspect-ratio: 1 / 1.02;
}

.about h2 {
  max-width: 470px;
  font-size: clamp(4.4rem, 7vw, 6.8rem);
}

.about-copy p {
  max-width: 650px;
  margin: 28px 0 36px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: #eeeeef;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 38px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(28, 30, 255, 0.58);
  border-radius: 50%;
  color: var(--blue-bright);
  font-size: 0.74rem;
}

.plans {
  padding: clamp(70px, 8vw, 102px) 24px 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 450px));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 760px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 7px 7px 0 0;
  background: rgba(21, 22, 24, 0.82);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(181, 255, 56, 0.36);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.featured-plan {
  border-color: var(--line-blue);
  background:
    radial-gradient(circle at bottom left, rgba(181, 255, 56, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(28, 30, 255, 0.12), transparent 38%),
    rgba(13, 14, 19, 0.96);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #3030ff);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 3.7vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.plan-card p {
  margin: 24px 0 34px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-line span,
.price-line small {
  color: var(--muted);
  font-weight: 800;
}

.price-line strong {
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 5.8vw, 5.2rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.plan-language {
  margin: auto 0 20px;
  padding-top: 32px;
}

.plan-language span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.plan-language div {
  display: flex;
  gap: 10px;
}

.plan-language button {
  width: 68px;
  height: 50px;
  background: transparent;
}

.plan-language button.selected {
  border-color: var(--line-blue);
  background: rgba(28, 30, 255, 0.15);
}

.full-button {
  width: 100%;
  flex: 0 0 auto;
  margin-top: 36px;
}

.featured-plan .full-button {
  margin-top: 42px;
}

.testimonials {
  min-height: 680px;
  padding: clamp(70px, 8vw, 106px) 24px;
}

.chat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 500px));
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
}

.chat-card {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #08090a;
  background-size: 28px 28px;
}

.chat-card:hover .bubble {
  animation: bubbleLift 420ms ease both;
}

.chat-middle {
  margin-top: 74px;
}

.chat-right {
  margin-top: -44px;
}

.bubble {
  width: fit-content;
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 8px;
  color: #e8e8e9;
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  animation: chatFloat 5s ease-in-out infinite;
}

.bubble:nth-child(2) {
  animation-delay: -1.2s;
}

.bubble:nth-child(3) {
  animation-delay: -2.2s;
}

.incoming {
  background: #222527;
}

.outgoing {
  justify-self: end;
  background: #2f5b43;
}

.final-cta {
  padding-top: clamp(96px, 12vw, 150px);
  padding-bottom: clamp(96px, 12vw, 150px);
  background: #050609;
}

.final-cta h2 {
  font-size: clamp(4.8rem, 7vw, 7.5rem);
}

.final-cta h2 span,
.final-cta h2 strong {
  display: block;
}

.final-cta p {
  max-width: 560px;
  margin: 30px 0 38px;
}

.large-button {
  min-width: min(100%, 360px);
  min-height: 64px;
}

.final-cta small {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 38px 24px 34px;
  border-bottom: 1px solid rgba(28, 30, 255, 0.24);
  background: #090a0c;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.28), rgba(5, 6, 8, 0.38)),
    url("assets/footer-texture.jpg") center 34% / cover no-repeat;
  filter: blur(3px) saturate(1.05) brightness(1) contrast(1.08);
  transform: scale(1.02);
  opacity: 0.88;
  z-index: -2;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74, 74, 255, 0.03), transparent 38%),
    linear-gradient(315deg, rgba(181, 255, 56, 0.025), transparent 42%);
  z-index: -1;
}

.footer-brand {
  font-size: 1.8rem;
}

.footer-brand img {
  width: clamp(140px, 16vw, 190px);
}

.footer-links {
  display: flex;
  gap: 12px;
  color: #f4f4f6;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.site-footer .copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 420px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes orbitSpin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes transformGlow {
  0%,
  100% {
    background-position: 0% 50%;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 16px rgba(74, 74, 255, 0.2));
  }
  50% {
    background-position: 100% 50%;
    transform: translateY(-4px) scale(1.015);
    filter: drop-shadow(0 0 30px rgba(181, 255, 56, 0.34));
  }
}

@keyframes transformUnderline {
  0%,
  100% {
    transform: scaleX(0.18);
    opacity: 0.45;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.95;
  }
}

@keyframes transformSweep {
  0%,
  58% {
    transform: translateX(-120%);
    opacity: 0;
  }
  72% {
    opacity: 0.55;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 74, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(74, 74, 255, 0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(111, 211, 111, 0.36);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(111, 211, 111, 0);
  }
}

@keyframes mediaSweep {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes bubbleLift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3px);
  }
}

@keyframes gymFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-12deg);
  }
  50% {
    transform: translateY(-28px) rotate(8deg);
  }
}

@keyframes lineDrift {
  0%,
  100% {
    opacity: 0.12;
    transform: translateX(0) rotate(var(--line-rotate, -18deg));
  }
  50% {
    opacity: 0.32;
    transform: translateX(34px) rotate(var(--line-rotate, -18deg));
  }
}

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

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

@keyframes loaderProgress {
  0% {
    transform: scaleX(0.02);
    opacity: 0.5;
  }
  65% {
    transform: scaleX(0.74);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes loaderLogoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.94;
  }
  50% {
    transform: translateY(-4px) scale(1.02);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    padding: 14px 18px;
    align-items: center;
  }

  .header-actions {
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .header-whatsapp {
    min-height: 44px;
    padding: 0 18px;
  }

  .brand-image img {
    width: clamp(168px, 24vw, 230px);
  }

  .about,
  .plan-grid,
  .chat-grid,
  .method-grid,
  .problem-grid,
  .compare-grid,
  .prozis-card {
    grid-template-columns: 1fr;
  }

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

  .prozis-card p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 18px;
  }

  .stats-strip article {
    min-height: 120px;
  }

  .gym-shape,
  .gym-line {
    opacity: 0.5;
  }

  .about {
    max-width: 720px;
    margin: 0 auto;
  }

  .chat-middle,
  .chat-right {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 84px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .back-to-top {
    right: 14px;
    bottom: 88px;
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .site-header {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    flex: 0 0 auto;
    font-size: 1.45rem;
  }

  .brand-image img {
    width: 152px;
  }

  .lang-btn {
    min-width: 42px;
    height: 40px;
    font-size: 0.94rem;
  }

  .header-whatsapp {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 138px;
  }

  .hero-showcase {
    padding: 0 0 32px;
  }

  .hero-photo-badge {
    right: 14px;
    top: 14px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .media-tag {
    left: 18px;
    bottom: 18px;
    max-width: 80%;
    font-size: clamp(1.5rem, 7.4vw, 2.35rem);
    line-height: 0.95;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .hero p {
    margin: 24px auto 36px;
    font-size: 1.05rem;
  }

  .hero-media {
    aspect-ratio: 16 / 11.8;
  }

  .hero-photo-art {
    background:
      radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.24), transparent 16%),
      linear-gradient(180deg, rgba(2, 3, 5, 0.04), rgba(2, 3, 5, 0.26)),
      linear-gradient(90deg, rgba(2, 3, 5, 0.16), rgba(2, 3, 5, 0.04) 38%, rgba(2, 3, 5, 0.2) 100%),
      url("assets/daniel-hero-photo-wide.jpg") center 62% / cover no-repeat;
  }

  .stats-strip {
    gap: 12px;
  }

  .stats-strip article {
    min-height: 110px;
    padding: 18px 20px;
  }

  .stats-strip strong {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .stats-strip span {
    font-size: 0.96rem;
  }

  .intro-cta h2,
  .section-heading h2,
  .about h2,
  .final-cta h2 {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }

  .comparison .section-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    line-height: 0.92;
  }

  .plan-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .price-line {
    flex-wrap: wrap;
  }

  .price-line strong {
    font-size: clamp(3rem, 17vw, 4.2rem);
  }

  .popular-badge {
    padding: 7px 18px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .compare-card {
    padding: 24px 20px;
  }

  .compare-card h3 {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }

  .portrait-art {
    min-height: 380px;
    padding: 20px;
  }

  .portrait-art img {
    object-position: 36% 20%;
  }

  .training-label {
    font-size: 1.7rem;
    padding: 8px 12px;
  }

  .problem-grid article,
  .method-grid article {
    min-height: auto;
    padding: 24px 20px;
  }

  .problem-grid span {
    font-size: 4.3rem;
  }

  .prozis-card {
    gap: 18px;
    padding: 24px 20px;
  }

  .prozis-card h2 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .code-panel {
    min-width: 0;
  }

  .site-footer .copyright {
    font-size: 0.6rem;
    max-width: 280px;
  }

  .faq-grid summary,
  .faq-grid p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .bubble {
    max-width: 92%;
  }

  .gym-bg {
    display: none;
  }
}
