*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  margin: 0;
  color: #1b2742;
}

.hero-body {
  background: #ffffff;
}

.hero-container {
  min-height: 100vh;
  padding-block: clamp(4rem, 8vw, 6rem);
  overflow: visible;
}

.hero-row {
  width: 100%;
  position: relative;
}

.hero-copy {
  gap: 0.75rem;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  color: #1f3557;
}

.hero-description {
  color: #40506a;
}

.hero-badge {
  letter-spacing: 0.15em;
  background-color: #3c65a6 !important;
  border: 1px solid rgba(24, 61, 160, 0.18);
}

.hero-list {
  list-style: none;
  max-width: 35rem;
}

.hero-list li {
  display: flex;
  align-items: start;
  gap: 0.65rem;
  font-weight: 500;
  color: #293958;
}

.hero-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 4px;
  background: rgba(24, 61, 160, 0.08);
  border: 1px solid rgba(24, 61, 160, 0.18);
  font-size: 0.78rem;
  color: #183da0;
  flex-shrink: 0;
}

.hero-visual {
  max-width: 42rem;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.visual-shell {
  position: relative;
  width: min(33rem, 95%);
}

.visual-frame {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(34, 63, 160, 0.12), rgba(15, 33, 88, 0.05));
  border: 1px solid rgba(26, 55, 146, 0.12);
  transform: translate(10%, 12%) scale(1.12);
  z-index: 0;
  pointer-events: none;
}

.visual-card {
  position: relative;
  background: #0f1f48;
  border-radius: 12px;
  padding: clamp(0.8rem, 1.8vw, 1.4rem);
  box-shadow: 0 38px 55px rgba(15, 31, 72, 0.18);
  overflow: hidden;
  z-index: 1;
}

.hero-image {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: 0 24px 44px rgba(9, 22, 49, 0.28);
}

@media (max-width: 1199px) {
  .hero-container {
    padding-block: clamp(3.5rem, 8vw, 5rem);
  }
}

@media (max-width: 991px) {
  .hero-container {
    text-align: center;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-description {
    max-width: 30rem;
  }

  .hero-visual {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .visual-shell {
    width: min(31rem, 95%);
  }
}

@media (max-width: 768px) {
  .hero-list {
    gap: 0.65rem;
  }

  .cta-group {
    gap: 0.75rem;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(2.3rem, 9vw, 2.8rem);
  }

  .hero-description {
    font-size: 1.05rem;
  }

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

@media (min-width: 1200px) {
  .hero-container {
    padding-right: clamp(12rem, 24vw, 20rem);
  }

  .hero-visual {
    position: absolute;
    top: 50%;
    right: clamp(-7rem, -12vw, -9rem);
    transform: translateY(-50%);
    width: clamp(35rem, 62vw, 53rem);
    margin-top: 0;
    justify-content: flex-end;
  }

  .visual-shell {
    width: 100%;
  }

  .visual-frame {
    transform: translate(16%, 18%) scale(1.2);
  }
}
