:root {
  --navy: #0b2b4c;
  --navy-dark: #071d33;
  --teal: #3c7d8b;
  --teal-light: #dcecef;
  --text: #243444;
  --muted: #667887;
  --line: #dce5ea;
  --soft: #f4f8fa;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(7, 29, 51, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,229,234,.85);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 4px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo { width: 400px; max-width: 100%; height: auto; display: block; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--teal));
  color: white; font-family: "Montserrat", sans-serif; font-weight: 700;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: "Montserrat", sans-serif; color: var(--navy); letter-spacing: .02em; }
.brand-text small { color: var(--muted); font-size: .72rem; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .95rem; }
.main-nav a:not(.btn):hover { color: var(--teal); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px; border-radius: 9px;
  background: var(--navy); color: white; font-weight: 600;
  border: 1px solid var(--navy); transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(11,43,76,.18); }
.btn-sm { min-height: 42px; padding: 0 18px; }
.btn-outline { background: transparent; color: var(--navy); }
.btn-light { background: white; color: var(--navy); border-color: white; }

.hero { position: relative; overflow: hidden; padding: 92px 0 78px; background: linear-gradient(180deg, #fbfdfe 0%, #f3f8fa 100%); }
.hero::before {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  right: -160px; top: -220px; background: radial-gradient(circle, rgba(60,125,139,.13), transparent 66%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 68px; align-items: center; }
.eyebrow { display: inline-block; color: var(--teal); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
h1,h2,h3 { font-family: "Montserrat", sans-serif; color: var(--navy-dark); margin-top: 0; }
h1 { font-size: clamp(2.6rem, 5vw, 4.85rem); line-height: 1.04; letter-spacing: -.045em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); line-height: 1.15; letter-spacing: -.03em; margin-bottom: 22px; }
h3 { font-size: 1.1rem; margin-bottom: 10px; }
.hero-copy > p { max-width: 690px; font-size: 1.12rem; color: var(--muted); margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 46px; }
.trust-row div { border-top: 2px solid var(--teal); padding-top: 14px; }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { color: var(--navy); font-size: .92rem; }
.trust-row span { color: var(--muted); font-size: .78rem; margin-top: 5px; }

.hero-visual { position: relative; }
.visual-card {
  min-height: 510px; position: relative; overflow: hidden; border-radius: 30px;
  box-shadow: var(--shadow); background: var(--navy-dark);
}
.hero-image {
  width: 100%; height: 100%; min-height: 510px;
  object-fit: cover; object-position: center;
  display: block;
}

.stats-section { background: var(--navy-dark); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stats-grid div { display: flex; gap: 18px; align-items: center; padding: 26px 34px; border-right: 1px solid rgba(255,255,255,.12); }
.stats-grid div:first-child { padding-left: 0; }
.stats-grid div:last-child { border-right: 0; }
.stats-grid span { color: #83c2cc; font: 600 1.35rem "Montserrat", sans-serif; }
.stats-grid p { margin: 0; font-size: .9rem; }

.section { padding: 105px 0; }
.section-soft { background: var(--soft); }
.two-columns { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; }
.content-copy p { color: var(--muted); font-size: 1.04rem; margin-top: 0; }
.credentials { display: grid; gap: 12px; margin-top: 30px; }
.credentials div { display: flex; gap: 10px; align-items: center; color: var(--navy); font-weight: 600; }
.credentials span { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-light); color: var(--teal); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading p { color: var(--muted); }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 28px; min-height: 235px; transition: .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(7,29,51,.08); }
.service-card .icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--teal-light); color: var(--teal); font-weight: 700; margin-bottom: 24px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.process-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; }
.process-intro p { color: var(--muted); }
.text-link { display: inline-block; color: var(--teal); font-weight: 700; margin-top: 12px; }
.process-list { display: grid; gap: 16px; }
.process-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; }
.process-item > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: white; font-weight: 700; }
.process-item p { color: var(--muted); margin: 0; }

.cta-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: white; padding: 90px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: center; }
.cta-section h2 { color: white; }
.cta-section p { color: #d6e2ea; font-size: 1.05rem; }
.eyebrow-light { color: #86c9d4; }
.contact-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 30px; }
.contact-card ul { list-style: none; padding: 0; margin: 25px 0 12px; display: grid; gap: 10px; }
.contact-card small { color: #adc0cd; }

.site-footer { padding: 30px 0; background: #061727; color: #aebfcb; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.footer-grid > div { display: flex; flex-direction: column; }
.footer-grid strong { color: white; }
.footer-grid span { font-size: .85rem; }

@media (max-width: 900px) {
  .main-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; background: white; padding: 16px; border-radius: 14px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .menu-toggle { display: block; }
  .hero-grid, .two-columns, .process-wrap, .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 65px; }
  .hero-visual { max-width: 620px; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid div, .stats-grid div:first-child { padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stats-grid div:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand-text small { display: none; }
  h1 { font-size: 2.7rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-row, .cards-grid { grid-template-columns: 1fr; }
  .visual-card, .hero-image { min-height: 440px; }
  .footer-grid { flex-direction: column; }
  .section { padding: 75px 0; }
}
