/* ==============================
   Design tokens
============================== */

:root {
  --primary: #264ad9;
  --primary-600: #233fb2;
  --ink: #131519;
  --ink-weak: #212327;
  --surface: #131519; /* header bg */
  --page: #f5f6fa;
  --white: #fff;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.18);

  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --h1: 52px;
  --h2: 48px;

  --nav-h: 72px;
}

/* ==============================
   Base
============================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.5;
  letter-spacing: -0.02em;
  overflow-x: clip;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}

img[src$=".svg"] {
  image-rendering: -webkit-optimize-contrast; /* Safari */
  image-rendering: crisp-edges;
  text-rendering: geometricPrecision;
}

/* Container shared */
.container {
  width: 100%;
  max-width: 1216px;
  margin-inline: auto;
  padding-inline: 24px;
  overflow: hidden;
}

/* ==============================
   Buttons
============================== */

/* Base button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.625em 1em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

/* Sizes */
.button--sm {
  font-size: 0.875rem;
  padding: 0.5em 0.75em;
}
.button--md {
  font-size: 1rem;
  padding: 0.625em 1rem;
}
.button--lg {
  font-size: 1.125rem;
  padding: 0.75em 1.25em;
}

/* Variants */
.button--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.button--primary:hover {
  background: var(--primary-600);
}
.button--primary:active {
  transform: translateY(1px);
}

.button--nav {
  background: transparent;
  color: #e7ebf6;
}
.button--nav:hover {
  color: #fff;
}

/* ==============================
   Header / Nav
============================== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 0px;
  display: flex;
}

.header__navbar {
  position: relative;
  height: 72px;
  width: 100%;
  max-width: 1216px;
  padding-left: 24px;
  padding-right: 24px;
  margin-inline: auto;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-md);
}

.logo__image {
  height: 24px;
}

.navbar__items {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 72px;
  flex-direction: row;
  justify-content: center;
}

.navbar__item {
  white-space: nowrap;
  margin: 0;
}

.navbar__logoItem {
  flex: 1 1;
  display: flex;
  justify-content: flex-start;
}

.navbar__ctaItem {
  flex: 1 1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media only screen and (max-width: 990px) {
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 0px 0px;
    display: flex;
  }

  .header__wrapper {
    padding-inline: 0px;
  }

  .header__navbar {
    position: relative;
    height: 72px;
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    margin-inline: auto;
    align-items: center;
    background: var(--surface);
    border-radius: 0px;
  }

  .logo__image {
    height: 24px;
  }

  .navbar__items {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 72px;
    flex-direction: row;
    justify-content: center;
  }

  .navbar__item {
    display: none;
    white-space: nowrap;
    margin: 0;
  }

  .navbar__logoItem {
    flex: 1 1;
    display: flex;
    justify-content: center;
  }

  .navbar__ctaItem {
    display: none;
  }
}

/* ==============================
   Hero
============================== */

/*1205 AND UP*/

.hero {
  padding-top: 164px;
  padding-bottom: 40px;
}

.hero__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1216px;
  margin-inline: auto;
  padding-inline: 24px;
  overflow: visible;
}
.hero__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 40px;
  margin-bottom: 40px;
}

.hero__title--max1023 {
  display: none;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 58px;
}

.hero__title {
  font-size: var(--h1);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 58px;
}

.hero__description {
  font-size: var(--text-lg);
  color: var(--ink-weak);
}

.hero__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.list__item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.list__icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.list__text {
  font-size: var(--text-md);
}

.hero__cta {
  align-self: flex-start;
}

.hero__visual {
  position: relative;
  width: 50%;
  overflow: visible;
  isolation: isolate;
}

.visual--hero {
  display: flex;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  justify-content: flex-end;
  height: clamp(280px, 45vw, 560px);
  background-size: cover;
}

.hero-video {
  display: flex;
  position: absolute;
  aspect-ratio: 448/556;
  height: 127%;
  clip-path: inset(4px 2px);
  object-fit: cover;
  object-position: 50% 0%;
  background: transparent;
  pointer-events: none;
  overflow: hidden;
  background-position: center left;
}

/*1122 TO 1205*/

