﻿:root {
  --deep-blue: #0d2f66;
  --deep-blue-2: #102f52;
  --gold: #eecf55;
  --ink: #132746;
  --text: #21395d;
  --muted: #6d7d99;
  --line: #d9e3f3;
  --bg: #f4f7fb;
  --paper: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px rgba(20, 46, 89, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-blue);
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.section-limiter {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--deep-blue) 16%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-2));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.05em;
}

.brand-copy small {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

.site-nav .nav-cta {
  background: var(--deep-blue);
  color: #fff;
  font-weight: 700;
}

.menu-button,
.menu-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 110px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(238, 207, 85, 0.22), transparent 28%),
    linear-gradient(135deg, #071d42 0%, #0d2f66 58%, #143f78 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 24, 56, 0.22), transparent 58%),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 255, 255, 0.035) 35px 36px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 80px 0 72px;
}

.hero-shell {
  position: relative;
  color: #fff;
  max-width: 760px;
}

.hero p {
  color: rgba(255, 255, 255, 0.94);
  max-width: 560px;
  font-size: clamp(17px, 2.2vw, 21px);
}

.hero h1 {
  color: #fff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(13, 47, 102, 0.45);
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-card strong {
  font-size: 24px;
  margin-bottom: 4px;
}

.hero-card span,
.hero-card a {
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.hero-card a {
  background: var(--gold);
  color: #24304a;
  text-align: center;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--gold) 60%, #fff);
  outline-offset: 3px;
}

.button.primary {
  background: var(--gold);
  color: #2a2b2c;
  box-shadow: 0 10px 24px rgba(238, 207, 85, 0.28);
}

.button.primary:hover {
  background: #ffda6d;
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button.secondary:hover {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--deep-blue) 55%, transparent);
}

.section {
  padding: 80px 0;
}

.section-muted {
  background: #eef3f9;
}

.section p,
.section li {
  color: var(--text);
}

.section-head {
  max-width: 700px;
  margin-bottom: 34px;
}

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

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-tag {
  margin: 22px 22px 0;
  padding: 18px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(13, 47, 102, 0.96), rgba(26, 74, 138, 0.88)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 19px 20px);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-body {
  padding: 20px;
}

.section-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.split-copy,
.stats-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.split-copy p {
  margin-bottom: 24px;
}

.feature-list {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  list-style: disc;
}

.stats-card h3 {
  margin-bottom: 12px;
}

.stats-grid {
  display: grid;
  gap: 12px;
}

.stats-grid div {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 12px;
  border: 1px solid var(--line);
}

.stats-grid strong {
  display: block;
  font-size: 22px;
  color: var(--deep-blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.process-step {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #1a4a8a, #0d2f66);
}

.section-contact {
  padding-bottom: 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  margin-top: 24px;
}

.contact-card,
.map-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 10px;
}

address {
  font-style: normal;
  margin-bottom: 14px;
}

.contact-card p {
  margin-bottom: 10px;
}

.map-shell {
  overflow: hidden;
  min-height: 370px;
  padding: 0;
  position: relative;
  background:
    linear-gradient(135deg, rgba(13, 47, 102, 0.9), rgba(20, 63, 120, 0.78)),
    radial-gradient(circle at 20% 18%, rgba(238, 207, 85, 0.38), transparent 28%);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 370px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  position: relative;
  z-index: 2;
}

.map-fallback {
  position: absolute;
  inset: auto 24px 72px 24px;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 10px;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  background: rgba(13, 47, 102, 0.9);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.map-fallback strong {
  font-size: 28px;
  line-height: 1.1;
}

.map-fallback span {
  color: rgba(255, 255, 255, 0.86);
}

.map-chip,
.map-link {
  width: fit-content;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--gold);
  color: #263044 !important;
  font-size: 14px;
  font-weight: 800;
}

.map-link {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
}

.site-footer {
  padding: 46px 0 58px;
  background: var(--deep-blue);
  color: #d2dff0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-links a:hover,
.foot-links a:focus-visible {
  color: var(--gold);
}

.legal-main {
  padding-top: 130px;
}

.legal-main article {
  max-width: 760px;
  margin: 0 auto 52px;
}

.legal-main h1 {
  margin-bottom: 24px;
}

.legal-main h2 {
  margin: 40px 0 12px;
  color: var(--deep-blue);
}

.legal-main p,
.legal-main li,
.legal-main a {
  color: var(--text);
  font-size: 17px;
}

.legal-main ul {
  padding-left: 22px;
  margin-bottom: 1em;
}

.legal-main li {
  margin-bottom: 7px;
}

.legal-back {
  margin-top: 40px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .section-limiter {
    width: min(100% - 34px, var(--max-width));
  }

  .services-grid,
  .process-grid,
  .contact-grid,
  .section-split {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    height: 74px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .site-header {
    height: 68px;
    gap: 10px;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 45px -22px rgba(8, 31, 68, 0.6);
    border-radius: 16px;
    padding: 10px;
    gap: 4px;
    z-index: 59;
    text-align: left;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 10px;
    width: 100%;
  }

  .menu-button {
    position: relative;
    display: inline-grid;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    place-items: center;
    z-index: 70;
  }

  .menu-button span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease, top .2s ease;
  }

  .menu-button span:nth-child(1) {
    top: 13px;
  }

  .menu-button span:nth-child(2) {
    top: 21px;
  }

  .menu-button span:nth-child(3) {
    top: 29px;
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 30, 65, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 55;
    display: block;
  }

  .site-nav.open + .menu-backdrop,
  body.menu-open .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .menu-button span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  body.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-button span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero-layout {
    padding: 48px 0 46px;
    gap: 22px;
  }

  .hero-card {
    padding: 20px;
  }

  .services-grid,
  .process-grid,
  .section-split,
  .contact-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 14px;
  }

  .stats-card {
    order: -1;
  }
}
