/* ===========================
   LEADFLOW — MAIN STYLESHEET
   =========================== */

:root {
  --bg:        #0A0F1E;
  --bg2:       #111827;
  --bg3:       #1a2235;
  --primary:   #4F8EF7;
  --accent:    #00E5B4;
  --white:     #FFFFFF;
  --gray:      #8892A4;
  --border:    rgba(255,255,255,0.08);
  --card:      rgba(255,255,255,0.04);
  --glow:      rgba(79,142,247,0.15);
  --glow2:     rgba(0,229,180,0.1);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(0,229,180,0.3);
}
.btn--primary:hover {
  background: #00ffcc;
  box-shadow: 0 0 36px rgba(0,229,180,0.5);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--glow);
}

.btn--lg { padding: 18px 40px; font-size: 18px; }
.btn--full { width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-right: auto;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__cta { font-size: 14px; padding: 10px 22px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  overflow: hidden;
}
.hero__orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,142,247,0.2), transparent 70%);
  top: -100px; right: -50px;
  max-width: 50vw;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,229,180,0.12), transparent 70%);
  bottom: 0; left: -50px;
  max-width: 50vw;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero__title span { color: var(--accent); }
.hero__sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.stat__label {
  display: block;
  font-size: 13px;
  color: var(--gray);
}
.stat__div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO VISUAL */
.hero__visual {
  position: relative;
  height: 500px;
}
.hero__screen {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.screen__bar {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.screen__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.screen__bar span:first-child { background: #ff5f57; }
.screen__bar span:nth-child(2) { background: #ffbd2e; }
.screen__bar span:nth-child(3) { background: #28ca41; }
.screen__content { padding: 20px; }
.screen__line {
  height: 8px;
  background: var(--bg3);
  border-radius: 4px;
  margin-bottom: 10px;
}
.screen__line--blue { background: rgba(79,142,247,0.3); width: 70%; }
.screen__line--short { width: 45%; }
.screen__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin: 16px 0 12px;
}
.bar {
  flex: 1;
  background: var(--bg3);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}
.bar--accent { background: var(--accent); }
.screen__label {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}
.flow-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: float 3s ease-in-out infinite;
  min-width: 200px;
}
.flow-card--1 { top: 40px; left: 0; animation-delay: 0s; }
.flow-card--2 { top: 180px; right: 0; animation-delay: 1s; }
.flow-card--3 { bottom: 80px; left: 0; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.flow-card__icon { font-size: 20px; }
.flow-card__text strong { display: block; font-size: 13px; font-weight: 600; }
.flow-card__text span { font-size: 12px; color: var(--gray); }
.flow-card__status {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-left: auto;
  animation: pulse 2s infinite;
}
.flow-card__status--green { background: var(--accent); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section__header p:not(.section__tag) {
  color: var(--gray);
  font-size: 18px;
}

/* ===== PROBLEMS ===== */
.problems { background: var(--bg2); }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}
.problem-card:hover {
  border-color: rgba(79,142,247,0.3);
  transform: translateY(-4px);
}
.problem-card__icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.problems__solution {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
.solution__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  max-width: 200px;
}
.solution__text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

/* ===== WHAT ===== */
.what__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.what__text .section__title { font-size: clamp(28px, 3.5vw, 44px); }
.what__body { color: var(--gray); margin-bottom: 20px; line-height: 1.75; }
.what__text .btn { margin-top: 8px; }
.feature {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.feature:first-child { border-top: 1px solid var(--border); }
.feature__num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
  min-width: 28px;
  padding-top: 2px;
}
.feature__body h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature__body p { font-size: 14px; color: var(--gray); }

/* ===== FOR GRID ===== */
.for { background: var(--bg2); }
.for__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.for-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}
.for-card:hover {
  border-color: rgba(0,229,180,0.3);
  background: rgba(0,229,180,0.04);
  transform: translateY(-4px);
}
.for-card__icon { font-size: 32px; margin-bottom: 16px; }
.for-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.for-card p { font-size: 14px; color: var(--gray); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--bg2); }
.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(79,142,247,0.1), rgba(0,229,180,0.05));
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
  overflow: hidden;
}
.cta-box__orb {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,142,247,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  max-width: 80vw;
}
.cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
}
.cta-box p {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 36px;
  position: relative;
}
.cta-box .btn { position: relative; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand .nav__logo { font-size: 20px; margin-bottom: 8px; }
.footer__brand p { font-size: 14px; color: var(--gray); }
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer__bottom p { font-size: 13px; color: var(--gray); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero__sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== HOW IT WORKS — STEPS ===== */
.step {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.step--reverse {
  grid-template-columns: 60px 1fr 1fr;
  direction: rtl;
}
.step--reverse > * { direction: ltr; }
.step__num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
}
.step__content h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.step__content p { color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.step__list { display: flex; flex-direction: column; gap: 8px; }
.step__list li {
  font-size: 14px;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
}
.step__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.step__arrow {
  text-align: center;
  font-size: 32px;
  color: var(--primary);
  opacity: 0.4;
  padding: 8px 0;
}
.step-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.step-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.step-card__line {
  height: 8px;
  background: var(--bg3);
  border-radius: 4px;
  margin-bottom: 10px;
}
.step-card__line--short { width: 60%; }
.step-card__tag {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
}
.step-card__tag--green { color: var(--accent); }
.step-card__video {
  background: var(--bg3);
  border-radius: 10px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
}
.step-card__play {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.step-card__platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}
.step-card__platforms span {
  padding: 4px 12px;
  background: var(--bg3);
  border-radius: 100px;
  font-size: 12px;
  color: var(--gray);
}
.dm { padding: 10px 14px; border-radius: 10px; font-size: 13px; margin: 6px 0; }
.dm--in { background: var(--bg3); color: var(--gray); }
.dm--out { background: rgba(79,142,247,0.15); color: var(--primary); text-align: right; }
.step-card__dm { margin: 12px 0; }
.step-card__revenue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg3);
  border-radius: 10px;
  padding: 16px;
  margin: 12px 0;
}
.revenue__label { font-size: 13px; color: var(--gray); }
.revenue__amount {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.step-card__loop { display: flex; justify-content: center; margin: 16px 0; }
.loop__circle {
  width: 80px; height: 80px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  animation: spin 4s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== MULTI CLIENT ===== */
.multi { background: var(--bg2); }
.multi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.multi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}
.multi-card:hover { border-color: rgba(79,142,247,0.3); }
.multi-card--core {
  border-color: rgba(79,142,247,0.4);
  background: rgba(79,142,247,0.08);
  grid-column: 2 / 4;
}
.multi-card--add {
  border-style: dashed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.multi-card--add:hover { border-color: var(--accent); background: rgba(0,229,180,0.05); }
.multi-card__label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.multi-card__niche { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.multi-card__status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0,229,180,0.1);
  color: var(--accent);
}
.multi-card__status.active { background: rgba(0,229,180,0.15); }
.multi-card__plus { font-size: 32px; color: var(--accent); margin-bottom: 8px; }

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); }
.price-card--featured {
  border-color: var(--primary);
  background: rgba(79,142,247,0.06);
  box-shadow: 0 0 40px rgba(79,142,247,0.15);
}
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card__header h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-card__header p { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price__currency { font-size: 24px; font-weight: 700; color: var(--gray); }
.price__amount {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}
.price__period { font-size: 16px; color: var(--gray); }
.price-card__type { font-size: 13px; color: var(--accent); margin-bottom: 28px; }
.price-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-card__features li { font-size: 14px; color: var(--gray); }
.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ===== FAQ ===== */
.faq { background: var(--bg2); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq__q:hover { color: var(--primary); }
.faq__q::after { content: '+'; font-size: 24px; color: var(--primary); flex-shrink: 0; }
.faq__q.open::after { content: '−'; }
.faq__a {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  padding-bottom: 24px;
  display: none;
}
.faq__a.open { display: block; }

/* ===== REGISTER ===== */
.register-section {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.register__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.register__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.register__sub { color: var(--gray); font-size: 17px; line-height: 1.7; margin-bottom: 40px; }
.register__steps { display: flex; flex-direction: column; gap: 24px; }
.reg-step { display: flex; gap: 16px; align-items: flex-start; }
.reg-step__num {
  width: 36px; height: 36px;
  background: rgba(79,142,247,0.15);
  border: 1px solid rgba(79,142,247,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.reg-step__text strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.reg-step__text span { font-size: 14px; color: var(--gray); }

/* FORM */
.register__form-wrap, .contact__form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.register__form h3, .register__form h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(79,142,247,0.05);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg2); }
.form__note { font-size: 13px; color: var(--gray); text-align: center; margin-top: 16px; }

/* ===== CONTACT ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact__info p { color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.contact__items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon { font-size: 24px; }
.contact__item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.contact__item span { font-size: 14px; color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .what__inner { grid-template-columns: 1fr; gap: 48px; }
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
  .for__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .multi__grid { grid-template-columns: repeat(2, 1fr); }
  .multi-card--core { grid-column: 1 / 3; }
  .step { grid-template-columns: 40px 1fr; }
  .step--reverse { grid-template-columns: 40px 1fr; }
  .step__visual { display: none; }
  .register__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* GLOBAL */
  body { overflow-x: hidden; }
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  /* HERO */
  .hero { padding: 100px 0 60px; }
  .hero__title { font-size: 42px; letter-spacing: -1.5px; }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .hero__badge { font-size: 12px; }

  /* GRIDS */
  .problems__grid { grid-template-columns: 1fr; }
  .for__grid { grid-template-columns: 1fr; }
  .multi__grid { grid-template-columns: 1fr; }
  .multi-card--core { grid-column: 1; }

  /* CTA */
  .cta-box { padding: 40px 20px; }
  .cta-box h2 { font-size: 28px; }

  /* FOOTER */
  .footer__inner { flex-direction: column; gap: 24px; }
  .footer__links { flex-wrap: wrap; gap: 16px; }

  /* PRICING */
  .price-card { padding: 32px 20px; }
  .price__amount { font-size: 42px; }

  /* REGISTER & CONTACT */
  .register-section { padding: 100px 0 60px; }
  .register__form-wrap, .contact__form-wrap { padding: 24px 20px; }

  /* PAGE HERO */
  .page-hero { padding: 120px 0 60px; }
  .page-hero__title { font-size: 36px; letter-spacing: -1px; }
  .page-hero__sub { font-size: 15px; }

  /* STEPS */
  .step { grid-template-columns: 32px 1fr; gap: 16px; padding: 32px 0; }
  .step__num { font-size: 32px; }
  .step__content h3 { font-size: 22px; }

  /* SECTION TITLE */
  .section__title { font-size: 28px; letter-spacing: -1px; }

  /* NAV INNER */
  .nav__inner { padding: 0 16px; max-width: 100%; overflow: hidden; }
  .nav { overflow: hidden; width: 100%; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 34px; }
  .section__title { font-size: 24px; }
  .page-hero__title { font-size: 28px; }
}

/* ===== LEGAL PAGES ===== */
.legal-section { max-width: 800px; margin: 0 auto; }
.legal__inner { display: flex; flex-direction: column; gap: 48px; }
.legal__block h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal__block p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}
.legal__block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 14px;
  padding-left: 8px;
}
.legal__block ul li {
  font-size: 15px;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.legal__block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
  opacity: 0.6;
}
.legal__block a { color: var(--primary); text-decoration: underline; }
.legal__block a:hover { color: var(--accent); }

/* PROCESSOR TABLE */
.processor-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
}
.processor-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr 1.2fr;
  gap: 0;
}
.processor-row--header {
  background: var(--bg3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}
.processor-row > div {
  padding: 16px 18px;
  font-size: 14px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 1.5;
}
.processor-row > div:last-child { border-right: none; }
.processor-row:last-child > div { border-bottom: none; }
.processor-row:nth-child(even) { background: rgba(255,255,255,0.02); }
.processor-row strong { color: var(--white); }

@media (max-width: 768px) {
  .processor-row { grid-template-columns: 1fr; }
  .processor-row > div { border-right: none; }
  .processor-row--header { display: none; }
}
