/* ============================================
   FONTS
   ============================================ */
@font-face {
  font-family: 'Mariupol';
  src: url('fonts/Mariupol-Regular.woff2') format('woff2'),
       url('fonts/Mariupol-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mariupol';
  src: url('fonts/Mariupol-Medium.woff2') format('woff2'),
       url('fonts/Mariupol-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mariupol';
  src: url('fonts/Mariupol-Bold.woff2') format('woff2'),
       url('fonts/Mariupol-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --green: #00E676;
  --green-dark: #00C853;
  --dark: #0B0B0B;
  --dark-2: #141414;
  --dark-3: #1A1A1A;
  --gray-bg: #F4F4F4;
  --light: #FFFFFF;
  --text: #222222;
  --text-secondary: #666666;
  --text-light: #CCCCCC;
  --border: #E0E0E0;
  --border-dark: #2A2A2A;
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 8px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--dark);
  padding: 14px 36px;
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 48px;
  font-size: 16px;
  border-radius: 10px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav a {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: #17a769;
}

.header__nav a:active {
  color: #aaaaaa;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: gray;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.header__social svg {
  fill: #ffffff;
}

.header__social:hover {
  background: var(--green-dark);
}

.btn--header {
  background: #17a769;
  color: white;
  border-radius: 40px;
  padding: 12px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  gap: 8px;
  text-transform: uppercase;
}

.btn--header:hover {
  background: #14955d;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(23, 167, 105, 0.3);
}

.btn__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: #ffffff;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

.hero__content {
  width: 486px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


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

.hero__pre {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.9;
  color: #1f1f1f;
}

.hero__title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.hero__title-gradient {
  font-family: 'Mariupol', sans-serif;
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(115deg, #17a769 0%, #16302c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title-dark {
  font-family: 'Mariupol', sans-serif;
  font-size: 90px;
  font-weight: 700;
  color: #1f1f1f;
}

.hero__subline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__subline-arrow {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}

.hero__subline-text {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.9;
  color: #1f1f1f;
}

.hero__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: #1f1f1f;
}

.btn--hero {
  background: #17a769;
  color: white;
  border-radius: 40px;
  padding: 20px;
  font-family: 'Mariupol', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  gap: 10px;
  width: 343px;
}

.btn--hero:hover {
  background: #14955d;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(23, 167, 105, 0.3);
}

.btn__arrow-hero {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__image {
  position: relative;
  width: 690px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__image img,
.hero__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

/* ============================================
   FEATURES GRID (Что входит)
   ============================================ */
/* Block 2 — Что входит в запуск */
.block2 {
  background: #ffffff;
  padding: 70px 0 80px;
}

.block2__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.block2__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.block2__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f1f1f;
  text-transform: uppercase;
}

.block2__desc {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  color: #4b4b4b;
}

.block2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.block2__card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.block2__card-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.block2__card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

.block2__card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #161616;
  line-height: 1;
}

.block2__card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: #161616;
  opacity: 0.8;
}


/* ============================================
   BLOCK 3 — Кому подходит
   ============================================ */
.block3 {
  background: #1F1F1F;
  padding: 80px 0;
}

.block3__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block3__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}

.block3__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
}

.block3__desc {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.6);
}

.block3__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.block3__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block3__card--image {
  position: relative;
  overflow: hidden;
}

.block3__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block3__card-title {
  font-family: 'Mariupol', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}

.block3__card-arrow {
  flex-shrink: 0;
}

.block3__card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.block3__card--image {
  background: linear-gradient(135deg, #17a769 0%, #16302c 100%);
  position: relative;
  overflow: hidden;
}

.block3__card--image .block3__card-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.block3__card--image .block3__card-img img {
  width: 140px;
  height: auto;
  display: block;
}

.block3__card--image .block3__card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block3__footnote {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   BLOCK 4 — Почему запуск проваливается
   ============================================ */
.block4 {
  background: #1F1F1F;
  padding: 80px 0;
}

.block4__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block4__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.block4__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
}

.block4__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.block4__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.block4__card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 1.4;
  flex: 1;
}

.block4__card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ============================================
   BLOCK 5 — Как строится работа
   ============================================ */
.block5 {
  background: #ffffff;
  padding: 80px 0;
}

.block5__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block5__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}

.block5__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f1f1f;
  text-transform: uppercase;
}

.block5__desc {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: #4b4b4b;
}

