/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #080b09;
  --bg2:     #0c0f0d;
  --bg3:     #141a16;
  --card:    #111410;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text:    rgba(255,255,255,0.92);
  --text2:   rgba(255,255,255,0.5);
  --text3:   rgba(255,255,255,0.3);
  --accent:  #5a7f56;
  --green:   #47704a;
  --cyan:    #7aaa7e;
  --radius:  12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 0 1px rgba(90,127,86,0.3), 0 4px 20px rgba(90,127,86,0.2);
}
.btn--primary:hover {
  background: #6e9e6a;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(90,127,86,0.5), 0 8px 32px rgba(90,127,86,0.3);
}

.btn--outline {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(90,127,86,0.3);
  color: var(--accent);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 0 1px rgba(90,127,86,0.3), 0 2px 12px rgba(90,127,86,0.15);
}
.btn--sm:hover {
  background: #6e9e6a;
  box-shadow: 0 0 0 1px rgba(90,127,86,0.5), 0 4px 20px rgba(90,127,86,0.25);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 17px;
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 0 1px rgba(90,127,86,0.3), 0 4px 20px rgba(90,127,86,0.2);
}
.btn--lg:hover {
  background: #6e9e6a;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(90,127,86,0.5), 0 8px 32px rgba(90,127,86,0.3);
}

.btn--full { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}
.logo-accent { color: var(--accent); }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

/* Grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Primary glow — top center */
  background:
    radial-gradient(ellipse 70% 55% at 25% 45%, rgba(90,127,86,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 80% 25%, rgba(122,170,126,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(90,127,86,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
  padding: 24px 32px 120px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(90,127,86,0.25);
  background: rgba(90,127,86,0.06);
  color: var(--accent);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero__accent { color: var(--accent); }

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn--ghost {
  background: transparent;
  color: var(--text2);
  border: none;
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
}
.btn--ghost:hover { color: var(--text); }

/* ===== HERO STATS ===== */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Top rim highlight */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

.stat-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.stat-card__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.45;
}

.hero__dots {
  position: absolute;
  bottom: 86px;
  right: 10%;
  display: flex;
  gap: 12px;
  z-index: 2;
}

/* ===== STAT CARD ACCENT ===== */
.stat-card--accent {
  border-color: rgba(90,127,86,0.2);
  background: linear-gradient(135deg, rgba(90,127,86,0.05) 0%, rgba(20,20,22,0.8) 60%);
}
.stat-card--accent::before {
  background: linear-gradient(90deg, transparent, rgba(90,127,86,0.2), transparent);
}
.stat-card--accent .stat-card__num { color: var(--accent); }

/* ===== HOW IT WORKS ===== */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.how-step {
  padding: 0 40px 0 0;
  position: relative;
}

.how-step__num {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
  opacity: 0.9;
}

.how-step__line {
  position: absolute;
  top: 32px;
  right: 0;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--border2), transparent);
}
.how-step__line.last { display: none; }

.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.how-step p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}

/* ===== CASE BLOCK ===== */
.case-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}

/* Top rim */
.case-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71,112,74,0.25), transparent);
  pointer-events: none;
}

