:root {
  --bg-top: #0b5fc1;
  --bg-bottom: #f4f4f4;
  --card-top: #fbefde;
  --card-bottom: #f7fbff;
  --text-main: #173a67;
  --background-dark: #232f3e;
  --text-soft: #6a84a2;
  --line: #d9e6f2;
  --primary: #0b5fc1;
  --primary-dark: #0a4a97;
  --accent: #ffc928;
  --accent-dark: #efb300;
  --accent-soft: #fff4cb;
  --shadow: 0 24px 60px rgba(19, 58, 103, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background:
    linear-gradient(180deg, var(--bg-top) 0 150px, var(--bg-bottom) 150px 100%);
  min-height: 100vh;
}

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px 20px;
  background: url(./pattern.png)  center center;
}

.hero {
  width: 100%;
  max-width: 800px;
}

.hero__card {
  position: relative;
  padding: 30px 25px;
  /* border-radius: 18px; */
  background: linear-gradient(180deg, var(--card-top), var(--card-bottom));
  border: 1px solid rgba(11, 95, 193, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 40, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(11, 95, 193, 0.04), transparent 30%);
  pointer-events: none;
}

.hero__eyebrow {
  width: fit-content;
  margin: 0 auto 15px;
  padding: 4px 10px;
  /* border-radius: 999px; */
  background: var(--accent-soft);
  color: #9c6b00;
  border: 1px solid rgba(255, 201, 40, 0.34);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero__logo {
  position: relative;
  width: min(220px, 62vw);
  margin: 16px auto 32px;
}

.hero__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  max-width: none;
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.2px;
  font-weight: 900;
  color: var(--primary-dark);
}

.hero h1 span {
  color: var(--text-main);
}

.hero__lead {
  max-width: none;
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text-soft);
}

.benefits {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.benefits__group {
  display: grid;
  gap: 0.625rem;
  padding: 0.75rem;
  border: 0.0625rem solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.benefits__group:nth-child(1) {
  background: #eef6ff;
  border-color: #cfe3ff;
}

.benefits__group:nth-child(2) {
  background: #fff8e8;
  border-color: #ffe1a3;
}

.benefits__group:nth-child(3) {
  background: #edfdf5;
  border-color: #bdeccf;
}

.benefits__group:nth-child(3) .benefits__title {
  margin-bottom: 1rem;
}

@media (min-width: 64rem) {
  .benefits {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .benefits__group:nth-child(1) {
    grid-column: 1 / -1;
  }

  .benefits__group {
    height: 100%;
  }
}

.benefits__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  text-align: left;
  color: var(--primary-dark);
}

.benefit {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  /* border-radius: 12px; */
  background: linear-gradient(180deg, #ffffff, #f5faff);
  border: 1px solid var(--line);
  text-align: left;
}

.benefit--text {
  grid-template-columns: 1fr!important;
}

.benefit__icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 4px rgba(11, 95, 193, 0.12);
}

.benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #476889;
}

.hero__note {
  margin: 0 0 1.25rem;
  padding: 0.875rem 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-soft);
  background: #fff3f3;
  border: 0.0625rem solid #ffd1d1;
}

.hero__note-strong {
  display: inline-block;
  font-weight: 800;
  color: #8b2a2a;
}

.hero__note-warning {
  display: inline-block;
  font-weight: 800;
  color: #b42318;
}

.hero__note-link {
  display: inline-block;
  margin-top: 0.375rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--accent-soft);
  border: 0.0625rem solid rgba(255, 201, 40, 0.5);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  word-break: break-all;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 0;
  padding: 16px;
  background: #ff7202;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.hero__cta:hover {
  filter: brightness(1.03);
}

.hero__cta:focus-visible {
  outline: 4px solid rgba(255, 201, 40, 0.32);
  outline-offset: 4px;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

@media (max-width: 820px) {
  .hero__card {
    padding: 28px 18px 22px;
  }

  .hero__eyebrow {
    font-size: 10px;
  }

  .benefit {
    grid-template-columns: 20px 1fr;
    padding: 10px 12px;
  }

  .benefit p {
    font-size: 13px;
  }

  .hero__cta {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .page {
    padding: 16px 12px 36px;
  }
}