@media only screen and (max-width: 1204px) {
  .hero {
    padding-top: 164px;
    padding-bottom: 40px;
  }

  .hero__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
  }
  .hero__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-right: 40px;
    margin-bottom: 40px;
  }

  .hero__title--max1023 {
    display: none;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }

  .hero__title {
    font-size: var(--h1);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }

  .hero__description {
    width: 70%;
    font-size: var(--text-lg);
    color: var(--ink-weak);
  }

  .hero__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .list__item {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .list__icon {
    width: 20px;
    height: 20px;
  }
  .list__text {
    font-size: var(--text-md);
  }

  .hero__cta {
    align-self: flex-start;
  }

  .hero__visual {
    position: relative;
    width: 50%;
    overflow: visible;
    isolation: isolate;
  }

  .visual--hero {
    display: flex;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    justify-content: flex-end;
    height: clamp(280px, 55vw, 616px);
    background-size: cover;
  }

  .hero-video {
    display: flex;
    position: absolute;
    aspect-ratio: 448/556;
    height: 107%;
    clip-path: inset(4px 2px);
    object-fit: cover;
    object-position: 50% 0%;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
    background-position: center left;
  }
}

/*1023 TO 1122*/

@media only screen and (max-width: 1120px) {
  .hero {
    padding-top: 164px;
    padding-bottom: 40px;
  }

  .hero__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 40px;
    margin-bottom: 0px;
  }

  .hero__title--max1023 {
    display: none;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }

  .hero__title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }

  .hero__description {
    width: 80%;
    font-size: var(--text-lg);
    color: var(--ink-weak);
  }

  .hero__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .list__item {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .list__icon {
    width: 20px;
    height: 20px;
  }
  .list__text {
    font-size: var(--text-md);
  }

  .hero__cta {
    align-self: flex-start;
  }

  .hero__visual {
    position: relative;
    width: 50%;
    overflow: visible;
    isolation: isolate;
  }

  .visual--hero {
    display: flex;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    justify-content: flex-end;
    height: clamp(280px, 55vw, 616px);
    background-size: cover;
  }

  .hero-video {
    display: flex;
    position: absolute;
    aspect-ratio: 448/556;
    height: 106%;
    clip-path: inset(4px 2px);
    object-fit: cover;
    object-position: 50% 0%;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
    background-position: center left;
  }
}

/*806 TO 1023*/

@media only screen and (max-width: 1023px) {
  .hero {
    padding-top: 144px;
    padding-bottom: 40px;
  }

  .hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    align-items: top;
    gap: 0px;
    justify-content: space-between;
  }

  .hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 2;
    gap: 24px;
    padding-top: 77px;
    padding-right: 0px;
    margin-bottom: 0px;
  }

  .hero__description {
    width: 90%;
    font-size: var(--text-lg);
    color: var(--ink-weak);
  }

  @media only screen and (max-width: 931px) {
    .hero__wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr auto;
      gap: 0px;
      justify-content: space-between;
    }

    .hero__content {
      width: 100%;
      display: flex;
      flex-direction: column;
      grid-column: 1;
      grid-row: 2;
      gap: 24px;
      padding-top: 24px;
      padding-right: 0px;
      margin-bottom: 0px;
    }

    .hero__description {
      width: 100%;
      font-size: var(--text-lg);
      color: var(--ink-weak);
    }
  }

  .hero__title--max1023 {
    display: block;
    grid-column: 1 / 3;
    grid-row: 1;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }

  .hero__title {
    display: none;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }

  .hero__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .list__item {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .list__icon {
    width: 20px;
    height: 20px;
  }
  .list__text {
    font-size: var(--text-md);
  }

  .hero__cta {
    align-self: flex-start;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    overflow: visible;
    isolation: isolate;
    grid-column: 2;
    grid-row: 2;
  }

  .visual--hero {
    display: flex;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    justify-content: flex-end;
    height: clamp(280px, 47vw, 616px);
    background-size: cover;
  }

  .hero-video {
    display: flex;
    position: absolute;
    aspect-ratio: 448/556;
    height: 118%;
    clip-path: inset(4px 2px);
    object-fit: cover;
    object-position: 50% 0%;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
    background-position: center left;
  }
}

/*X TO 806*/

