/* ── CLICK73 — styles.css ──────────────────────────── */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9C7A32;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #222222;
  --dark-4: #2A2A2A;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,0.7);
  --white-faint: rgba(255,255,255,0.08);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ─────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%,-50%);
  transition: transform .1s;
}
.cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.5);
  transform: translate(-50%,-50%);
  transition: transform .15s ease, width .3s, height .3s, opacity .3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 54px; height: 54px; opacity: .4;
}

/* ── Grain overlay ─────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

/* ── Typography ────────────────────────────────── */
.font-display { font-family: 'Unbounded', sans-serif; }

/* ── NAV ───────────────────────────────────────── */
nav {
  top: 0; left: 0; right: 0; z-index: 103;
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(17,17,17,.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  transition: padding .3s;
}
nav.scrolled { padding: 14px 60px; background: rgba(17,17,17,.97); }

/* ── NAV LOGO ──────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 10px 24px; border-radius: 40px; font-weight: 600;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ── HAMBURGER ─────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 102;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CLICK73 brand name: всегда Segoe UI/Tahoma ── */
.brand-click73 {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
}
.brand-click73 .brand-num {
  color: var(--gold);
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,.06) 0%, transparent 60%),
              var(--dark);
}

/* ── Hero shutter: лепестки как в логотипе ─────── */
.hero-shutter {
  position: absolute; z-index: 0;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: .04;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold); opacity: .5;
}

.hero-title {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900; line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s .35s forwards;
}
.hero-title span { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px); font-weight: 300; line-height: 1.6;
  color: var(--white-dim); max-width: 620px; margin: 0 auto 48px;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .65s forwards;
}
.btn-primary {
  font-family: 'Unbounded', sans-serif;
  background: var(--gold); color: var(--dark);
  padding: 18px 40px; border-radius: 50px; border: none;
  font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 40px rgba(201,168,76,.3);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(201,168,76,.4);
}
.btn-outline {
  font-family: 'Unbounded', sans-serif;
  background: transparent; color: var(--white);
  padding: 18px 40px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-stats {
  display: flex; gap: 60px; justify-content: center; margin-top: 80px;
  opacity: 0; animation: fadeUp .8s .8s forwards;
  margin-bottom: 65px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 900; color: var(--gold);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 12px; color: var(--white-dim); letter-spacing: .08em;
  text-transform: uppercase; margin-top: 6px; display: block;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px;
  left: 0; right: 0; margin: 0 auto;
  width: fit-content; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp .6s 1.2s forwards;
}
.scroll-indicator span { font-size: 10px; letter-spacing: .15em; color: var(--white-dim); text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.6); opacity: .4; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SECTION SHARED ────────────────────────────── */
section { position: relative; z-index: 2; }

.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-desc {
  font-size: 17px; line-height: 1.7; color: var(--white-dim); max-width: 540px;
}

/* ── MARQUEE ───────────────────────────────────── */
.marquee-wrap {
  padding: 28px 0; border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  overflow: hidden; background: var(--dark-2);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 40px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white-dim);
}
.marquee-dot { color: var(--gold); font-size: 20px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── TAGLINE SECTION ───────────────────────────── */
.tagline-section { padding: 100px 0; }
.tagline-text {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 44px); font-weight: 300; line-height: 1.3;
  text-align: center; max-width: 900px; margin: 0 auto;
  color: var(--white-dim);
}
.tagline-text strong { color: var(--white); font-weight: 700; }
.tagline-text em { color: var(--gold); font-style: normal; }

/* ── FOR OWNER ─────────────────────────────────── */
.owner-section { padding: 100px 0; }
.owner-header { margin-bottom: 70px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--dark-2);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.feature-card:hover { background: var(--dark-3); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 64px; font-weight: 900; line-height: 1;
  color: rgba(201,168,76,.08); display: block;
  margin-bottom: 16px;
  transition: color .3s;
}
.feature-card:hover .feature-num { color: rgba(201,168,76,.15); }

.feature-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  background: rgba(201,168,76,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: background .3s;
}
.feature-card:hover .feature-icon { background: rgba(201,168,76,.2); }

.feature-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px; font-weight: 600; line-height: 1.3;
  margin-bottom: 14px;
}
.feature-desc {
  font-size: 14px; line-height: 1.7; color: var(--white-dim);
}

/* ── DIVIDER ───────────────────────────────────── */
.divider-gold {
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto; max-width: 800px;
  opacity: .3;
}

