/* ============================================================
   RESET & ROOT
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

input, textarea, button {
  max-width: 100%;
  box-sizing: border-box;
}

:root {
  --red:     #ff3a1f;
  --red2:    #ff6b50;
  --red-glow: rgba(255, 58, 31, .35);
  --dark:    #080808;
  --dark2:   #0f0f0f;
  --dark3:   #161616;
  --dark4:   #1e1e1e;
  --white:   #ffffff;
  --gray:    #7a7a7a;
  --gray2:   #3a3a3a;
  --light:   #f0f0f0;
  --r:       16px;
  --max:     1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
  background: none;
  font-family: inherit;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red2);
  border-color: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--red-glow);
}
.btn--outline {
  border-color: rgba(255,255,255,.28);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.05);
}
.btn--lg { padding: 15px 34px; font-size: 16px; }
.btn--full { width: 100%; }

/* ============================================================
   LOGO
   ============================================================ */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__badge {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px;
  flex-shrink: 0;
}
.logo__text { font-size: 18px; font-weight: 700; letter-spacing: -.2px; }
.logo__text b { color: var(--red); }
.header__lighthouse {
  display: flex;
  align-items: center;
  margin-left: 8px;
  opacity: 0.6;
}

.trust { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.trust__inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust__label { font-size: 13px; opacity: .5; white-space: nowrap; }
.trust__items { display: flex; gap: 16px; flex-wrap: wrap; }
.trust__item { font-size: 14px; opacity: .7; white-space: nowrap; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(8, 8, 8, .92);
  backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,.06);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 36px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.nav a:hover { color: var(--white); }
.header__cta { margin-left: auto; }

.burger {
  display: none;
  position: relative;
  z-index: 101;
  flex-shrink: 0;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .2s;
}
.burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 72px;
}

/* Animated background */
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 65% 40%, rgba(255,58,31,.18) 0%, transparent 65%),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255,58,31,.07) 0%, transparent 60%),
              var(--dark);
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,58,31,.4), transparent 70%);
  right: -100px; top: -100px;
  animation-delay: 0s;
}
.orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,100,60,.3), transparent 70%);
  right: 200px; bottom: 50px;
  animation-delay: -4s;
}
.orb--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,58,31,.25), transparent 70%);
  left: 5%; top: 30%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.06); }
  66% { transform: translateY(20px) scale(.95); }
}

/* 3D Objects */
.geo { position: absolute; pointer-events: none; }

/* Rotating cube */
.geo--cube {
  right: 8%;
  top: 12%;
  width: 80px; height: 80px;
  transform-style: preserve-3d;
  animation: cubeRotate 18s linear infinite;
}
@keyframes cubeRotate {
  from { transform: rotateX(0) rotateY(0) rotateZ(0); }
  to   { transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg); }
}
.cube__face {
  position: absolute;
  width: 80px; height: 80px;
  border: 1.5px solid rgba(255,58,31,.5);
  background: rgba(255,58,31,.04);
  backdrop-filter: blur(2px);
}
.cube__face--front  { transform: translateZ(40px); }
.cube__face--back   { transform: rotateY(180deg) translateZ(40px); }
.cube__face--left   { transform: rotateY(-90deg) translateZ(40px); }
.cube__face--right  { transform: rotateY(90deg) translateZ(40px); }
.cube__face--top    { transform: rotateX(90deg) translateZ(40px); }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(40px); }

/* Spinning ring */
.geo--ring {
  left: 3%;
  bottom: 15%;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,58,31,.3);
  box-shadow: 0 0 30px rgba(255,58,31,.15) inset;
  animation: ringFloat 8s ease-in-out infinite, ringSpin 20s linear infinite;
}
@keyframes ringFloat {
  0%, 100% { transform: translateY(0) rotateX(60deg); }
  50% { transform: translateY(-20px) rotateX(60deg); }
}
@keyframes ringSpin {
  to { transform: translateY(0) rotateX(60deg) rotateZ(360deg); }
}

/* Sphere */
.geo--sphere {
  left: 15%;
  top: 15%;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,100,60,.6), rgba(255,58,31,.1));
  border: 1px solid rgba(255,58,31,.4);
  box-shadow: 0 0 20px rgba(255,58,31,.2);
  animation: sphereFloat 6s ease-in-out infinite;
}
@keyframes sphereFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.08); }
}

