/* ---------- CSS reset ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

input,
button {
  font: inherit;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
}

/* ---------- ROOT settings - common and Mobile---------- */

:root {
  /* Colours */
  --color-primary-blue-700: #1c2f67;
  --color-primary-blue-600: #2c4695;
  --color-primary-blue-500: #4266d2;
  --color-text-grey-800: #26282b;
  --color-text-grey-500: #686d77;
  --color-blue-200: #b8becf;
  --color-white: #ffffff;
  --color-red-500: #df0032;
  --color-surface-gray-75: #f5f7f8;
  --color-brightblue-25: #f4f6ff;
  --color-red-700: #9b0020;
  --color-brightblue-75: #e4ebff;
  --color-footer-tile: #5f6c93;
  --color-footer-link: #ccd4ee;
  --color-black: #000;

  /* Fonts */
  --font-primary: "HelveticaNeueLTPro-MdCn", Arial, sans-serif;
  --font-secondary: Arial, sans-serif;

  /* Spacing / Layout */
  --gutter: 24px;
  --container-max-width: 1128px;
  --container-padding-mobile: 16px;
  --container-padding-mobile-landscape: 16px;
  --container-padding-tablet: 24px;
  --container-padding-desktop: 0;

  /* Subtitle typography */
  --fs-subtitle-l: 1.25rem; /* 20px */
  --lh-subtitle-l: 2rem; /* 32px */
  --fs-subtitle-m: 1.125rem; /* 18px */
  --lh-subtitle-m: 1.75rem; /* 28px */

  /* Body typography */
  --fs-body-m: 1rem; /* 16px */
  --lh-body-m: 1.5rem; /* 24px */
  --fs-body-s: 0.875rem; /* 14px */
  --lh-body-s: 1.25rem; /* 20px */

  /* Assistive typoraphy */
  --fs-assistive-l: 0.8125rem; /* 13px */
  --lh-assistive-l: 1rem; /* 16px */

  /* Utility → Body M */
  --fs-util-body-m: 1rem; /* 16px */
  --lh-util-body-m: 1rem; /* 16px */

  /* Utility → Body S */
  --fs-util-body-s: 0.875rem; /* 14px */
  --lh-util-body-s: 0.875rem; /* 14px */

  /* Utility → Assistive S */
  --fs-util-assistive-s: 0.8125rem; /* 13px */
  --lh-util-assistive-s: 0.8125rem; /* 13px */

  /* Utility → Assistive XS */
  --fs-util-assistive-xs: 0.75rem; /* 12px */
  --lh-util-assistive-xs: 0.75rem; /* 12px */

  /* Typography: Mobile & MobileLandscape (320–767) */
  --fs-2xl: 2.5rem;
  --lh-2xl: 3rem; /* 2XL: 40/48 */
  --fs-xl: 2rem;
  --lh-xl: 2.5rem; /* XL: 32/40 */
  --fs-l: 1.875rem;
  --lh-l: 2.375rem; /* L: 30/38 */
  --fs-m: 1.5rem;
  --lh-m: 1.875rem; /* M: 24/30 */
  --fs-s: 1.25rem;
  --lh-s: 1.5rem; /* S: 20/24 */
  --fs-xs: 1.125rem;
  --lh-xs: 1.375rem; /* XS: 18/22 */

  /* Heights etc: Mobile */
  --header-min-h: 64px;
  --banner-min-h: 359px;
  --banner-heading-max-width: 288px;
  --size-radius-default: 2px;

  /* Timeline badge */
  --badge-r: 30px;
}

/* ---------- ROOT settings - MobileLandscape ---------- */

@media (min-width: 500px) {
  :root {
    /* Heights etc: MobileLandscape */
    --banner-heading-max-width: 336px;
    --header-min-h: 84px;
  }
}

/* ---------- ROOT settings - Tablet ---------- */

