/* ====================================
   RESET
==================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #fff;
  color: #1d2a3b;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ====================================
   VARIABLES
==================================== */

:root {
  --blue: #2457c5;
  --blue-dark: #173a8a;

  --yellow: #ffb800;
  --orange: #ff8c00; /* ← ДОБАВЛЕНО */

  --white: #ffffff;

  --light: #f5f8ff;

  --text: #1d2a3b;

  --gray: #6b7280;

  --border: #e5eaf3;

  --radius: 24px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ====================================
   CONTAINER
==================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================================
   BUTTONS
==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 32px;

  border-radius: 14px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s;
}

.btn-primary {
  background: var(--blue);
  color: white;

  box-shadow: 0 10px 20px rgba(36, 87, 197, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);

  background: var(--blue-dark);
}

.btn-secondary {
  background: white;

  border: 2px solid var(--border);

  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--blue);

  color: var(--blue);
}

/* ====================================
   SECTION
==================================== */

section {
  padding: 110px 0;
}

.section-label {
  display: inline-block;

  margin-bottom: 20px;

  padding: 8px 18px;

  border-radius: 999px;

  background: #eaf1ff;

  color: var(--blue);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
}

.section-heading {
  text-align: center;

  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}

/* ====================================
   HEADER
==================================== */

.header {
  position: sticky;

  top: 0;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 800;

  color: var(--text);
}

.logo span {
  color: var(--blue);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  position: relative;

  font-weight: 500;

  transition: 0.3s;
}

.nav a:hover {
  color: var(--blue);
}

.nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: var(--blue);

  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 18px;
  font-weight: 700;

  color: var(--text);
}

.burger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ====================================
   HERO
==================================== */

.hero {
  padding-top: 80px;

  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.hero-wrapper {
  display: grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  gap: 80px;

  align-items: center;
}

.hero-label {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 20px;

  border-radius: 999px;

  background: #eaf1ff;

  color: var(--blue);

  font-weight: 600;

  margin-bottom: 30px;
}

.hero-label-2 {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 20px;

  border-radius: 999px;

  background: #fff3e6; /* Светло-оранжевый фон */
  color: var(--orange);

  font-weight: 600;

  margin-bottom: 30px;
}

.hero-content h1 {
  font-size: 68px;

  font-weight: 900;

  line-height: 1.05;

  margin-bottom: 25px;
}

.hero-content h1 span {
  display: block;

  color: var(--blue);
}

.hero-description {
  font-size: 22px;

  line-height: 1.7;

  color: var(--gray);

  max-width: 650px;

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 15px;

  margin-bottom: 40px;
}

.hero-features {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.hero-feature {
  padding: 12px 20px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 14px;

  font-weight: 600;

  box-shadow: var(--shadow);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;

  border-radius: 32px;
}

.hero-stats {
  position: absolute;

  bottom: -40px;

  left: 50%;

  transform: translateX(-50%);

  width: 90%;

  background: white;

  border-radius: 24px;

  padding: 25px;

  box-shadow: var(--shadow);

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;

  font-size: 34px;

  color: var(--blue);

  margin-bottom: 8px;
}

.hero-stat span {
  color: var(--gray);

  font-size: 15px;
}

/* ====================================
   ADVANTAGES
==================================== */

.advantages {
  background: #f5f8ff;
}

.advantages-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;

  /* КЛЮЧЕВОЕ ИЗМЕНЕНИЕ */
  align-items: start; /* Отключает выравнивание по высоте */
}

.advantage-card {
  padding: 30px 24px;

  background: white;

  border-radius: 24px;

  box-shadow: var(--shadow);

  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
}

.advantage-icon {
  font-size: 48px;

  margin-bottom: 16px;
}

.advantage-card h3 {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 12px;

  color: var(--text);
}

.advantage-card p {
  color: var(--gray);

  font-size: 16px;

  line-height: 1.6;
}

/* ====================================
   EXPANDABLE CARDS
==================================== */

.expandable-content {
  /* Ключевые изменения: используем большое значение max-height и opacity для анимации */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease-out,
    opacity 0.3s ease-out,
    padding 0.3s;

  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 15px;
  padding-left: 4px;
}

.expandable-content p,
.expandable-content ul {
  margin-bottom: 12px;
}

.expandable-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.expandable-content li {
  margin-bottom: 5px;
}

.expandable-content strong {
  color: var(--text);
}

/* Анимация открытия */
/* Важно: max-height должно быть больше, чем реальная высота контента (600px - достаточно безопасное значение) */
.advantage-card.expanded .expandable-content {
  max-height: 600px;
  opacity: 1;
  padding: 20px 24px;
  background: white;
  border-top: 1px solid var(--border);
  border-radius: 0 0 24px 24px;
  margin-top: -1px;
  overflow: auto; /* Скролл внутри контента */
}

/* Дополнительно: заставляем родителя скрывать переполнение */
.advantage-card {
  overflow: hidden;
  position: relative;
}

.btn-text {
  background: none;
  border: none;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 15px;
  display: block;
  text-align: right;
  width: 100%;
}

.btn-text:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.btn-text::after {
  content: " ▼";
  font-size: 12px;
  transition: 0.3s;
}

.advantage-card.expanded .btn-text::after {
  content: " ▲";
}

/* ====================================
   ABOUT
==================================== */

.about {
  background: var(--light);
}

.about-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.about-image img {
  width: 100%;

  border-radius: 32px;

  box-shadow: var(--shadow);
}

.about-content {
  padding-right: 20px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;

  margin-bottom: 25px;
}

.about-content p {
  font-size: 18px;

  color: var(--gray);

  line-height: 1.7;

  margin-bottom: 20px;
}

.about-stats {
  display: flex;

  gap: 40px;

  margin: 30px 0 40px;
}

.about-stat {
  text-align: center;
}

.about-emblem {
  width: 100%;

  background: white;

  border-radius: 32px;

  box-shadow: var(--shadow);

  padding: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  border: 1px solid var(--border);
}

.about-emblem .emblem-icon img {
  border-radius: 0;
  width: auto; /* Позволит картинке быть её реального размера, если нужно */
  max-width: 120px; /* Можете настроить размер логотипа */
  height: auto;
}

.emblem-text {
  display: flex;
  flex-direction: column;
}

.emblem-main {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.emblem-sub {
  font-size: 18px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 5px;
}

.about-stat strong {
  display: block;

  font-size: 36px;
  font-weight: 800;

  color: var(--blue);

  margin-bottom: 8px;
}

.about-stat span {
  color: var(--gray);

  font-size: 16px;
}

/* ====================================
   BRANDS
==================================== */

.brands {
  background: #ffffff;
}

.brands-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.brand-card {
  background: white;

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;

  min-height: 140px;
}

.brand-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);

  border-color: var(--blue);
}

