/* ГринЭнерго — лендинг */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-header-bg: #333333;
  --color-accent: #99cc33;
  --color-card-gray: #5a5a5a;
  --color-text: #1a1a1a;
  --color-white: #ffffff;
  --color-page-bg: #f5f5f5;
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius-card: clamp(16px, 2.5vw, 26px);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.18);
  --container-max: 1320px;
  --header-padding-y: clamp(0.75rem, 2vw, 1.25rem);
  --header-padding-x: clamp(1rem, 4vw, 2rem);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.45;
  color: var(--color-text);
  /* Вертикальная полосатая текстура (как на макете героя) */
  background-color: #e6e6e6;
  background-image: repeating-linear-gradient(
    90deg,
    #e6e6e6 0,
    #e6e6e6 5px,
    #dedede 5px,
    #dedede 6px
  );
}

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

.container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--header-padding-x);
}

/* Header */
.site-header {
  background: var(--color-header-bg);
  color: var(--color-white);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-block: var(--header-padding-y);
}

.site-header__title {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  line-height: 1.15;
  max-width: min(100%, 28rem);
}

.site-header__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.site-header__contacts--end {
  margin-left: auto;
}

.messengers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.messengers__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--color-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.messengers__link:hover,
.messengers__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  outline: none;
}

.messengers__link--max {
  background: linear-gradient(145deg, #4f6dff 0%, #8b5cf6 55%, #c084fc 100%);
  color: #fff;
}

.messengers__link--max:hover,
.messengers__link--max:focus-visible {
  filter: brightness(1.06);
}

.messengers__link--telegram {
  background: #2aabee;
}

.messengers__link--whatsapp {
  background: #25d366;
}

.messengers__icon {
  width: 1.35rem;
  height: 1.35rem;
}

.messengers__glyph {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
}

.site-header__phone {
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__phone:hover,
.site-header__phone:focus-visible {
  text-decoration: underline;
  outline: none;
}

/* Page layout — экран 1 как в макете: светлый фон + зелёные линии */
.page-body {
  background-color: #fff;
  background-image: url("../assets/images/mockup/hero-lines.png");
  background-size: 100% auto;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.page-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

@media (min-width: 1025px) {
  .page-body__grid {
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
  }
}

.main-area {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  overflow: hidden;
  min-height: min(100%, 60vh);
}

.lead {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex-wrap: nowrap;
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  max-width: 52rem;
}

.lead__icon {
  display: flex;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.lead__icon img {
  width: clamp(28px, 3vw, 40px);
  height: auto;
}

.lead__text {
  color: #1a1a1a;
  line-height: 1.35;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
}

.lead__text a {
  color: #0d84ff;
  text-decoration: none;
  font-weight: 700;
}

.lead__text a:hover,
.lead__text a:focus-visible {
  text-decoration: underline;
}

.cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  border-radius: var(--radius-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--color-white);
  text-decoration: none;
}

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

.card--hero-bg:hover {
  box-shadow:
    var(--shadow-card-hover),
    inset 0 4px 20px rgba(0, 0, 0, 0.18);
}

/* Карточки целиком из макета PSD */
.card--hero-bg {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 569 / 313;
  min-height: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 102% 102%;
  background-position: center;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
}

.card--hero-bg-1 {
  background-image: url("../assets/images/mockup/card-grinenergo.jpg?v=corners2");
}

.card--hero-bg-2 {
  background-image: url("../assets/images/mockup/card-greenlight.jpg?v=corners2");
}

.card--hero-bg-3 {
  background-image: url("../assets/images/mockup/card-lighting.jpg?v=corners2");
}

.card--hero-bg-4 {
  background-image: url("../assets/images/mockup/card-armature.jpg?v=corners2");
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  min-height: 0;
}

@media (min-width: 1025px) {
  .sidebar {
    height: 100%;
    min-height: 100%;
  }
}

.sidebar__photo {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: clamp(280px, 60vw, 520px);
  border: none;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 0;
}

@media (min-width: 1025px) {
  .sidebar__photo {
    min-height: 100%;
  }
}

.sidebar__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex: 1 1 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Artboard 2: преимущества */
.section-benefits {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: #ececec;
}

.benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 2vw, 1.1rem);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card__text {
    font-size: 160%;
  }
}

@media (min-width: 1025px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.benefit-card__icon {
  flex-shrink: 0;
  color: #333;
}

.benefit-card__text {
  margin: 0;
  font-size: 25px;
  font-family: "Franklin Gothic Medium";
  color: rgb(7, 7, 7);
  line-height: 1.2;
  text-align: left;
}

/* Artboard 4–5: отзывы и доставка (общая шапка, фон line-back-review.png) */
.reviews-delivery-stack {
  background-color: #fff;
  background-image: url("../img/line-back-review.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding-top: 0;
  padding-bottom: clamp(2.75rem, 6vw, 5rem);
}

.reviews-delivery-stack__head {
  padding-bottom: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.reviews-delivery-stack__head-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews-delivery-stack__logo {
  display: block;
  max-width: min(100%, 22.5rem);
  width: auto;
  height: auto;
}

.container--reviews-delivery {
  max-width: min(97.3125rem, 100%);
}

/* Декоративные волны внизу секции (дополнительно к фону line-back у всего блока) */
.section-wave-bottom {
  position: relative;
  overflow: hidden;
}

.section-wave-bottom::after {
  content: "";
  display: block;
  height: clamp(36px, 6vw, 52px);
  margin-top: clamp(1.25rem, 3vw, 2rem);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 52' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%2399cc33' stroke-width='1.25' d='M0 28c160-14 320-14 480 0s320 14 480 0 320-14 480 0'/%3E%3Cpath fill='none' stroke='%2399cc33' stroke-width='0.75' opacity='0.45' d='M0 36c200 10 400 10 600 0s400-10 600 0 400 10 600 0 200 10 240 0'/%3E%3Cpath fill='none' stroke='%23999999' stroke-width='1' opacity='0.55' d='M0 20c240 8 480 8 720 0s480-8 720 0 480 8 720 0 240 8 480 0'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.section-reviews {
  position: relative;
  padding-top: clamp(1.25rem, 3vw, 2.25rem);
  padding-bottom: 0;
  overflow: hidden;
}

.section-reviews__molniya {
  position: absolute;
  right: clamp(-4rem, -8vw, -1rem);
  top: 42%;
  transform: translateY(-50%);
  width: min(28rem, 52vw);
  height: min(36rem, 70vw);
  max-height: 40rem;
  background: url("../img/Molniya.png") no-repeat right center;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.section-reviews .container--reviews-delivery {
  position: relative;
  z-index: 1;
}

.section-reviews__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.section-reviews__intro-wrap {
  position: relative;
  flex: 1 1 min(100%, 42rem);
  padding: 0.25rem 0.25rem 0.25rem 0;
}

.section-reviews__bolt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-5%, -50%);
  color: #f5c400;
  opacity: 0.22;
  pointer-events: none;
  line-height: 0;
}

.section-reviews__bolt svg {
  display: block;
}

.section-reviews__intro {
  position: relative;
  margin: 0;
  padding-left: clamp(3.5rem, 12vw, 5.5rem);
  padding-right: clamp(0.5rem, 3vw, 2rem);
  font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.845rem);
  line-height: 1.2;
  color: rgb(155, 190, 75);
  text-align: left;
  font-weight: 500;
}

.section-reviews__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: min(100%, 22.5625rem);
  min-height: 5.375rem;
  padding: 0.75rem 1.75rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: rgb(139, 191, 62);
  border-radius: 25px;
  box-shadow: 0 3px 16px rgba(139, 191, 62, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.section-reviews__cta:hover,
.section-reviews__cta:focus-visible {
  background-color: rgb(125, 175, 52);
  box-shadow: 0 5px 22px rgba(139, 191, 62, 0.42);
  outline: none;
  transform: translateY(-1px);
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 0.5rem clamp(0.35rem, 2vw, 1rem);
  max-width: 100%;
  margin-inline: auto;
}

.reviews-carousel__viewport {
  min-width: 0;
  max-height: 450px;
  min-height: 320px;
  height: auto;
  background-color: rgba(211, 208, 208, 0.502);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1rem, 3vw, 1.75rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.reviews-carousel__track {
  position: relative;
  min-width: 0;
}

.reviews-carousel__slide[hidden] {
  display: none;
}

.reviews-carousel__slide {
  margin: 0;
}

.reviews-carousel__author {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0a0a0a;
}

.reviews-carousel__quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.05rem, 1.75vw, 1.35rem);
  line-height: 1.5;
  color: #1a1a1a;
}

.reviews-carousel__quote p {
  margin: 0;
}

.reviews-carousel__nav {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: #4a4a4a;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.reviews-carousel__nav:hover,
.reviews-carousel__nav:focus-visible {
  background: #333;
  outline: none;
}

.reviews-carousel__nav:active {
  transform: scale(0.96);
}

.reviews-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 520px) {
  .card__text {
    font-size: 160%;
  }
  .reviews-carousel {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .reviews-carousel__viewport {
    grid-column: 1 / -1;
    order: -1;
  }

  .reviews-carousel__nav--prev {
    justify-self: end;
  }

  .reviews-carousel__nav--next {
    justify-self: start;
  }

  .section-reviews__cta {
    width: 100%;
    text-align: center;
  }
}

.section-delivery {
  padding-top: clamp(1.5rem, 3vw, 2.75rem);
  padding-bottom: 0;
}

.section-delivery__title {
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
}

.section-delivery__card {
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
  background: #ececec;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section-delivery__list {
  margin: 0;
  padding-left: 1.35rem;
  font-size: clamp(1.05rem, 1.75vw, 1.25rem);
  line-height: 1.55;
  color: #1a1a1a;
}

.section-delivery__list li {
  margin-bottom: 1rem;
}

.section-delivery__list li:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__nav,
  .section-reviews__cta {
    transition: none;
  }
}

/* Artboard 2: партнёры + форма */
.section-dealers {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: #fff;
}

.section-dealers__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}

@media (min-width: 900px) {
  .section-dealers__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.dealers-col__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.dealers-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.dealers-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.dealers-logo:hover,
.dealers-logo:focus-visible {
  opacity: 0.75;
  outline: none;
}

.dealers-logo__img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: clamp(2.5rem, 8vw, 3.5rem);
  object-fit: contain;
}

.dealers-logo--text {
  color: #c00;
  font-weight: 600;
  font-size: 0.95rem;
  font-style: italic;
}

.consult-form {
  max-width: 625px;
  background: #94b94c;
  border: none;
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: none;
}

.consult-form__title {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #1565c0;
  text-align: center;
}

.consult-form__row {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.consult-form__field input,
.consult-form__field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  resize: vertical;
}

.consult-form__field--full {
  display: block;
  margin-bottom: 0.65rem;
}

.consult-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.78rem;
  color: #2e5c1a;
  cursor: pointer;
}

.consult-form__check input {
  margin-top: 0.2rem;
  accent-color: var(--color-accent);
}

.consult-form__actions {
  display: flex;
  justify-content: flex-end;
}

.consult-form__submit {
  padding: 0.65rem 1.75rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: lowercase;
  color: #fff;
  background: #0d84ff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.consult-form__submit:hover {
  background: #0a6fd4;
}

/* Artboard 3: регионы */
.section-regions {
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  padding-bottom: 0;
  background: #ececec;
}

.section-regions__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #111;
}