@media (min-width: 768px) {
  :root {
    /* Typography: Tablet (768–1199) */

    --fs-2xl: 3.5rem;
    --lh-2xl: 4rem; /* 2XL: 56/64 */
    --fs-xl: 2.625rem;
    --lh-xl: 3rem; /* XL: 42/48 */
    --fs-l: 2.25rem;
    --lh-l: 2.75rem; /* L: 36/44 */
    --fs-m: 1.75rem;
    --lh-m: 2.25rem; /* M: 28/36 */
    --fs-s: 1.25rem;
    --lh-s: 1.625rem; /* S: 20/26 */
    --fs-xs: 1.125rem;
    --lh-xs: 1.5rem; /* XS: 18/24 */

    /* Heights etc: Tablet */
    --banner-heading-max-width: 390px;
    --banner-min-h: 440px;
  }
}
/* ---------- ROOT settings - Desktop---------- */

@media (min-width: 1200px) {
  :root {
    /* Typography: Desktop (1200+) */

    --fs-2xl: 4rem;
    --lh-2xl: 4.5rem; /* 2XL: 64/72 */
    --fs-xl: 3rem;
    --lh-xl: 3.5rem; /* XL: 48/56 */
    --fs-l: 2.5rem;
    --lh-l: 3rem; /* L: 40/48 */
    --fs-m: 2rem;
    --lh-m: 2.5rem; /* M: 32/40 */
    --fs-s: 1.5rem;
    --lh-s: 2rem; /* S: 24/32 */
    --fs-xs: 1.25rem;
    --lh-xs: 1.5rem; /* XS: 20/24 */

    /* Height specifics for Desktop */
    --banner-min-h: 494px;
    --banner-heading-max-width: 390px;
  }
}

/* ---------- BASE TYPOGRAPHY ---------- */

@font-face {
  font-family: "HelveticaNeueLTPro-MdCn";
  src: url("../fonts/HelveticaNeueLTPro-MdCn.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-grey-800);
  background: var(--color-white);
}

/* ---------- Layout & Grid ---------- */

/* Container and elements per breakpoints */

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-padding-mobile);
}

@media (min-width: 500px) {
  /* MobileLandscape */
  .container {
    padding-inline: var(--container-padding-mobile-landscape);
  }
}
@media (min-width: 768px) {
  /* Tablet */
  .container {
    padding-inline: var(--container-padding-tablet);
  }
}
@media (min-width: 1200px) {
  /* Desktop */
  .container {
    max-width: var(--container-max-width);
    padding-inline: var(--container-padding-desktop);
  }
}

/* Grid utility */

.grid {
  display: grid;
  gap: var(--gutter);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Span utility*/
.span-2 {
  grid-column: span 2;
}
.span-3 {
  grid-column: span 3;
}

/* Responsive 1,2,4 */
.grid--auto-4 {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--auto-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .grid--auto-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Section specifics ---------- */

.section--top {
  padding-top: 40px;
}

@media (min-width: 768px) {
  .section--top {
    padding-top: 64px;
  }
}

/* Header */

.site-header {
  width: 100%;
  min-height: var(--header-min-h);
  background-color: var(--color-primary-blue-700);
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .container {
  padding-inline: 0;
}

.site-header__logo img {
  width: 198px;
  margin-left: 6px;
}

@media (min-width: 500px) {
  .site-header__logo img {
    width: 229px;
    margin-left: 4px;
  }
}

@media (min-width: 768px) {
  .site-header__logo img {
    width: 268px;
    margin-left: 10px;
  }
}

@media (min-width: 1200px) {
  .site-header__logo img {
    margin-left: 12px;
  }
}

.site-header__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-red-500);
  border-radius: var(--size-radius-default);
  margin-right: 16px;
  color: var(--color-white);
  text-decoration: none;
}

.site-header__cta .cta__icon {
  display: inline-flex;
}

.site-header__cta .cta__label {
  display: none;
}

.site-header__cta .cta__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.site-header__cta:hover {
  background-color: var(--color-red-700);
}

.site-header__cta:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--color-red-700);
}

