﻿:root {
  --bg-main: #f5f9ff;
  --bg-soft: #eef4ff;
  --bg-card: #ffffff;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --accent: #0ea5a4;
  --text-dark: #111827;
  --text-muted: #5b6b85;
  --line: #dce6fb;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(900px 450px at 10% -5%, rgba(37, 99, 235, 0.15), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(14, 165, 164, 0.14), transparent 58%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 45%, #ffffff 100%);
  color: var(--text-dark);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.24;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: #60a5fa;
  top: -100px;
  left: -80px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: #2dd4bf;
  bottom: 8%;
  right: -110px;
}

.navbar {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 35px rgba(30, 58, 138, 0.12);
  backdrop-filter: blur(8px);
}

.navbar-brand,
.nav-link {
  color: #1f2a44;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus,
.navbar-brand:hover {
  color: var(--brand);
}

.brand-logo {
  padding-top: 0;
  padding-bottom: 0;
}

.logo-chip {
  background: #ffffff;
  border-radius: 0.95rem;
  padding: 0.35rem 0.65rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.1);
}

.logo-img {
  display: block;
  width: 172px;
  height: auto;
}

.footer-logo {
  width: 96px;
  height: auto;
}

.navbar-toggler {
  border-color: #ced8ee;
}

.hero {
  min-height: 100vh;
  color: var(--text-dark);
  padding-top: 6.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--brand);
  background: #eaf1ff;
  border: 1px solid #cdddfc;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.lead {
  color: var(--text-muted);
}

.metric {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 800;
  color: #183889;
}

.metric-row small {
  color: #627292;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid #d7e3fb;
  border-radius: 1.25rem;
  box-shadow: 0 24px 45px rgba(37, 99, 235, 0.14);
}

.hero-card .h5 {
  color: #1c2a4f;
}

.panel-muted {
  color: #6d7d99;
}

.chart-bar {
  height: 12px;
  background: #e5edff;
  border-radius: 999px;
  overflow: hidden;
}

.chart-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f8cf9, #14b8a6);
}

.mini-stat {
  background: #ffffff;
  border-radius: 0.9rem;
  border: 1px solid #d9e5fc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.section-pad {
  padding: 5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-title {
  font-weight: 800;
  margin-bottom: 1rem;
  color: #142748;
}

.info-card,
.module-box,
.benefit-item {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.module-box:hover,
.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.14);
}

.info-card h3,
.module-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: #1a315f;
}

.info-card p,
.module-box p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.module-box {
  border-top: 4px solid var(--brand);
}

.contact-box {
  background: linear-gradient(120deg, #1e3a8a, #2563eb 55%, #0ea5a4);
  border-radius: 1.1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(22, 50, 120, 0.3);
}

.btn-brand {
  background: linear-gradient(120deg, #2563eb, #1d4ed8);
  border-color: #1d4ed8;
  color: #ffffff;
  font-weight: 700;
}

.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(120deg, #1d4ed8, #1e40af);
  border-color: #1e40af;
  color: #ffffff;
}

.btn-ghost {
  border: 1px solid #c8d8fb;
  color: #1e3a8a;
  background: #ffffff;
  font-weight: 600;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: #9bb9f7;
  color: #1d4ed8;
  background: #eff5ff;
}

.accordion-item {
  border: 1px solid var(--line);
}

.accordion-button {
  color: #1d315d;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: #0f2f71;
  background: #e7efff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

footer {
  background: #ffffff;
  color: #60708b;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 7.4rem;
  }

  .logo-img {
    width: 140px;
  }

  .footer-logo {
    width: 84px;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
    padding: 1rem;
    border-radius: 0.8rem;
    margin-top: 0.8rem;
  }
}
