/* styles.css */
:root {
  --primary: #1e40af;
  --accent: #2563eb;
  --bg: #ffffff;
  --light: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --border: #e5e7eb;
  --shadow: 0 10px 25px rgba(0,0,0,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: 92%;
  max-width: 1150px;
  margin: 0 auto;
}

a { color: inherit; text-decoration: none; }

.center { text-align: center; }
.maxw { max-width: 720px; margin: 0 auto; }

.muted { color: var(--muted); }
.tiny { font-size: 13px; }

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.page-hero,
.section {
  position: relative;
  z-index: 1;
}

.menu-toggle {
  position: relative;
  z-index: 1100;
}



.menu-toggle {
  position: relative;
  z-index: 10000;
}



.navbar .btn-primary {
  color: white;
}

.nav-content {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-weight: 600;
  color: #111827;
}

.nav-links a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 14px 18px;
  font-weight: 600;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu .mobile-cta {
  margin: 14px 18px;
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover { background: var(--primary); }

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* HERO */
.hero {
  padding: 110px 0 70px;
  background: linear-gradient(to bottom, white, var(--light));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--primary);
  background: #eff6ff;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.badge-center { display: inline-block; }

.hero h1 {
  font-size: 56px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero p { font-size: 18px; max-width: 560px; }

.hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* TRUST ROW */
.trust-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.trust-item strong { display: block; }
.trust-item span { font-size: 14px; color: var(--muted); }

/* HERO CARD */
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.mini-form { margin-top: 14px; display: grid; gap: 12px; }
.mini-form label { font-size: 14px; font-weight: 700; display: grid; gap: 8px; }

input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  font: inherit;
}

input:focus, select:focus, textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}

/* SECTIONS */
.section { padding: 90px 0; }
.section-light { background: var(--light); }

.section-head { margin-bottom: 36px; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.service {
  border-radius: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.list { margin-top: 18px; display: grid; gap: 12px; }
.list-item { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--border); border-radius: 14px; background: #fbfdff; }

.bullets { margin-top: 12px; padding-left: 18px; color: var(--muted); }

.embed iframe {
  width: 100%;
  height: 720px;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* PAGE HERO */
.page-hero {
  padding: 80px 0 30px;
  background: linear-gradient(to bottom, white, var(--light));
}

.page-hero h1 {
  font-size: 44px;
  margin-top: 12px;
}

/* CTA */
.cta {
  padding: 70px 0;
  background: #0b1a3a;
  color: white;
}

.cta .muted { color: rgba(255,255,255,0.82); }

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* FAQ */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}
/* Contact panel spacing */
.panel .list {
  margin-bottom: 16px;
}


/* FOOTER */
.footer {
  background: #070f1f;
  color: #cbd5f5;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.footer h4 { color: white; margin-bottom: 8px; }
.footer-links { display: grid; gap: 10px; justify-items: end; }

.footer-links a:hover { color: white; }

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 850px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }

  .mobile-menu.open { display: flex; }

  .hero-grid,
  .split,
  .grid-4,
  .grid-3,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 40px; }
  .trust-row { grid-template-columns: 1fr; }
  .footer-links { justify-items: start; }
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  font-weight: 600;
  color: #cbd5f5;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: white;
  color: #0f172a;
}

.hero-image,
.about-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  object-fit: cover;
}

