@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
:root {
  --navy: #1A2E4A;
  --steel-blue: #2D6FA8;
  --light-blue: #4A8BC4;
  --orange: #E8660A;
  --white: #FFFFFF;
  --gray-light: #F4F6F8;
  --text-dark: #1A2030;
  --text-mid: #4A5568;
  --border: #DCE3EA;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #F8F9FB;
  color: #191C1E;
  line-height: 1.6;
  overflow-x: hidden;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

/* ---- Top utility bar ---- */
.bg-navy-bar {
  background: #1A2E4A;
}

/* ---- Header ---- */
#main-header {
  height: 80px;
  transition: height 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

#main-header.scrolled {
  height: 56px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

#header-logo {
  height: 64px;
  transition: height 0.3s ease;
}

#main-header.scrolled #header-logo {
  height: 40px;
}

.glass-nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---- Typography ---- */
.editorial-headline {
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.tight-headline {
  letter-spacing: -0.03em;
}

.editorial-body {
  line-height: 1.7;
}

.voice-intro {
  font-size: 1.125rem;
  line-height: 1.75;
}

.voice-key-takeaway {
  background: #F4F6F8;
  border-left: 4px solid #2D6FA8;
  padding: 0.75rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
}

/* ---- CTA Box ---- */
.cta-box {
  background: #2D6FA8;
  border-radius: 12px;
  padding: 32px;
}

.cta-box h3, .cta-box h4 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- FAQ Accordion ---- */
.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #F4F6F8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.faq-open .faq-answer {
  padding-bottom: 1.5rem;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* ---- Ghost border ---- */
.ghost-border {
  border: 1px solid rgba(220, 227, 234, 0.5);
}

/* ---- Stats counter ---- */
.stat-number {
  transition: none;
}

/* ---- Buttons ---- */
.btn-orange {
  background: #E8660A;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: filter 0.2s ease, transform 0.15s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-orange:hover {
  filter: brightness(1.1);
}

/* ---- Mobile nav ---- */
@media (max-width: 768px) {
  #desktop-nav {
    display: none !important;
  }
  #hamburger-btn {
    display: flex !important;
  }
  .grid-cols-3, .md\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
  .grid-cols-4, .md\\:grid-cols-4 {
    grid-template-columns: 1fr 1fr !important;
  }
  button, a {
    min-height: 44px;
  }
}
@media (min-width: 769px) {
  #hamburger-btn {
    display: none !important;
  }
  #mobile-nav {
    display: none !important;
  }
}
/* ---- Tailwind CDN loaded separately; these fill gaps ---- */
.hero-gradient {
  background: linear-gradient(rgba(26, 46, 74, 0.6), rgba(26, 46, 74, 0.6));
}

.lifestyle-gradient {
  background: linear-gradient(rgba(26, 46, 74, 0.6), rgba(26, 46, 74, 0.6));
}