.case-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 0% 50%, rgba(71,112,74,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.case-block__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(71,112,74,0.3);
  background: rgba(71,112,74,0.06);
  color: var(--green);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.case-block__title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.case-block__desc {
  color: var(--text2);
  font-size: 15px;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.case-block__funnel {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.funnel-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  min-width: 120px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.funnel-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.funnel-step--accent {
  border-color: rgba(90,127,86,0.25);
  background: rgba(90,127,86,0.04);
}

.funnel-step--accent::before {
  background: linear-gradient(90deg, transparent, rgba(90,127,86,0.25), transparent);
}

.funnel-step__order {
  display: none;
  font-size: 10px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.funnel-step__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.funnel-step--accent .funnel-step__num { color: var(--accent); }

.funnel-step__label {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.4;
}

.funnel-arrow {
  font-size: 18px;
  color: var(--text3);
  flex-shrink: 0;
}

.case-block__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text2);
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

/* Top rim on all pricing cards */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

.pricing-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.pricing-card--featured {
  border-color: rgba(90,127,86,0.3);
  background: linear-gradient(160deg, rgba(90,127,86,0.06) 0%, rgba(8,14,10,0.6) 50%, rgba(6,10,7,0.4) 100%);
}

.pricing-card--featured::before {
  background: linear-gradient(90deg, transparent, rgba(90,127,86,0.35), transparent);
}

.pricing-card--featured:hover {
  border-color: rgba(90,127,86,0.5);
  box-shadow: 0 0 0 1px rgba(90,127,86,0.1), 0 16px 48px rgba(90,127,86,0.08);
}

.pricing-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 16px;
  border-radius: 40px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-card__price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.pricing-option__value {
  color: var(--accent) !important;
}

.pricing-card__per {
  font-size: 14px;
  color: var(--text2);
  margin-top: -10px;
}

.pricing-card__note {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(90,127,86,0.04);
  border-radius: 8px;
  border-left: 2px solid rgba(90,127,86,0.4);
}

.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card__list li {
  font-size: 14px;
  color: var(--text2);
  padding-left: 20px;
  position: relative;
}

.pricing-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Pricing options (for база) */
.pricing-card__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-option {
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 3px 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.pricing-option--highlight {
  border-color: rgba(90,127,86,0.2);
  background: rgba(90,127,86,0.04);
}

.pricing-option__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  grid-row: 1 / 3;
  align-self: center;
}

.pricing-option__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
  grid-column: 2;
  grid-row: 1;
  line-height: 1.2;
}

.pricing-option__desc {
  font-size: 11px;
  color: var(--text2);
  grid-column: 2;
  grid-row: 2;
  line-height: 1.3;
}

.pricing-card__sub {
  font-size: 12px;
  color: var(--text3);
  text-align: center;
  margin-top: 6px;
}

/* ===== CTA SECTION ===== */
.cta-section { padding: 96px 0; }

.cta-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Top rim */
.cta-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90,127,86,0.3), transparent);
  pointer-events: none;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(90,127,86,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.cta-block__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.cta-block__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.cta-block__sub {
  color: var(--text2);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ===== DOTS ===== */
.dot {
  display: block;
  border-radius: 50%;
}
.dot--yellow { width: 10px; height: 10px; background: var(--accent); filter: blur(1px); box-shadow: 0 0 8px rgba(90,127,86,0.6); }
.dot--green  { width: 7px;  height: 7px;  background: var(--green); margin-top: 8px; box-shadow: 0 0 6px rgba(71,112,74,0.5); }
.dot--cyan   { width: 12px; height: 12px; background: var(--cyan); filter: blur(2px); margin-top: -4px; box-shadow: 0 0 8px rgba(122,170,126,0.5); }

/* ===== FORM (legacy, kept for modal) ===== */
.form-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-card__title { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.form-card__note { font-size: 12px; color: var(--text2); margin-top: 12px; line-height: 1.5; }

.form { display: flex; flex-direction: column; gap: 12px; }
.form input, .form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  resize: none;
}
.form input::placeholder, .form textarea::placeholder { color: var(--text3); }
.form input:focus, .form textarea:focus { border-color: rgba(90,127,86,0.5); }

/* ===== SECTIONS ===== */
.section { padding: 104px 0; }

.section--dark { background: var(--bg2); }

.section__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  text-align: center;
}

.section__sub {
  color: var(--text2);
  font-size: 17px;
  text-align: center;
  margin-bottom: 64px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== SERVICES (legacy) ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.service-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}

.service-card--accent {
  border-color: rgba(90,127,86,0.25);
  background: linear-gradient(135deg, rgba(90,127,86,0.06) 0%, rgba(8,14,10,0.5) 60%);
}

.service-card--accent::before {
  background: linear-gradient(90deg, transparent, rgba(90,127,86,0.25), transparent);
}

.service-card--accent:hover { border-color: rgba(90,127,86,0.4); }

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card__icon { font-size: 32px; margin-bottom: 16px; }

.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.service-card p { color: var(--text2); font-size: 15px; margin-bottom: 16px; line-height: 1.65; }

.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li { font-size: 14px; color: var(--text2); padding-left: 18px; position: relative; }
.service-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 12px; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__copy {
  color: var(--text3);
  font-size: 13px;
  margin-left: auto;
  line-height: 1.6;
}

.footer__tg {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.footer__tg:hover { text-decoration: underline; }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal__box {
  background: #141416;
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.modal__box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71,112,74,0.4), transparent);
}

.modal__icon { font-size: 48px; color: var(--green); margin-bottom: 20px; }
.modal__box h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.03em; }
.modal__box p { color: var(--text2); margin-bottom: 28px; font-size: 15px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid,
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .how__grid { grid-template-columns: 1fr; gap: 40px; }
  .how-step { padding: 0; border-top: 1px solid var(--border); padding-top: 32px; }
  .how-step__line { display: none; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 140px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav { display: none; }

  .hero__title { font-size: 30px; }
  .hero__inner {
    padding: 0 20px 40px;
    text-align: center;
    justify-items: center;
  }
  .hero__badge { align-self: center; margin-top: 28px; margin-bottom: 20px; }
  .hero__title { margin-bottom: 20px; }
  .hero__sub { margin-left: auto; margin-right: auto; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { display: none; }
  .hero { min-height: 100vh; height: auto; padding-top: 64px; padding-bottom: 0; align-items: flex-start; }
  .hero__dots { bottom: 130px; }
  .header__inner .btn--sm { margin-left: auto; }

  .cta-block { padding: 48px 24px; }
  .case-block { padding: 36px 24px; }

  .section { padding: 72px 0; }

  .case-block__funnel { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .funnel-arrow { display: none; }
  .funnel-step { min-width: 0; padding: 16px 18px; }
  .funnel-step__order { display: block; }
}
