:root {
  --bg-page: #f9f8f6;
  --surface: #ffffff;
  --primary-navy: #163047;
  --primary-light: #214663;
  --accent-gold: #b18a45;
  --accent-olive: #607d5b;
  --text-main: #2d3748;
  --text-muted: #4a5568;
  --border-light: #e2e8f0;
  --shadow-sm: 0 4px 6px rgba(22, 48, 71, 0.05);
  --shadow-lg: 0 20px 40px rgba(22, 48, 71, 0.08);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

*:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--primary-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-main);
}

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

.topbar {
  background-color: var(--primary-navy);
  color: #f1f5f9;
  font-size: 0.85rem;
  padding: 0.5rem 5%;
}

.topbar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.crisis-text {
  color: #facc15;
  font-weight: 600;
  letter-spacing: 0.05em;
}

header {
  background: rgba(249, 248, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  background: linear-gradient(
    135deg,
    var(--primary-navy),
    var(--primary-light)
  );
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
}

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

.nav-links a {
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--primary-navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-olive);
  color: white;
  box-shadow: 0 4px 12px rgba(96, 125, 91, 0.3);
}

.btn-primary:hover {
  background-color: #496448;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(96, 125, 91, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: white;
}

.hero {
  padding: 6rem 5%;
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: var(--accent-gold);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

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

.hero-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--border-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-strip {
  padding: 0 5% 4rem;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.trust-strip-item {
  padding: 2rem;
  position: relative;
}

.trust-strip-item:not(:last-child) {
  border-right: 1px solid var(--border-light);
}

.trust-strip-item h3,
.trust-strip-item h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.trust-strip-item p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.services,
.process-section,
.contact-section,
.page-section {
  padding: 6rem 5%;
}

.services {
  background-color: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-section,
.contact-section,
.page-section {
  background: var(--bg-page);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.narrow-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-page);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(177, 138, 69, 0.1);
  color: var(--accent-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.card p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.card-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-navy);
  font-weight: 600;
}

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

.process-step {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.process-step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary-navy);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step p {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  text-align: center;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 1rem auto 2rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trust-banner {
  padding: 5rem 5%;
  background: linear-gradient(
    135deg,
    var(--primary-navy),
    var(--primary-light)
  );
  color: white;
  text-align: center;
}

.trust-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.trust-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.page-hero {
  padding: 4.5rem 5% 3rem;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumbs {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

nav.breadcrumbs {
  padding:0;
  padding-bottom:1rem;
}

.breadcrumbs a {
  color: var(--primary-navy);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.content-card + .content-card {
  margin-top: 1.5rem;
}

.check-list {
  list-style: none;
  margin-top: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  color: var(--accent-olive);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

footer {
  background-color: #0f2130;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 5% 2rem;
  font-size: 0.95rem;
}

footer p,
footer li,
footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer .brand-text {
  color: white;
}

footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-grid h3,
.footer-grid h2 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-list i {
  color: var(--accent-gold);
  font-size: 1rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.footer-grid a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

.mobile-menu-btn i {
  display: block;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
    text-align: center;
  }

  .hero-tag {
    justify-content: center;
  }

  .hero-tag::before {
    display: none;
  }

  .hero p {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

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

  .contact-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface);
    padding: 2rem;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
  }

  .nav-links.show {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-hero {
    padding-top: 3rem;
  }
}