/* Формула лидов — Robokassa-like SaaS/fintech landing */

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

:root {
  --blue: #0b5bff;
  --blue-dark: #0849cc;
  --blue-deep: #0a2f7a;
  --lime: #c6f000;
  --lime-dark: #9bc300;
  --text: #0b1220;
  --muted: #4b5563;
  --bg: #f3f6fb;
  --card: #eef2f8;
  --white: #ffffff;
  --radius-sm: 16px;
  --radius: 22px;
  --radius-xl: 28px;
  --shadow-soft: 0 4px 20px rgba(11, 18, 32, 0.05);
  --shadow-card: 0 12px 32px rgba(11, 18, 32, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ul {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--text);
}

.section-title-left {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}

.section-action {
  text-align: center;
  margin-top: 44px;
}

.section-action.left {
  text-align: left;
}

.light {
  background: var(--bg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, filter .15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-dark);
}

.btn-black {
  background: var(--text);
  color: var(--white);
}

.btn-black:hover {
  background: #1f2937;
}

.btn-lime {
  background: var(--lime);
  color: var(--text);
}

.btn-lime:hover {
  background: #d4ff1a;
}

.btn-hero {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.26);
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 68% 45%, rgba(255,255,255,0.08) 0, transparent 28%),
    linear-gradient(150deg, #075dec 0%, #0753e6 48%, #0041d3 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -220px -140px auto auto;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -18%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 100vh;
  width: 100%;
  max-width: none;
  padding: 40px clamp(24px, 5vw, 64px) 64px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 0 1 480px;
  max-width: 520px;
  padding: 16px 0 24px;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.brand-mark {
  display: inline-flex;
  flex-shrink: 0;
}

.hero-mini {
  font-size: clamp(14px, 1.2vw, 17px);
  opacity: 0.95;
  margin-bottom: 18px;
  max-width: 420px;
  line-height: 1.5;
}

.hero h1 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 22px;
  max-width: 540px;
  letter-spacing: -0.02em;
}

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

.hero-gift {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 16px);
  margin-bottom: 28px;
}

.gift-icon {
  width: 20px;
  height: 20px;
  border: 2px solid var(--lime);
  border-radius: 4px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.gift-icon::before,
.gift-icon::after {
  content: "";
  position: absolute;
  background: var(--lime);
}

.gift-icon::before {
  width: 2px;
  height: 20px;
  left: 7px;
  top: -2px;
}

.gift-icon::after {
  width: 20px;
  height: 2px;
  left: -2px;
  top: 6px;
}

/* Hero visual */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: clamp(440px, 58%, 940px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 0;
}

.hero-person {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 900px;
  aspect-ratio: 390 / 330;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero-person img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  -webkit-mask-image: radial-gradient(ellipse 70% 94% at 55% 55%, #000 42%, transparent 94%);
  mask-image: radial-gradient(ellipse 70% 94% at 55% 55%, #000 42%, transparent 94%);
  filter: drop-shadow(0 24px 46px rgba(0, 25, 92, 0.22));
}

.hero-cards {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 900px;
  aspect-ratio: 390 / 330;
  z-index: 1;
  pointer-events: none;
}

.stat-card {
  position: absolute;
  pointer-events: auto;
  background: var(--white);
  color: var(--text);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(11, 18, 32, 0.16);
}

.stat-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.2;
}

.stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.stat-spark {
  width: 100%;
  height: 24px;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-spark-lime {
  stroke: var(--lime-dark);
}

.stat-ring {
  width: 38px;
  height: 38px;
  align-self: flex-start;
}

.stat-sources {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-sources li {
  display: grid;
  grid-template-columns: 7px 1fr 44px auto;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text);
}

.source-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.source-name {
  font-weight: 600;
}

.source-bar {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.source-bar span {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
}

.source-value {
  font-weight: 700;
  color: var(--muted);
}

.stat-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 30px;
}

.stat-bars span {
  flex: 1;
  background: var(--blue);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}

.stat-bars span:nth-child(odd) {
  opacity: 0.55;
}

.stat-card-tl { top: 13%; left: 0; width: 33.5%; height: 24%; }
.stat-card-tr { top: 12.7%; left: 66.2%; width: 27.9%; height: 28.5%; }
.stat-card-ml { top: 39.7%; left: 0; width: 33.5%; height: 34.5%; }
.stat-card-br { top: 56%; left: 66.2%; width: 27.9%; height: 31.5%; }
.stat-card-bl { bottom: 0; left: 0; width: 33.5%; height: 22.5%; }

/* How we work */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (min-width: 1280px) {
  .steps {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }

  .step {
    padding: 18px 14px 20px;
    gap: 12px;
  }

  .step-top {
    gap: 8px;
  }

  .step-num,
  .step-arrow {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
  }

  .step p {
    font-size: 14px;
    line-height: 1.45;
  }
}

.step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.step-icon {
  color: var(--blue);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.step p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

/* Pricing */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan {
  background: var(--white);
  border: 1px solid #e3e8f0;
  color: var(--text);
  border-radius: var(--radius-xl);
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.plan h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue);
}

.plan-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

.plan-features li {
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  line-height: 1.4;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: var(--lime);
  border-radius: 5px;
}

.plan-features li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid var(--text);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.plan-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.plan-price {
  font-size: 30px;
  font-weight: 800;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.team-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.team-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}

.team-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* Niches */
.niche-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.niche-row {
  display: grid;
  gap: 20px;
}

.niche-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.niche-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.niche-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.niche-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.niche-card h3 {
  font-size: 18px;
  font-weight: 800;
  max-width: 80%;
  line-height: 1.2;
  color: var(--text);
}

.niche-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-top: auto;
}

.niche-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.niche-more {
  background: var(--blue);
  color: var(--white);
  justify-content: center;
}

.niche-more h3 {
  color: var(--white);
  max-width: 100%;
}

.niche-more p {
  font-size: 14px;
  opacity: 0.92;
  line-height: 1.45;
  margin-top: 10px;
}

.niche-more .niche-arrow {
  background: var(--white);
  color: var(--blue);
}

.niche-more-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Cases & Videos */
.cases-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.cases-grid,
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.case-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.case-thumb {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--blue);
}

.case-card p {
  font-size: 15px;
  font-weight: 700;
}

.case-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.case-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.video-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.play-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
}

