/* Переменные для цветовой палитры */
:root {
  --black: #0a0a0a;
  --white: #f5f3ee;
  --accent: #ff4d00;
  --accent2: #ffb800;
  --gray: #1a1a1a;
  --gray2: #2a2a2a;
  --muted: #888;
}

/* Базовый сброс стилей */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ================= NAV (Навигация) ================= */
nav {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
}

.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span { 
  color: var(--accent); 
}

.nav-cta {
  background: var(--accent);
  color: white;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { 
  background: #e04000; 
}

/* ================= HERO (Главный экран) ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 77, 0, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255, 184, 0, 0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 1280px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 77, 0, 0.4);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-badge::before {
  content: '';
  width: 6px; 
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero h1 .accent { color: var(--accent); }
.hero h1 .accent2 { color: var(--accent2); }

.hero-text {
  max-width: 780px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.65);
  max-width: 550px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #e04000;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.btn-ghost:hover { 
  opacity: 1; 
  text-decoration: underline; 
}

/* ================= STATS BAR (Блок с цифрами) ================= */
.stats-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  padding: 0 48px;
}

.stat-item {
  flex: 1;
  padding: 40px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 48px;
  padding-left: 48px;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ================= HOW IT WORKS (Как это работает) ================= */
.section {
  padding: 120px 48px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 64px;
  max-width: 600px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
}

.step {
  background: var(--gray);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}

.step:hover { background: var(--gray2); }

.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 77, 0, 0.1);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -4px;
}

.step h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step p {
  font-size: 14px;
  color: rgba(245, 243, 238, 0.6);
  line-height: 1.7;
}

/* ================= TIERS (Тарифы/Условия) ================= */
.tiers-section {
  padding: 120px 48px;
  background: var(--gray);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
}

.tier {
  background: var(--black);
  padding: 56px 40px;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}

.tier:hover { 
  background: #111;
}

.tier.featured {
  background: var(--accent);
  color: white;
}

.tier.featured:hover {
  background: #e04000;
}

.tier-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
}

.tier.featured .tier-tag { color: rgba(255, 255, 255, 0.8); }

.tier-range {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: rgba(245, 243, 238, 0.6);
}

.tier.featured .tier-range { color: rgba(255, 255, 255, 0.9); }

.tier-percent {
  font-family: 'Unbounded', sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 32px;
  color: var(--white);
}

.tier.featured .tier-percent { color: white; }

.tier-percent span {
  font-size: 36px;
  letter-spacing: -1px;
  color: var(--accent);
}

.tier.featured .tier-percent span { color: rgba(255, 255, 255, 0.8); }

.tier-income {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 243, 238, 0.6);
}

.tier.featured .tier-income { color: rgba(255, 255, 255, 0.9); }

.tier-income strong {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.tier.featured .tier-income strong { color: white; }

.tier-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 32px 0;
}

.tier.featured .tier-divider { background: rgba(255, 255, 255, 0.25); }

.tier-example {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.tier.featured .tier-example { color: rgba(255, 255, 255, 0.8); }

/* ================= WHO (Кому подходит) ================= */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
}

.who-item {
  background: var(--gray);
  padding: 48px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.3s;
}

.who-item:hover { background: var(--gray2); }

.who-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.who-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.who-item p {
  font-size: 14px;
  color: rgba(245, 243, 238, 0.6);
  line-height: 1.7;
}

/* ================= CTA (Призыв к действию) ================= */
.cta-section {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 77, 0, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  color: rgba(245, 243, 238, 0.6);
  margin-bottom: 48px;
  position: relative;
}

.cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  position: relative;
}

/* ================= FOOTER MODERN (Адаптирован под Partners) ================= */
  .modern-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: var(--black);
    padding: 80px 48px 40px;
  }

  .footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 60px;
  }

  .footer-cta h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -1px;
  }

  .footer-cta p {
    color: rgba(245,243,238,0.6);
    font-size: 16px;
  }

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

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .footer-col .nav-logo {
    font-size: 24px;
    display: inline-block;
    margin-bottom: 20px;
  }

  .footer-col h6 {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
  }

  .footer-col p {
    color: rgba(245,243,238,0.6);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 14px;
  }

  .footer-col ul li a {
    color: rgba(245,243,238,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: var(--accent);
  }

  .astana-logo {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
  }

  .tips-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(245,243,238,0.6) !important;
  }
  
  .tips-link:hover { color: var(--white) !important; }
  .tips-link strong { color: var(--accent); font-weight: 800; font-family: 'Unbounded', sans-serif;}
  
  .badge {
    background: var(--gray2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
  }

  .social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }

  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray2);
    color: rgba(245,243,238,0.6);
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
  }

  .social-btn.wa:hover { background: #25D366; color: white; }
  .social-btn.ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(245,243,238,0.6);
    font-size: 13px;
    line-height: 1.5;
  }

  .contact-info-item i { margin-top: 3px; }

  .footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(245,243,238,0.5);
    font-size: 12px;
  }

  /* Адаптация футера для мобилок */
  @media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  
  @media (max-width: 768px) {
    .modern-footer { padding: 60px 24px 30px; }
    .footer-cta { flex-direction: column; text-align: left; gap: 24px; align-items: flex-start; }
    .footer-cta-actions { flex-direction: column; width: 100%; }
    .footer-cta-actions a { width: 100%; text-align: center; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  }