:root {
  --bg-0: #060d22;
  --bg-1: #0c1b42;
  --bg-2: #12285b;
  --surface: #ffffff;
  --surface-soft: #f6f9ff;
  --text: #101a2f;
  --muted: #62718b;
  --line: #dde6f3;
  --brand: #1e86ff;
  --brand-2: #35c3dd;
  --good: #1fbf72;
  --hero-shadow: 0 28px 60px rgba(4, 13, 32, 0.42);
  --card-shadow: 0 12px 28px rgba(13, 37, 83, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 15% 2%, rgba(30, 134, 255, 0.15), transparent 62%),
    radial-gradient(900px 560px at 85% 0%, rgba(53, 195, 221, 0.15), transparent 60%),
    linear-gradient(180deg, #eef4ff 0%, #f7faff 40%, #eff4ff 100%);
}

.container {
  width: min(1150px, 92vw);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 17, 40, 0.88);
  border-bottom: 1px solid rgba(141, 173, 225, 0.2);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #e7efff;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav__whatsapp {
  color: #35d16f !important;
}

.nav__whatsapp:hover {
  background: rgba(53, 209, 111, 0.18) !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand__logo {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.hero {
  padding: 34px 0 30px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.hero__content {
  background: linear-gradient(150deg, var(--bg-1), var(--bg-2));
  border: 1px solid rgba(147, 181, 243, 0.2);
  border-radius: 22px;
  box-shadow: var(--hero-shadow);
  color: #f2f7ff;
  padding: 26px;
}

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #5ae5ff;
  box-shadow: 0 0 0 5px rgba(90, 229, 255, 0.25);
}

.hero__title {
  margin: 14px 0 10px;
  line-height: 1.18;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.4px;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: #d2e1fb;
  font-size: 16px;
  line-height: 1.95;
}

.hero__subtitle strong {
  color: #ffffff;
}

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

.hero__cta--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ctaGroup {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(193, 214, 248, 0.2);
  border-radius: 14px;
  padding: 12px;
}

.ctaGroup__title {
  margin-bottom: 10px;
  color: #e4efff;
  font-size: 14px;
  font-weight: 800;
}

.ctaGroup__buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 20px rgba(30, 134, 255, 0.3);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(200, 220, 249, 0.35);
}

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

.stat {
  border: 1px solid rgba(170, 197, 240, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
}

.stat__num {
  color: #fff;
  font-weight: 800;
  font-size: 21px;
}

.stat__label {
  color: #c4d7f7;
  font-size: 13px;
  font-weight: 700;
}

.hero__visual {
  display: flex;
}

.heroBox {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  padding: 18px;
}

.heroBox__title {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 800;
  color: #10203e;
}

.heroHighlights {
  display: grid;
  gap: 10px;
}

.heroHighlight {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid #e4ebf8;
  border-radius: 13px;
  padding: 11px;
  background: var(--surface-soft);
}

.heroHighlight__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: linear-gradient(135deg, rgba(30, 134, 255, 0.16), rgba(53, 195, 221, 0.16));
}

.heroHighlight__head {
  color: #0f2346;
  font-size: 14px;
  font-weight: 800;
}

.heroHighlight__sub {
  color: #5f7392;
  font-size: 13px;
  margin-top: 1px;
}

.heroBox__mini {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d3e3fb;
  background: #eef5ff;
  color: #265798;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}

.section {
  padding: 44px 0;
}

.section--alt {
  background: linear-gradient(180deg, #e9f2ff 0%, #f4f8ff 100%);
  border-top: 1px solid #d6e5fa;
  border-bottom: 1px solid #d6e5fa;
}

.section__title {
  margin: 0 0 8px;
  font-size: 33px;
  font-weight: 800;
  color: #112346;
}

.section__subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 15px;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, rgba(30, 134, 255, 0.16), rgba(53, 195, 221, 0.16));
  border: 1px solid #d5e4fb;
}

.card h3 {
  margin: 0 0 6px;
  color: #12284f;
  font-size: 18px;
  font-weight: 800;
}

.card p {
  margin: 0;
  color: #566a89;
  font-size: 14px;
  line-height: 1.85;
}

.steps {
  display: grid;
  gap: 10px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 12px;
}

.step__num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.step__body h3 {
  margin: 0 0 4px;
  color: #102649;
  font-size: 18px;
  font-weight: 800;
}

.step__body p {
  margin: 0;
  color: #556a8a;
  font-size: 14px;
  line-height: 1.8;
}

.downloadBox {
  margin-top: 16px;
  background: linear-gradient(140deg, #112958 0%, #133167 45%, #184487 100%);
  border: 1px solid rgba(163, 197, 247, 0.28);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #ecf4ff;
  box-shadow: var(--hero-shadow);
}

.downloadBox h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
}

.downloadBox p {
  margin: 0;
  color: #ccddf7;
}

.downloadBox__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: min(560px, 100%);
}

.downloadBox .ctaGroup {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(195, 216, 249, 0.28);
}

.downloadBox .ctaGroup__title {
  color: #eaf2ff;
}

.footer {
  padding: 18px 0 28px;
}

.footer__inner {
  border: 1px solid #d8e5f8;
  background: #f8fbff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  height: 44px;
}

.footer__title {
  font-size: 18px;
  font-weight: 800;
  color: #12294d;
}

.footer__sub {
  color: #5f7392;
  font-size: 13px;
  font-weight: 700;
}

.footer__copy {
  color: #657895;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .downloadBox__grid {
    min-width: 100%;
  }
}

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

  .nav {
    display: none;
  }

  .brand__logo {
    height: 52px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero__content,
  .heroBox {
    border-radius: 18px;
    padding: 14px;
  }

  .hero__cta--grid {
    grid-template-columns: 1fr;
  }

  .stats,
  .cards,
  .downloadBox__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 34px 0;
  }

  .section__title {
    font-size: 28px;
  }
}
