:root {
  --brand-primary: #2563eb;
  --brand-primary-dark: #1e40af;
  --brand-secondary: #14b8a6;
  --brand-dark: #0f172a;
  --brand-muted: #64748b;
  --brand-light: #f8fafc;
  --brand-border: #e2e8f0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brand-dark);
  background: #ffffff;
}

.navbar {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar-brand span {
  color: var(--brand-primary);
}

.language-select {
  min-width: 110px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-brand {
  background: var(--brand-primary);
  color: #ffffff;
  border: 1px solid var(--brand-primary);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn-brand:hover {
  background: var(--brand-primary-dark);
  color: #ffffff;
  border-color: var(--brand-primary-dark);
}

.btn-outline-brand {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-outline-brand:hover {
  background: var(--brand-primary);
  color: #ffffff;
}

.section-padding {
  padding: 90px 0;
}

.hero {
  padding: 140px 0 90px;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--brand-primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid #dbeafe;
}


.hero h1 {
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
}

.text-muted-custom {
  color: var(--brand-muted);
}

.hero-card {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.13);
  overflow: hidden;
}

.hero-card-header {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  padding: 24px;
}

.call-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.14);
}

.floating-card {
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.feature-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: #ffffff;
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: var(--brand-primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.section-eyebrow {
  color: var(--brand-primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.soft-bg {
  background: var(--brand-light);
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #334155;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 1px;
}

.stats-box {
  padding: 32px;
  border-radius: 32px;
  background: var(--brand-light);
  border: 1px solid var(--brand-border);
}

.stat-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  padding: 24px;
}

.cta-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #1e3a8a, #2563eb 55%, #14b8a6);
  color: #ffffff;
  border-radius: 34px;
  overflow: hidden;
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 12px 14px;
}

footer {
  border-top: 1px solid var(--brand-border);
  background: #ffffff;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 110px;
  }

  .section-padding {
    padding: 70px 0;
  }
}

.section-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--section-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-bg-overlay, rgba(255, 255, 255, 0.65));
  z-index: -1;
}

.section-bg-dark {
  color: #ffffff;
}

.section-bg-dark::after {
  background: var(--section-bg-overlay, rgba(15, 23, 42, 0.72));
}

.section-bg-dark .text-muted-custom,
.section-bg-dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-bg .feature-card,
.section-bg .stats-box,
.section-bg .stat-card,
.section-bg .hero-card,
.section-bg form {
  backdrop-filter: blur(14px);
}

.section-bg .feature-card,
.section-bg .stat-card,
.section-bg .stats-box {
  background: rgba(255, 255, 255, 0.9);
}

.hero.section-bg::before {
  background-image: url("../img/backgrounds/hero.png") !important;
  opacity: 1;
  z-index: -2;
}

.hero.section-bg::after {
  background: rgba(255, 255, 255, 0.25) !important;
}

.bg-white {
  background: #ffffff !important;
  border-radius: 15px;
  padding: 15px;
  opacity: 0.85;
}

.logo{
    max-height: 50px;
}