:root {
  --ink: #1e2430;
  --muted: #65707c;
  --paper: #fff9f1;
  --white: #ffffff;
  --mint: #bfe8dc;
  --teal: #0f766e;
  --coral: #ef6b5b;
  --sun: #f8c85d;
  --line: rgba(30, 36, 48, 0.12);
  --shadow: 0 24px 80px rgba(55, 73, 82, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(191, 232, 220, 0.28), transparent 34%),
    linear-gradient(315deg, rgba(239, 107, 91, 0.11), transparent 36%),
    var(--paper);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(18, 26, 32, 0.9) 0%, rgba(18, 26, 32, 0.64) 48%, rgba(18, 26, 32, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 26, 32, 0.42), rgba(18, 26, 32, 0.08));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 70px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--coral);
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 86px 0;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro__text {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.intro__text p:last-child {
  margin-bottom: 0;
}

.cards-section {
  background: rgba(255, 255, 255, 0.48);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card__number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--coral);
  font-weight: 800;
}

.card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.15;
}

.card p,
.promise p,
.step p,
.note__panel p {
  color: var(--muted);
  line-height: 1.7;
}

.promise {
  background: #163a3a;
  color: var(--white);
}

.promise__inner {
  display: grid;
  grid-template-columns: 120px minmax(0, 800px);
  gap: 34px;
  align-items: start;
}

.promise__mark {
  color: var(--sun);
  font-size: 130px;
  font-weight: 800;
  line-height: 0.8;
}

.promise p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 24px;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.step span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 800;
}

.step p {
  margin: 0;
}

.note {
  padding-top: 20px;
}

.note__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(191, 232, 220, 0.55), rgba(248, 200, 93, 0.28)),
    var(--white);
  box-shadow: var(--shadow);
}

.note__panel {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.note__panel p {
  min-height: 84px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .hero {
    min-height: 760px;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(18, 26, 32, 0.92) 0%, rgba(18, 26, 32, 0.72) 58%, rgba(18, 26, 32, 0.12) 100%),
      linear-gradient(90deg, rgba(18, 26, 32, 0.48), rgba(18, 26, 32, 0.08));
  }

  .hero__content {
    padding-bottom: 46px;
  }

  .two-columns,
  .cards,
  .promise__inner,
  .steps,
  .note__inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .promise__mark {
    font-size: 86px;
  }

  .note__inner {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .hero__content,
  .shell {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .card {
    min-height: auto;
  }

  .note__panel p {
    font-size: 21px;
  }
}