.block5__timeline-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.block5__timeline-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  justify-items: center;
  padding: 0 20px;
}

.block5__timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #17a769;
  transform: translateY(-50%);
  z-index: 0;
}

.block5__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.block5__card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block5__card-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #17a769;
  color: #ffffff;
  font-family: 'Mariupol', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.block5__card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1f1f1f;
  line-height: 1.3;
}

.block5__card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
}

.block5__cta {
  background: #000000;
  border: 1px solid #17a769;
  border-radius: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  min-height: 80px;
}

.block5__cta-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  flex: 1;
  padding: 20px 0 20px 30px;
}

.block5__cta-green {
  color: #17a769;
  font-weight: 500;
}

.block5__cta-ball {
  width: 300px;
  object-fit: contain;
  flex-shrink: 0;
}

.block5__cta .btn--cta-white {
  margin-right: 30px;
}

.btn--cta-white {
  background: #ffffff;
  color: #1f1f1f;
  border-radius: 40px;
  padding: 14px 24px;
  font-family: 'Mariupol', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  gap: 8px;
  flex-shrink: 0;
}

.btn--cta-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

/* ============================================
   BLOCK 6 — Кто будет запускать
   ============================================ */
.block6 {
  background: #ffffff;
  padding: 80px 0;
}

.block6__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block6__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}

.block6__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f1f1f;
  text-transform: uppercase;
}

.block6__desc {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: #4b4b4b;
}

.block6__profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.block6__photo {
  width: 50%;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.block6__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.block6__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block6__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block6__socials {
  display: flex;
  gap: 8px;
}

.block6__social-link {
  display: flex;
  align-items: center;
}

.block6__social-icon {
  width: 24px;
  height: 24px;
}

.block6__name {
  font-family: 'Mariupol', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1f1f1f;
}

.block6__role {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999999;
  margin-top: -12px;
}

.block6__bio {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #4b4b4b;
}

.block6__info-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block6__stats {
  display: flex;
  gap: 30px;
}

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

.block6__stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #999999;
}

.block6__stat-value {
  font-family: 'Mariupol', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #17a769;
}

.block6__brands-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.block6__brands-label {
  font-family: 'Mariupol', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1f1f1f;
}

.block6__brands {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #999999;
  line-height: 1.4;
}

.block6__bottom {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.block6__podcasts-preview {
  display: flex;
  gap: 16px;
  flex: 1;
}

.block6__podcast-thumb {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.block6__podcast-thumb img {
  height: auto;
  display: block;
}

.block6__podcast-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #17a769;
  color: #ffffff;
  font-family: 'Mariupol', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.block6__podcasts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.block6__podcasts-title {
  font-family: 'Mariupol', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1f1f1f;
}

.block6__podcasts-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #4b4b4b;
}

.btn--block6 {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid #17a769;
  border-radius: 40px;
  padding: 14px 24px;
  font-family: 'Mariupol', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  gap: 8px;
  align-self: flex-start;
}

.btn--block6 .btn__arrow path {
  stroke: #1f1f1f;
}

.btn--block6:hover {
  background: #128a55;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn--block6:hover .btn__arrow path {
  stroke: #ffffff;
}

/* ============================================
   BLOCK 7 — Что именно можно заказать
   ============================================ */
.block7 {
  background: #1F1F1F;
  padding: 80px 0;
}

.block7__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.block7__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.block7__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
}

.block7__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.block7__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block7__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.block7__card-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.7;
}

.block7__card-title {
  font-family: 'Mariupol', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.block7__card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.block7__audit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block7__audit-head {
  display: flex;
  align-items: center;
  gap: 10px;
}


.block7__audit-title {
  font-family: 'Mariupol', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.block7__audit-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.block7__audit-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.block7__audit-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 16px;
  position: relative;
}

.block7__audit-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BLOCK 8 — Какие решения вы получите
   ============================================ */
.block8 {
  background: #1F1F1F;
  padding: 0 0 80px;
}

.block8__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.block8__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.block8__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
}

.block8__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.block8__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.block8__card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: #1f1f1f;
  flex: 1;
}

.block8__card-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(23, 167, 105, 0.15);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}

/* ============================================
   BLOCK 9 — Что вы получите после первой заявки
   ============================================ */
.block9 {
  background: #ffffff;
  padding: 80px 0;
}

.block9__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.block9__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.block9__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f1f1f;
  text-transform: uppercase;
}