/* ── FOR CLIENT ────────────────────────────────── */
.client-section { padding: 100px 0; }
.client-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.client-header { margin-bottom: 50px; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  transition: padding-left .3s;
}
.step:hover { padding-left: 8px; }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px; font-weight: 900; color: var(--gold);
  opacity: .3; min-width: 42px; line-height: 1;
  transition: opacity .3s;
}
.step:hover .step-num { opacity: .7; }
.step-body {}
.step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px; font-weight: 600; margin-bottom: 8px; line-height: 1.3;
}
.step-desc { font-size: 14px; line-height: 1.7; color: var(--white-dim); }

/* Client benefits */
.client-benefits { display: flex; flex-direction: column; gap: 20px; }
.benefit-pill {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--dark-2); border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.04);
  transition: border-color .3s, transform .3s;
}
.benefit-pill:hover { border-color: rgba(201,168,76,.3); transform: translateX(8px); }
.benefit-icon {
  font-size: 24px; min-width: 36px; margin-top: 2px;
}
.benefit-text {}
.benefit-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.benefit-desc { font-size: 13px; line-height: 1.6; color: var(--white-dim); }

/* ── FREE BANNER ───────────────────────────────── */
.free-section { padding: 80px 0; }
.free-banner {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 24px; padding: 70px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.free-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
}
.free-banner-left { position: relative; z-index: 1; }
.free-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  border-radius: 40px; padding: 8px 18px; margin-bottom: 20px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  font-weight: 600;
}
.free-banner-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 900; line-height: 1.2;
  margin-bottom: 14px;
}
.free-banner-title span { color: var(--gold); }
.free-banner-desc {
  font-size: 16px; color: var(--white-dim); line-height: 1.6; max-width: 440px;
}
.free-banner-right { position: relative; z-index: 1; flex-shrink: 0; }
.free-price {
  font-family: 'Unbounded', sans-serif;
  text-align: center;
}
.free-price-amount {
  font-size: 80px; font-weight: 900; color: var(--gold); line-height: 1; display: block;
}
.free-price-label { font-size: 13px; color: var(--white-dim); letter-spacing: .1em; text-transform: uppercase; }

/* ── HOW IT WORKS ──────────────────────────────── */
.how-section { padding: 100px 0; background: var(--dark-2); }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 70px; position: relative;
}
.how-steps::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.2));
  z-index: 0;
}
.how-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.how-step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--dark-3); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 26px;
  position: relative;
  transition: background .3s, box-shadow .3s;
}
.how-step:hover .how-step-circle {
  background: rgba(201,168,76,.15);
  box-shadow: 0 0 30px rgba(201,168,76,.3);
}
.how-step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px; font-weight: 600; margin-bottom: 10px; line-height: 1.3;
}
.how-step-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; }

/* ── TESTIMONIAL ───────────────────────────────── */
.quote-section { padding: 100px 0; }
.quote-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.quote-mark { font-size: 96px; color: var(--gold); opacity: .2; line-height: 1; font-family: Georgia, serif; }
.quote-text {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px); font-weight: 300; line-height: 1.4;
  margin: -20px 0 36px;
}
.quote-text em { color: var(--gold); font-style: normal; font-weight: 700; }
.quote-author { font-size: 13px; color: var(--white-dim); letter-spacing: .1em; text-transform: uppercase; }

/* ── CTA BOTTOM ────────────────────────────────── */
.cta-section { padding: 20px 0; text-align: center; }
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 5vw, 64px); font-weight: 900; line-height: 1.1;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.cta-title em { color: var(--gold); font-style: normal; }
.cta-desc {
  font-size: 18px; color: var(--white-dim); margin-bottom: 48px; position: relative; z-index: 1;
}
.cta-url {
  display: inline-block; font-family: 'Unbounded', sans-serif;
  font-size: 13px; color: var(--gold); letter-spacing: .12em;
  text-transform: uppercase; margin-top: 32px;
  border-bottom: 1px solid rgba(201,168,76,.4); padding-bottom: 4px;
  text-decoration: none; position: relative; z-index: 1;
  transition: border-color .2s;
}
.cta-url:hover { border-color: var(--gold); }

/* ── REGISTRATION FORM ─────────────────────────── */
.reg-wrap {
  max-width: 560px;
  margin: 72px auto 0;
}