@media (min-width: 500px) {
  .site-header__cta {
    width: auto;
    min-width: 112px;
    font-family: var(--font-secondary);
    font-size: var(--fs-util-body-s);
    line-height: var(--lh-util-body-s);
    font-weight: 700;
    padding-inline: 16px;
  }

  .site-header__cta .cta__icon {
    display: none;
  }

  .site-header__cta .cta__label {
    display: inline;
  }
}

@media (min-width: 768px) {
  .site-header__cta {
    font-size: var(--fs-util-body-m);
    line-height: var(--lh-util-body-m);
    font-weight: 700;
    height: 40px;
  }
}

@media (min-width: 1200px) {
  .site-header__inner {
    max-width: 1180px;
  }

  .site-header__cta {
    margin-right: 26px;
  }
}

/* Main heading */

.intro {
  padding-top: 24px;
}

@media (min-width: 1200px) {
  .intro {
    padding-top: 64px;
  }
}

.intro__title {
  font-size: var(--fs-2xl);
  line-height: var(--lh-2xl);
  font-weight: 400;
  color: var(--color-text-grey-800);
  margin-bottom: 24px;
}

/* Main banner */

.banner {
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.55) 30%,
      rgba(0, 0, 0, 0.25) 60%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(217, 217, 217, 0) 0%,
      rgba(65, 65, 65, 0.4) 60%,
      rgba(32, 32, 32, 0.6) 85.36%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    url("../img/main_banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: var(--banner-min-h);
}

.banner__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  min-height: var(--banner-min-h);
  padding-bottom: 24px;
}

@media (min-width: 500px) {
  .banner__content {
    padding-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .banner__content {
    padding-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .banner__content {
    padding: 48px;
  }
}

.banner__content h2 {
  color: var(--color-white);
  font-size: var(--fs-xl);
  line-height: var(--lh-xl);
  max-width: var(--banner-heading-max-width);
  font-weight: 400;
}

.banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 32px;
  padding: 0 24px;
  min-width: 112px;
  max-width: 500px;

  background: var(--color-white);
  border: none;
  border-radius: var(--size-radius-default);

  font-family: var(--font-secondary);
  font-size: var(--fs-util-body-m);
  font-weight: 700;
  line-height: var(--lh-util-body-m);
  color: var(--color-primary-blue-700);
  text-decoration: none;
}

.banner__button:hover {
  background-color: var(--color-blue-200);
}

.banner__button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--color-primary-blue-500);
}

@media (min-width: 500px) {
  .banner__buttons {
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .banner__button {
    height: 54px;
    padding: 0 32px;
  }
}

@media (max-width: 499px) {
  .banner__button {
    width: 100%;
  }
}

/* Feature boxes */

.feature__icon {
  color: var(--color-primary-blue-700);
  width: 48px;
  height: auto;
  margin-bottom: 16px;
}

.feature__title {
  font-size: var(--fs-subtitle-m);
  font-family: var(--font-secondary);
  line-height: var(--lh-subtitle-m);
  font-weight: 700; /* bold */
  color: var(--color-text-grey-800);
  margin-bottom: 8px;
}

.feature__text {
  font-family: var(--font-secondary);
  font-size: var(--fs-body-m);
  font-weight: 400;
  color: var(--color-text-grey-500);
}

.feature__link {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--color-primary-blue-500);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: var(--font-secondary);
}

.feature__link:hover {
  color: var(--color-primary-blue-600);
  text-decoration: underline;
}

.text__link {
  color: var(--color-primary-blue-500);
  font-weight: 700;
}

.text__link:hover {
  text-decoration: none;
  color: var(--color-primary-blue-600);
}

.feature__link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.feature--row {
  grid-auto-rows: min-content;
}

