@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

:root {
  /* Brand colors */
  --brand-primary: #ff5858;
  --brand-secondary: #ff9c56;
  --brand-green: #437569;
  --brand-green-dark: #244e44;
  --brand-green-light: #82b5aa;
  --brand-orange-light: #ffc69e;
  --brand-success: #3dbd72;
  --brand-yellow: #ffd456;
  /* Neutral colors */
  --neutral-50: #f6f6f6;
  --neutral-300: #b0b0b0;
  --neutral-400: #888;
  --neutral-500: #6d6d6d;
  --neutral-700: #4f4f4f;
  --neutral-900: #3d3d3d;
  --neutral-950: #262626;
  --neutral-white: #ffffff;
  --neutral-black: #000000;
  /* Fonts */
  --font-brand: "Asap", sans-serif;
  --font-primary: "Roboto", sans-serif;
}

body {
  font-family: var(--font-primary);
  color: var(--neutral-950);
  background-color: var(--neutral-white);
  line-height: 1.5;
}

.navbar {
  background-color: var(--neutral-white);
  width: 100%;
}

.navbar__top-bar {
  background-image: url(../img/bg-navbar.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 8px 16px;
}
@media (min-width: 769px) {
  .navbar__top-bar {
    padding: 16px 0;
  }
}

.navbar__top-container {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .navbar__top-container {
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
  }
}

.navbar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px;
  order: 1;
}
@media (min-width: 769px) {
  .navbar__social {
    order: 1;
    gap: 16px;
    align-self: self-end;
    margin-bottom: 8px;
  }
}

.navbar__social-link {
  width: 20px;
  height: 20px;
  display: block;
}
@media (min-width: 769px) {
  .navbar__social-link {
    width: 24px;
    height: 24px;
  }
}
.navbar__social-link img {
  width: 100%;
  height: 100%;
  display: block;
}

.navbar__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  order: 2;
}
@media (min-width: 769px) {
  .navbar__logo-frame {
    order: 1;
    gap: 24px;
    margin-bottom: 16px;
    align-self: self-start;
  }
}

.navbar__text-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-brand);
  font-weight: 600;
}

.navbar__text-logo-primary {
  font-size: 36px;
  line-height: 1;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .navbar__text-logo-primary {
    font-size: 48px;
  }
}

.navbar__text-logo-secondary {
  font-size: 15px;
  line-height: 1.1;
  color: var(--neutral-950);
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 769px) {
  .navbar__text-logo-secondary {
    font-size: 27px;
  }
}

.navbar__circle {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background-color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .navbar__circle {
    width: 120px;
    height: 120px;
  }
}

.navbar__circle-text {
  text-align: center;
  font-family: var(--font-brand);
  font-weight: 600;
  color: var(--neutral-white);
  padding-bottom: 8px;
}

.navbar__circle-text-primary {
  font-size: 36px;
  line-height: 1;
  margin: 0;
}
@media (min-width: 769px) {
  .navbar__circle-text-primary {
    font-size: 48px;
  }
}

.navbar__circle-text-secondary {
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 769px) {
  .navbar__circle-text-secondary {
    font-size: 22px;
  }
}

.navbar__main-nav {
  display: none;
  order: 3;
}
@media (min-width: 769px) {
  .navbar__main-nav {
    display: flex;
    gap: 24px;
    align-self: self-end;
    order: 2;
  }
}

.navbar__main-nav-link {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-950);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.navbar__main-nav-link:hover {
  color: var(--brand-primary);
}

.navbar__bottom-bar {
  background-color: var(--brand-secondary);
  width: 100%;
  padding: 4px 8px;
  position: relative;
}
@media (min-width: 769px) {
  .navbar__bottom-bar {
    padding: 8px 0;
  }
}

.navbar__bottom-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar__menu-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}
@media (min-width: 992px) {
  .navbar__menu-btn {
    display: none;
  }
}

.navbar__hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar__hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--neutral-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar__menu-btn.menu-open .navbar__hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__menu-btn.menu-open .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__menu-btn.menu-open .navbar__hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.navbar__secondary-nav {
  display: none;
  flex: 1;
}
@media (min-width: 992px) {
  .navbar__secondary-nav {
    display: flex;
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .navbar__secondary-nav.menu-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--brand-secondary);
    padding: 16px;
    gap: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }
}

