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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-primary);
  overflow-x: hidden;
}

body.body--menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

/* CSS Variables - Green Theme (#16A34A) */
:root {
  --bg-primary: #f8faf9;
  --bg-secondary: #f0fdf4;
  --bg-white: #ffffff;
  --primary: #16A34A;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --text-dark: #0f1f17;
  --text-body: #3f5949;
  --text-muted: #5f7a68;
  --accent: #f59e0b;
  --success: #16a34a;
  --warning: #ea580c;
  --border: #dcefe3;
}

/* Headings */
.hero__title,
.services__title,
.benefits__title,
.reviews__title,
.faq__title,
.contacts__title,
.how-we-work__title {
  color: var(--text-dark);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 0;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}

@media (min-width: 960px) {
  .header {
    height: 80px;
  }
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
}

.header__logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.header__nav {
  display: none;
}

@media (min-width: 960px) {
  .header__nav {
    display: block;
  }
}

.header__menu {
  display: flex;
  gap: 32px;
}

.header__menu-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
}

.header__menu-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.header__menu-link:hover {
  color: var(--primary);
}

.header__menu-link:hover::after {
  width: 100%;
}

.header__actions {
  display: none;
}

@media (min-width: 960px) {
  .header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

.header__phone i {
  color: var(--primary);
}

.header__phone:hover {
  color: var(--primary);
}

.header__cta {
  display: none;
}

@media (min-width: 960px) {
  .header__cta {
    display: inline-flex;
  }
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

@media (min-width: 960px) {
  .header__burger {
    display: none;
  }
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.header__burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  pointer-events: none;
}

.mobile-menu--open {
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu--open .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 0;
  transition: all 0.2s;
}

.mobile-menu__link:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: 0;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: auto;
}

.mobile-menu__phone i {
  font-size: 20px;
  color: var(--primary);
}

/* ===== HERO (centered layout) ===== */
.hero {
  padding: 100px 0 50px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

@media (min-width: 960px) {
  .hero {
    padding: 160px 0 120px;
  }
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* Centered hero layout */
.hero__container--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 960px) {
  .hero__container--centered {
    display: flex;
    flex-direction: column;
    max-width: 900px;
  }
}

.hero__content--centered {
  max-width: 700px;
}

.hero__features--centered {
  justify-content: center;
}

.hero__image--centered {
  width: 100%;
  max-width: 700px;
}

.hero__image--centered img {
  width: 100%;
  border-radius: 0;
}

.hero__content {
  order: 2;
}

@media (min-width: 960px) {
  .hero__content {
    order: 1;
  }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  margin-bottom: 20px;
}

.hero__tag i {
  font-size: 16px;
}

.hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 40px;
  }
}

@media (min-width: 960px) {
  .hero__title {
    font-size: 48px;
  }
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

@media (min-width: 960px) {
  .hero__subtitle {
    font-size: 18px;
  }
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

.hero__feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 0;
  color: var(--bg-white);
  font-size: 18px;
}

.hero__cta {
  width: 100%;
}

@media (min-width: 480px) {
  .hero__cta {
    width: auto;
  }
}

.hero__image {
  position: relative;
  order: 1;
}

@media (min-width: 960px) {
  .hero__image {
    order: 2;
  }
}

.hero__image img {
  width: 100%;
  border-radius: 0;
}

.hero__image-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--bg-white);
  padding: 12px 20px;
  border-radius: 0;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__image-badge-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.hero__image-badge-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 50px 0;
  background: var(--bg-white);
}

@media (min-width: 960px) {
  .reviews {
    padding: 120px 0;
  }
}

.reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}


.reviews__title {
  font-size: 28px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .reviews__title {
    font-size: 36px;
  }
}

.reviews__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.review-card {
  background: var(--bg-primary);
  padding: 24px;
  border-radius: 0;
  border: 1px solid var(--border);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-white);
  font-size: 16px;
  flex-shrink: 0;
}

.review-card__info {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.review-card__date {
  font-size: 13px;
  color: var(--text-muted);
}

.review-card__rating {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 16px;
}

.review-card__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-card__service {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-secondary);
  border-radius: 0;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SERVICES (grid-2col) ===== */
.services {
  padding: 50px 0;
  background: var(--bg-secondary);
}

@media (min-width: 960px) {
  .services {
    padding: 120px 0;
  }
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services__header {
  text-align: center;
  margin-bottom: 48px;
}


.services__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .services__title {
    font-size: 36px;
  }
}

.services__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services__grid {
    gap: 24px;
  }
}

.service-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 0;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
}

.service-card:hover {
  border-color: var(--primary);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 0;
  color: var(--bg-white);
  font-size: 26px;
  flex-shrink: 0;
}

.service-card__content {
  flex: 1;
}

.service-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card__price {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 50px 0;
  background: var(--bg-white);
}

@media (min-width: 960px) {
  .benefits {
    padding: 120px 0;
  }
}

