/* Modern page styling */
:root {
  color-scheme: light;
  color: #1f2937;
  background: #f4f8ff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html, body {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #f4f8ff;
}

body {
  font-size: 1rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", system-ui, sans-serif;
}

a {
  text-decoration: none;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -.03em;
  font-size: 1.3rem;
}

.navbar-nav .nav-link {
  color: #44556a;
  transition: color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #0d6efd;
}

header.sticky-top {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}

.hero {
  padding: 5rem 0;
}

.hero-card {
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.feature-box {
  border: 1px solid rgba(13, 110, 253, 0.12);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.badge.bg-primary-soft {
  background-color: rgba(13,110,253,.1);
  color: #0d6efd;
}

.modern-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.btn-outline-secondary {
  color: #334155;
  border-color: rgba(148, 163, 184, 0.35);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background: rgba(13, 110, 253, 0.06);
}

.card {
  border-radius: 1.25rem;
}

.card-body {
  padding: 1.75rem;
}

footer {
  background: #ffffff;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

footer .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

footer .text-center {
  color: #64748b;
}

#backToTop {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

@media (min-width: 992px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero-section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-shape {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(59,130,246,0.22), transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.05;
  max-width: 44rem;
}

.hero-text {
  max-width: 42rem;
}

.trust-bar {
  gap: 1rem;
  color: #64748b;
}

.trust-pill {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(13,110,253,0.12);
  color: #0d6efd;
  font-weight: 700;
}

.hero-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.feature-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.feature-card-modern {
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.icon-circle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13,110,253,0.12);
  color: #0d6efd;
  font-weight: 700;
}

.cta-section {
  margin-top: 3rem;
}

.banner-section {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background-color: #f9fafb;
}

.banner-section img {
  max-height: 300px;
  object-fit: cover;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: rgba(13, 110, 253, 0.35);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: rgba(13, 110, 253, 0.08);
}

.badge.bg-primary-soft {
  background-color: rgba(13,110,253,.12);
  color: #0d6efd;
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