@media (min-width: 500px) {
  .feature--row {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .feature--row .feature__icon {
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .feature--row > :not(.feature__icon) {
    grid-column: 2;
  }
}

.feature__text + .feature__text .feature__link {
  margin-top: 16px;
}

/* Reasons */

.reasons {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .reasons {
    margin-bottom: 64px;
  }
}

.section__title {
  font-size: var(--fs-l);
  line-height: var(--lh-l);
  font-weight: 400;
  color: var(--color-text-grey-800);
  margin-bottom: 16px;
}

@media (min-width: 500px) {
  .section__title {
    margin-bottom: 0px;
  }
}

.reasons__two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1200px) {
  .reasons__two {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 48px;
  }
}

.reasons__extra {
  display: grid;
  gap: 48px;
}

/* Reasons timeline */

.reasons__timeline {
  position: relative;
}

.tl {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 0 16px 0;
  list-style: none;
  font-family: var(--font-secondary);
  margin: 0;
}

.tl__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding-block: 16px;
  min-height: 100px;
}

.tl__item:first-of-type {
  padding-top: 0;
}

.tl__item--right {
  grid-template-columns: 1fr auto;
}

.tl__item--right .tl__text {
  order: 1;
  justify-self: end;
  max-width: 314px;
}
.tl__item--right .tl__badge {
  order: 2;
}

.tl__badge {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #e4ebff;
  color: var(--color-primary-blue-500);
  font-size: var(--fs-subtitle-m);
  line-height: var(--lh-subtitle-m);
  font-weight: 700;
}

.tl__text {
  font-size: var(--fs-body-m);
  line-height: var(--lh-body-m);
  font-weight: 400;
  color: var(--color-text-grey-800);
}

.tl__curve {
  position: absolute;
  left: var(--badge-r);
  width: calc(100% - 2 * var(--badge-r));
  display: block;
  pointer-events: none;
  z-index: 0;
}

.tl__curve--mobileLandscape,
.tl__curve--tablet,
.tl__curve--Desktop {
  display: none;
}

.tl__curve--a {
  top: 40px;
  height: 129px;
}

.tl__curve--b {
  top: 190px;
  height: 156px;
}

@media (min-width: 500px) {
  .reasons__timeline {
    padding-inline: 32px;
  }

  .tl__item {
    min-height: 140px;
  }

  .tl__badge {
    width: 88px;
    height: 88px;
  }

  .tl__curve--mobile {
    display: none;
  }
  .tl__curve--mobileLandscape {
    display: block;
  }
  .tl__curve--tablet {
    display: none;
  }
  .tl__curve--Desktop {
    display: none;
  }

  .tl__curve--a {
    top: 38px;
    height: 220px;
  }
  .tl__curve--b {
    top: 250px;
    height: 195px;
  }
}

@media (min-width: 768px) {
  .reasons__timeline {
    padding-inline: 68px;
  }

  .tl__item {
    min-height: 150px;
  }

  .tl__text {
    max-width: 350px;
  }

  .tl__curve--mobile {
    display: none;
  }
  .tl__curve--mobileLandscape {
    display: none;
  }
  .tl__curve--tablet {
    display: block;
  }
  .tl__curve--Desktop {
    display: none;
  }

  .tl__curve--a {
    top: 58px;
    height: 220px;
  }
  .tl__curve--b {
    top: 250px;
    height: 212px;
  }
}

@media (min-width: 1200px) {
  .tl__item {
    min-height: 185px;
  }

  .tl__curve--mobile {
    display: none;
  }
  .tl__curve--mobileLandscape {
    display: none;
  }
  .tl__curve--tablet {
    display: none;
  }
  .tl__curve--Desktop {
    display: block;
  }

  .tl__curve--b {
    top: 320px;
    height: 212px;
  }

  .reasons__extra {
    padding-top: 35px;
  }
}

/* Installation timeline */

.installation {
  background-color: var(--color-surface-gray-75);
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .installation {
    padding-bottom: 64px;
  }
}

.tl--installation .tl__badge {
  background: var(--color-primary-blue-500);
  color: var(--color-white);
}

.tl__icon {
  width: 33px;
  height: 32px;
  display: block;
  color: var(--color-white);
}

