@font-face {
  font-family: "TildaSans";
  src: url("https://static.tildacdn.com/fonts/tildasans/TildaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TildaSans";
  src: url("https://static.tildacdn.com/fonts/tildasans/TildaSans-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CormorantLocal";
  src: url("https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjYqXtK3D_y.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111a32;
  --body: #33405a;
  --muted: #66718a;
  --line: #dfe7ec;
  --paper: #ffffff;
  --mist: #f5f8f8;
  --aqua: #38aeb8;
  --aqua-dark: #258a96;
  --gold: #d2aa67;
  --shadow: 0 24px 70px rgba(17, 26, 50, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "TildaSans", Arial, sans-serif;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 30px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--aqua), #45bdc8);
  color: #fff;
  box-shadow: 0 14px 30px rgba(56, 174, 184, 0.25);
}

.button--ghost {
  border-color: rgba(17, 26, 50, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.97) 25%,
    rgba(255, 255, 255, 0.75) 43%,
    rgba(255, 255, 255, 0.08) 66%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center right;
}

.hero__inner {
  width: min(1260px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 94px 0 76px;
}

.hero__copy {
  width: min(820px, 100%);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "TildaSans", Arial, sans-serif;
  font-size: clamp(46px, 3.95vw, 58px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero__copy p {
  width: min(520px, 100%);
  margin: 28px 0 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.proof {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  border-top: 1px solid rgba(223, 231, 236, 0.65);
  border-bottom: 1px solid rgba(223, 231, 236, 0.75);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}

.proof__inner {
  display: grid;
  width: min(1260px, calc(100% - 48px));
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}

.proof article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 134px;
  padding: 24px 38px;
}

.proof article + article {
  border-left: 1px solid var(--line);
}

.proof__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: #fff;
}

.proof__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.proof h2 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.proof p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.45;
}

.benefits {
  padding: 96px 0 86px;
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.presentation h2 {
  margin: 0;
  color: var(--ink);
  font-family: "TildaSans", Arial, sans-serif;
  font-size: clamp(36px, 3.5vw, 50px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  display: grid;
  min-height: 500px;
  grid-template-rows: 255px 1fr;
  overflow: hidden;
  border: 1px solid rgba(223, 231, 236, 0.72);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(17, 26, 50, 0.07);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card div {
  padding: 26px 26px 30px;
}

.feature-card span,
.presentation li::before {
  color: var(--aqua-dark);
}

.feature-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.feature-card h3 {
  margin: 0;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.12;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.feature-card--dark {
  background: var(--ink);
}

.feature-card--dark h3,
.feature-card--dark p {
  color: #fff;
}

.feature-card--dark p {
  opacity: 0.78;
}

.presentation {
  padding: 74px 0;
  background: #fff;
}

.presentation__inner {
  position: relative;
  display: grid;
  width: min(1260px, calc(100% - 48px));
  grid-template-columns: minmax(300px, 360px) minmax(390px, 1fr) minmax(320px, 430px);
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(223, 231, 236, 0.82);
  border-radius: 10px;
  background:
    radial-gradient(circle at 54% 10%, rgba(56, 174, 184, 0.16), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f8fbfb 100%);
  box-shadow: var(--shadow);
  padding: 48px;
}

.presentation__copy p {
  margin: 18px 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.55;
}

.presentation h2 {
  font-size: clamp(36px, 3.4vw, 48px);
}

.presentation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.presentation li {
  position: relative;
  padding-left: 20px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.3;
}

.presentation li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.presentation__image {
  width: 114%;
  max-width: none;
  aspect-ratio: 1.18;
  object-fit: contain;
  mix-blend-mode: multiply;
  justify-self: center;
}

.lead-form {
  display: grid;
  gap: 14px;
  align-self: stretch;
  align-content: center;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  height: 58px;
  border: 1px solid #d8e1e6;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: 400 15px/1.2 "TildaSans", Arial, sans-serif;
  padding: 0 18px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(56, 174, 184, 0.1);
}

.lead-form button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.form-note a {
  color: var(--aqua-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form__status {
  margin: 0;
  color: var(--aqua-dark);
  font-size: 14px;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer__inner {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: var(--ink);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer__links a {
  color: var(--aqua-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1020px) {
  .proof__inner,
  .feature-grid,
  .presentation__inner {
    grid-template-columns: 1fr;
  }

  .proof article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-card,
  .feature-card--wide {
    grid-column: auto;
  }

  .presentation__image {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .container,
  .hero__inner,
  .proof__inner,
  .presentation__inner {
    width: calc(100% - 32px);
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 760px;
    background: #fff;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.93) 40%,
      rgba(255, 255, 255, 0.46) 57%,
      rgba(255, 255, 255, 0.08) 76%,
      rgba(255, 255, 255, 0.8) 100%
    );
  }

  .hero__media {
    inset: 300px 0 0;
  }

  .hero__media img {
    object-position: center 46%;
  }

  .hero__inner {
    min-height: 760px;
    padding: 56px 0 252px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(27px, 7.6vw, 30px);
    line-height: 1.08;
  }

  .hero__copy p {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 26px;
  }

  .proof {
    margin-top: 0;
  }

  .proof article {
    grid-template-columns: 52px 1fr;
    min-height: 116px;
    gap: 18px;
    padding: 22px 20px;
  }

  .proof__icon {
    width: 52px;
    height: 52px;
  }

  .benefits {
    padding: 68px 0 60px;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading h2,
  .presentation h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .feature-grid {
    gap: 18px;
  }

  .feature-card {
    min-height: 0;
    grid-template-rows: 220px auto;
  }

  .feature-card div {
    padding: 24px 22px 26px;
  }

  .feature-card h3 {
    font-size: 24px;
    line-height: 1.14;
  }

  .presentation {
    padding: 56px 0;
  }

  .presentation__inner {
    gap: 22px;
    padding: 28px 20px;
  }

  .presentation__copy p {
    font-size: 16px;
  }

  .presentation__image {
    width: 100%;
    aspect-ratio: 1.35;
  }

  .footer__inner {
    display: grid;
    gap: 22px;
    padding: 24px 0;
  }
}