.navbar__secondary-nav-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-white);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.navbar__secondary-nav-link:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .navbar__secondary-nav-link {
    font-size: 14px;
  }
}

.navbar__search-bar {
  background-color: var(--neutral-white);
  border-radius: 24px;
  display: flex;
  align-items: center;
  width: 258px;
  min-height: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .navbar__search-bar {
    min-height: 38px;
  }
}

.navbar__search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 4px 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--neutral-950);
  background: transparent;
}
.navbar__search-input::-moz-placeholder {
  color: var(--neutral-300);
}
.navbar__search-input::placeholder {
  color: var(--neutral-300);
}

.navbar__search-btn {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0 4px 0 0;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__search-btn img {
  width: 100%;
  height: 100%;
  display: block;
}

.main-wrapper {
  width: 100%;
  background-color: var(--neutral-white);
}

.main-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .main-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 20px;
  }
}

.main-content {
  flex: 1;
  min-width: 0;
}
@media (min-width: 992px) {
  .main-content {
    flex: 1;
  }
}

.article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 769px) {
  .article {
    gap: 16px;
  }
}

.article__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 10px;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .article__meta {
    font-size: 12px;
  }
}

.article__breadcrumb {
  flex: 1;
  color: var(--neutral-black);
  margin: 0;
}

.article__date {
  flex: 1;
  color: var(--neutral-500);
  text-align: right;
  margin: 0;
}

.article__heading-main {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .article__heading-main {
    font-size: 40px;
  }
}

.article__heading-main--highlight {
  color: var(--brand-primary);
}

@media (max-width: 768px) {
  .article__heading-main--small br {
    display: inline;
  }
}

.article__hero-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.article__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article__display-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--brand-primary);
  text-decoration: underline;
  margin: 0;
}
@media (min-width: 769px) {
  .article__display-text {
    font-size: 24px;
  }
}

.article__lead {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .article__lead {
    font-size: 20px;
  }
}

.article__heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--neutral-950);
  margin: 0;
  padding-top: 4px;
}
@media (min-width: 769px) {
  .article__heading {
    font-size: 28px;
  }
}

.article__paragraph {
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-950);
  margin: 0 0 18px 0;
}
.article__paragraph:last-child {
  margin-bottom: 0;
}
.article__paragraph strong {
  font-weight: 700;
}
@media (min-width: 769px) {
  .article__paragraph {
    font-size: 18px;
  }
}

.article__paragraph-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article__before-after {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
@media (min-width: 769px) {
  .article__before-after {
    border-radius: 8px;
  }
}

.article__comparison-box {
  background-color: var(--neutral-50);
  border: 1px solid var(--brand-primary);
  border-radius: 4px;
  padding: 8px;
}
@media (min-width: 769px) {
  .article__comparison-box {
    padding: 16px;
  }
}

.article__comparison-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .article__comparison-text {
    font-size: 18px;
  }
}
.article__comparison-text strong {
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 769px) {
  .article__comparison-text strong {
    font-size: 20px;
  }
}

.article__comparison-left {
  color: #ee1d23;
}

.article__comparison-right {
  color: var(--brand-success);
}

.checkbox-section {
  background-color: var(--neutral-white);
  border: 2px solid var(--neutral-950);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .checkbox-section {
    padding: 24px;
    gap: 24px;
  }
}

.checkbox-section__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .checkbox-section__heading {
    font-size: 28px;
  }
}

.checkbox-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 769px) {
  .checkbox-section__list {
    gap: 16px;
  }
}

.checkbox-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 280px;
}

.checkbox-item__box {
  width: 28px;
  height: 28px;
  border: 2px solid var(--neutral-950);
  border-radius: 4px;
  background-color: var(--neutral-white);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.checkbox-item__box:hover {
  border-color: var(--brand-primary);
}
.checkbox-item__box.checked {
  border-color: var(--brand-primary);
}
.checkbox-item__box.checked::after {
  content: "✕";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.checkbox-item__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .checkbox-item__text {
    font-size: 18px;
  }
}

.checkbox-section__summary {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-950);
  margin: 0;
}
.checkbox-section__summary strong {
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 769px) {
  .checkbox-section__summary {
    font-size: 18px;
  }
  .checkbox-section__summary strong {
    font-size: 20px;
  }
}

