:root {
  --navy: #0b2b4f;
  --navy2: #0d4f87;
  --gold: #f5b72d;
  --blue: #4b88d1;
  --bg: #f7fbff;
  --text: #1b2433;
  --muted: #5c6b7a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transform: translateY(-200%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: var(--navy);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-link,
.nav-cta {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: #334155;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--navy);
  background: #f1f5f9;
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

.nav-cta:hover {
  opacity: 0.95;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

.burger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-4px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-4px, -5px);
}

@media (max-width: 900px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--navy);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    color: #e2e8f0;
    text-align: left;
    border-radius: 10px;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
  }
}

/* Sections */
section {
  scroll-margin-top: 88px;
}

.anchor {
  display: block;
  height: 0;
  scroll-margin-top: 88px;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.tag {
  display: inline-block;
  background: linear-gradient(135deg, #dceeff, #b3d9ff);
  color: var(--navy);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.tag-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--blue), #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-copy > p {
  color: var(--muted);
  max-width: 36rem;
  margin-top: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.btn {
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
}

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

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 43, 79, 0.25);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid #cbd5e1;
}

.btn-gold {
  background: var(--gold);
  color: #0f172a;
  margin-top: 1.5rem;
}

.btn-block {
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.stat-card h2 {
  margin: 0.5rem 0 0;
  font-size: 1.75rem;
  color: var(--navy);
}

.stat-card p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.stat-icon {
  color: var(--blue);
  font-size: 1.2rem;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.audit-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  border: 1px solid #f1f5f9;
}

.audit-card h3 {
  margin: 0;
  color: var(--navy);
}

.audit-card .muted {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.35rem 0 1.25rem;
}

.audit-chip {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: var(--navy);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.progress {
  height: 12px;
  background: #edf2fb;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #22d3ee);
  border-radius: 999px;
}

.section-blue {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  padding: 5rem 0;
}

.section-title-white {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0 0;
  line-height: 1.1;
}

.accent-line {
  display: block;
  color: #7dd3fc;
}

.lead-white {
  color: #bfdbfe;
  max-width: 40rem;
  margin-top: 1.25rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.checklist li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: #fff;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 36rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  border: 1px solid #e2e8f0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card,
.quote-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid #f1f5f9;
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #e0f2fe;
  color: var(--navy);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-card p {
  margin: 0;
  font-style: italic;
  color: var(--muted);
}

.quote-card footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.quote-card strong {
  display: block;
  color: var(--navy);
}

.quote-card span {
  font-size: 0.85rem;
  color: #94a3b8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-panel {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form input,
.form textarea {
  font: inherit;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  width: 100%;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 0;
}

.form-note {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.aside-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  border-radius: 24px;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.info-card.dark {
  background: var(--navy);
  color: #fff;
  border: none;
}

.info-card h3 {
  margin: 0 0 0.5rem;
}

.info-card p {
  margin: 0;
  color: inherit;
}

.info-card.dark p {
  color: #bfdbfe;
}

.info-card a {
  color: var(--navy);
}

.footer {
  background: var(--navy);
  color: #e2e8f0;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
  max-width: 22rem;
}

.footer-heading {
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.footer-grid > div > p:not(.footer-brand):not(.footer-copy):not(.footer-heading) {
  margin: 0.35rem 0;
  font-size: 0.9rem;
}