.video-card p {
  font-size: 15px;
  font-weight: 700;
}

.video-note {
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.4;
  margin-top: auto;
}

/* Promo banner */
.promo-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.promo-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.promo-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.promo-text p {
  opacity: 0.92;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 540px;
}

.promo-visual {
  flex: 0 1 340px;
  position: relative;
  z-index: 1;
}

.promo-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.promo-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pill {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

/* Final CTA */
.cta-final {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  padding: 24px 0;
}

.cta-decor {
  flex: 0 1 180px;
  height: 150px;
  opacity: 0.95;
}

.cta-text {
  text-align: center;
}

.cta-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--lime);
}

.btn-cta {
  font-size: 22px;
  padding: 20px 48px;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--bg);
  padding: 52px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.footer-photo {
  width: 130px;
  height: 130px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blue);
}

.footer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

.footer-info {
  flex: 1 1 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: transform .12s ease, box-shadow .12s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.social-link svg {
  color: var(--blue);
  flex-shrink: 0;
}

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.phone {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 36px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-inner {
    gap: 32px;
  }

  .hero-text {
    flex: 0 1 480px;
  }

  .hero-visual {
    width: clamp(380px, 52%, 720px);
  }

  .stat-card {
    padding: 8px 10px;
    border-radius: 14px;
    gap: 5px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-ring {
    width: 34px;
    height: 34px;
  }

  .stat-spark {
    height: 20px;
  }

  .stat-bars {
    height: 26px;
    gap: 3px;
  }

  .stat-sources li {
    grid-template-columns: 6px 1fr 40px auto;
    gap: 4px;
    font-size: 10px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .niche-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .niche-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .section {
    padding: 64px 0;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 36px 0 0;
    gap: 0;
  }

  .hero-text {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 420px;
    margin: 32px auto 0;
    align-self: center;
  }

  .steps,
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cases-grid,
  .videos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .promo-visual {
    max-width: 360px;
  }

  .promo-pills {
    justify-content: center;
  }

  .cta-inner {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .cta-decor {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .steps,
  .plans,
  .team-grid,
  .niche-row-4,
  .niche-row-3,
  .cases-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .niche-card {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .niche-card img {
    width: 90px;
    height: 90px;
    margin: 0;
  }

  .niche-more {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan {
    padding: 28px 22px;
  }

  .promo-banner {
    padding: 28px 22px;
  }

  .cta-inner {
    flex-direction: column;
    gap: 24px;
  }

  .btn-cta {
    width: 100%;
    max-width: 320px;
  }

  .footer-photo {
    width: 110px;
    height: 110px;
  }

  .stat-card {
    padding: 10px 12px;
    min-width: 120px;
    border-radius: 14px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-sources li {
    font-size: 10px;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 360px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .niche-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .niche-card img {
    width: 100%;
    height: 110px;
  }
}