.expert-quote {
  background-color: var(--brand-green);
  padding: 8px 16px;
  border-radius: 4px;
}
@media (min-width: 769px) {
  .expert-quote {
    padding: 16px 24px;
  }
}

.expert-quote__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--neutral-white);
  margin: 0;
}
@media (min-width: 769px) {
  .expert-quote__text {
    font-size: 24px;
  }
}

.professor-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 769px) {
  .professor-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
}

.professor-section__frame {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.professor-section__image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.professor-section__name-frame {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.professor-section__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .professor-section__name {
    font-size: 16px;
  }
}

.professor-section__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--brand-green);
  margin: 0;
}
@media (min-width: 769px) {
  .professor-section__title {
    font-size: 16px;
  }
}

.professor-section__quote {
  flex: 1;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--neutral-700);
  margin: 0;
}

.professor-section__quote-frame {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.professor-section__signature {
  width: 200px;
  height: auto;
  display: block;
  align-self: flex-end;
}

.wrong-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .wrong-methods {
    gap: 16px;
  }
}

.wrong-methods__card {
  background-color: var(--neutral-50);
  border: 1px solid var(--brand-primary);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 100%;
  min-width: 240px;
}
@media (min-width: 769px) {
  .wrong-methods__card {
    flex: 1 1 calc(33.333% - 11px);
    max-width: calc(33.333% - 11px);
    padding: 16px;
    gap: 12px;
  }
}

.wrong-methods__image {
  width: 200px;
  height: 157px;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrong-methods__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--brand-primary);
  margin: 0;
}
@media (min-width: 769px) {
  .wrong-methods__title {
    font-size: 22px;
  }
}

.wrong-methods__text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .wrong-methods__text {
    font-size: 16px;
  }
}

.timeline-section {
  background-color: var(--neutral-white);
  border: 1px solid var(--neutral-950);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .timeline-section {
    padding: 24px;
    gap: 24px;
  }
}

.timeline-section__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .timeline-section__heading {
    font-size: 28px;
  }
}

.timeline-section__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 769px) {
  .timeline-section__cards {
    gap: 16px;
  }
}

.timeline-card {
  border: 2px solid;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 100%;
  min-width: 200px;
  position: relative;
  box-shadow: inset 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}
@media (min-width: 769px) {
  .timeline-card {
    flex: 1 1 calc(33.333% - 11px);
    max-width: calc(33.333% - 11px);
  }
}

.timeline-card--orange {
  border-color: var(--brand-orange-light);
  background-color: var(--brand-secondary);
}

.timeline-card--green {
  border-color: var(--brand-green-light);
  background-color: var(--brand-green-dark);
}

.timeline-card__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.timeline-card__time {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 769px) {
  .timeline-card__time {
    font-size: 20px;
  }
}

.timeline-card--orange .timeline-card__time {
  color: var(--brand-green-dark);
}

.timeline-card--green .timeline-card__time {
  color: var(--brand-secondary);
}

.timeline-card__divider {
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.timeline-card__text {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 769px) {
  .timeline-card__text {
    font-size: 20px;
  }
}
.timeline-card__text strong {
  font-weight: 700;
  font-size: 20px;
}
@media (min-width: 769px) {
  .timeline-card__text strong {
    font-size: 22px;
  }
}

.timeline-card--orange .timeline-card__text {
  color: var(--neutral-950);
}

.timeline-card--green .timeline-card__text {
  color: var(--neutral-white);
}

.testimonial-section {
  padding: 4px 0;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .testimonial-section {
    padding: 8px 0;
    max-width: 100%;
  }
}

.testimonial-section__slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-section__slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-section__slide {
  min-width: 100%;
  flex-shrink: 0;
}

.testimonial-section__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-section__arrow--left {
  left: -16px;
}

.testimonial-section__arrow--right {
  right: -16px;
}
.testimonial-section__arrow--right img {
  transform: scaleX(-1);
}

.testimonial-card {
  background-color: var(--neutral-50);
  border: 1px solid var(--brand-primary);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 769px) {
  .testimonial-card {
    padding: 24px;
    gap: 24px;
  }
}

.testimonial-card__image {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 1px solid var(--neutral-300);
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
}

.testimonial-card__content {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 769px) {
  .testimonial-card__content {
    min-width: 400px;
  }
}

.testimonial-card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .testimonial-card__title {
    font-size: 28px;
  }
}

