:root{
  --bg: #0b1220;
  --soft: rgba(255,255,255,.08);
  --soft2: rgba(0,0,0,.08);
  --radius: 18px;
}

body {
  background: #ffffff;
}

.topbar {
  background: #0b1220;
  color: rgba(255,255,255,.9);
}

.topbar a.btn {
  border-color: rgba(255,255,255,.35);
}

/* ===== Brand Logo ===== */
.brand-logo {
  height: 42px;
  width: auto;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 34px;
  }
}

.hero{
  padding: 64px 0;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(13,110,253,.22), transparent 60%),
    radial-gradient(900px 450px at 80% 20%, rgba(32,201,151,.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.hero-logo {
  max-width: 280px;
  height: auto;
}

.card{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
}

.trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill{
  font-size: .9rem;
  padding: 8px 12px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
}

.section{
  padding: 64px 0;
}

.section-alt{
  background: #f6f8fb;
}

.service-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 18px;
  height: 100%;
}

.checklist{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.checklist li{
  padding-left: 28px;
  margin: 10px 0;
  position: relative;
}

.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.callout{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 22px;
}

.contact-line{
  font-size: 1.05rem;
  margin: 6px 0;
}

.mini-faq{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 22px;
}

.footer{
  background: #0b1220;
  color: rgba(255,255,255,.9);
}

.footer .text-muted{
  color: rgba(255,255,255,.65) !important;
}

/* ===== Navbar Fixes ===== */
.navbar {
  background-color: #0b1220 !important;
}

.navbar .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #ffffff !important;
}

.navbar .btn-primary {
  padding: 8px 16px;
  border-radius: 999px;
}

/* Navbar logo (stacked) */
.navbar-logo {
  height: 44px;
  width: auto;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 36px;
  }
}

/* ===== Navbar Eagle ===== */
.navbar-eagle {
  /*height: 80px;         */
  max-width: 350px;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .navbar-eagle {
    height: 50px;
  }
}


/* ===== Hero Eagle ===== */
.hero-eagle-wrap {
  text-align: center;
}

.hero-eagle {
  width: 420px;        /* MUCH BIGGER */
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-eagle {
    width: 280px;
  }
}