/* Hero content */
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  flex: 1;
  padding: 60px 0 40px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.tag__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero__h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.red-line {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.red-line::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  opacity: .6;
}
.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero__nums {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.hero__num b {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
}
.hero__num span {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.4;
}

/* Photo */
.hero__right { position: relative; }
.hero__photo { position: relative; display: inline-block; width: 100%; }
.hero__photo-inner {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,58,31,.2);
  background: linear-gradient(160deg, rgba(255,58,31,.12), rgba(255,255,255,.03));
  position: relative;
}
.hero__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.25);
  font-size: 14px; text-align: center;
}
.hero__photo-placeholder span { font-size: 36px; }
.hero__photo-glow {
  position: absolute;
  bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 80px;
  background: var(--red);
  filter: blur(50px);
  opacity: .3;
  pointer-events: none;
}
.hero__photo-badge {
  position: absolute;
  background: rgba(8,8,8,.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
}
.hero__photo-badge b { display: block; font-size: 15px; color: var(--red); margin-bottom: 2px; }
.hero__photo-badge span { color: rgba(255,255,255,.5); font-size: 12px; }
.hero__photo-badge--1 { bottom: 30px; left: -30px; }
.hero__photo-badge--2 { top: 30px; right: -20px; font-weight: 700; }

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  background: rgba(255,58,31,.06);
  border-top: 1px solid rgba(255,58,31,.15);
  border-bottom: 1px solid rgba(255,58,31,.15);
  overflow: hidden;
  padding: 14px 0;
  margin-top: auto;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__dot { color: var(--red); font-size: 10px; }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section { padding: 110px 0; }

.section__head { margin-bottom: 56px; }
.section__head--center { text-align: center; }
.section__head--center .section__sub { margin: 12px auto 0; }

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section__head h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.1;
}
.section__sub {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  max-width: 520px;
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain { background: var(--dark2); }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pain__card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 32px;
  transition: border-color .2s, transform .2s;
}
.pain__card:hover {
  border-color: rgba(255,58,31,.35);
  transform: translateY(-4px);
}
.pain__card--cta {
  background: linear-gradient(135deg, rgba(255,58,31,.2), rgba(255,58,31,.06));
  border-color: rgba(255,58,31,.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.pain__card--cta {
  grid-column: span 2;
}
.pain__card--cta p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.6; }
.pain__icon { font-size: 32px; margin-bottom: 16px; }
.pain__card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.pain__card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { background: var(--dark); }
.prog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prog__card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  padding: 28px;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prog__card:first-child {
  grid-column: span 2;
}
.prog__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.prog__card:hover::before { transform: scaleX(1); }
.prog__card:hover {
  border-color: rgba(255,58,31,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(255,58,31,.15);
}
.prog__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.prog__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07);
  padding: 3px 9px;
  border-radius: 50px;
}
.prog__tag--featured {
  color: var(--red);
  background: rgba(255,58,31,.12);
  border: 1px solid rgba(255,58,31,.3);
}
.prog__duration { font-size: 11px; color: var(--gray); font-weight: 600; }
.prog__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}
.prog__card h3 { font-size: 18px; font-weight: 800; line-height: 1.25; flex: 1; }
.prog__card > p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; }
.prog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
  gap: 8px;
  flex-wrap: nowrap;
}
.prog__size { font-size: 12px; color: var(--gray); }
.prog__price { font-size: 13px; font-weight: 700; color: var(--red); white-space: nowrap; }
.prog__arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  opacity: 0.3;
  font-size: 20px;
  pointer-events: none;
}
.prog__card:hover .prog__arrow {
  opacity: 0.7;
  transform: translateX(3px);
}

/* ============================================================
   OTHER FORMATS
   ============================================================ */
.other-formats {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.other-formats h3 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.4px;
  margin-bottom: 14px;
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.other-item {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.other-item h4 {
  font-size: 16px;
  font-weight: 900;
}
.other-item p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ============================================================
   RESULTS
   ============================================================ */
.results { background: var(--dark2); }
.results__row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 60px;
}
.results__big-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 44px 36px;
  background: var(--dark2);
  text-align: center;
  border: 1px solid rgba(255,58,31,.2);
  border-radius: var(--r);
}
.results__big-num b {
  display: block;
  font-size: 54px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}