.tl--installation .tl__curve {
  display: none;
}

@media (min-width: 500px) {
  .tl__icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 499px) {
  .tl--installation .tl__curve--mobile {
    display: block;
  }

  .tl--installation .tl__item {
    min-height: 120px;
  }

  .tl--installation .tl__curve--a {
    top: 44px;
    height: 150px;
  }
  .tl--installation .tl__curve--b {
    top: 210px;
    height: 150px;
  }
  .tl--installation .tl__curve--c {
    top: 372px;
    height: 150px;
  }
}

@media (min-width: 500px) and (max-width: 767px) {
  .tl--installation .tl__curve--mobile {
    display: block;
  }

  .tl--installation .tl__item {
    min-height: 130px;
  }

  .tl--installation .tl__curve--a {
    top: 40px;
    height: 220px;
  }
  .tl--installation .tl__curve--b {
    top: 192px;
    height: 220px;
  }
  .tl--installation .tl__curve--c {
    top: 360px;
    height: 220px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .tl--installation .tl__curve--Desktop {
    display: block;
  }

  .tl--installation .tl__curve--a {
    top: 43px;
    height: 160px;
    width: calc(160px + (300 - 160) * ((100vw - 768px) / (1200 - 768)));
    left: 60px;
  }
  .tl--installation .tl__curve--b {
    top: 60px;
    height: 140px;
    width: calc(160px + (300 - 160) * ((100vw - 768px) / (1200 - 768)));
    left: calc(250px + (400 - 250) * ((100vw - 768px) / (1200 - 768)));
  }
  .tl--installation .tl__curve--c {
    top: 60px;
    height: 140px;
    width: calc(160px + (300 - 160) * ((100vw - 768px) / (1200 - 768)));
    left: calc(485px + (765 - 485) * ((100vw - 768px) / (1200 - 768)));
  }
}

@media (min-width: 768px) {
  .tl--installation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .tl--installation .tl__item:nth-of-type(even) {
    align-self: end;
  }

  .tl--installation .tl__item {
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .tl--installation .tl__item:nth-of-type(1) {
    align-items: flex-start;
  }

  .tl--installation .tl__item:last-of-type {
    align-items: flex-end;
  }

  .tl--installation .tl__item:nth-of-type(2) {
    margin-right: calc(4vw + 16px);
  }

  .tl--installation .tl__item:nth-of-type(1) .tl__text,
  .tl--installation .tl__item:last-of-type .tl__text {
    max-width: 92px;
  }

  .tl--installation .tl__item:nth-of-type(2) .tl__text {
    max-width: 120px;
  }

  .tl--installation .tl__item:nth-of-type(3) .tl__text {
    max-width: 100px;
  }

  ol.tl.tl--installation {
    margin-top: 32px;
    min-height: 270px;
  }

  .tl--installation .tl__text {
    max-width: 140px;
  }
}

@media (min-width: 1200px) {
  .tl--installation .tl__curve--Desktop {
    display: block;
  }

  .tl--installation .tl__curve--a {
    top: 40px;
    height: 160px;
    width: 350px;
  }

  .tl--installation .tl__curve--b {
    top: 40px;
    height: 160px;
    width: 350px;
    left: 350px;
  }
  .tl--installation .tl__curve--c {
    top: 40px;
    height: 160px;
    width: 350px;
    left: 700px;
  }

  ol.tl.tl--installation {
    padding-inline: 16px;
  }

  .tl--installation .tl__text {
    max-width: 210px;
  }
}

.installation__features {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .installation__features {
    margin-top: 16px;
  }
}

@media (min-width: 1200px) {
  .installation__features {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 48px;
  }
}

@media (min-width: 500px) {
  .installation__features .feature--row {
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    align-items: start;
  }
  .installation__features .feature--row .feature__icon {
    grid-column: 1;
    grid-row: 1 !important;
    margin-bottom: 0;
    align-self: start;
  }
  .installation__features .feature--row > :not(.feature__icon) {
    grid-column: 2;
  }
}

@media (min-width: 1200px) {
  .installation__features .feature--row .feature__icon {
    grid-row: 1 / span 2 !important;
  }
}

/* Data nebo info blok */

.info__block {
  display: grid;
  gap: 24px;
  padding-inline: 16px;
  background-color: var(--color-surface-gray-75);
  padding-top: 24px;
}

.data .info__block + .info__block {
  margin-top: 32px;
  padding-bottom: 24px;
}

#data > .container > h2.section__title {
  margin-bottom: 16px;
}

.info__block h3 {
  color: var(--color-text-grey-800);
  font-family: var(--font-primary);
  font-size: var(--fs-m);
  line-height: var(--lh-m);
  font-weight: 400;
}

.info__list {
  display: grid;
  margin: 0;
  gap: 8px;
}

@media (min-width: 768px) {
  .info__list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 24px;
  }
}