.block9__banner {
  border-radius: 20px;
  overflow: hidden;
  background: #0B0B0B;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.block9__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.block9__banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.block9__banner-title {
  font-family: 'Mariupol', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
}

.block9__banner-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #4b4b4b;
}

.block9__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.block9__card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block9__card-sticker {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
}

.block9__card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1f1f1f;
}

.block9__card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
}

/* ============================================
   BLOCK 10 — Контактная форма
   ============================================ */
.block10 {
  background: #0B0B0B;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.block10::before {
  content: '';
  position: absolute;
  left: -2%;
  bottom: -25%;
  width: 75%;
  height: 140%;
  background: url('icons/block10-image.webp') no-repeat center;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
}

.block10__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 1;
  align-items: flex-start;
}

.block10__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.block10__title {
  font-family: 'Mariupol', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
}

.block10__desc {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}


.block10__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block10__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.block10__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.block10__input:focus {
  border-bottom-color: #17a769;
}

.block10__input--textarea {
  min-height: 80px;
  resize: none;
}

.btn--form {
  background: #17a769;
  color: white;
  border-radius: 40px;
  padding: 16px 32px;
  font-family: 'Mariupol', sans-serif;
  width: 100%;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  gap: 8px;
  align-self: stretch;
  margin-top: 8px;
}

.btn--form:hover {
  background: #14955d;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(23, 167, 105, 0.3);
}

.block10__success {
  display: none;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 20px 0;
}

.block10__success .btn--form {
  align-self: center;
  width: auto;
}

.block10__success-icon {
  width: 32px;
  height: 32px;
}

.block10__success-title {
  font-family: 'Mariupol', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}

.block10__success-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

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

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

.footer__copy {
  color: var(--text-light);
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: var(--text-light);
  font-size: 13px;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--green);
}

/* ============================================
   BURGER MENU
   ============================================ */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}

