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

body {
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  color: #1e2d4a;
  overflow-x: hidden;
  background: rgb(232, 239, 255);
}

.page {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
}

.page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgb(232, 239, 255);
  z-index: -2;
}

.page::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('images/bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.75;
  z-index: -1;
  pointer-events: none;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding: 2.5rem 1.5rem 1rem;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-bg-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle at center, rgba(232, 239, 255, 0.95) 0%, rgba(205, 218, 255, 0.85) 35%, rgba(160, 184, 241, 0.65) 60%, rgba(130, 157, 229, 0.0) 75%);
  filter: blur(30px);
  opacity: 1;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-top {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 1.75rem;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-list {
  display: flex;
  justify-content: center;
}

.hero-list ul {
  list-style: none;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #40526a;
}

.hero-list li + li {
  margin-top: 0.35rem;
}

.hero-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-check-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-check-icon circle {
  fill: #4f5cd1;
}

.hero-check-icon path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-list-text {
  display: inline-block;
}

.logo {
  margin-bottom: 1.25rem;
  text-align: center;
}

.logo img {
  max-width: 190px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.logo-fallback {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1e2d4a;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  color: #1e2d4a;
  max-width: 720px;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.subheading {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #5a6b7d;
  text-align: center;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 960px;
  margin-bottom: 2rem;
}

.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: linear-gradient(160deg, rgba(249, 251, 255, 0.98), rgba(234, 241, 255, 0.97));
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 1.5rem 1.6rem 1.3rem;
  box-shadow: 0 18px 42px rgba(70, 100, 160, 0.22);
  border: 1px solid rgba(196, 208, 241, 0.96);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  color: inherit;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(49, 78, 124, 0.24);
}

.card-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1e2d4a;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9rem;
  color: #5a6b7d;
  line-height: 1.45;
  margin-bottom: auto;
}

.card-cta {
  margin-top: 1.1rem;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  padding: 0.6rem 1.7rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f5cd1, #6573e5);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(41, 64, 158, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.card-cta-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

.card-cta-arrow {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.card-cta-arrow svg {
  width: 100%;
  height: 100%;
}

.card-cta-arrow path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card:hover .card-cta {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 30px rgba(41, 64, 158, 0.6);
  background: linear-gradient(135deg, #6573e5, #4f5cd1);
}

.tagline {
  text-align: center;
  font-size: 0.95rem;
  color: #5a6b7d;
  margin-top: auto;
  padding-top: 2rem;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #5a6b7d;
  margin-top: 1rem;
}

@media (max-width: 820px) {
  .hero-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "hero-center hero-center"
      "hero-left hero-right";
    gap: 1.25rem 1rem;
  }

  .hero-center {
    grid-area: hero-center;
  }

  .hero-list--left {
    grid-area: hero-left;
    justify-content: center;
  }

  .hero-list--right {
    grid-area: hero-right;
    justify-content: center;
  }

  .hero-list ul {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .page {
    padding: 1.75rem 1.25rem 2.5rem;
  }

  .hero {
    margin-bottom: 2rem;
  }

  .hero-bg-logo {
    width: 260px;
    height: 260px;
    transform: translate(-50%, -60%);
    filter: blur(32px);
  }

  .hero-list ul {
    max-width: 320px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    gap: 1.1rem;
  }

  .card {
    border-radius: 20px;
    padding: 1.35rem 1.4rem 1.2rem;
  }

  .cards .card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 1.5rem 1rem 2rem;
  }

  .logo img {
    max-width: 160px;
  }

  .hero-list ul {
    padding: 0.9rem 1.1rem;
  }

  .hero-list li {
    font-size: 0.85rem;
  }

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

  .card-title {
    font-size: 1rem;
  }

  .card-desc {
    font-size: 0.88rem;
  }

  .card-cta {
    padding: 0.55rem 1.4rem 0.6rem;
  }

  .card-cta-label {
    font-size: 0.9rem;
  }
}

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

  .cards .card:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 414px) {
  .hero-top {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "hero-center"
      "hero-left"
      "hero-right";
    gap: 0;
  }

  .hero {
    padding-top: 0;
    margin-bottom: 0;
  }
}

