* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #005dff;
  --blue-dark: #002b91;
  --blue-soft: #eaf4ff;
  --white: #ffffff;
  --text: #061947;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 120, 255, .30), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(0, 85, 255, .25), transparent 28%),
    linear-gradient(135deg, #f9fcff 0%, #ddecff 45%, #ffffff 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  position: relative;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
}

.page::before {
  top: -230px;
  left: -210px;
  background: linear-gradient(135deg, #005dff, #00b7ff);
}

.page::after {
  right: -240px;
  bottom: -240px;
  background: linear-gradient(135deg, #006dff, #001d8a);
}

.hero {
  width: min(1120px, 100%);
  min-height: 650px;
  padding: 46px;
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .85);
  box-shadow: 0 28px 70px rgba(0, 52, 160, .22);
  backdrop-filter: blur(18px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(0, 94, 255, .12) 36% 47%, transparent 48% 100%),
    linear-gradient(295deg, transparent 0 48%, rgba(255, 255, 255, .8) 49% 60%, transparent 61% 100%);
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .8;
}

.orb-1 {
  width: 180px;
  height: 180px;
  right: 8%;
  top: 9%;
  background: rgba(0, 105, 255, .18);
}

.orb-2 {
  width: 260px;
  height: 260px;
  left: 44%;
  bottom: -120px;
  background: rgba(0, 162, 255, .13);
}

.content,
.visual {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--blue-dark);
  background: var(--white);
  border: 2px solid rgba(0, 91, 255, .35);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 12px 28px rgba(0, 74, 180, .13);
}

h1 {
  margin-top: 24px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -2px;
  font-weight: 1000;
  color: #ffffff;
  text-shadow: 0 5px 0 #004cc9, 0 14px 28px rgba(0, 45, 130, .28);
}

h1 span {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 10px 20px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00309a 0%, #006cff 100%);
  box-shadow: 0 18px 32px rgba(0, 63, 170, .26);
}

.subtitle {
  max-width: 490px;
  margin: 22px 0 26px;
  font-size: 18px;
  line-height: 1.6;
  color: #17336c;
}

.btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 30px;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #006eff, #0030b8);
  box-shadow: 0 16px 34px rgba(0, 76, 190, .30);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 76, 190, .38);
}

.trust {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}

.trust div {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 91, 255, .18);
  box-shadow: 0 10px 28px rgba(0, 50, 140, .08);
}

.trust b,
.trust small {
  display: block;
}

.trust b {
  font-size: 16px;
  color: #003eb7;
}

.trust small {
  margin-top: 5px;
  color: #52658f;
  font-size: 13px;
}

.visual img {
  width: 100%;
  border-radius: 30px;
  transform: rotate(2deg);
  box-shadow: 0 26px 52px rgba(0, 48, 142, .27);
}

@media (max-width: 850px) {
  .page {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 28px 18px;
    border-radius: 28px;
  }

  .visual {
    order: -1;
  }

  .visual img {
    transform: rotate(0deg);
    border-radius: 24px;
  }

  .content {
    text-align: center;
  }

  h1 span,
  .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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