.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits__header {
  text-align: center;
  margin-bottom: 48px;
}


.benefits__title {
  font-size: 28px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .benefits__title {
    font-size: 36px;
  }
}

.benefits__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.benefit-card {
  background: var(--bg-primary);
  padding: 28px;
  border-radius: 0;
  border: 1px solid var(--border);
}

.benefit-card:hover {
  border-color: var(--primary);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 0;
  color: var(--bg-white);
  font-size: 26px;
  margin-bottom: 20px;
}

.benefit-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
  padding: 50px 0;
  background: var(--bg-secondary);
}

@media (min-width: 960px) {
  .faq {
    padding: 120px 0;
  }
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}


.faq__title {
  font-size: 28px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .faq__title {
    font-size: 36px;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer--open {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACTS ===== */
.contacts {
  padding: 50px 0;
  background: var(--bg-white);
}

@media (min-width: 960px) {
  .contacts {
    padding: 120px 0;
  }
}

.contacts__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .contacts__container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}


.contacts__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .contacts__title {
    font-size: 36px;
  }
}

.contacts__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.form-group {
  width: 100%;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg-primary);
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contacts__disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.contacts__disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.contacts__container--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
}

.contacts__cta {
  margin-bottom: 32px;
}

.contacts__info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contacts__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-body);
}

.contacts__info-item i {
  color: var(--primary);
  font-size: 18px;
}

.contacts__info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts__info-label {
  font-size: 13px;
  color: var(--text-muted);
}

.contacts__info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

a.contacts__info-value:hover {
  color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 24px 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px 0;
}

.footer__legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}


/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.benefits__grid .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefits__grid .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefits__grid .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefits__grid .benefit-card:nth-child(4) { transition-delay: 0.4s; }
.benefits__grid .benefit-card:nth-child(5) { transition-delay: 0.5s; }
.benefits__grid .benefit-card:nth-child(6) { transition-delay: 0.6s; }

.services__grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services__grid .service-card:nth-child(2) { transition-delay: 0.15s; }
.services__grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services__grid .service-card:nth-child(4) { transition-delay: 0.25s; }
.services__grid .service-card:nth-child(5) { transition-delay: 0.3s; }
.services__grid .service-card:nth-child(6) { transition-delay: 0.35s; }

.reviews__grid .review-card:nth-child(1) { transition-delay: 0.1s; }
.reviews__grid .review-card:nth-child(2) { transition-delay: 0.2s; }
.reviews__grid .review-card:nth-child(3) { transition-delay: 0.3s; }

.faq__list .faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq__list .faq-item:nth-child(2) { transition-delay: 0.15s; }
.faq__list .faq-item:nth-child(3) { transition-delay: 0.2s; }
.faq__list .faq-item:nth-child(4) { transition-delay: 0.25s; }
.faq__list .faq-item:nth-child(5) { transition-delay: 0.3s; }

.how-we-work__timeline .timeline-step:nth-child(1) { transition-delay: 0.1s; }
.how-we-work__timeline .timeline-step:nth-child(2) { transition-delay: 0.2s; }
.how-we-work__timeline .timeline-step:nth-child(3) { transition-delay: 0.3s; }
.how-we-work__timeline .timeline-step:nth-child(4) { transition-delay: 0.4s; }

/* ===== HOW WE WORK ===== */
.how-we-work {
  padding: 50px 0;
  background: var(--bg-primary);
}

@media (min-width: 960px) {
  .how-we-work {
    padding: 120px 0;
  }
}

.how-we-work__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-we-work__header {
  text-align: center;
  margin-bottom: 56px;
}


.how-we-work__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .how-we-work__title {
    font-size: 36px;
  }
}

.how-we-work__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.how-we-work__timeline {
  display: grid;
  gap: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .how-we-work__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .how-we-work__timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.timeline-step {
  position: relative;
  background: var(--bg-white);
  border-radius: 0;
  padding: 32px 24px;
  border: 1px solid var(--border);
}

.timeline-step:hover {
  border-color: var(--primary);
}

.timeline-step__number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-white);
}

.timeline-step__content {
  padding-top: 8px;
}

.timeline-step__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 0;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.timeline-step:hover .timeline-step__icon {
  background: var(--primary);
  color: var(--bg-white);
}

.timeline-step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.timeline-step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.how-we-work__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== STATS ===== */
.stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

@media (min-width: 960px) {
  .stats {
    padding: 80px 0;
  }
}

.stats__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.stats__item {
  text-align: center;
}

.stats__number {
  font-size: 40px;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1;
  display: inline;
}

@media (min-width: 768px) {
  .stats__number {
    font-size: 52px;
  }
}

.stats__suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--bg-white);
  display: inline;
}

@media (min-width: 768px) {
  .stats__suffix {
    font-size: 42px;
  }
}

.stats__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats__label {
    font-size: 16px;
  }
}