.region-select {
  width: 100%;
  max-width: 28rem;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: #c00;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
}

.region-dealers {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.region-dealers[hidden] {
  display: none;
}

/* Подвал */
.site-footer {
  background: #3a3a3a;
  color: #e8e8e8;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, 1.25fr) auto minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.site-footer__icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.site-footer__label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.25rem;
}

.site-footer__value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.site-footer__value a {
  color: #fff;
  text-decoration: none;
}

.site-footer__value a:hover {
  text-decoration: underline;
}

.site-footer__divider {
  width: 1px;
  min-height: 8rem;
  background: #666;
  display: none;
}

@media (min-width: 900px) {
  .site-footer__divider {
    display: block;
  }
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

.map-section {
  width: 100%;
  line-height: 0;
  background: #ddd;
}

.map-section__frame {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .messengers__link {
    transition: none;
  }

  .card:hover {
    transform: none;
  }

  .messengers__link:hover,
  .messengers__link:focus-visible {
    transform: none;
  }
}

.section-regions__lead {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.section-regions__lead a {
  color: #0d84ff;
  text-decoration: underline;
}

.section-regions__lead a:hover {
  text-decoration: none;
}

.cards {
  grid-template-columns: repeat(2, 1fr);
}
.card .card__text {
  font-size: 2.4rem;
}

.map-section__canvas {
  display: block;
  width: 100%;
  height: 420px;
  z-index: 1;
}

.map-section__canvas .leaflet-container {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  .cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    align-items: stretch;
    align-items: flex-start;
    align-items: flex-end;
    align-items: flex-start;
  }
  .card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 890px) {
  .card {
    width: 100%;
    max-width: 375px;
  }
  .section-reviews__cta {
    width: 100%;
    max-width: 320px;
    height: auto;
    text-align: center;
    padding: 10px 15px;
    margin: 10px auto;
    height: auto;
    line-height: 1.25;
    min-height: 60px;
  }
}

@media (max-width:640px) {
  .lead {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .lead__text {
    font-size: 18px;
  }
  .lead__text a {
    font-size: 20px;
  }
  .card .card__text {
    font-size: 150%;
  }
  .benefit-card__text {
    font-size: 130%;
  }
  .section-dealers__grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .card .card__text {
    font-size: 130%;
  }
}