.testimonial-card__text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--neutral-900);
  margin: 0;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--brand-primary);
  margin: 0;
}
@media (min-width: 769px) {
  .testimonial-card__author {
    font-size: 18px;
  }
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 16px;
}
@media (min-width: 769px) {
  .benefits-list {
    gap: 16px;
  }
}

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

.benefits-list__header {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.benefits-list__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.benefits-list__title {
  flex: 1;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--brand-green-dark);
  margin: 0;
}
@media (min-width: 769px) {
  .benefits-list__title {
    font-size: 20px;
  }
}

.benefits-list__text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--neutral-950);
  margin: 0;
}

.editorial-note {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 16px 0;
}
@media (min-width: 769px) {
  .editorial-note {
    gap: 16px;
  }
}

.editorial-note__icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.editorial-note__text {
  flex: 1;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .editorial-note__text {
    font-size: 22px;
  }
}

.editorial-note__label {
  color: var(--brand-primary);
}

.editorial-note__main {
  font-weight: 400;
  font-size: 18px;
}
@media (min-width: 769px) {
  .editorial-note__main {
    font-size: 22px;
  }
}

.cta-button {
  padding: 8px 0;
  position: relative;
}
@media (min-width: 769px) {
  .cta-button {
    padding: 16px 0;
  }
}

.cta-button.desktop-only {
  display: none;
}
@media (min-width: 992px) {
  .cta-button.desktop-only {
    display: block;
  }
}

.cta-button__link {
  background-color: var(--brand-primary);
  border-radius: 8px;
  padding: 30px 16px;
  display: block;
  text-decoration: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
@media (min-width: 769px) {
  .cta-button__link {
    padding: 30px 24px;
  }
}

.cta-button__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-success);
  border: 2px solid var(--neutral-white);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  color: var(--neutral-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .cta-button__badge {
    padding: 12px 24px;
  }
}

.cta-button__text {
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  color: var(--neutral-white);
  text-decoration: underline;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}
@media (min-width: 769px) {
  .cta-button__text {
    font-size: 36px;
  }
}

.cta-button__highlight {
  color: var(--brand-yellow);
}

.comments-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 769px) {
  .comments-section {
    gap: 16px;
  }
}

.comments-section__divider {
  width: 100%;
  height: 1px;
  background-color: #ff5858;
}

.comments-section__disclaimer {
  font-size: 14px;
  line-height: 1.4;
  color: var(--neutral-400);
  margin: 0;
}

.comments-section__header {
  padding: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comments-section__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .comments-section__title {
    font-size: 28px;
  }
}

.comments-section__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .comments-section__subtitle {
    font-size: 18px;
  }
}

.comments-section__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0 8px 8px 8px;
}
@media (min-width: 769px) {
  .comments-section__list {
    gap: 0;
  }
}

.comment {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-300);
}
.comment:last-child {
  border-bottom: none;
}
@media (min-width: 769px) {
  .comment {
    padding: 16px 0;
  }
}

.comment__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comment__author {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .comment__author {
    font-size: 20px;
  }
}

.comment__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-700);
  padding: 4px 0;
  margin: 0;
}
@media (min-width: 769px) {
  .comment__text {
    font-size: 18px;
  }
}

.comment__photo {
  width: 200px;
  height: 300px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 8px;
}
@media (min-width: 769px) {
  .comment__photo {
    width: 280px;
    height: 420px;
  }
}

.comment__date {
  font-size: 10px;
  line-height: 1.5;
  color: var(--neutral-400);
  margin: 0;
}
@media (min-width: 769px) {
  .comment__date {
    font-size: 12px;
  }
}

.sidebar {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .sidebar {
    width: 360px;
    flex-shrink: 0;
    gap: 32px;
    position: sticky;
    top: 20px;
  }
}

.sidebar__banner {
  background-color: var(--brand-green-dark);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .sidebar__banner {
    border-radius: 12px;
  }
}

.sidebar__banner-heading {
  padding: 16px;
  text-align: center;
}
@media (min-width: 992px) {
  .sidebar__banner-heading {
    padding: 24px 16px 16px;
  }
}

