:root {
  --red: #d90009;
  --red-dark: #990006;
  --ink: #111114;
  --muted: #5b6068;
  --line: #dfe2e6;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --dark: #17191d;
  --max: 1180px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f0f1f3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 35px rgba(16, 18, 22, .1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 8px;
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.lang-button {
  min-width: 42px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.lang-button[aria-pressed="true"] {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

main {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
}

.section-band,
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(16, 18, 22, .08);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 590px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .9) 36%, rgba(255, 255, 255, .35) 62%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, 0)),
    url("assets/hero_background.png");
  background-position:
    center,
    center,
    right center;
  background-repeat: no-repeat;
  background-size:
    100% 100%,
    100% 100%,
    auto 100%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 72px 0 72px 58px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.4vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #202226;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 0, 9, .25);
}

.button-secondary {
  border: 2px solid var(--red);
  background: #fff;
  color: var(--red);
}

.intro {
  display: grid;
  grid-template-columns: auto minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: 26px;
  margin-top: 18px;
  padding: 34px;
  border-radius: 8px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 46px;
  clip-path: polygon(0 0, 76% 0, 100% 50%, 76% 100%, 0 100%);
  background: var(--red);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
}

h2 {
  color: var(--red);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.intro p,
.reason p {
  color: #202226;
  font-size: 1.02rem;
  line-height: 1.58;
}

.licenses {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  align-content: center;
  justify-items: center;
  justify-content: center;
  gap: 22px 26px;
  padding-left: 34px;
  border-left: 2px solid var(--red);
}

.licenses img {
  display: block;
  width: 200px;
  aspect-ratio: 1;
  object-fit: contain;
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  margin-top: 18px;
}

.panel {
  border-radius: 8px;
  padding: 28px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
}

.reason-body {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.round-icon {
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red) 0 48%, #fff 49% 58%, #eef0f3 59% 100%);
}

.round-icon i {
  color: #fff;
  font-size: 4rem;
}

.accent-text {
  color: var(--red) !important;
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 1.55rem;
  font-weight: 900;
}

.benefit-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.25;
}

.benefit-item p {
  margin: 0;
  color: #2f3339;
  line-height: 1.4;
}

.steps {
  margin-top: 18px;
  padding: 24px 28px 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f50009, #a70007);
  color: #fff;
  box-shadow: 0 24px 70px rgba(217, 0, 9, .22);
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light .section-number {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

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

.step-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.step-badge {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 2rem;
  font-weight: 900;
}

.step-item h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.step-item p {
  margin: 0;
  line-height: 1.4;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 32px;
  padding: 24px 30px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.footer div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.footer p {
  margin: 0;
  line-height: 1.45;
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero {
    min-height: 720px;
    align-items: flex-start;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 44%, rgba(255, 255, 255, .2) 70%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, 0)),
      url("assets/hero_background.png");
    background-position:
      center,
      center,
      center bottom;
    background-size:
      100% 100%,
      100% 100%,
      100% auto;
  }

  .hero-copy {
    padding: 52px 34px 0;
  }

  .intro,
  .split-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 18px;
  }

  .licenses {
    grid-template-columns: repeat(2, minmax(150px, 200px));
    padding: 24px 0 0;
    border-left: 0;
    border-top: 2px solid var(--red);
  }

  .licenses img {
    width: min(100%, 200px);
    aspect-ratio: 1;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  main,
  .footer {
    width: calc(100% - 20px);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .language-switcher {
    gap: 6px;
  }

  .lang-button {
    min-width: 38px;
    min-height: 32px;
    font-size: .82rem;
  }

  .hero-copy {
    padding: 38px 22px 12px;
    max-width: none;
    text-align: center;
  }

  h1 {
    font-size: clamp(1.75rem, 7.4vw, 2rem);
    line-height: 1.04;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro,
  .panel,
  .steps,
  .footer {
    padding: 22px;
  }

  .section-heading {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .section-number {
    width: 48px;
    height: 40px;
    font-size: 1.45rem;
    flex: 0 0 auto;
  }

  .reason-body,
  .benefit-grid,
  .benefit-item,
  .step-item,
  .footer div {
    grid-template-columns: 1fr;
  }

  .reason-body,
  .benefit-item,
  .step-item,
  .footer div {
    justify-items: center;
    text-align: center;
  }

  .benefit-grid {
    border-left: 0;
  }

  .benefit-item {
    border-left: 1px solid var(--line);
  }

  .round-icon {
    width: 112px;
    height: 112px;
  }

  .licenses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .intro {
    text-align: center;
  }

  .footer {
    text-align: center;
  }
}