.results__big-num span {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.cases {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.case {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 28px;
}
.case__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  margin-bottom: 12px;
}
.case h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.case p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 16px; }
.case__result {
  margin-top: auto;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  padding: 12px 16px;
  background: rgba(255,58,31,.08);
  border-radius: 8px;
  border-left: 3px solid var(--red);
}
.case__result span { font-weight: 700; color: var(--red); }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how { background: var(--dark); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(255,58,31,.1));
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  padding: 0 20px 40px;
  position: relative;
  z-index: 1;
}
.step__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 28px;
  box-shadow: 0 0 30px var(--red-glow);
}
.step__body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step__body p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 12px; flex: 1; }
.step__time {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: #e8001d;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.how__timeline {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: #e8001d;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.how__timeline::first-letter { color: var(--red); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--dark2); }
.about__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.about__left { position: sticky; top: 100px; }
.about__photo-wrap { position: relative; margin-bottom: 20px; }
.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,58,31,.14), rgba(255,255,255,.03));
  border: 1px solid rgba(255,58,31,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.25); text-align: center;
  line-height: 1.6;
}
.about__photo-glow {
  position: absolute;
  bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 60px;
  background: var(--red);
  filter: blur(40px);
  opacity: .35;
}
.about__socials { display: flex; gap: 10px; }
.social-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.social-btn:hover { border-color: var(--red); color: var(--red); }

.about__right h2 {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}
.about__role {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 24px;
}
.about__bio {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 36px;
}
.about__expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.about__exp-item {
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  transition: border-color .2s;
}
.about__exp-item:hover { border-color: rgba(255,58,31,.3); }
.about__exp-item b { display: block; font-size: 14px; margin-bottom: 4px; }
.about__exp-item span { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5; }
.about__quote {
  border-left: 3px solid var(--red);
  padding: 16px 22px;
  background: rgba(255,58,31,.06);
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--dark);
  padding-top: 60px;
  padding-bottom: 60px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  padding: 32px;
  transition: border-color .2s;
}
.review:hover { border-color: rgba(255,58,31,.3); }
.review__stars { color: var(--red); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 14px; }
.review__ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
  flex-shrink: 0;
}
.review__author b { display: block; font-size: 14px; }
.review__author span { font-size: 12px; color: rgba(255,255,255,.4); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--dark2);
  padding-top: 60px;
  padding-bottom: 60px;
}
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq__item { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255,255,255,.025);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .15s;
}
.faq__q:hover { background: rgba(255,255,255,.04); }
.faq__arrow {
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .25s;
  font-weight: 300;
}
.faq__item--open .faq__arrow { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq__a p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  padding: 0 24px 22px;
}
.faq__item--open .faq__a { max-height: 300px; }
.faq__item--open .faq__q { background: rgba(255,58,31,.06); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: radial-gradient(ellipse 80% 70% at 30% 50%, rgba(255,58,31,.2) 0%, transparent 65%),
              var(--dark3);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: start;
}
.contact__left h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact__left p {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
  line-height: 1.65;
}
.contact__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.contact__points li {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.contact__points li::first-letter { color: var(--red); }
.contact__geo {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,.35);
}
.contact__geo span {
  white-space: nowrap;
}

/* Form */
.contact__form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__form .field label:not(.privacy-consent) {
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,.58);
  margin-bottom: 8px;
}

.contact__form .field input,
.contact__form .field textarea,
.contact__form .field select {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.contact__form .field input::placeholder,
.contact__form .field textarea::placeholder {
  color: rgba(255,255,255,.25);
}

.contact__checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.62);
  margin-bottom: 0;
  line-height: 1.4;
}
.contact__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.contact-method-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  opacity: .8;
}

.field label.contact-method-option {
  display: flex;
  align-items: center;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  margin-bottom: 0;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  opacity: .7;
  line-height: 1.5;
  width: 100%;
}

.privacy-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.privacy-consent span {
  flex: 1 1 0%;
  min-width: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

.privacy-consent a {
  color: #C0392B;
}

.field label:not(.privacy-consent) {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.2); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,58,31,.12);
}