.info__block p {
  font-family: var(--font-secondary);
  font-size: var(--fs-body-m);
  line-height: var(--lh-body-m);
  font-weight: 400;
  color: var(--color-text-grey-500);
}

.black__text {
  color: var(--color-black);
}

.info__block h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-subtitle-m);
  line-height: var(--lh-subtitle-m);
  font-weight: 700;
  color: var(--color-text-grey-800);
}

.info__block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info__block li {
  padding: 16px;
  background: var(--color-white);
  margin-bottom: 16px;
}

p.info__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-subtitle-m);
  line-height: var(--lh-subtitle-m);
  font-weight: 700;
  color: var(--color-text-grey-800);
}

.info__button {
  display: flex;
  width: 240px;
  height: 54px;
  background: var(--color-red-500);
  color: var(--color-white);
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  margin-inline: auto;

  font-family: var(--font-secondary);
  font-size: var(--fs-util-body-m);
  line-height: var(--lh-util-body-m);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--size-radius-default);
}

.info__button:hover {
  background-color: var(--color-red-700);
}

.info__button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--color-red-700);
}

@media (min-width: 500px) {
  .info__button {
    width: 224px;
    height: 54px;
  }

  .info__features .badge--blue {
    margin-bottom: 0;
    grid-column: 1;
    margin-right: 16px;
  }

  .info__features .feature--row {
    column-gap: 32px;
  }
}

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

  .info__features .feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

.info__features {
  display: grid;
  gap: 16px;
}

.info__features .badge--blue {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--color-primary-blue-500);
  border-radius: 999px;
  margin-bottom: 16px;
}

.info__features .feature__icon {
  width: 32px;
  height: 32px;
  color: var(--color-white);
  fill: currentColor;
  margin: 0;
}

.tou {
  background: var(--color-primary-blue-700);
  color: var(--color-white);
  padding-block: 64px;
  margin-top: 64px;
}

.tou .section__title {
  color: var(--color-white);
}

@media (min-width: 500px) {
  .tou .section__title {
    margin-bottom: 16px;
  }
}

.tou p {
  font-family: var(--font-secondary);
  font-size: var(--fs-body-m);
  line-height: var(--lh-body-m);
  font-weight: 400;
  color: var(--color-white);
}

.tou__features {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

.tou .feature__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-subtitle-m);
  line-height: var(--lh-subtitle-m);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.tou .text__link {
  color: var(--color-white);
}

.meters p {
  font-family: var(--font-secondary);
  font-size: var(--fs-body-m);
  line-height: var(--lh-body-m);
  font-weight: 400;
  color: var(--color-text-grey-500);
  margin-bottom: 16px;
}

.meters p:last-of-type {
  font-size: var(--fs-body-s);
  line-height: var(--lh-body-s);
  font-weight: 400;
  margin-bottom: 24px;
}

.meters__list {
  display: grid;
  gap: 16px;
}

.meter {
  display: grid;
  gap: 24px;
  background: var(--color-surface-gray-75);
  padding: 16px;
}

