:root {
  --bg-top: #0b5fc1;
  --bg-bottom: #f4f4f4;
  --card-top: #ffffff;
  --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: 600px;
}

.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: 190px;
  margin: 20px auto 40px;
}

.hero__logo svg {
  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: 10px;
  margin-bottom: 20px;
}

.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__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 20px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-soft);
}

.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;
  }
}