.sidebar__banner-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--neutral-white);
  margin: 0;
}
.sidebar__banner-title br {
  display: block;
}
@media (min-width: 992px) {
  .sidebar__banner-title {
    font-size: 28px;
  }
}

.sidebar__banner-highlight {
  color: var(--brand-secondary);
}

.sidebar__banner-content {
  width: 100%;
  min-height: 328px;
  background-image: url(../img/image-banner-frame.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.sidebar__banner-button {
  font-size: 20px;
  width: 100%;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: var(--neutral-white);
  border-radius: 48px;
  padding: 16px 8px;
  border: 2px solid var(--neutral-white);
  background-color: var(--brand-secondary);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2) inset;
  transition: all 0.3s;
}
.sidebar__banner-button:hover {
  background-color: var(--brand-primary);
}
@media (min-width: 992px) {
  .sidebar__banner-button {
    padding: 24px 12px;
    font-size: 24px;
  }
}

.sidebar__section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 16px 0;
}

.sidebar__section-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--neutral-950);
  text-align: center;
  margin: 0;
}
@media (min-width: 992px) {
  .sidebar__section-heading {
    font-size: 22px;
  }
}

.sidebar__section-divider {
  width: 100px;
  height: 2px;
  background-color: var(--brand-primary);
}

.sidebar__articles {
  display: flex;
  flex-direction: column;
}

.sidebar__articles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar__divider {
  width: 100%;
  height: 1px;
  background-color: var(--neutral-300);
}

.sidebar-article {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.sidebar-article:hover {
  opacity: 0.8;
}
@media (min-width: 992px) {
  .sidebar-article {
    gap: 16px;
  }
}

.sidebar-article__image {
  width: 116px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.sidebar-article__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}

.sidebar-article__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 992px) {
  .sidebar-article__title {
    font-size: 20px;
  }
}

.sidebar-article__meta {
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
  color: var(--neutral-300);
  margin: 0;
}

.sidebar-article__btn {
  width: 100%;
  background-color: transparent;
  border: 2px solid var(--brand-primary);
  padding: 4px 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-primary);
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s;
}
.sidebar-article__btn:hover {
  background-color: var(--brand-primary);
  color: var(--neutral-white);
}
@media (min-width: 992px) {
  .sidebar-article__btn {
    font-size: 18px;
  }
}

.sidebar__partners {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--brand-primary);
  border-radius: 8px;
}
@media (min-width: 992px) {
  .sidebar__partners {
    padding: 24px;
  }
}

.sidebar__partners-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 992px) {
  .sidebar__partners-list {
    gap: 24px;
  }
}

.sidebar__partner-logo {
  max-width: 264px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.callpage {
  width: 100%;
  background-color: var(--neutral-white);
  padding: 24px 0;
}
@media (min-width: 769px) {
  .callpage {
    padding: 40px 0;
  }
}

.callpage__container {
  max-width: 792px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 769px) {
  .callpage__container {
    padding: 0 0;
  }
}

.callpage__content {
  background-color: var(--neutral-white);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 769px) {
  .callpage__content {
    gap: 24px;
    padding: 32px;
  }
}

.callpage__heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--brand-green);
  margin: 0;
  text-align: center;
  padding: 24px 0;
}
@media (min-width: 769px) {
  .callpage__heading {
    font-size: 40px;
  }
}

.callpage__heading--highlight {
  color: var(--brand-primary);
}

.callpage__product-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
}
@media (min-width: 769px) {
  .callpage__product-frame {
    max-width: 400px;
  }
}

.callpage__product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.callpage__badge-promo {
  position: absolute;
  top: 35%;
  right: 0%;
  width: 100px;
  height: 100px;
  background-color: var(--brand-primary);
  border: 2px solid var(--neutral-white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.24);
}
@media (min-width: 769px) {
  .callpage__badge-promo {
    top: 79px;
    right: 50px;
    width: 100px;
    height: 100px;
  }
}

.callpage__badge-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--neutral-white);
  margin: 0;
}

.callpage__text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.callpage__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-black);
  margin: 0;
  text-align: center;
}
.callpage__text strong {
  font-weight: 700;
}
@media (min-width: 769px) {
  .callpage__text {
    font-size: 18px;
  }
}