@media only screen and (max-width: 850px) {
  .hero {
    padding-top: 124px;
    padding-bottom: 40px;
  }

  .hero__wrapper {
    display: flex;
    flex-direction: column;
    align-items: top;
    gap: 64px;
    justify-content: space-between;
  }

  .hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 2;
    gap: 24px;
    padding-top: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
  }

  .hero__description {
    width: 90%;
    font-size: var(--text-lg);
    color: var(--ink-weak);
  }

  .hero__title--max1023 {
    display: none;
    grid-column: 1 / 3;
    grid-row: 1;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }

  .hero__title {
    display: block;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 52px;
  }

  .hero__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .list__item {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .list__icon {
    width: 20px;
    height: 20px;
  }
  .list__text {
    font-size: var(--text-md);
  }

  .hero__cta {
    align-self: flex-start;
  }

  @media only screen and (max-width: 479px) {
    .hero__title {
      display: block;
      font-size: 36px;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 44px;
    }

    .hero__cta {
      align-self: stretch;
    }

    .list__text {
      letter-spacing: -0.5px;
    }
  }

  .hero__visual {
    position: relative;
    width: 100%;
    overflow: visible;
    isolation: isolate;
    grid-column: 2;
    grid-row: 2;
  }

  .visual--hero {
    display: flex;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    height: clamp(280px, 55vw, 616px);
    background-size: cover;
  }

  .hero-video {
    display: flex;
    position: absolute;
    aspect-ratio: 448/556;
    height: 142%;
    clip-path: inset(4px 2px);
    object-fit: cover;
    object-position: 50% 0%;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
    background-position: center left;
  }

  @media only screen and (max-width: 386px) {
    .visual--hero {
      display: flex;
      position: relative;
      z-index: 1;
      width: 100%;
      overflow: hidden;
      justify-content: center;
      height: clamp(280px, 55vw, 616px);
      background-size: cover;
    }

    .hero-video {
      display: flex;
      position: absolute;
      aspect-ratio: 448/556;
      height: 109%;
      clip-path: inset(4px 2px);
      object-fit: cover;
      object-position: 50% 0%;
      background: transparent;
      pointer-events: none;
      overflow: hidden;
      background-position: center left;
    }
  }
}

.hero__glow {
  position: absolute;
  inset: -80px -80px 0px -80px;
  pointer-events: none;
  background: radial-gradient(
    100% 28% at 50% 125%,
    rgba(210, 210, 210, 0.5) 0%,
    rgba(185, 185, 185, 0.5) 75%,
    rgba(210, 210, 210, 0) 150%
  );
  filter: blur(22px);

  clip-path: inset(-100vmax -100vmax 0 -100vmax);
  /*            top      right   bottom left   */
}

/* ==============================
   Value banner
============================== */

.valueBanner {
  padding-bottom: 80px;
}
.valueBanner__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.valueBanner__title {
  font-size: 18px;
}

.valueBanner__list {
  list-style: none;
  display: flex;
  gap: 128px;
  flex-wrap: wrap;
  justify-content: center;
}

.list__icon--valueBanner {
  width: 28px;
  height: 28px;
}

.list__text--valueBanner {
  font-size: 16px;
  font-weight: 500;
  text-align: start;
}

@media only screen and (max-width: 1062px) {
  .valueBanner__list {
    list-style: none;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 878px) {
  .valueBanner {
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 609px) {
  .valueBanner__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==============================
   Workflow
============================== */

.workflow {
  display: flex;
  justify-content: center;
  padding-block: 120px;
}

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

.workflow__heading {
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 120px;
}

.workflow__title {
  font-size: var(--h2);
  font-weight: 600;
}

.workflow__description {
  padding-right: 200px;
  font-size: 18px;
}

.workflow__steps {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.workflow__step {
  display: flex;
  flex-direction: row;
  padding: 64px;
  gap: 88px;
  align-items: center;
}

.step--1 {
  margin-top: 44px;
}

.step__description {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 24px;
  max-width: 50%;
}

.description__text {
  font-size: 18px;
}

.step__visual {
  pointer-events: none;
}

@media only screen and (max-width: 1120px) {
  .workflow__title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }
}

@media only screen and (max-width: 1040px) {
  .workflow__heading {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
    gap: 24px;
  }

  .workflow__description {
    padding-right: 0px;
    font-size: 18px;
  }

  .workflow__step {
    padding: 0px;
  }

  .step--1 {
    margin-top: 108px;
  }

  .workflow__title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }
}

@media only screen and (max-width: 900px) {
  .workflow__step {
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 88px;
    align-items: center;
  }

  .step--1 {
    margin-top: 120px;
    flex-direction: column-reverse;
  }

  .step--3 {
    margin-top: 44px;
    flex-direction: column-reverse;
  }

  .workflow__title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 44px;
  }

  .step__description {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 4px;
    max-width: 100%;
  }
}

/* ==============================
   Features
============================== */

.features {
  display: flex;
  justify-content: center;
  padding-block: 120px;
}

.features__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features__title {
  font-size: var(--h2);
  font-weight: 600;
}

.features__description {
  font-size: 18px;
  max-width: 50%;
}

.features__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features__visual {
  width: 100%;
  max-width: 100%;
  background-size: cover;
  background-position: top center;
  pointer-events: none;
}

.features__blocks {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 64px;
  border-block: solid;
  border-width: 2px;
  border-color: rgb(226, 226, 226);
}

.blocks__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  max-width: 50%;
  width: 50%;
  padding-block: 64px;
}

.block__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 110px;
}

.block__description {
  font-size: 18px;
}

.block__visual--wrapper {
  position: relative;
}

.block__visual--gradient {
  display: inline;
  justify-content: stretch;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #ffffff00 0%, #f5f6fa 100%);
}

.block__visual--image1 {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  background-image: url(/images/features_no1.svg);
  background-size: cover;
  background-position: top left;
  aspect-ratio: 494/389;
}

.block__visual--image2 {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  background-image: url(/images/features_no2.svg);
  background-size: cover;
  background-position: top left;
  aspect-ratio: 494/389;
}

.spacer {
  border-right: solid;
  border-width: 2px;
  border-color: rgb(226, 226, 226);
}

.features__banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 40px;
  list-style: none;
  padding-block: 24px;
}

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

.item__heading {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

@media only screen and (max-width: 1120px) {
  .features__title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }
}

@media only screen and (max-width: 990px) {
  .features__description {
    font-size: 18px;
    max-width: 100%;
    padding-bottom: 24px;
  }
}

@media only screen and (max-width: 900px) {
  .features__visual {
    max-width: 150%;
    width: 150%;
  }

  .features__title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 44px;
  }
}

@media only screen and (max-width: 866px) {
  .features__blocks {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
    border-block: solid;
    border-width: 2px;
    border-color: rgb(226, 226, 226);
  }

  .blocks__block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: 100%;
    width: 100%;
    padding-block: 64px;
  }

  .block__heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 110px;
    max-width: 70%;
    width: 70%;
  }

  .block__description {
    font-size: 18px;
  }

  .block__visual--wrapper {
    position: relative;
    max-width: 70%;
    width: 70%;
  }

  @media only screen and (max-width: 570px) {
    .block__heading {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-height: 110px;
      max-width: 100%;
      width: 100%;
    }

    .block__visual--wrapper {
      position: relative;
      max-width: 100%;
      width: 100%;
    }

    .item__description {
      font-size: 14px;
    }
  }
  .spacer {
    border-top: solid;
    border-width: 2px;
    border-color: rgb(226, 226, 226);
  }

  .features__banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 40px;
    list-style: none;
    padding-block: 24px;
  }

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

  .item__heading {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  @media only screen and (max-width: 630px) {
    .item__heading {
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 8px;
    }

    .item__heading > img {
      max-height: 16px;
    }
  }
}

/* ==============================
   Benefits
============================== */

.benefits {
  display: flex;
  justify-content: center;
  padding-block: 120px;
}

.benefits__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits__title {
  font-size: var(--h2);
  font-weight: 600;
}

.benefits__description {
  font-size: 18px;
  max-width: 50%;
}

.benefits__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits__visual {
  width: 100%;
  max-width: 100%;
  background-size: cover;
  background-position: top center;
  pointer-events: none;
}

.benefits__blocks {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 64px;
  border-block: solid;
  border-width: 2px;
  border-color: rgb(226, 226, 226);
}

.block__visual--image3 {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  background-image: url(/images/benefits_no1.svg);
  background-size: cover;
  background-position: top left;
  aspect-ratio: 494/389;
}

.block__visual--gradientno4 {
  display: inline;
  justify-content: stretch;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, #ffffff00 0%, #f5f6fa 100%);
}

