:root {
  --navy: #173142;
  --navy-2: #0f2635;
  --teal: #00a89c;
  --teal-dark: #008f86;
  --teal-soft: #e8f8f6;
  --ink: #213440;
  --muted: #62727c;
  --line: #dce7e9;
  --paper: #ffffff;
  --paper-alt: #f5f8f8;
  --shadow: 0 18px 50px rgba(18, 49, 66, .12);
  --shadow-soft: 0 10px 30px rgba(18, 49, 66, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 9999;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--navy-2); color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .78rem;
  margin-bottom: .85rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-title.light { color: #fff; }
.section-lead { max-width: 720px; margin: 1.2rem 0 0; color: var(--muted); font-size: 1.1rem; }
.section-dark .section-lead { color: #c9d6dc; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

.topbar {
  background: var(--navy-2);
  color: #d9e6ea;
  font-size: .86rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-links { display: flex; gap: 1.4rem; align-items: center; }
.topbar a:hover { color: #fff; }
.topbar-note { color: #a8c5ca; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,231,233,.85);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(15,38,53,.08); }
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .68rem; color: var(--navy); }
.brand-icon { width: 52px; height: 52px; object-fit: contain; }
.brand-name { display: grid; line-height: 1; letter-spacing: .18em; }
.brand-name > span { font-size: 1.2rem; font-weight: 650; }
.brand-name b { color: var(--teal-dark); font-weight: 750; }
.brand-name small { margin-top: .34rem; font-size: .64rem; letter-spacing: .45em; font-weight: 800; color: var(--navy); text-align: center; }
.site-nav { display: flex; align-items: center; gap: 1.45rem; }
.site-nav a {
  font-weight: 700;
  font-size: .94rem;
  color: var(--navy);
  position: relative;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 2px;
  background: var(--teal);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: .5rem;
  color: var(--navy);
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px 0; transition: .2s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(0,168,156,.24); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: #fff; color: var(--navy); border-color: rgba(23,49,66,.15); }
.btn-secondary:hover { box-shadow: var(--shadow-soft); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn-sm { min-height: 42px; padding: .65rem 1rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(0,168,156,.16), transparent 28%),
    radial-gradient(circle at 15% 82%, rgba(23,49,66,.10), transparent 27%),
    linear-gradient(135deg, #f8fbfb 0%, #ffffff 46%, #eef8f7 100%);
  padding: 90px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23,49,66,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23,49,66,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 85%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 4.2rem; align-items: center; }
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.75rem, 6vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 760px;
}
.hero h1 span { color: var(--teal); }
.hero-copy { margin: 1.5rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2.1rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--navy); font-weight: 750; font-size: .93rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.check { width: 21px; height: 21px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark); display: inline-grid; place-items: center; font-size: .8rem; }

.hero-visual { position: relative; min-height: 510px; }
.hero-logo-mark {
  position: absolute;
  width: 420px;
  opacity: .055;
  right: -90px;
  top: -70px;
  filter: grayscale(1);
}
.dashboard {
  position: absolute;
  inset: 22px 8px 20px 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(220,231,233,.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transform: rotate(1.2deg);
}
.dashboard-top { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.dash-brand { display: flex; align-items: center; gap: .8rem; }
.dash-brand img { width: 52px; height: 52px; object-fit: contain; }
.dash-brand strong { display: block; color: var(--navy); }
.dash-brand small { color: var(--muted); }
.status-pill { padding: .45rem .7rem; border-radius: 999px; background: var(--teal-soft); color: var(--teal-dark); font-size: .78rem; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1rem; }
.metric { background: var(--paper-alt); border-radius: 16px; padding: 1rem; }
.metric small { color: var(--muted); display: block; }
.metric strong { display: block; color: var(--navy); font-size: 1.25rem; margin-top: .25rem; }
.chart-box { margin-top: 1rem; background: linear-gradient(180deg,#fff,#f7fbfb); border: 1px solid var(--line); border-radius: 18px; padding: 1.2rem; height: 185px; position: relative; overflow: hidden; }
.chart-label { display: flex; justify-content: space-between; color: var(--muted); font-size: .82rem; }
.chart-line { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.4rem; height: 110px; }
.chart-line svg { width: 100%; height: 100%; }
.dash-list { display: grid; gap: .7rem; margin-top: 1rem; }
.dash-row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .8rem .9rem; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.dash-row span { color: var(--muted); font-size: .88rem; }
.dash-row b { color: var(--navy); font-size: .9rem; }
.float-card {
  position: absolute;
  left: -25px;
  bottom: 42px;
  background: var(--navy);
  color: #fff;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 220px;
}
.float-card small { display: block; color: #b8cbd2; }
.float-card strong { font-size: 1.2rem; }

.logo-strip { border-bottom: 1px solid var(--line); background: #fff; }
.logo-strip-inner { min-height: 92px; display: flex; align-items: center; justify-content: center; gap: 3rem; color: var(--muted); text-align: center; flex-wrap: wrap; }
.logo-strip strong { color: var(--navy); font-size: .95rem; }
.logo-strip span { font-size: .88rem; }
.logo-strip-item { display: flex; align-items: center; gap: .7rem; }
.logo-strip-icon { width: 38px; height: 38px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center; font-weight: 900; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; margin-top: 3rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: 0 8px 24px rgba(23,49,66,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(0,168,156,.35); }
.card-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal-dark); margin-bottom: 1.2rem; }
.card-icon svg { width: 27px; height: 27px; }
.card h3 { margin: 0 0 .65rem; color: var(--navy); font-size: 1.25rem; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); font-size: .96rem; }
.card-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--teal-dark); font-weight: 800; margin-top: 1rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-panel {
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, var(--navy), #214e61 58%, var(--teal-dark));
  box-shadow: var(--shadow);
  padding: 2rem;
  color: #fff;
}
.feature-panel::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; right: -140px; bottom: -120px; box-shadow: 0 0 0 54px rgba(255,255,255,.05), 0 0 0 108px rgba(255,255,255,.03); }
.feature-panel img { width: 140px; opacity: .92; }
.feature-panel h3 { margin: 7.5rem 0 1rem; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.12; max-width: 470px; }
.feature-panel p { color: #d3e1e5; max-width: 480px; }
.feature-number { position: absolute; right: 2rem; top: 1.5rem; font-size: 6rem; font-weight: 900; opacity: .08; line-height: 1; }

.list-check { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .85rem; }
.list-check li { position: relative; padding-left: 2rem; color: var(--ink); }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: .1rem; width: 1.35rem; height: 1.35rem; border-radius: 50%; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal-dark); font-size: .78rem; font-weight: 900; }
.section-dark .list-check li { color: #e7f0f2; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; counter-reset: process; }
.process-step { counter-increment: process; padding: 1.5rem; border-top: 3px solid var(--teal); background: #fff; border-radius: 0 0 18px 18px; box-shadow: var(--shadow-soft); }
.process-step::before { content: "0" counter(process); color: var(--teal); font-weight: 900; letter-spacing: .08em; font-size: .82rem; }
.process-step h3 { margin: .75rem 0 .55rem; color: var(--navy); }
.process-step p { margin: 0; color: var(--muted); font-size: .94rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { padding: 1.6rem; border-left: 1px solid rgba(255,255,255,.18); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; color: #fff; font-size: clamp(1.65rem, 3vw, 2.4rem); line-height: 1.1; }
.stat span { color: #bcd0d7; font-size: .9rem; }

.faq { max-width: 880px; margin: 2.5rem auto 0; display: grid; gap: .85rem; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; padding: 1.15rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--navy); font-weight: 800; text-align: left; }
.faq-question span:last-child { color: var(--teal); font-size: 1.25rem; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer-inner { padding: 0 1.2rem 1.2rem; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.cta-box {
  border-radius: 30px;
  background: linear-gradient(120deg, var(--navy-2), var(--navy) 48%, var(--teal-dark));
  color: #fff;
  padding: clamp(2rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-box::after { content: ""; position: absolute; right: -70px; top: -130px; width: 360px; height: 360px; border: 60px solid rgba(255,255,255,.06); border-radius: 50%; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.cta-box h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.03em; }
.cta-box p { margin: 1rem 0 0; color: #c9d9de; max-width: 700px; }
.cta-actions { display: flex; justify-content: flex-end; gap: .8rem; flex-wrap: wrap; }

.page-hero {
  padding: 82px 0 74px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy) 56%, #17635f);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -150px; top: -210px; box-shadow: 0 0 0 70px rgba(255,255,255,.03), 0 0 0 140px rgba(255,255,255,.02); }
.page-hero .eyebrow { color: #74e1d9; }
.page-hero h1 { margin: 0; font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1; letter-spacing: -.045em; max-width: 900px; }
.page-hero p { max-width: 760px; margin: 1.35rem 0 0; color: #cbd9de; font-size: 1.12rem; }
.breadcrumbs { display: flex; gap: .45rem; align-items: center; color: #aac0c7; font-size: .88rem; margin-bottom: 1.3rem; }
.breadcrumbs a:hover { color: #fff; }

.service-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.service-detail { padding: 1.4rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.service-detail b { color: var(--navy); display: block; margin-bottom: .3rem; }
.service-detail p { margin: 0; color: var(--muted); font-size: .94rem; }

.timeline { position: relative; display: grid; gap: 1rem; margin-top: 2.4rem; }
.timeline::before { content: ""; position: absolute; left: 24px; top: 20px; bottom: 20px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-left: 4rem; }
.timeline-dot { position: absolute; left: 9px; top: .2rem; width: 31px; height: 31px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 900; box-shadow: 0 0 0 7px #fff; }
.timeline-item h3 { margin: 0; color: var(--navy); }
.timeline-item p { margin: .35rem 0 0; color: var(--muted); }

.notice { border-left: 4px solid var(--teal); background: var(--teal-soft); border-radius: 0 14px 14px 0; padding: 1rem 1.2rem; color: var(--navy); }
.notice strong { display: block; margin-bottom: .2rem; }


/* Contact departments */
.contact-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: end;
}
.hours-card {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.hours-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #74e1d9;
}
.hours-card-icon svg { width: 29px; height: 29px; }
.hours-card small { display: block; color: #abc1c8; }
.hours-card strong { display: block; font-size: 1.08rem; }
.hours-card span { display: block; color: #d9e7ea; }
.contact-recording-note {
  margin-top: 2rem;
  border: 1px solid #cde8e5;
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
  border-radius: 0 14px 14px 0;
  padding: 1rem 1.2rem;
  display: grid;
  gap: .2rem;
  color: var(--navy);
}
.contact-recording-note span { color: #4e626d; }
.department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.4rem;
}
.department-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 1.65rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.department-card.featured {
  border-color: rgba(0,168,156,.38);
  box-shadow: 0 16px 44px rgba(0,143,134,.14);
}
.department-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.department-icon svg { width: 28px; height: 28px; }
.department-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: .32rem .65rem;
  border-radius: 999px;
  background: #eef4f5;
  color: #526974;
  font-weight: 800;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.department-card h2 {
  margin: .85rem 0 .65rem;
  color: var(--navy);
  font-size: 1.55rem;
  letter-spacing: -.02em;
}
.department-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.department-links {
  display: grid;
  gap: .65rem;
  margin-top: auto;
  padding-top: 1.4rem;
}
.department-link {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: .7rem;
  min-width: 0;
}
.department-link small { display: block; color: var(--muted); font-size: .76rem; }
.department-link strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  overflow-wrap: anywhere;
}
a.department-link:hover strong { color: var(--teal-dark); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 3.5rem; align-items: start; }
.contact-card { background: var(--navy); color: #fff; border-radius: 24px; padding: 2rem; box-shadow: var(--shadow); }
.contact-card h2 { margin-top: 0; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-item:last-child { border-bottom: 0; }
.contact-item-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #7de5dd; }
.contact-item small { display: block; color: #abc1c8; }
.contact-item a:hover { color: #7de5dd; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2rem; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; color: var(--navy); font-size: .9rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid #cbd9dc;
  border-radius: 12px;
  padding: .85rem .95rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,168,156,.10); }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; color: var(--muted); font-size: .88rem; }
.checkbox input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--teal); }
.honeypot { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--muted); font-size: .84rem; }
.alert { padding: 1rem 1.1rem; border-radius: 12px; margin-bottom: 1rem; }
.alert-success { background: #e9f9f3; color: #116645; border: 1px solid #b8e7d5; }
.alert-error { background: #fff0f0; color: #8d2828; border: 1px solid #f1c5c5; }

.legal { max-width: 920px; }
.legal h2 { color: var(--navy); margin-top: 2.3rem; }
.legal h3 { color: var(--navy); margin-top: 1.7rem; }
.legal p, .legal li { color: #4e626d; }
.legal a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal address { font-style: normal; }
.legal code { background: var(--paper-alt); padding: .1rem .35rem; border-radius: 5px; }

.site-footer { background: #0d222f; color: #c8d5da; padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 2rem; }
.footer-logo { background: #fff; border-radius: 14px; padding: .7rem; width: 250px; }
.footer-text { margin: 1.1rem 0 0; color: #9fb5bd; max-width: 360px; }
.footer-title { color: #fff; font-weight: 850; margin-bottom: 1rem; }
.footer-links { display: grid; gap: .65rem; }
.footer-links a:hover { color: #74e1d9; }
.footer-contact { display: grid; gap: .75rem; }
.footer-contact a:hover { color: #74e1d9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding: 1.2rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: #8fa8b0; font-size: .84rem; }
.footer-disclaimer { padding: 0 0 1.15rem; color: #718b94; font-size: .72rem; line-height: 1.45; text-align: center; opacity: .82; }

.back-top { position: fixed; right: 1rem; bottom: 1rem; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--teal); color: #fff; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; z-index: 900; box-shadow: var(--shadow-soft); }
.back-top.visible { opacity: 1; visibility: visible; transform: none; }

@media (max-width: 1020px) {
  .site-nav { position: fixed; inset: 124px 0 auto 0; background: #fff; padding: 1.2rem 1rem 2rem; display: none; flex-direction: column; align-items: stretch; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .55rem .4rem; }
  .site-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .hero-grid, .split, .contact-grid, .cta-grid, .contact-intro-grid { grid-template-columns: 1fr; }
  .department-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; max-width: 680px; width: 100%; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .topbar-note { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-links { gap: .8rem; font-size: .78rem; }
  .nav-wrap { min-height: 76px; }
  .brand-icon { width: 46px; height: 46px; }
  .brand-name > span { font-size: 1.05rem; }
  .site-nav { inset: 114px 0 auto 0; }
  .hero { padding: 64px 0 72px; }
  .hero-grid { gap: 2.5rem; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-visual { min-height: 460px; }
  .dashboard { inset: 0; padding: 1rem; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric:nth-child(2), .metric:nth-child(3) { display: none; }
  .float-card { left: -8px; bottom: 18px; width: 190px; }
  .cards, .process, .stats, .service-detail-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .stat:first-child { border-top: 0; }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .feature-panel { min-height: 430px; }
  .feature-panel h3 { margin-top: 6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { width: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