.header__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1f1f1f;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open .mobile-menu__overlay {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__panel {
  position: fixed;
  top: 0;
  right: -80%;
  width: 75%;
  max-width: 360px;
  height: 100%;
  background: #ffffff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open .mobile-menu__panel {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
  flex: 1;
}

.mobile-menu__links a {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1f1f1f;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu__links a:hover {
  color: #17a769;
}

.mobile-menu__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
}

.btn--mobile-cta {
  background: #17a769;
  color: #ffffff;
  border-radius: 40px;
  padding: 16px 32px;
  font-family: 'Mariupol', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: background 0.2s;
}

.btn--mobile-cta:hover {
  background: #14955d;
}

.mobile-menu__socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mobile-menu__socials a {
  display: flex;
  align-items: center;
  color: #1f1f1f;
  transition: opacity 0.2s;
}

.mobile-menu__socials a:hover {
  opacity: 0.6;
}

/* ============================================
   RESPONSIVE — TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 40px;
  }

  .header__nav {
    gap: 16px;
  }

  .header__nav a {
    font-size: 12px;
  }

  .hero__inner {
    padding: 0 40px;
    flex-direction: column;
  }

  .hero__content {
    width: 100%;
  }

  .hero__title-gradient {
    font-size: 64px;
  }

  .hero__title-dark {
    font-size: 56px;
  }

  .hero__pre,
  .hero__subline-text {
    font-size: 26px;
  }

  .hero__image {
    width: 100%;
    height: 400px;
  }

  .block2__inner,
  .block3__inner,
  .block4__inner,
  .block5__inner,
  .block6__inner,
  .block7__inner,
  .block8__inner,
  .block9__inner,
  .block10__inner {
    padding: 0 40px;
  }

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

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

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

  .block6__profile {
    flex-direction: column;
  }

  .block6__photo {
    width: 100%;
    height: 350px;
  }

  .block6__bottom {
    flex-direction: column;
  }

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

/* ============================================
   RESPONSIVE — MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Header */
  .header__burger {
    display: flex;
    margin-left: auto;
  }

  .header__inner {
    padding: 0 20px;
    height: 60px;
    max-width: 100%;
  }

  .header__nav {
    display: none;
  }

  .header__right {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
  }

  .hero {
    padding: 80px 0 50px;
  }

  .hero__inner {
    padding: 0 20px;
    flex-direction: column;
  }

  .hero__content {
    width: 100%;
    display: contents;
  }

  .hero__heading {
    order: 1;
  }

  .hero__subtitle {
    order: 2;
    font-size: 16px;
  }

  .hero__title-gradient {
    font-size: 97px;
  }

  .hero__title-dark {
    font-size: 85px;
  }

  .hero__pre,
  .hero__subline-text {
    font-size: 33px;
  }

  .hero__image {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    height: 300px;
    order: 3;
    border-radius: 0;
  }

  .hero__image-overlay {
    border-radius: 0;
  }

  .btn--hero {
    width: 100%;
    font-size: 16px;
    order: 4;
  }

  /* All sections padding */
  .block2__inner,
  .block3__inner,
  .block4__inner,
  .block5__inner,
  .block6__inner,
  .block7__inner,
  .block8__inner,
  .block9__inner,
  .block10__inner {
    padding: 0 20px;
  }

  /* Block 2 */
  .block2__grid {
    grid-template-columns: 1fr;
  }

  .block2__title {
    font-size: 26px;
  }

  .block2__desc {
    font-size: 16px;
  }

  /* Block 3 */
  .block3__grid {
    grid-template-columns: 1fr;
  }

  .block3__title {
    font-size: 26px;
  }

  .block3__desc {
    font-size: 14px;
  }

  /* Block 4 */
  .block4__grid {
    grid-template-columns: 1fr;
  }

  .block4__title {
    font-size: 26px;
  }

  /* Block 5 */
  .block5__grid {
    grid-template-columns: 1fr;
  }

  .block5__timeline-numbers {
    display: none;
  }

  .block5__timeline-line {
    display: none;
  }

  .block5__cta-ball {
    display: none;
  }

  .block5__title {
    font-size: 26px;
  }

  .block5__cta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }

  .block5__cta-ball {
    width: 120px;
  }

  /* Block 6 */
  .block6__title {
    font-size: 26px;
  }

  .block6__profile {
    flex-direction: column;
  }

  .block6__photo {
    width: 100%;
    height: 300px;
  }

  .block6__bottom {
    flex-direction: column;
  }

  .block6__podcasts-preview {
    flex-direction: column;
  }

  .block6__podcast-thumb {
    width: 100%;
  }

  .block6__stats {
    flex-direction: column;
  }

  /* Block 7 */
  .block7__title {
    font-size: 26px;
  }

  .block7__cards {
    grid-template-columns: 1fr;
  }

  .block7__audit-cols {
    grid-template-columns: 1fr;
  }

  /* Block 8 */
  .block8__title {
    font-size: 26px;
  }

  .block8__grid {
    grid-template-columns: 1fr;
  }

  /* Block 9 */
  .block9__title {
    font-size: 26px;
  }


  .block9__cards {
    grid-template-columns: 1fr;
  }

  /* Block 10 */
  .block10__inner {
    flex-direction: column;
  }

  .block10__left {
    width: 100%;
  }

  .block10__form {
    width: 100%;
  }

  .block10__title {
    font-size: 26px;
  }

  .block10::before {
    width: 100%;
    left: -10%;
    bottom: -30%;
    opacity: 0.3;
  }

  .btn--form {
    align-self: stretch;
    text-align: center;
  }

  .block9__banner {
    height: 180px;
  }

  /* All sections reduce padding */
  .block2, .block3, .block4, .block5,
  .block6, .block7, .block8, .block9, .block10 {
    padding: 50px 0;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__title-gradient {
    font-size: 77px;
  }

  .hero__title-dark {
    font-size: 67px;
  }

  .hero__pre,
  .hero__subline-text {
    font-size: 29px;
  }

  .hero__image {
    height: 250px;
  }

  .block2__title,
  .block3__title,
  .block4__title,
  .block5__title,
  .block6__title,
  .block7__title,
  .block8__title,
  .block9__title,
  .block10__title {
    font-size: 22px;
  }

  .block4__card {
    flex-direction: column;
    gap: 8px;
  }

  .block5__cta-ball {
    width: 80px;
  }

  .block6__photo {
    height: 240px;
  }

  .block6__name {
    font-size: 22px;
  }


  .block10__desc {
    font-size: 14px;
  }

  .block10::before {
    display: none;
  }

  .block2, .block3, .block4, .block5,
  .block6, .block7, .block8, .block9, .block10 {
    padding: 40px 0;
  }

  .block5__cta .btn--cta-white {
    margin-right: 0;
  }

  .block5__cta-text {
    padding: 16px;
  }

  .block6__name-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