.brand-card img {
  max-width: 140px;

  max-height: 70px;

  object-fit: contain;

  filter: grayscale(100%);

  opacity: 0.8;

  transition: 0.3s;
}

.brand-card:hover img {
  filter: grayscale(0);

  opacity: 1;
}

/* ====================================
   SERVICES
==================================== */

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;

  padding: 30px;

  background: white;

  border-radius: 24px;

  border: 1px solid var(--border);

  transition: all 0.3s ease;

  position: relative;
}

.service-card:hover {
  border-color: var(--blue);

  box-shadow: var(--shadow);

  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;

  margin-bottom: 12px;

  color: var(--text);
}

.service-card p {
  color: var(--gray);

  font-size: 16px;

  line-height: 1.6;

  margin-bottom: 20px;
}

.price {
  font-size: 22px;
  font-weight: 700;

  color: var(--blue);

  margin-top: auto;
}

.btn-service {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-service:hover {
  background: var(--blue-dark);
}

/* ====================================
   SPECIAL OFFER (СКУПКА/ПРОДАЖА)
==================================== */

.service-card.special-offer {
  border: 2px dashed var(--yellow);
  background: linear-gradient(135deg, #fff9db 0%, #ffffff 100%);
}

.service-card.special-offer::before {
  content: "🔥";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px;
  z-index: 1;
}

.service-card.special-offer h3 {
  color: #d97706;
}

/* ====================================
   STEPS
==================================== */

.steps {
  background: var(--light);
  position: relative;
}

.steps::before {
  /* Декоративная линия на фоне */
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(36, 87, 197, 0.1) 0%,
    rgba(36, 87, 197, 0.5) 20%,
    rgba(36, 87, 197, 0.1) 100%
  );
  z-index: 0;
}

.steps-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 15px;
  background: white;
  border-radius: 32px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(36, 87, 197, 0.15);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #7ba4f5 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* Скрываем старые элементы step span */
.step span {
  display: none;
}

/* ====================================
   PROMO
==================================== */

.promo {
  background: white;
}

.promo-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 30px;
}

.promo-card {
  position: relative;

  padding: 40px 30px;

  background: white;

  border-radius: 32px;

  box-shadow: var(--shadow);

  overflow: hidden;

  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-8px);
}

.promo-card.promo-highlight {
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.promo-percent {
  position: absolute;

  top: -20px;
  right: -20px;

  font-size: 72px;
  font-weight: 800;

  color: rgba(36, 87, 197, 0.1);

  z-index: 0;
}

.promo-highlight .promo-percent {
  color: rgba(255, 184, 0, 0.15);
}

.promo-card h3 {
  position: relative;

  z-index: 1;

  font-size: 32px;
  font-weight: 800;

  margin-bottom: 16px;

  color: var(--text);
}

.promo-card p {
  position: relative;

  z-index: 1;

  color: var(--gray);

  font-size: 16px;

  line-height: 1.6;
}

/* ====================================
   REVIEWS
==================================== */

.reviews-slider {
  display: flex;

  overflow-x: auto;

  gap: 30px;

  padding: 10px 0;

  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 360px;

  padding: 30px;

  background: white;

  border-radius: 24px;

  box-shadow: var(--shadow);

  border: 1px solid var(--border);

  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);

  border-color: var(--blue);
}