.block__visual--image4 {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  background-image: url(/images/benefits_no2.svg);
  background-size: cover;
  background-position: top right;
  aspect-ratio: 494/389;
}

.benefits__banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 40px;
  list-style: none;
  padding-block: 24px;
}

@media only screen and (max-width: 1120px) {
  .benefits__title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
  }
}

@media only screen and (max-width: 990px) {
  .benefits__description {
    font-size: 18px;
    max-width: 100%;
    padding-bottom: 24px;
  }
}

@media only screen and (max-width: 900px) {
  .benefits__visual {
    max-width: 140%;
    width: 140%;
  }

  .benefits__title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 44px;
  }
}

@media only screen and (max-width: 866px) {
  .benefits__blocks {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
    border-block: solid;
    border-width: 2px;
    border-color: rgb(226, 226, 226);
  }

  .blocks__block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: 100%;
    width: 100%;
    padding-block: 64px;
  }

  .block__heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 110px;
    max-width: 70%;
    width: 70%;
  }

  .block__description {
    font-size: 18px;
  }

  .block__visual--wrapper {
    position: relative;
    max-width: 70%;
    width: 70%;
  }

  @media only screen and (max-width: 570px) {
    .block__heading {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-height: 110px;
      max-width: 100%;
      width: 100%;
    }

    .block__visual--wrapper {
      position: relative;
      max-width: 100%;
      width: 100%;
    }

    .item__description {
      font-size: 14px;
    }
  }
  .spacer {
    border-top: solid;
    border-width: 2px;
    border-color: rgb(226, 226, 226);
  }

  .benefits__banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 40px;
    list-style: none;
    padding-block: 24px;
  }

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

  .item__heading {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  @media only screen and (max-width: 630px) {
    .item__heading {
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 8px;
    }

    .item__heading > img {
      max-height: 16px;
    }
  }
}

/* ==============================
   CTA
============================== */

.cta {
  display: flex;
  justify-content: center;
  padding-inline: 0px;
  padding-block: 120px;
}

.cta__wrapper {
  width: 100%;
  max-width: 1216px;
  margin-inline: auto;
  padding-inline: 24px;
  max-width: 1216px;
  margin-inline: auto;
}
.cta__calltoaction .button {
  white-space: nowrap;
}

.cta__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background-color: #131519;
  border-radius: 32px;
  color: #f5f6fa;
  padding-block: 100px;
  padding-inline: 140px;
}

.cta__title {
  font-size: var(--h1);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: center;
}

.cta__description {
  font-size: 18px;
  text-align: center;
  max-width: 80%;
}

@media only screen and (max-width: 1206px) {
  .cta__title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 58px;
    text-align: center;
  }

  .cta__description {
    font-size: 18px;
    text-align: center;
    max-width: 90%;
  }
}

@media only screen and (max-width: 1049px) {
  .cta {
    display: flex;
    justify-content: start;
    padding-inline: 0px;
    padding-block: 120px;
  }

  .cta__wrapper {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0px;
  }

  .cta__button .button {
    white-space: nowrap;
  }

  .cta__block {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;
    background-color: #131519;
    border-radius: 0px;
    color: #f5f6fa;
    padding-block: 48px;
    padding-inline: 64px;
  }

  .cta__title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 44px;
    text-align: left;
  }

  .cta__description {
    font-size: 18px;
    text-align: left;
    max-width: 100%;
  }
}

@media only screen and (max-width: 788px) {
  .cta {
    padding-top: 0px;
    padding-bottom: 120px;
  }

  .cta__block {
    border-radius: 0px;
    padding-block: 48px;
    padding-inline: 32px;
  }

  .cta__title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 40px;
    text-align: left;
  }

  .cta__description {
    font-size: 16px;
    text-align: left;
    max-width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .cta__button {
    align-self: stretch;
  }
}

/* ==============================
   FOOTER
============================== */

footer {
  min-height: 20vh;
  height: 20vh;
  background-color: #131519;
  display: flex;
  align-items: center;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  color: #f5f6fa;
}

.logo--footer {
  width: 100px;
}

.footer__logo--img {
  width: 100%;
}

.divider--footer {
  width: 100%;
  border-top: solid 1px;
  border-color: #f5f6fa;
}

.footer__statement {
  font-size: 14px;
}
