:root {
  --navy-950: #0b2432;
  --navy-900: #12364a;
  --navy-800: #17445c;
  --teal-700: #13798a;
  --teal-600: #168ca0;
  --teal-100: #dff2f4;
  --blue-500: #3978f6;
  --ink: #263844;
  --muted: #60727d;
  --line: #d7e2e7;
  --surface: #f6f9fa;
  --white: #ffffff;
  --warm: #fff6d8;
  --shadow-sm: 0 10px 30px rgba(11, 36, 50, 0.08);
  --shadow-lg: 0 24px 70px rgba(11, 36, 50, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy-950);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.25rem; }

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

.narrow { width: min(880px, calc(100% - 40px)); }
.section { padding: clamp(78px, 10vw, 128px) 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.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;
}

:focus-visible {
  outline: 3px solid rgba(57, 120, 246, 0.55);
  outline-offset: 4px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow-light { color: #7dd9e4; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
  border-radius: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 54, 74, 0.16);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.button:hover {
  background: var(--navy-950);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 54, 74, 0.22);
}
.button-secondary {
  color: var(--navy-900);
  background: transparent;
  box-shadow: none;
}
.button-secondary:hover { color: var(--white); background: var(--navy-900); }
.button-small { min-height: 42px; padding: 9px 17px; border-radius: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(215, 226, 231, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--teal-600));
  border-radius: 11px;
  font-size: 1.16rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 54, 74, 0.2);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { color: var(--navy-950); letter-spacing: 0.09em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 0.72rem; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) {
  position: relative;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 680;
  text-decoration: none;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.main-nav > a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 116px) 0 0;
  background:
    linear-gradient(180deg, #f9fcfd 0%, #ffffff 72%),
    var(--white);
}
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}
.hero-glow-one {
  top: 8%;
  right: -15%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(22, 140, 160, 0.16), rgba(22, 140, 160, 0) 68%);
}
.hero-glow-two {
  bottom: 5%;
  left: -18%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(57, 120, 246, 0.1), rgba(57, 120, 246, 0) 68%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 104px);
}
.hero-copy h1 { max-width: 760px; margin-bottom: 28px; }
.hero-lead {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 650;
}
.trust-list li::before { content: "✓"; margin-right: 8px; color: var(--teal-700); font-weight: 900; }

.status-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 226, 231, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.status-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-600), var(--blue-500));
}
.status-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
  color: var(--navy-950);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 760;
}
.status-live { color: var(--teal-700); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.status-live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  background: #26b772;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(38, 183, 114, 0.12);
}
.status-body { padding: 8px 24px; }
.status-row {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.status-row:last-child { border-bottom: 0; }
.status-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 850;
}
.status-row > span:nth-child(2) { display: flex; flex-direction: column; }
.status-row strong { color: var(--navy-950); font-size: 0.92rem; }
.status-row small { margin-top: 2px; color: var(--muted); }
.status-check { color: #26a96c; font-weight: 900; }
.status-note {
  margin: 0;
  padding: 18px 24px 22px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.84rem;
}

.credibility-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(70px, 9vw, 110px);
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credibility-strip span {
  padding: 4px 18px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.credibility-strip span:last-child { border-right: 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 6px; color: var(--muted); }
.compact-heading { grid-template-columns: 1fr; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.service-card h3 { margin-top: 52px; margin-bottom: 14px; }
.service-card p { margin-bottom: 0; color: var(--muted); }
.service-number {
  position: absolute;
  top: 27px;
  left: 30px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.service-card-accent {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-950));
}
.service-card-accent h3 { color: var(--white); }
.service-card-accent p { color: #c9d8df; }
.service-card-accent .service-number { color: #7dd9e4; }

.section-dark {
  color: #dce8ed;
  background: var(--navy-950);
}
.section-dark h2 { max-width: 580px; color: var(--white); }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(50px, 9vw, 120px);
}
.principles { display: grid; gap: 0; }
.principles > div { padding: 0 0 26px 30px; border-left: 1px solid rgba(125, 217, 228, 0.35); }
.principles > div:last-child { padding-bottom: 0; }
.principles > div::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  margin: 7px 0 0 -35px;
  background: #7dd9e4;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(125, 217, 228, 0.1);
}
.principles strong { color: var(--white); font-size: 1.16rem; }
.principles p { max-width: 600px; margin: 7px 0 0; color: #aebfc7; }

.process-section { background: linear-gradient(180deg, var(--surface), var(--white)); }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.process-list li { position: relative; padding: 28px 30px 8px 0; }
.process-list li::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--teal-600);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--teal-600);
}
.process-list > li > span { color: var(--teal-700); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.12em; }
.process-list h3 { margin: 18px 0 10px; }
.process-list p { margin: 0; color: var(--muted); }

.area-section { padding-top: 0; }
.area-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 70px;
  min-height: 520px;
  padding: clamp(42px, 7vw, 82px);
  overflow: hidden;
  background: var(--teal-100);
  border-radius: var(--radius-lg);
}
.area-copy h2 { max-width: 680px; }
.area-copy > p:not(.eyebrow) { max-width: 700px; color: #49636d; font-size: 1.08rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.area-tags span {
  padding: 8px 13px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 121, 138, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.area-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
}
.map-ring { position: absolute; border: 1px solid rgba(19, 121, 138, 0.22); border-radius: 50%; }
.map-ring-one { width: 290px; height: 290px; }
.map-ring-two { width: 190px; height: 190px; background: rgba(255, 255, 255, 0.22); }
.map-pin {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--teal-600));
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  box-shadow: 0 18px 40px rgba(18, 54, 74, 0.24);
}
.map-pin span { font-size: 1.3rem; font-weight: 900; transform: rotate(45deg); }
.area-visual small {
  position: absolute;
  bottom: 16px;
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-section { background: var(--surface); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--navy-950);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 760;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--teal-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 500;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 750px; margin: -5px 0 24px; padding-right: 42px; color: var(--muted); }