.reg-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 24px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.reg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.reg-card-header {
  text-align: center;
  margin-bottom: 36px;
}
.reg-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700; line-height: 1.2;
  margin: 8px 0 12px;
}
.reg-card-title em { color: var(--gold); font-style: normal; }
.reg-card-subtitle {
  font-size: 14px; line-height: 1.6;
  color: var(--white-dim);
}

.reg-field { margin-bottom: 14px; }

.reg-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.reg-input::placeholder { color: rgba(255,255,255,.3); }
.reg-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.reg-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.reg-select option {
  background: #222;
  color: var(--white);
}

.pw-strength-wrap {
  height: 3px;
  background: rgba(255,255,255,.07);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.pw-strength-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width .3s, background-color .3s;
}
.pw-s1 { background-color: #e53e3e; }
.pw-s2 { background-color: #ed8936; }
.pw-s3 { background-color: #48bb78; }
.pw-s4 { background-color: var(--gold); }

.pw-strength-msg {
  font-size: 12px;
  margin-top: 5px;
  min-height: 16px;
  color: rgba(255,255,255,.4);
}
.pw-msg-ok   { color: #68d391; }
.pw-msg-warn { color: #ed8936; }

.reg-error-banner {
  display: none;
  background: rgba(229,62,62,.1);
  border: 1px solid rgba(229,62,62,.3);
  border-radius: 10px;
  color: #fc8181;
  font-size: 14px;
  padding: 12px 16px;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}
.reg-error-banner.show { display: block; }

.reg-form-footer {
  margin-top: 24px;
}
.reg-submit-btn {
  width: 100%;
  font-size: 14px;
}
.reg-submit-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.reg-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.reg-success-icon {
  font-size: 64px;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  animation: goldPulse 2.5s ease-in-out infinite;
}
@keyframes goldPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .35; }
}
.reg-success-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700; margin-bottom: 12px;
}
.reg-success-desc {
  color: var(--white-dim);
  font-size: 16px; line-height: 1.6;
}

@media (max-width: 900px) {
  .reg-card { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .reg-card { padding: 28px 20px; }
  .reg-wrap { margin-top: 52px; }
}

/* ── FOOTER ────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--dark-2); z-index: 2; position: relative;
}
.footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.75;
  display: block;
}
.footer-text { font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: .05em; }

/* ── PARTICLES ─────────────────────────────────── */
.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px; height: 2px; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: particleFade var(--dur, 6s) var(--delay, 0s) infinite;
}
@keyframes particleFade {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: var(--op, 0.4); }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

/* ── REVEAL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


.section-desc a, .feature-desc a {
    color: var(--gold);
}

/* ── MOBILE ────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
    /* backdrop-filter создаёт containing block для position:fixed потомков —
       из-за него overlay меню прибивался к полоске nav, а не к viewport. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(17,17,17,.97);
  }
  nav.scrolled { padding: 12px 20px; }

  .nav-logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 60px);
    overflow: hidden;
  }
  .nav-logo img {
    height: 46px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  /* Гамбургер виден, ссылки скрыты */
  .nav-hamburger {
    position: fixed;
    right: 120px;
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    align-items: center;
  }
  .nav-links { display: none; }

  /* Оверлей — только когда открыт */
  .nav-links.open {
    width: 70%;
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,.97);
    flex-direction: column;
    gap: 14px;
    z-index: 102;
    list-style: none;
    padding: 80px 28px 40px;
    margin: 0;
    overflow-y: auto;
  }
  .nav-links.open li {
    width: 100%;
  }
  .nav-links.open a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    letter-spacing: .08em;
    color: var(--white);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    transition: background .2s, border-color .2s, color .2s;
  }
  .nav-links.open a:hover {
    color: var(--gold);
    background: rgba(201,168,76,.08);
    border-color: rgba(201,168,76,.45);
  }
  .nav-links.open .nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    border-color: var(--gold);
    padding: 16px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
  }
  .nav-links.open .nav-cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
  }

  .section-inner { padding: 0 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .client-layout { grid-template-columns: 1fr; gap: 50px; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .free-banner { flex-direction: column; padding: 40px 32px; text-align: center; }
  .free-banner-desc { max-width: 100%; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { gap: 32px; flex-wrap: wrap; justify-content: center; }
  body { cursor: auto; }
  .cursor { display: none; }
}
@media (max-width: 600px) {
  .how-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .hero-stat-num { font-size: 28px; }
}