.field select {
  appearance: none;
  cursor: pointer;
}
.form__note {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  padding: 48px 0 36px;
}
.footer__brand p { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 10px; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer__links a:hover { color: var(--white); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer__contact a:hover { color: var(--red); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.2);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal--open { opacity: 1; pointer-events: all; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
}
.modal__box {
  position: relative;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.1);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  transform: translateY(20px);
  transition: transform .25s;
}
.modal--open .modal__box { transform: translateY(0); }
.modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: none; cursor: pointer;
  color: var(--white); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  z-index: 2;
}
.modal__close:hover { background: var(--red); }
.modal__header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.modal__header h2 { font-size: 28px; font-weight: 900; letter-spacing: -.8px; margin: 10px 0 6px; }
.modal__meta { font-size: 13px; color: rgba(255,255,255,.4); }
.modal__body { display: block; }
.modal__body h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.modal__tag {
  font-size: 13px;
  opacity: .6;
  margin-bottom: 20px;
  display: block;
}
.modal__body p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.modal__body b {
  color: #C0392B;
}
.modal__col {
  padding: 32px 40px;
}
.modal__col:first-child { border-right: 1px solid rgba(255,255,255,.07); }
.modal__col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin: 0 0 14px;
}
.modal__col + .modal__col h4:not(:first-child) { margin-top: 28px; }
.modal__col p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.modal__col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.modal__col ul li {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.modal__col ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gray);
}
.check-list li::before { content: '✓'; color: var(--red); font-weight: 700; }
.modal__cta { margin-top: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr 380px; gap: 40px; }
  .prog__grid { grid-template-columns: repeat(3, 1fr); }
  .prog__card:first-child { grid-column: span 3; }
  .steps::before { display: none; }
  .step { padding-bottom: 32px; }
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__left { position: static; }
  .about__photo-wrap { max-width: 280px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 28px; }
  .modal__body { grid-template-columns: 1fr; }
  .modal__col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cases {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .case { width: 100%; }
  .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .burger {
    display: flex;
    position: relative;
    right: auto;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 101;
  }

  .header__cta { display: none; }
  .header__lighthouse { display: none; }

  .nav {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 100;
    padding: 24px;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .nav--open { display: flex; }

  .nav a {
    font-size: 20px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
  }

  .section.contact .container {
    overflow: visible;
  }

  .hero { min-height: auto; padding-top: 72px; }
  .hero { overflow: hidden; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 50px 0 30px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    max-width: 100%;
  }
  .hero__content {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
  }
  .hero__right { display: none; }
  .hero__h1 {
    font-size: 24px;
    line-height: 1.25;
    hyphens: none;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .hero__desc {
    font-size: 14px;
    padding-right: 16px;
  }
  .hero__tag { font-size: 10px; word-wrap: break-word; white-space: normal; }
  .hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 20px;
  }

  .hero__actions .btn {
    display: block;
    width: calc(100% - 40px);
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
  }

  .hero__nums {
    flex-wrap: wrap;
    gap: 16px 24px;
    padding-right: 20px;
  }
  .hero__num b { font-size: 28px; }
  .geo { display: none; }
  .hero__canvas { display: none; }
  .orb { display: none; }

  .ticker {
    max-width: 100vw;
    overflow: hidden;
  }

  .ticker__track {
    max-width: none;
  }

  .section { padding: 70px 0; }
  .section__head { margin-bottom: 36px; }

  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .prog__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .results__row { flex-direction: column; }
  .cases {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .case { width: 100%; }
  .reviews__grid { grid-template-columns: 1fr; }
  .about__expertise { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom .container { flex-direction: column; gap: 6px; text-align: center; }
  .contact__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .contact__form {
    width: 100%;
    box-sizing: border-box;
  }
  .field-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .field { width: 100%; }
  .field input,
  .field textarea {
    width: 100%;
    box-sizing: border-box;
  }
  .contact__geo {
    flex-direction: column;
    gap: 8px;
  }
  .modal__header { padding: 24px; }
  .modal__col { padding: 24px; }

  .modal__box {
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 20px;
    margin: 5vh auto;
    box-sizing: border-box;
    border-radius: 12px;
  }
  .modal__body h3 { font-size: 20px; }
  .modal__body p { font-size: 14px; }
  .modal__tag {
    font-size: 12px;
    word-wrap: break-word;
  }

  .contact-method-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .other-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .other-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 32px; letter-spacing: -1px; }
  .section__head h2 { font-size: 26px; }
  .results__big-num b { font-size: 42px; }
}

/* ============================================================
   RESPONSIVE GRID FIXES (Pain / Programs / How)
   ============================================================ */
@media (max-width: 1024px) {
  .prog__grid { grid-template-columns: repeat(3, 1fr); }
  .prog__card:first-child { grid-column: span 3; }
}

@media (max-width: 860px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .pain__card--cta { grid-column: span 2; }
  .prog__grid { grid-template-columns: repeat(2, 1fr); }
  .prog__card:first-child { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .pain__grid { grid-template-columns: 1fr; }
  .pain__card--cta { grid-column: span 1; }
  .prog__grid { grid-template-columns: 1fr; }
  .prog__card:first-child { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  .nav {
    position: static;
    right: auto;
    width: auto;
    max-width: none;
    height: auto;
    flex-direction: row;
    padding: 0;
    background: none;
  }
}

/* ==================== TRUST STRIP ==================== */
.trust {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.15);
}
.trust__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__label {
  font-size: 13px;
  opacity: .45;
  white-space: nowrap;
}
.trust__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__item {
  font-size: 14px;
  opacity: .65;
  white-space: nowrap;
  letter-spacing: .02em;
}
@media (max-width: 600px) {
  .trust__inner { flex-direction: column; gap: 10px; }
  .trust__items { gap: 12px; }
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
