:root {
  --navy: #0b1f3a;
  --navy-2: #102c50;
  --blue: #4da3dc;
  --blue-2: #78c7eb;
  --blue-soft: #eaf6fc;
  --cyan: #68c7d8;
  --ink: #132238;
  --muted: #5e6c7f;
  --line: #dbe4ee;
  --paper: #ffffff;
  --surface: #f6f9fc;
  --success: #198754;
  --shadow-sm: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 20px 55px rgba(11, 31, 58, 0.13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --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;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--paper);
  color: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.surface { background: var(--surface); }
.dark { background: var(--navy); color: #fff; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #277bb2;
  font-weight: 800;
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--blue); }
.dark .eyebrow { color: var(--blue-2); }

h1, h2, h3, h4 { margin: 0 0 .8rem; line-height: 1.12; letter-spacing: -.025em; color: var(--navy); }
h1 { font-size: clamp(2.55rem, 6vw, 4.85rem); max-width: 14ch; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 650px; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lead, .dark .muted { color: #c5d3e3; }

.announcement {
  background: #061629;
  color: #d8e8f6;
  font-size: .86rem;
}
.announcement .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .52rem;
}
.announcement-links { display: flex; gap: 1.1rem; }
.announcement a { text-decoration: none; }
.announcement a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 228, 238, .8);
}
.nav-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand img { width: 220px; height: auto; filter: drop-shadow(0 2px 0 rgba(255,255,255,.1)); }
.brand-dark {
  display: flex;
  align-items: center;
  background: var(--navy);
  border-radius: 9px;
  padding: 7px 10px;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: #314157;
  font-size: .93rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #1e7eb8; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: .5rem;
}
.nav-toggle span { display: block; width: 25px; height: 2px; background: currentColor; margin: 5px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: .82rem 1.2rem;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #082039; box-shadow: 0 12px 28px rgba(77, 163, 220, .28); }
.btn-primary:hover { background: #62b5e8; }
.btn-secondary { border-color: #bac8d6; color: var(--navy); background: #fff; }
.btn-secondary:hover { box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: var(--navy); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-sm { min-height: 42px; padding: .72rem 1rem; }
.btn svg { width: 18px; height: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(104, 199, 216, .24), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #fff 55%, #edf7fc 100%);
  padding: 92px 0 84px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(77, 163, 220, .16);
  border-radius: 50%;
  right: -150px;
  top: -150px;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 5rem; align-items: center; }
.hero-copy p { margin-top: 1.3rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.badge { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .7rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.8); font-size: .84rem; font-weight: 750; color: #405168; }
.badge svg { width: 15px; color: var(--success); }

.dashboard {
  position: relative;
  background: #fff;
  padding: 18px;
  border: 1px solid #dfe9f2;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
}
.dashboard::before {
  content: "";
  position: absolute;
  inset: -18px 24px 20px -24px;
  border: 1px solid rgba(77,163,220,.22);
  border-radius: 30px;
  z-index: -1;
}
.dashboard-bar { display: flex; justify-content: space-between; align-items: center; padding: 8px 8px 18px; }
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ccd7e2; }
.dashboard-title { font-size: .78rem; font-weight: 800; color: #64748a; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { padding: 14px; background: var(--surface); border: 1px solid #e8eef4; border-radius: 13px; }
.metric small { display: block; color: #748195; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.metric strong { display: block; margin-top: .3rem; color: var(--navy); font-size: 1.15rem; }
.metric .up { color: var(--success); font-size: .72rem; }
.chart { margin-top: 12px; height: 230px; padding: 18px; background: #fff; border: 1px solid #e8eef4; border-radius: 15px; position: relative; overflow: hidden; }
.chart-grid { position: absolute; inset: 20px; background: repeating-linear-gradient(to bottom, transparent 0 42px, #e8eef4 43px); }
.chart svg { position: absolute; left: 18px; right: 18px; bottom: 30px; width: calc(100% - 36px); height: 150px; }
.chart-label { position: absolute; left: 20px; top: 16px; font-size: .8rem; font-weight: 800; color: var(--navy); }
.dashboard-note { position: absolute; right: -26px; bottom: -24px; width: 190px; background: var(--navy); color: #fff; padding: 16px; border-radius: 14px; box-shadow: var(--shadow-sm); }
.dashboard-note strong { display: block; font-size: .95rem; }
.dashboard-note span { display: block; color: #b9ccdf; font-size: .75rem; margin-top: .25rem; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { min-height: 110px; display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); align-items: center; gap: 1.5rem; }
.trust-intro { font-weight: 800; color: var(--navy); }
.trust-item { display: flex; align-items: center; gap: .6rem; color: #53637a; font-weight: 750; font-size: .9rem; }
.icon-check { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: var(--blue-soft); color: #237bb3; }
.icon-check svg { width: 16px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem-list { display: grid; gap: .8rem; margin-top: 1.5rem; }
.problem-item { display: flex; gap: .8rem; align-items: flex-start; color: #405168; }
.problem-item svg { width: 20px; flex: 0 0 20px; color: #2a86bd; margin-top: .15rem; }
.insight-card { background: var(--navy); color: #fff; padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.insight-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; border: 24px solid rgba(77,163,220,.13); right: -70px; top: -70px; }
.insight-card h3 { font-size: 1.8rem; }
.insight-card p { color: #c6d5e4; }
.insight-stat { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.insight-stat div { padding: 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; }
.insight-stat strong { display: block; font-size: 1.8rem; color: #fff; }
.insight-stat span { color: #bed0e0; font-size: .83rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.6rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 7px 25px rgba(11,31,58,.04); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: var(--blue-soft); color: #287fb5; margin-bottom: 1.2rem; }
.card-icon svg { width: 24px; }
.card p { color: var(--muted); font-size: .95rem; }
.card-link { display: inline-flex; align-items: center; gap: .35rem; color: #2278ae; font-weight: 800; text-decoration: none; font-size: .9rem; margin-top: .5rem; }
.card-link:hover { text-decoration: underline; }
.card ul { padding-left: 1.1rem; color: var(--muted); }

.service-band { background: var(--navy); border-radius: var(--radius-lg); padding: 50px; color: #fff; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 3rem; overflow: hidden; position: relative; }
.service-band::before { content: ""; position: absolute; width: 350px; height: 350px; border-radius: 50%; background: rgba(77,163,220,.12); right: -140px; top: -160px; }
.service-band p { color: #c4d4e5; max-width: 680px; }
.service-band .actions { justify-content: flex-end; position: relative; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.8rem; counter-reset: step; }
.step { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.step::before { counter-increment: step; content: "0" counter(step); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 850; font-size: .8rem; margin-bottom: 1rem; }
.step p { color: var(--muted); font-size: .92rem; }

.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; margin-top: 2.4rem; }
.industry { padding: 24px 18px; border-radius: 14px; border: 1px solid var(--line); background: #fff; text-align: center; font-weight: 800; color: var(--navy); }
.industry svg { width: 28px; margin: 0 auto .8rem; color: #2a82b8; }

.quote-card { max-width: 950px; margin: 0 auto; padding: 42px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #102b4e, #0b1f3a); color: #fff; position: relative; overflow: hidden; }
.quote-card::before { content: "“"; position: absolute; font-family: Georgia, serif; font-size: 14rem; color: rgba(255,255,255,.06); top: -50px; left: 18px; line-height: 1; }
.quote-card blockquote { margin: 0; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.4; letter-spacing: -.02em; position: relative; }
.quote-card footer { margin-top: 1.5rem; color: #bdd0e2; }

.faq { display: grid; gap: .75rem; margin-top: 2.2rem; }
.faq-item { border: 1px solid var(--line); border-radius: 13px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: #fff; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 20px 22px; color: var(--navy); font-weight: 850; }
.faq-question svg { width: 18px; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-answer.open { display: block; }

.cta-section { background: linear-gradient(135deg, #0b1f3a, #14395f); color: #fff; padding: 84px 0; }
.cta-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: start; }
.cta-copy h2 { color: #fff; }
.cta-copy p { color: #c6d4e3; }
.contact-options { display: grid; gap: .75rem; margin-top: 1.8rem; }
.contact-option { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: #fff; }
.contact-option .card-icon { margin: 0; width: 42px; height: 42px; background: rgba(255,255,255,.09); color: var(--blue-2); }
.contact-option small { display: block; color: #9fb8ce; }
.contact-option strong { display: block; }

.form-card { background: #fff; color: var(--ink); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
label { font-size: .84rem; font-weight: 800; color: #304159; }
input, select, textarea { width: 100%; border: 1px solid #cad6e3; border-radius: 9px; padding: .82rem .9rem; color: var(--ink); background: #fff; outline: 0; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(77,163,220,.16); }
textarea { min-height: 110px; resize: vertical; }
.form-note { color: #68778b; font-size: .76rem; margin-top: .8rem; }
.form-card .btn { width: 100%; margin-top: 1rem; }

/* Compact interior-page introductions keep the core content visible sooner. */
.page-hero { padding: 46px 0 42px; background: linear-gradient(135deg, #f5fafe, #fff); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.15rem, 3.4vw, 3rem); max-width: 22ch; }
.page-hero .lead { font-size: clamp(1.02rem, 1.45vw, 1.15rem); max-width: 760px; }
.page-hero .breadcrumb { margin-bottom: .75rem; }
.page-hero .eyebrow { margin-bottom: .75rem; }
.breadcrumb { display: flex; gap: .45rem; align-items: center; color: #6e7d90; font-size: .85rem; margin-bottom: 1rem; }
.breadcrumb a { color: #287fb5; text-decoration: none; }
.breadcrumb span { color: #9aa7b7; }

.detail-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 4rem; align-items: start; }
.sticky-nav { position: sticky; top: 120px; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 15px; }
.sticky-nav strong { display: block; margin-bottom: .8rem; color: var(--navy); }
.sticky-nav a { display: block; padding: .65rem .7rem; color: #526278; text-decoration: none; border-radius: 8px; font-weight: 750; }
.sticky-nav a:hover { background: #fff; color: #237db4; }
.detail-section { padding-bottom: 3.6rem; scroll-margin-top: 120px; }
.detail-section + .detail-section { padding-top: 3.6rem; border-top: 1px solid var(--line); }
.detail-section ul { padding-left: 1.2rem; color: var(--muted); }
.detail-section li { margin-bottom: .45rem; }
.highlight-box { padding: 24px; border-left: 4px solid var(--blue); background: var(--blue-soft); border-radius: 0 13px 13px 0; margin: 1.5rem 0; }

.team-model { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.team-wheel { position: relative; aspect-ratio: 1; max-width: 520px; margin: auto; }
.team-center { position: absolute; inset: 30%; display: grid; place-items: center; text-align: center; background: var(--navy); color: #fff; border-radius: 50%; box-shadow: var(--shadow-md); padding: 1rem; font-weight: 850; }
.team-node { position: absolute; width: 120px; height: 120px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--navy); font-weight: 800; font-size: .82rem; padding: 1rem; }
.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { top: 25%; right: 0; }
.node-3 { bottom: 4%; right: 13%; }
.node-4 { bottom: 4%; left: 13%; }
.node-5 { top: 25%; left: 0; }
.team-wheel::before { content: ""; position: absolute; inset: 15%; border: 1px dashed #a8c6dc; border-radius: 50%; }

.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table th { background: var(--navy); color: #fff; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td:nth-child(2) { color: #6e7b8d; }
.compare-table td:nth-child(3) { font-weight: 750; color: var(--navy); }

.contact-page-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
.info-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.info-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.info-row { display: flex; gap: .8rem; align-items: flex-start; }
.info-row svg { width: 20px; color: #2b84ba; margin-top: .2rem; }
.info-row a { color: var(--navy); font-weight: 750; text-decoration: none; }
.info-row span { display: block; color: var(--muted); font-size: .88rem; }

.footer { background: #07172b; color: #b7c8da; padding: 62px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 3rem; }
.footer-logo { background: var(--navy); border-radius: 10px; padding: 8px 10px; display: inline-flex; }
.footer-logo img { width: 230px; }
.footer p { color: #9db1c4; max-width: 390px; margin-top: 1rem; }
.footer h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.footer a { display: block; text-decoration: none; color: #b7c8da; margin: .45rem 0; }
.footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }
.footer-bottom a { display: inline; }

.thank-you { min-height: 65vh; display: grid; place-items: center; padding: 80px 0; background: var(--surface); }
.thank-you-card { max-width: 700px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 48px; text-align: center; box-shadow: var(--shadow-sm); }
.thank-you-icon { width: 70px; height: 70px; margin: 0 auto 1.2rem; display: grid; place-items: center; border-radius: 50%; background: #e9f8ef; color: var(--success); }
.thank-you-icon svg { width: 34px; }

.legal { padding: 70px 0; }
.legal h2 { margin-top: 2.4rem; font-size: 1.6rem; }
.legal ul { color: var(--muted); }

@media (max-width: 1020px) {
  .nav-links { gap: 1rem; }
  .nav-links .btn { display: none; }
  .hero-grid, .split, .cta-grid, .contact-page-grid, .team-model { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-top: 72px; }
  .hero-copy { max-width: 760px; }
  .dashboard { max-width: 650px; margin-inline: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding-block: 1.5rem; }
  .trust-intro { grid-column: 1 / -1; }
  .service-band { grid-template-columns: 1fr; }
  .service-band .actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .announcement .container { justify-content: center; }
  .announcement span { display: none; }
  .announcement-links { flex-wrap: wrap; justify-content: center; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 155px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: .8rem 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem .5rem; }
  .nav-links .btn { display: inline-flex; margin-top: .5rem; }
  .hero { padding: 58px 0 64px; }
  h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero-grid { gap: 3.5rem; }
  .dashboard-note { right: 8px; bottom: -36px; }
  .metric-grid { grid-template-columns: 1fr; }
  .chart { height: 200px; }
  .trust-grid { grid-template-columns: 1fr; }
  .cards, .steps, .industry-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-band { padding: 34px 26px; }
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .insight-stat { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-card { padding: 24px 20px; }
  .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-nav { position: static; }
  .compare-table { display: block; overflow-x: auto; font-size: .85rem; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
  .team-wheel { transform: scale(.86); margin-block: -25px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 36px 0 34px; }
  .page-hero h1 { font-size: clamp(2rem, 8.5vw, 2.5rem); max-width: 24ch; }
  .page-hero .lead { font-size: 1rem; line-height: 1.58; }
}

@media (max-width: 360px) {
  .announcement-links a[href^="mailto:"] { display: none; }
}

@media (max-width: 480px) {
  .container, .narrow { width: min(100% - 1.25rem, var(--container)); }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-badges { display: grid; }
  .dashboard { padding: 12px; border-radius: 18px; }
  .dashboard-note { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 10px; }
  .quote-card, .thank-you-card { padding: 32px 22px; }
  .team-wheel { transform: scale(.72); margin-block: -70px; }
  .cta-section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}


/* Team credibility and directory */
.team-preview-section { background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%); border-block: 1px solid var(--line); }
.team-preview-heading, .section-heading-row { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3rem; margin-bottom: 2.5rem; }
.team-preview-heading .lead { margin-bottom: 0; }
.section-heading-row { grid-template-columns: 1.2fr .8fr; }
.section-heading-row > p { color: var(--muted); margin: 0; max-width: 520px; justify-self: end; }
.leadership-preview, .team-grid { display: grid; gap: 1rem; }
.leadership-preview { grid-template-columns: repeat(5, 1fr); }
.team-grid { grid-template-columns: repeat(5, 1fr); }
.operations-grid { grid-template-columns: repeat(3, 1fr); }
.person-card { display: flex; align-items: center; gap: 1rem; min-width: 0; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 7px 24px rgba(11,31,58,.045); }
.person-card-featured { display: grid; align-content: start; text-align: center; justify-items: center; gap: .9rem; padding: 24px 16px; }
.person-card-featured .person-avatar { margin-inline: auto; }
.person-card h3 { margin-bottom: .25rem; font-size: 1.12rem; }
.person-avatar { width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; border-radius: 16px; background: var(--navy); color: #fff; font-weight: 900; letter-spacing: .04em; box-shadow: 0 10px 22px rgba(11,31,58,.16); }
.person-avatar-light { background: #e6f4fc; color: #176d9f; box-shadow: none; }
.person-avatar-small { width: 48px; height: 48px; flex-basis: 48px; border-radius: 13px; background: #eef5fa; color: #1f6f9e; box-shadow: none; font-size: .82rem; }
.person-role { color: #247caf; font-weight: 800; font-size: .88rem; line-height: 1.35; margin: 0; }
.person-location { color: var(--muted); font-size: .8rem; margin: .25rem 0 0; }
.compact-person { padding: 18px; }
.team-proof-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2rem; margin-top: 1.4rem; padding: 18px 22px; border-radius: 14px; background: var(--navy); color: #d7e5f2; }
.team-proof-bar span { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 750; }
.team-proof-bar svg { width: 17px; color: var(--blue-2); }
.team-page-hero { overflow: hidden; position: relative; }
.team-page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 70px solid rgba(77,163,220,.08); right: -140px; top: -180px; pointer-events: none; }
.team-hero-points { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.team-hero-points span { padding: .52rem .75rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: #42546a; font-size: .82rem; font-weight: 800; }

@media (max-width: 1120px) {
  .nav-links { gap: .8rem; }
  .nav-links .btn { display: none; }
  .leadership-preview, .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .team-preview-heading, .section-heading-row { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
  .section-heading-row > p { justify-self: start; }
  .leadership-preview, .team-grid, .operations-grid { grid-template-columns: repeat(2, 1fr); }
  .person-card { align-items: flex-start; }
}

@media (max-width: 520px) {
  .leadership-preview, .team-grid, .operations-grid { grid-template-columns: 1fr; }
  .person-card-featured { grid-template-columns: auto 1fr; text-align: left; justify-items: start; align-items: center; }
  .team-proof-bar { justify-content: flex-start; }
}

/* Final contrast correction after visual review */
.cta-section h2 { color: #fff; }
.cta-section .eyebrow { color: var(--blue-2); }


/* Homepage proportion and flow refinement */
.announcement { font-size: .8rem; }
.announcement .container { padding-block: .34rem; }
.nav-wrap { min-height: 92px; }
.brand-dark { padding: 0; overflow: hidden; }
.brand img { width: 180px; }
.nav-links { gap: 1.25rem; }
.nav-links a { font-size: .9rem; }

.hero { padding: 58px 0 64px; }
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: clamp(3rem, 4.5vw, 4.25rem);
  align-items: center;
}
.hero-copy { max-width: 660px; }
.hero h1 {
  font-size: clamp(3.4rem, 4.1vw, 3.8rem);
  line-height: 1.01;
  max-width: 18ch;
  letter-spacing: -.035em;
}
.hero-copy .lead {
  font-size: clamp(1.08rem, 1.45vw, 1.2rem);
  line-height: 1.62;
  max-width: 610px;
}
.hero-copy p { margin-top: 1.1rem; }
.hero .actions { margin-top: 1.35rem; }
.hero .btn { min-height: 48px; }
.dashboard {
  width: min(100%, 480px);
  justify-self: center;
  padding: 16px;
  transform: rotate(.55deg);
}
.dashboard::before { inset: -15px 20px 17px -20px; }
.metric { padding: 12px; }
.metric strong { font-size: 1.05rem; }
.chart { height: 205px; padding: 16px; }
.chart svg { height: 132px; }
.dashboard-note {
  right: -18px;
  bottom: -18px;
  width: 176px;
  padding: 14px;
}
.dashboard-note strong { font-size: .9rem; }
.dashboard-note span { font-size: .72rem; }
.trust-grid { min-height: 92px; gap: 1.15rem; }
.trust-intro { font-size: .96rem; }
.trust-item { font-size: .84rem; }

@media (max-width: 1120px) {
  .brand img { width: 164px; }
  .nav-wrap { min-height: 86px; }
  .nav-links { gap: .9rem; }
  .nav-links a { font-size: .85rem; }
  .nav-links .btn { padding-inline: .9rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr); gap: 2.5rem; }
  .hero h1 { font-size: clamp(3.2rem, 5.4vw, 3.75rem); }
}

@media (max-width: 1020px) {
  .hero { padding: 54px 0 62px; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy { max-width: 720px; }
  .hero h1 { max-width: 15ch; }
  .dashboard { width: min(100%, 560px); }
}

@media (max-width: 760px) {
  .announcement .container { padding-block: .28rem; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 142px; }
  .hero { padding: 46px 0 54px; }
  .hero h1 { font-size: clamp(2.55rem, 11.5vw, 3.25rem); max-width: 14ch; }
  .hero-copy .lead { font-size: 1.05rem; line-height: 1.58; }
  .hero-grid { gap: 2.7rem; }
  .trust-grid { min-height: auto; }
}

@media (max-width: 480px) {
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 2.85rem); }
  .dashboard { width: 100%; }
}

/* Keep the financial snapshot compact on phones instead of stacking every metric. */
@media (max-width: 760px) {
  .metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .metric { padding: 10px 8px; min-width: 0; }
  .metric small { font-size: .58rem; line-height: 1.25; }
  .metric strong { font-size: .92rem; }
  .metric .up { font-size: .62rem; line-height: 1.35; }
  .chart { height: 175px; }
  .chart svg { height: 112px; }
}
