@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*,
*::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-primary: #ed8d38;
  --brand-secondary: #e5b97d;
  --color-warning: #f59e0b;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-neutral-600: #5d5d5d;
  --color-border: #d1d1d1;
  --font-primary: "Lato", sans-serif;
}

body {
  font-family: var(--font-primary);
  color: #5d5d5d;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  background-color: var(--color-white);
  line-height: 1.5;
}

.ad-top {
  width: 100%;
  padding: clamp(20px, 3.3854166667vw, 32px);
}

.ad-top__wrapper {
  max-width: 1740px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .ad-top__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.ad-top__logo {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ad-top__logo-img {
  width: 112.944px;
  height: 76px;
  aspect-ratio: 107/72;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.ad-top__logo-text {
  font-size: clamp(24px, 4.0364583333vw, 31px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}

.ad-top__status {
  display: flex;
  gap: 16px;
}
.ad-top__status--desktop {
  display: none;
}
@media (min-width: 1200px) {
  .ad-top__status--desktop {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.ad-top__status--mobile {
  padding: 32px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
}
@media (min-width: 1200px) {
  .ad-top__status--mobile {
    display: none;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}
.ad-top__icon-light {
  width: 33px;
  height: 33px;
  aspect-ratio: 33/33;
  position: relative;
}
.ad-top__icon-light::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 2px solid #19ae30;
  opacity: 0.4;
  background: #19ae30;
  box-shadow: 0 0 10px 4px #19ae30;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.ad-top__icon-light::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-color: #19ae30;
  border-radius: 50%;
}

.ad-top__status-text {
  font-size: clamp(24px, 4.0364583333vw, 31px);
  line-height: 1.3;
  color: var(--color-black);
  text-align: center;
  font-weight: 700;
}
@media (min-width: 769px) {
  .ad-top__status-text {
    text-align: right;
  }
}

.ad-top__status-label {
  font-weight: 400;
}

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

.hero__wrapper {
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 769px) {
  .hero__wrapper {
    padding: 40px 32px 16px;
    gap: 32px;
  }
}

.hero__title {
  color: var(--color-black);
  font-size: clamp(30px, 5.2083333333vw, 50px);
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .hero__title {
    font-size: 60px;
  }
}

.hero__title--highlight {
  color: var(--color-warning);
}

.hero__features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  row-gap: 16px;
  -moz-column-gap: 32px;
       column-gap: 32px;
}

.hero__feature {
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  padding: 20px 20px 20px clamp(20px, 3.90625vw, 40px);
  gap: clamp(16px, 2.8645833333vw, 28px);
  border-radius: 30px;
  border: 2px solid #d1d1d1;
  min-height: 129px;
}

.hero__feature-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  max-width: 65px;
}
@media (min-width: 769px) {
  .hero__feature-icon {
    max-width: 89px;
  }
}

.hero__feature-text {
  font-size: clamp(18px, 2.34375vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 769px) {
  .hero__content {
    gap: 40px;
  }
}

.hero__image {
  width: 100%;
}
.hero__image--desktop {
  display: none;
}
@media (min-width: 769px) {
  .hero__image--desktop {
    display: block;
  }
}
.hero__image--mobile {
  display: block;
}
@media (min-width: 769px) {
  .hero__image--mobile {
    display: none;
  }
}

.hero__description {
  font-size: clamp(24px, 4.0364583333vw, 31px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}

.btn {
  background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
  border: none;
  border-radius: 100vmax;
  padding: 10px 16px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 7.5px rgba(0, 0, 0, 0.25);
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  width: 100%;
  transition: all 0.3s ease;
  will-change: transform;
}
.btn:hover {
  transform: scale(1.02);
}
.btn:active {
  transform: scale(0.98);
}
@media (min-width: 550px) {
  .btn {
    min-width: 452px;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.ad-text {
  width: 100%;
  background-color: var(--color-white);
}

.ad-text__wrapper {
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  padding: 32px clamp(20px, 3.90625vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ad-text__intro {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-neutral-600);
  text-align: center;
}

.ad-text__box {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.15);
  padding: 32px 24px;
  display: flex;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 769px) {
  .ad-text__box {
    padding: 24px;
  }
}

.ad-text__icon-wrapper {
  width: 46px;
  min-width: 46px;
  display: none;
}
@media (min-width: 769px) {
  .ad-text__icon-wrapper {
    display: block;
  }
}
.ad-text__icon-wrapper--left {
  align-self: flex-start;
}
.ad-text__icon-wrapper--right {
  align-self: flex-end;
}
.ad-text__icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.ad-text__content {
  font-size: clamp(18px, 3.125vw, 24px);
  line-height: 1.5;
  font-style: italic;
  color: var(--color-neutral-600);
  text-align: center;
  flex: 1;
}
@media (min-width: 769px) {
  .ad-text__content {
    padding: 32px 0;
  }
}

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

.checklist__wrapper {
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  padding: 32px clamp(20px, 3.90625vw, 32px) 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .checklist__wrapper {
    padding: 32px 32px 80px;
  }
}

.checklist__title {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .checklist__title {
    font-size: 31px;
  }
}

.checklist__intro {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-neutral-600);
}
@media (min-width: 769px) {
  .checklist__intro {
    font-size: 20px;
  }
}

.checklist__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist__item {
  display: grid;
  gap: 12px;
  grid-template-columns: 20px 1fr;
  align-items: flex-start;
}

.checklist__icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.checklist__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-neutral-600);
  flex: 1;
}

.magazine {
  width: 100%;
  background-color: #eee8dc;
  padding: 64px clamp(20px, 3.90625vw, 32px);
}
@media (min-width: 769px) {
  .magazine {
    padding: 80px 32px;
  }
}

.magazine__wrapper {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.magazine__wrapper .btn {
  height: 90px;
}

.magazine__title {
  font-size: clamp(24px, 4.0364583333vw, 31px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-black);
  text-align: center;
}

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

.benefits__wrapper {
  max-width: 1328px;
  margin: 0 auto;
  width: 100%;
  padding: 64px clamp(20px, 3.90625vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1200px) {
  .benefits__wrapper {
    padding: 80px 32px;
    flex-direction: row;
    align-items: center;
  }
}

.benefits__image {
  width: 100%;
  max-width: 395px;
  height: auto;
}

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

.benefits__title {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}

.benefits__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-neutral-600);
}
@media (min-width: 769px) {
  .benefits__text {
    font-size: 20px;
  }
}

.benefits-icons {
  width: 100%;
  background: #e8f3f5;
}

.benefits-icons__wrapper {
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 52px clamp(20px, 3.90625vw, 32px);
}
@media (min-width: 769px) {
  .benefits-icons__wrapper {
    gap: 64px;
    padding: 52px 32px;
  }
}

.benefits-icons__title {
  font-size: clamp(24px, 4.0364583333vw, 31px);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: var(--color-black);
  text-align: center;
}

.benefits-icons__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  row-gap: 32px;
  -moz-column-gap: 62px;
       column-gap: 62px;
}

.benefits-icons__item {
  max-width: 380px;
  width: 100%;
  border-radius: 30px;
  background: radial-gradient(56.99% 59.76% at 11.67% 16.2%, #b9cdd7 0%, #fff 100%);
  box-shadow: 0 0 9px 0 rgba(195, 214, 223, 0.5);
  padding: 23px 9px 13px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1000px) {
  .benefits-icons__item {
    gap: 36px;
    padding: 40px;
  }
}

.benefits-icons__circle {
  width: 110px;
  height: 110px;
  min-width: 110px;
  min-height: 110px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.benefits-icons__icon {
  width: 85px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.benefits-icons__item:nth-child(3) .benefits-icons__icon {
  width: 65px;
}

.benefits-icons__text {
  color: #5d5d5d;
  text-align: center;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 400;
  line-height: 1.5;
}

.benefits-icons__footer {
  color: var(--color-black);
  text-align: center;
  font-size: clamp(18px, 2.734375vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
  text-wrap: balance;
}

.text-red {
  color: #ef4444;
}

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

.construction__wrapper {
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  padding: 43px 0px 14px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
@media (min-width: 1290px) {
  .construction__wrapper {
    padding: 80px 32px 435px;
  }
}

.construction__content {
  position: relative;
  padding: 0 32px 0 58px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 1097px;
  margin: 0 auto;
}
@media (min-width: 1290px) {
  .construction__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2 auto);
  }
}

.construction__text {
  position: relative;
  color: #5d5d5d;
  font-family: var(--font-primary);
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 1290px) {
  .construction__text {
    padding: 20px;
  }
}
.construction__text::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -14px;
  width: 10px;
  height: 1px;
  background: #b0b0b0;
}
.construction__text::after {
  content: "";
  position: absolute;
  background: #b0b0b0;
  display: none;
}
@media (min-width: 1290px) {
  .construction__text--1::before {
    width: 240px;
    left: 0;
    top: calc(100% + 176px);
  }
  .construction__text--1::after {
    display: block;
    height: calc(100% + 148px);
    width: 1px;
    left: 0;
    top: 28px;
  }
}
@media (min-width: 1290px) {
  .construction__text--2::before {
    height: calc(100% - 28px);
    width: 1px;
    top: 28px;
    left: 0;
  }
}
@media (min-width: 1290px) {
  .construction__text--3::before {
    width: 320px;
    left: -320px;
    top: calc(100% + 33px);
  }
  .construction__text--3::after {
    display: block;
    width: 1px;
    height: calc(100% + 5px);
    left: 0;
    top: 28px;
  }
}
@media (min-width: 1290px) {
  .construction__text--4 {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .construction__text--4::before {
    width: 1px;
    height: calc(100% + 15px);
    left: 0;
    top: 40px;
  }
}

.construction__line {
  position: absolute;
  top: 13px;
  left: 43px;
  width: 1px;
  height: calc(100% + 4.4444444444vw);
  background-color: #b0b0b0;
}
@media (min-width: 1290px) {
  .construction__line {
    display: none;
  }
}

.construction__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1097px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .construction__image {
    padding-top: 48px;
  }
}
@media (min-width: 1290px) {
  .construction__image {
    padding-top: 0;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.specs {
  width: 100%;
  background: #eee8dc;
  padding: 64px clamp(20px, 3.90625vw, 32px);
}
@media (min-width: 769px) {
  .specs {
    padding: 80px clamp(20px, 3.90625vw, 32px);
  }
}

.specs__wrapper {
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 16px;
  border-radius: 30px;
  background: #fff;
}
@media (min-width: 1000px) {
  .specs__wrapper {
    padding: 40px 80px;
    gap: 40px;
  }
}

.specs__title {
  font-size: clamp(24px, 4.0364583333vw, 31px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
  text-align: center;
  text-wrap: balance;
}

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

.specs__item {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: #f6f3ed;
  min-height: 110px;
}

.specs__number {
  width: -moz-fit-content;
  width: fit-content;
  background: #d4ad77;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 6px;
}
@media (min-width: 769px) {
  .specs__number {
    font-size: 40px;
    min-width: 151px;
  }
}

.specs__text {
  padding: 10px 6px 10px 13px;
  color: #5d5d5d;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .specs__text {
    padding: 10px 28px 10px 28px;
  }
}

.specs__note {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  line-height: 1.5;
  color: #5d5d5d;
  text-align: center;
}

.cta {
  width: 100%;
  background-color: var(--color-white);
  padding: 28px 0 32px;
  position: relative;
}
@media (min-width: 769px) {
  .cta {
    padding: 413px 32px 78px;
  }
}

.cta__wrapper {
  position: relative;
}

.cta__wave {
  display: block;
  min-width: 720px;
  width: 100%;
  height: auto;
  position: absolute;
  top: 28px;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 769px) {
  .cta__wave {
    top: 75px;
  }
}

.cta__product {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 58px auto 16px;
}
@media (min-width: 769px) {
  .cta__product {
    position: absolute;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
  }
}

.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(20px, 3.90625vw, 32px);
}
@media (min-width: 769px) {
  .cta__content {
    padding: 175px 32px 60px;
    max-width: 1020px;
    margin: 0 auto;
    border-radius: 70px;
    background: #fff;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  }
}
.cta__content .btn {
  min-height: 90px;
  padding: 10px clamp(16px, 3.125vw, 28px);
}

.cta__price {
  color: #ef4444;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .cta__price {
    font-size: 60px;
  }
}

.cta__price--old {
  text-decoration: line-through;
}

.cta__offer {
  margin-bottom: 32px;
  color: var(--color-black);
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 769px) {
  .cta__offer {
    margin-bottom: 26px;
  }
}
.cta__offer .price {
  font-size: 30px;
}
@media (min-width: 769px) {
  .cta__offer .price {
    font-size: 60px;
  }
}

.text-green {
  color: #10b981;
}

.testimonials {
  width: 100%;
}

.stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.testimonials__wrapper {
  padding: 40px clamp(20px, 3.90625vw, 32px) 80px;
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.testimonials__wrapper .btn {
  min-height: 90px;
  padding: 10px clamp(16px, 3.125vw, 28px);
}

.testimonials__title {
  font-size: clamp(24px, 4.0364583333vw, 31px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}

.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonials__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 769px) {
  .testimonials__item {
    flex-direction: row;
    gap: 32px;
  }
}

.testimonials__avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  flex-shrink: 0;
}

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

.testimonials__name {
  font-size: clamp(18px, 3.125vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  color: #5d5d5d;
}

.footer-info {
  width: 100%;
  padding: 0px 32px 80px;
}

.footer-info__wrapper {
  max-width: 1264px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  background: #f6f3ed;
}

.footer-info__text {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  line-height: 1.5;
  color: var(--color-black);
  text-align: center;
}

.footer {
  background-color: var(--color-white);
  padding: 64px 32px;
}

.footer__wrapper {
  max-width: 808px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  color: #6d6d6d;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer__links a {
  color: var(--color-neutral-600);
  text-decoration: underline;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer__links a:hover {
  color: #000;
}

.footer__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-neutral-600);
}

.summary-header {
  padding: 32px;
  background: #f6f6f6;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (min-width: 769px) {
  .summary-header {
    padding: 64px 32px;
    flex-direction: row;
    gap: 32px;
  }
}

p.summary-header__title {
  font-family: var(--font-primary);
  color: var(--color-black);
  text-align: center;
  font-size: clamp(24px, 4.0364583333vw, 31px);
  font-weight: 700;
  line-height: 1.3;
}

.summary-header__status {
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 8px;
  width: -moz-fit-content;
  width: fit-content;
  background: #10b981;
}
@media (min-width: 450px) {
  .summary-header__status {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 347px;
    padding: 4px 16px;
  }
}
.summary-header__status img {
  width: 35px;
  height: 35px;
  aspect-ratio: 35/35;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.summary-header__status > p {
  color: #fff;
  text-align: center;
  font-size: clamp(24px, 4.0364583333vw, 31px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.summary-main {
  width: 100%;
  background: #f6f6f6;
  padding: 0px 32px 64px;
}
@media (min-width: 769px) {
  .summary-main {
    padding: 0px 32px 120px;
  }
}

.summary-main__wrapper {
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: clamp(20px, 3.90625vw, 32px);
}
@media (min-width: 769px) {
  .summary-main__wrapper {
    padding: 64px 32px;
  }
}

.summary-main__title {
  color: var(--color-black);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
@media (min-width: 769px) {
  .summary-main__title {
    font-size: 60px;
  }
}

.summary-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .summary-content {
    display: grid;
    grid-template-columns: 605px 1fr;
    align-items: center;
  }
}
.summary-content img {
  max-width: 605px;
  margin: 0 auto;
  display: block;
}

.summary-content__text {
  display: flex;
  padding: 33px 16px;
  flex-direction: column;
  gap: 24px;
}
.summary-content__text > p {
  text-align: center;
  color: var(--color-black);
  font-size: clamp(18px, 2.734375vw, 24px);
  font-weight: 400;
  line-height: 1.5;
}

.summary-content__counter {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}

.summary-content__counter-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--sizes-radius-md, 16px);
  border: 2px solid #d1d1d1;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  min-width: 70px;
  padding: 10px 4px;
}
@media (min-width: 360px) {
  .summary-content__counter-item {
    min-width: 80px;
  }
}
@media (min-width: 769px) {
  .summary-content__counter-item {
    min-width: 150px;
  }
}

.summary-content__counter-item-value {
  color: #000;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .summary-content__counter-item-value {
    font-size: 60px;
  }
}

.summary-content__counter-item-label {
  color: #888;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: lowercase;
}

.summary__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.summary__buttons .btn {
  min-height: 90px;
  padding: 10px clamp(16px, 3.125vw, 28px);
}
.summary__buttons .btn.hidden {
  display: none;
}
@media (min-width: 550px) {
  .summary__buttons .btn#phone-number {
    font-size: 36px;
  }
}

.summary__note {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.summary__note p:last-child strong {
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}/*# sourceMappingURL=style.css.map */