.contact-section { background: var(--white); }
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 70px;
  padding: clamp(42px, 7vw, 76px);
  color: #d5e3e9;
  background:
    radial-gradient(circle at 90% 10%, rgba(22, 140, 160, 0.32), transparent 34%),
    var(--navy-950);
  border-radius: var(--radius-lg);
}
.contact-card h2 { max-width: 700px; color: var(--white); }
.contact-card > div:first-child > p:last-child { max-width: 650px; margin-bottom: 0; color: #b7c8cf; }
.contact-actions { display: grid; align-content: center; }
.contact-actions a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 14px;
  padding: 17px 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}
.contact-actions a:first-child { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.contact-actions small { grid-column: 1; color: #8ea5af; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-actions strong { grid-column: 1; margin-top: 2px; }
.contact-actions span { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #7dd9e4; font-size: 1.25rem; transition: transform 180ms ease; }
.contact-actions a:hover span { transform: translate(3px, -3px); }

.site-footer { padding: 34px 0; color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: minmax(300px, 0.7fr) 1fr; align-items: center; gap: 28px; }
.brand-footer .brand-mark { width: 36px; height: 36px; }
.brand-footer .brand-copy small { max-width: 320px; }
.footer-legal { text-align: right; }
.footer-legal p { margin: 2px 0; font-size: 0.82rem; }
.footer-legal a { color: var(--teal-700); font-weight: 700; }

.mobile-actions { display: none; }

/* Legal page */
.legal-page { background: var(--surface); }
.legal-main { padding: 70px 0 100px; }
.legal-content {
  max-width: 920px;
  padding: clamp(34px, 7vw, 76px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 5vw, 4rem); }
.legal-intro { max-width: 740px; color: var(--muted); font-size: 1.12rem; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 28px 0 50px; padding: 15px 18px; color: var(--teal-700); background: var(--teal-100); border-radius: 10px; font-size: 0.82rem; font-weight: 750; }
.legal-content section { margin-top: 40px; }
.legal-content section h2 { margin-bottom: 14px; font-size: 1.45rem; letter-spacing: -0.02em; }
.legal-content section p, .legal-content section li { color: #465b66; }
.legal-content section ul { padding-left: 22px; }
.legal-content section li + li { margin-top: 8px; }
.legal-content section a { color: var(--teal-700); font-weight: 700; }
.legal-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 52px; padding: 24px; background: var(--warm); border-radius: var(--radius-sm); }
.legal-cta p { margin: 0; color: var(--navy-900); font-weight: 760; }

@media (max-width: 980px) {
  .js .nav-toggle { display: block; }
  .js .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-lg);
  }
  .js .main-nav[data-open="true"] { display: grid; gap: 4px; }
  .js .main-nav > a { padding: 10px 8px; }
  .js .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .js .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .js .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid { grid-template-columns: 1fr; }
  .status-card { max-width: 650px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 26px; }
  .process-list li:nth-child(3) { border-top: 1px solid var(--line); }
  .area-card { grid-template-columns: 1fr 300px; gap: 24px; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { padding-bottom: 62px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 68px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 58px; }
  .hero-copy h1 { overflow-wrap: anywhere; font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .status-head { flex-direction: column; }
  .status-body { padding-inline: 18px; }
  .credibility-strip { grid-template-columns: repeat(2, 1fr); margin-top: 68px; }
  .credibility-strip span { padding: 10px 8px; border-bottom: 1px solid var(--line); }
  .credibility-strip span:nth-child(2) { border-right: 0; }
  .credibility-strip span:nth-child(3), .credibility-strip span:nth-child(4) { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; }
  .process-list { grid-template-columns: 1fr; border-top: 0; }
  .process-list li { padding: 24px 0 20px 30px; border-top: 1px solid var(--line); }
  .process-list li:nth-child(3) { border-top: 1px solid var(--line); }
  .process-list li::after { top: 21px; left: 0; }
  .area-card { grid-template-columns: 1fr; padding: 38px 26px; }
  .area-visual { min-height: 270px; }
  .map-ring-one { width: 245px; height: 245px; }
  .map-ring-two { width: 160px; height: 160px; }
  .contact-card { width: calc(100% - 28px); padding: 38px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy-950);
    box-shadow: 0 -8px 26px rgba(11, 36, 50, 0.16);
  }
  .mobile-actions a { padding: 13px; color: var(--white); border-right: 1px solid rgba(255, 255, 255, 0.16); font-weight: 760; text-align: center; text-decoration: none; }
  .mobile-actions a:last-child { border-right: 0; }
  .legal-main { padding: 28px 0 60px; }
  .legal-content { width: calc(100% - 20px); padding: 30px 22px; border-radius: 18px; }
  .legal-cta { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .mobile-actions, .hero-glow { display: none !important; }
  body { padding: 0; color: #000; }
  .section { padding: 36px 0; }
  .contact-card, .section-dark { color: #000; background: #fff; border: 1px solid #bbb; }
  .contact-card h2, .section-dark h2, .principles strong { color: #000; }
}