.callpage__text--red {
  color: var(--brand-primary);
}

.callpage__warning-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .callpage__warning-icon {
    width: 40px;
    height: 40px;
  }
}

.callpage__warning-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: var(--neutral-950);
  margin: 0;
  text-align: left;
}
.callpage__warning-text strong {
  font-weight: 700;
}
@media (min-width: 769px) {
  .callpage__warning-text {
    font-size: 16px;
  }
}

.callpage__info-box {
  background-color: var(--neutral-50);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.callpage__info-box span {
  color: var(--brand-secondary);
}
@media (min-width: 769px) {
  .callpage__info-box {
    padding: 12px 16px;
  }
}

.callpage__info-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.callpage__info-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--neutral-black);
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: 360px;
}
.callpage__info-text br {
  display: block;
}
@media (min-width: 769px) {
  .callpage__info-text {
    font-size: 22px;
  }
}

.callpage__cta-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--neutral-black);
  margin: 0;
  text-align: center;
}
@media (min-width: 769px) {
  .callpage__cta-heading {
    font-size: 28px;
  }
}

.callpage__cta-heading--highlight {
  color: var(--brand-primary);
  text-transform: uppercase;
}

.callpage__phone-btn {
  background-color: var(--brand-secondary);
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.35s;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.callpage__phone-btn:hover {
  background-color: var(--brand-primary);
}
@media (min-width: 769px) {
  .callpage__phone-btn {
    padding: 16px 32px;
  }
}

.callpage__phone-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}

.callpage__phone-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  text-align: left;
  color: var(--neutral-white);
}
@media (min-width: 769px) {
  .callpage__phone-text {
    font-size: 36px;
  }
}

.callpage__phone-number {
  display: none;
  background-color: var(--brand-green-dark);
  border-radius: 80px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  animation: slideDown 0.3s ease-out;
}

.callpage__phone-number-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.callpage__phone-link {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--neutral-white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.callpage__phone-link:hover {
  opacity: 0.9;
}
@media (min-width: 769px) {
  .callpage__phone-link {
    font-size: 48px;
  }
}

.callpage__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.callpage__hours-item {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

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

.callpage__hours-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--neutral-950);
  margin: 0;
  text-align: center;
}
.callpage__hours-text br {
  display: block;
}
@media (min-width: 769px) {
  .callpage__hours-text {
    font-size: 16px;
  }
}

.callpage__hours-note {
  font-size: 14px;
  line-height: 1.4;
  color: var(--neutral-black);
  margin: 0;
  text-align: center;
}
.callpage__hours-note br {
  display: block;
}
@media (min-width: 769px) {
  .callpage__hours-note {
    font-size: 16px;
  }
}

.callpage__urgency {
  background-color: var(--neutral-50);
  border: 1px solid #e7e7e7;
  border-radius: 32px;
  padding: 8px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 769px) {
  .callpage__urgency {
    padding: 8px 16px;
  }
}

.callpage__urgency-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}

.callpage__urgency-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.callpage__urgency-primary {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: #ee1d23;
  margin: 0;
}
@media (min-width: 769px) {
  .callpage__urgency-primary {
    font-size: 16px;
  }
}

.callpage__urgency-secondary {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--neutral-950);
  margin: 0;
}
@media (min-width: 769px) {
  .callpage__urgency-secondary {
    font-size: 16px;
  }
}

.callpage__badges {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
}
@media (min-width: 769px) {
  .callpage__badges {
    gap: 4px;
  }
}

.callpage__badge-image {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer {
  background-color: var(--neutral-950);
  color: var(--neutral-white);
  padding: 24px 16px;
  margin-top: 40px;
}
@media (min-width: 769px) {
  .footer {
    padding: 40px 32px;
  }
}

.footer__copyright {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__copyright p {
  font-size: 14px;
  line-height: 1.5;
  color: #e7e7e7;
  margin: 0;
}

.footer__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 769px) {
  .footer__row {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}
.footer__links a {
  color: #e7e7e7;
  text-decoration: underline;
  font-size: 14px;
}
.footer__links a:hover {
  color: var(--brand-secondary);
}

.footer__text {
  font-size: 12px;
  line-height: 1.5;
  color: #e7e7e7;
  margin-top: 16px;
}
@media (min-width: 769px) {
  .footer__text {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */