:root {
  --bg-dark: #081a2b;
  --bg-dark-2: #112b44;
  --primary: #f6b400;
  --text: #112132;
  --muted: #6c7a89;
  --card: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #f7f9fc;
}

.glass-nav {
  background: rgba(8, 26, 43, 0.88);
  backdrop-filter: blur(10px);
}

.navbar-brand span { color: var(--primary); }
.navbar .btn { border-radius: 999px; }

.hero-section,
.page-hero {
  background: radial-gradient(circle at top right, #163f64 0%, var(--bg-dark) 45%, #04101b 100%);
  color: #fff;
}

.hero-panel,
.contact-form,
.service-card,
.feature-box,
.segment-card,
.testimonial-card,
.stat-card {
  border-radius: 24px;
}

.hero-panel {
  background: rgba(255,255,255,0.08);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.stats-row .stat-card {
  background: rgba(255,255,255,0.08);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.stats-row strong,
.hero-panel p,
.hero-panel small,
.hero-section h1,
.hero-section p,
.page-hero h1,
.page-hero p { color: #fff; }
.stats-row span { display: block; font-size: .92rem; color: rgba(255,255,255,.78); }

.section-padding { padding: 88px 0; }
.section-tag {
  display: inline-block;
  background: rgba(246,180,0,.12);
  color: #9a6b00;
  border: 1px solid rgba(246,180,0,.2);
  padding: .45rem .85rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.15);
}
.section-title {
  max-width: 760px;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.feature-box,
.service-card,
.testimonial-card,
.contact-form {
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 10px 35px rgba(10, 31, 68, 0.08);
}
.service-card {
  border: 1px solid #e9eef5;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(10, 31, 68, 0.12);
}
.segment-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem;
}
.testimonial-card p { font-size: 1.05rem; }
.testimonial-card span { display: block; color: var(--muted); }
.contact-form .form-control,
.contact-form .form-select {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid #d9e2ec;
}
.contact-form textarea.form-control { min-height: 120px; }

.pill-info {
  display: inline-flex;
  align-items: center;
  padding: .7rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.contact-list li {
  margin-bottom: .8rem;
  padding-left: 1.1rem;
  position: relative;
}
.contact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.site-footer {
  background: #06111c;
  color: #dbe7f3;
  padding: 28px 0;
}

.corporate-bg {
  background: radial-gradient(circle at left top, #204d79 0%, #0c2137 40%, #060d15 100%);
}

@media (max-width: 991px) {
  .hero-section { padding-top: 90px; }
  .navbar .btn { width: 100%; }
}
