:root {
  --navy-950: #c88211;
  --navy-900: #0d2344;
  --navy-800: #14325f;
  --navy-700: #1c447c;
  --navy-100: #dbe8f8;
  --navy-50: #f4f8fc;
  --white: #ffffff;
  --text: #102033;
  --text-soft: #556477;
  --border: rgba(12, 35, 68, 0.12);
  --shadow: 0 20px 45px rgba(8, 24, 47, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.85rem;
  --container: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--navy-50);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 35, 68, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand,
.footer-brand {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.button-full {
  width: 100%;
}

.button-solid {
  background: var(--navy-900);
  color: var(--white);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: var(--navy-800);
}

.button-ghost {
  border: 1px solid var(--border);
  color: var(--navy-900);
  background: transparent;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(12, 35, 68, 0.2);
  background: rgba(12, 35, 68, 0.04);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid,
.split-layout,
.contact-grid,
.footer-wrap,
.cta-panel,
.stats-grid,
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-700);
}

h1,
h2,
h3,
p,
ul,
blockquote {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.hero-text,
.section-heading p,
.feature-list p,
.card p,
.quote-card p,
.faq-item p,
.contact-form label,
.contact-list,
.areas-panel,
.site-footer p {
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0;
}

.trust-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-soft);
}

.trust-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--navy-700);
  font-size: 1.4rem;
  line-height: 1;
}

.hero-card,
.card,
.areas-panel,
.faq-item,
.contact-form,
.cta-panel,
.chip {
  border-radius: var(--radius);
}

.hero-card {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-card-inner {
  padding: 1.8rem;
}

.hero-card p,
.hero-card a,
.hero-card .card-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.hero-card h2 {
  margin-bottom: 0.8rem;
}

.card-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.contact-list p {
  margin-bottom: 0.65rem;
}

.stats-section {
  padding-top: 0;
}

.stats-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.stats-grid article,
.card,
.areas-panel,
.faq-item,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(8, 24, 47, 0.04);
}

.stats-grid article {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
}

.stats-grid strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  color: var(--navy-900);
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.card-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card {
  padding: 1.6rem;
}

.reveal-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-list,
.faq-list {
  display: grid;
  gap: 1rem;
}

.feature-list article {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(12, 35, 68, 0.12);
}

.feature-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.testimonial-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.chip {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-soft);
  font-weight: 600;
}

.chip.is-active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.quote-card footer {
  font-weight: 700;
  color: var(--navy-900);
}

.areas-panel {
  padding: 1.8rem;
}

.areas-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.areas-panel li {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(12, 35, 68, 0.08);
}

.areas-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cta-section {
  background: var(--navy-950);
  color: var(--white);
}

.cta-panel {
  padding: 2rem;
  align-items: center;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.faq-item {
  padding: 1.5rem;
}

.contact-grid {
  align-items: start;
}

.contact-list-large {
  margin-top: 1.5rem;
}

.contact-form {
  padding: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 35, 68, 0.14);
  border-radius: 0.85rem;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(28, 68, 124, 0.2);
  border-color: var(--navy-700);
}

.site-footer {
  padding: 2rem 0 3rem;
  background: #071426;
  color: var(--white);
}

.footer-wrap {
  align-items: center;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 48rem) {
  .site-nav {
    display: flex;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .footer-wrap,
  .cta-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .hero {
    padding: 5rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
    align-items: center;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .areas-layout {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  }
}