@media (min-width: 500px) {
  .meter {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    column-gap: 24px;
  }
  .meters .section__title {
    margin-bottom: 16px;
  }
}

.meter__image {
  height: auto;
  overflow: hidden;
  background: var(--color-white);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meter__image img {
  object-fit: contain;
  display: block;
}

.meter__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-subtitle-l);
  line-height: var(--lh-subtitle-l);
  font-weight: 700;
  color: var(--color-text-grey-800);
  margin-bottom: 8px;
}

@media (min-width: 1200px) {
  .meters__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 32px;
  }
}

.faq__item {
  border-top: 1px solid var(--color-blue-200);
  max-width: 800px;
}
.faq__item:last-of-type {
  border-bottom: 1px solid var(--color-blue-200);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-family: var(--font-secondary);
  font-size: var(--fs-subtitle-m);
  line-height: var(--lh-subtitle-m);
  color: var(--color-text-grey-800);
}
.faq__q::-webkit-details-marker {
  display: none;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
}

.faq__a {
  font-family: var(--font-secondary);
  font-size: var(--fs-body-m);
  line-height: var(--lh-body-m);
  color: var(--color-text-grey-500);
  padding: 16px 0 16px 0;

  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease;
}
.faq__item[open] .faq__a {
  grid-template-rows: 1fr;
}
.faq__a > * {
  overflow: hidden;
}

.faq__q:hover {
  background: var(--color-brightblue-25);
}

.faq h2 {
  margin-bottom: 32px;
}

@media (min-width: 1200px) {
  .faq h2 {
    margin-bottom: 64px;
  }
}

.faq p {
  margin-bottom: 16px;
}

.site-footer {
  background: var(--color-primary-blue-700);
  color: var(--color-white);
  padding-block: 48px;
  margin-top: 40px;
}

.footer__tiles {
  display: grid;
  gap: 24px;
}

.tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #5f6c93;
  color: var(--color-white);
  padding: 16px;
  border-radius: var(--size-radius-default);
  text-decoration: none;
  min-height: 112px;
}

.tile__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
}

.tile__icon svg {
  width: 40px;
  height: 40px;
  display: block;
  fill: currentColor;
}

.tile__label {
  font-family: var(--font-secondary);
  font-size: var(--fs-assistive-l);
  line-height: var(--lh-assistive-l);
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.8;
  margin-bottom: 4px;
}

.tile__title {
  font-family: var(--font-primary);
  font-size: var(--fs-s);
  line-height: var(--lh-s);
  font-weight: 400;
  color: var(--color-white);
  font-feature-settings: "liga" off, "clig" off;
}

.tile:hover {
  background-color: var(--color-brightblue-75);
  color: var(--color-primary-blue-700);
}

.tile:hover .tile__label,
.tile:hover .tile__title {
  color: var(--color-primary-blue-700);
}

.tile__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

address {
  font-style: normal;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list a {
  font-family: var(--font-primary);
  font-size: var(--fs-s);
  line-height: var(--lh-s);
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  color: #ccd4ee;
}

.footer__copy {
  font-family: var(--font-secondary);
  font-size: var(--fs-body-s);
  line-height: var(--lh-body-s);
  font-weight: 400;
  color: #ccd4ee;
  margin-top: 24px;
}

.footer__copy a {
  text-decoration: none;
  color: #ccd4ee;
}

@media (min-width: 768px) {
  .footer__tiles {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 24px;
  }

  .footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 8px;
    margin-top: 32px;
  }
  .footer__list li {
    display: inline-flex;
  }
}

@media (min-width: 1200px) {
  .footer__tiles {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 24px;
  }

  .footer__list {
    justify-content: space-between;
  }

  .footer__legal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-top: 32px;
  }
}

.footer__list a:hover,
.footer__legal a:hover {
  color: var(--color-white);
}

.info__block p.black__text,
.meter__content .meter__text {
  color: var(--color-black);
}
