:root {
  --bg: #f4f7ff;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe6ff;
  --brand: #1e3a8a;
  --brand-2: #2563eb;
  --accent: #f97316;
  --success: #16a34a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body.website-shell {
  font-family: "Segoe UI", "Sora", "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 8%, rgba(191, 219, 254, 0.9) 0, rgba(191, 219, 254, 0) 36%),
    radial-gradient(circle at 5% 28%, rgba(224, 231, 255, 0.8) 0, rgba(224, 231, 255, 0) 32%),
    var(--bg);
}

.site-navbar {
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 230, 255, 0.85);
  background: rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-navbar.is-scrolled {
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.brand-pill {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 600;
  color: #1f2a44;
}

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

.navbar-toggler {
  border: 1px solid #cdd9f4;
  border-radius: 10px;
  padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.16);
}

.btn-site-primary {
  border: 0;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn-site-primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-site-accent {
  border: 0;
  background: linear-gradient(120deg, #fb923c, var(--accent));
  color: #fff;
}

.btn-site-accent:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-site-outline {
  border: 1px solid #cbd8ff;
  color: #193573;
  background: #fff;
}

.btn,
.btn-site-primary,
.btn-site-accent,
.btn-site-outline {
  transition: all 0.22s ease;
}

.hero-section {
  border-radius: 28px;
  background: linear-gradient(145deg, #0f2c70, #1d4ed8 58%, #2563eb 100%);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  right: -180px;
  top: -190px;
}

.hero-stat {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-label {
  color: #8ca1da;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.36rem 0.8rem;
  border: 1px solid var(--line);
  color: #1d4ed8;
  background: #eef4ff;
}

.section-title {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
}

.premium-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.page-hero {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.22), transparent 42%),
    radial-gradient(circle at 0% 88%, rgba(30, 58, 138, 0.16), transparent 34%),
    #fff;
  padding: clamp(1.2rem, 1rem + 2vw, 2.8rem);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.premium-card.hover-rise {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.premium-card.hover-rise:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.logo-item {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 700;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.pricing-card.recommended {
  border: 2px solid #3b82f6;
  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.2);
  transform: scale(1.02);
}

.price {
  font-size: 2rem;
  font-weight: 800;
}

.price-label {
  font-size: 0.88rem;
  color: #64748b;
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: #334155;
}

.bullet-list i {
  color: var(--success);
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
  background: #eaf2ff;
  color: #1e40af;
}

.fade-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.form-label-modern {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-helper {
  font-size: 0.8rem;
  color: #64748b;
}

.form-callout {
  border-radius: 16px;
  border: 1px solid #d9e8ff;
  background: #f3f8ff;
}

.input-wrap {
  position: relative;
}

.input-wrap .form-control,
.input-wrap .form-select {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.input-wrap .floating-hint {
  position: absolute;
  top: -0.52rem;
  left: 0.72rem;
  z-index: 3;
  padding: 0.1rem 0.38rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dce8ff;
}

.form-control,
.form-select {
  border-radius: 12px;
  border-color: #cdd9f4;
}

.form-control:focus,
.form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.16);
}

.errorlist {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  color: #b91c1c;
  font-size: 0.78rem;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.cta-band {
  border-radius: 24px;
  background: linear-gradient(130deg, #0f2c70, #2563eb);
  color: #fff;
  box-shadow: var(--shadow);
}

.footer-main {
  border-top: 1px solid var(--line);
  background: #fff;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d9e4ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 0.75rem;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-card.recommended {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