.review-stars {
  font-size: 24px;

  color: var(--yellow);

  margin-bottom: 16px;
}

.review-card h3 {
  font-size: 20px;
  font-weight: 700;

  margin-bottom: 12px;

  color: var(--text);
}

.review-card p {
  color: var(--gray);

  font-size: 16px;

  line-height: 1.6;
}

.review-author {
  display: flex;
  flex-direction: column;

  margin-bottom: 15px;
}

.review-author strong {
  font-size: 18px;
  color: var(--text);
}

.review-author span {
  font-size: 14px;
  color: var(--gray);
}

/* ====================================
   FAQ
==================================== */

.faq-list {
  max-width: 800px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.faq-item {
  background: white;

  border-radius: 24px;

  overflow: hidden;

  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;

  padding: 20px;

  text-align: left;

  background: white;

  font-size: 18px;
  font-weight: 600;

  color: var(--text);

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.faq-question::after {
  content: "+";

  font-size: 24px;

  color: var(--blue);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.3s ease-out;

  font-size: 16px;

  color: var(--gray);

  line-height: 1.6;

  padding: 0 20px 0 20px;
}

.faq-item.active .faq-question::after {
  content: "−";

  color: var(--blue);
}

.faq-item.active .faq-answer {
  max-height: 200px;

  padding: 0 20px 20px 20px;
}

/* ====================================
   CTA
==================================== */

.cta {
  background: var(--blue);

  color: white;

  padding: 80px 0;
}

.cta-wrapper {
  text-align: center;

  max-width: 800px;

  margin: 0 auto;
}

.cta h2 {
  font-size: 48px;
  font-weight: 800;

  margin-bottom: 20px;
}

.cta p {
  font-size: 22px;

  margin-bottom: 40px;

  opacity: 0.9;
}

.cta-form {
  display: flex;

  gap: 15px;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;
}

.cta-form input {
  flex: 1;

  min-width: 300px;

  padding: 16px 24px;

  border-radius: 14px;

  border: none;

  font-size: 18px;

  font-family: inherit;

  outline: none;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* ====================================
   FOOTER
==================================== */

.footer {
  background: #f5f8ff;

  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 40px;

  margin-bottom: 50px;
}

.footer > .container > div:first-child {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 40px;

  margin-bottom: 50px;
}

.footer h3 {
  font-size: 24px;
  font-weight: 800;

  color: var(--text);

  margin-bottom: 20px;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;

  color: var(--text);

  margin-bottom: 20px;
}

.footer p {
  color: var(--gray);

  font-size: 16px;

  line-height: 1.6;

  margin-bottom: 10px;
}

.footer ul li {
  margin-bottom: 12px;

  color: var(--gray);

  font-size: 16px;
}

.footer a {
  color: var(--blue);

  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;

  padding-top: 30px;

  border-top: 1px solid var(--border);

  color: var(--gray);

  font-size: 14px;
}

/* ====================================
   MODAL POPUP
==================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  transition: 0.2s;
  padding: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: #f5f8ff;
  color: var(--blue);
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text);
}

.modal-subtitle {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 25px;
}

.modal-body p {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.modal-phone {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin: 20px 0 30px;
  padding: 10px;
  border-radius: 14px;
  background: #f5f8ff;
  transition: 0.3s;
}

.modal-phone:hover {
  background: #eaf1ff;
  transform: scale(1.02);
}

.modal-note {
  font-size: 14px;
  color: var(--gray);
  margin-top: 15px;
}

.modal-footer {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-btn-secondary {
  background: white;
  border: 2px solid var(--border);
  color: var(--text);
}

.modal-btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.modal-btn-primary {
  background: var(--blue);
  color: white;
  flex: 1;
  max-width: 200px;
}

.modal-btn-primary:hover {
  background: var(--blue-dark);
}

/* ====================================
   MEDIA QUERIES
==================================== */

@media (max-width: 992px) {
  .hero-wrapper,
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-right: 0;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-right {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    width: 35px;
    height: 35px;

    background: transparent;
  }

  .burger span {
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 10px;

    transition: .3s;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;

    top: 90px;
    left: -100%;

    width: 100%;
    height: calc(100vh - 90px);

    background: white;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 30px;

    padding-top: 50px;

    transition: .3s;

    z-index: 999;
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-menu a {
    font-size: 22px;
    font-weight: 600;
  }

  .mobile-call {
    display: flex;
    width: 90%;
    max-width: 320px;
  }

  .header-right {
    display: none;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-description {
    font-size: 18px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .hero-stats {
    position: static;

    transform: none;

    width: 100%;

    margin-top: 20px;
  }

  .reviews-slider {
    flex-direction: column;
  }

  .review-card {
    min-width: auto;
  }

  .cta h2 {
    font-size: 36px;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form input {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 40px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-features {
    flex-direction: column;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 25px;
  }
}
