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

body {
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  background: #ffffff;
  color: #222;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: #0a1a2f;
  color: white;
}

.site-header .logo a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 25px;
}


.main-nav ul li a {
  color: white;
  text-decoration: none;
  padding: 6px 0;
  font-size: 15px;
}

.main-nav ul li a:hover {
  border-bottom: 2px solid #4aa3ff;
}

/* DROPDOWNS */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  color: black;
  top: 28px;
  left: 0;
  min-width: 232px;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  list-style: none;
}

.dropdown-menu li {
  padding: 6px 16px;
}

.dropdown-menu li a {
  color: #0a1a2f !important;
  font-size: 14px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* FOOTER */
.site-footer {
  background: #f2f4f7;
  padding: 40px;
  margin-top: 60px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.site-footer a {
  display: block;
  color: #444;
  margin-bottom: 6px;
  text-decoration: none;
}

.site-footer h4 {
  margin-bottom: 10px;
  color: #0a1a2f;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  font-size: 14px;
}

/* HOME LAYOUT */
.home-main {
  max-width: 1040px;
  margin: 40px auto 60px;
  padding: 0 16px;
}

/* HERO */
.hero {
  padding: 40px 0 30px;
}

.hero-inner {
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #d0d7e2;
  margin-bottom: 10px;
  color: #555;
}

.hero-title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #111827;
}

.hero-subtitle {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* BUTTONS (reusing hero buttons across site) */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #0a1a2f;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: #0a1a2f;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #0a1a2f;
}

.btn-outline:hover {
  background: #e5e7eb;
}

/* GENERIC SECTIONS */
.section {
  padding: 30px 0;
}

.section-alt {
  background: #f9fafb;
  padding: 30px 18px;
  border-radius: 12px;
  margin-top: 10px;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #111827;
}

.section-intro {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 18px;
}

/* CARDS & GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #111827;
}

.card p {
  font-size: 14px;
  color: #4b5563;
}

/* PILLS */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 13px;
  color: #111827;
}

.steps-list {
  margin-left: 20px;
  font-size: 14px;
  color: #4b5563;
}

.steps-list li {
  margin-bottom: 6px;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary {
  background: #0a1a2f;
  color: white;
}

.btn-outline {
  border: 1px solid #0a1a2f;
  color: #0a1a2f;
}

.highlight-box {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  font-size: 14px;
  color: #374151;
}

.highlight-box ul {
  margin-left: 18px;
  margin-top: 6px;
}

.highlight-box li {
  margin-bottom: 4px;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  margin-top: 10px;
  cursor: not-allowed;
  opacity: 0.6;
}

.blog-card {
  text-decoration: none;
  color: inherit;
}

.blog-card h3 {
  margin-bottom: 6px;
}

.blog-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 4px;
}

.blog-readmore {
  margin-top: 8px;
  font-size: 13px;
  color: #2563eb;
}

.blog-bullets {
  margin-left: 18px;
  font-size: 14px;
  color: #4b5563;
}

.blog-bullets li {
  margin-bottom: 4px;
}

.form-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* =========================
   MOBILE / TABLET STYLES
   ========================= */
@media (max-width: 768px) {

  /* Header stacks logo + menu vertically */
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }

  .site-header .logo {
    margin-bottom: 8px;
  }

  /* Nav items wrap instead of forcing horizontal scroll */
  .main-nav ul {
    flex-wrap: wrap;
    gap: 12px;
  }

  .main-nav ul li a {
    font-size: 14px;
  }

  /* Let dropdowns fill the width nicely on small screens */
  .dropdown-menu {
    position: static;        /* no absolute positioning */
    min-width: 100%;
    margin-top: 4px;
    box-shadow: none;
    border-radius: 4px;
    background: #0a1a2f;
    white-space: normal;     /* allow wrapping on mobile */
  }

  .dropdown-menu li {
    padding: 4px 0;
  }

  .dropdown-menu li a {
    display: block;
    padding: 6px 4px 6px 0;
    color: #ffffff !important;
  }

  /* Main content gets a bit more breathing room */
  .home-main {
    margin: 24px auto 40px;
    padding: 0 12px;
  }

  /* Footer stacks columns on mobile */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
