:root {
  --prime-navy: #071a2d;
  --prime-blue: #0b4f8a;
  --prime-cyan: #15a5b6;
  --prime-gold: #d6aa4b;
  --prime-red: #a42a2a;
  --prime-ink: #182433;
  --prime-muted: #687586;
  --prime-bg: #f4f7fa;
  --prime-white: #ffffff;
  --prime-border: #dde5ed;
  --prime-shadow: 0 18px 50px rgba(7, 26, 45, .12);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--prime-ink); background: #fff; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
a { color: var(--prime-blue); text-decoration: none; }
a:hover { color: var(--prime-cyan); }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.screen-reader-text { position: absolute; left: -9999px; }
.topbar { background: var(--prime-navy); color: #d9e8f4; font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 22px; }
.topbar a { color: #fff; }
.site-header { background: #fff; position: sticky; top: 0; z-index: 50; box-shadow: 0 8px 25px rgba(7, 26, 45, .08); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.site-branding { flex: 0 0 330px; }
.brand-link img, .custom-logo { display: block; max-height: 62px; width: auto; }
.primary-navigation { flex: 1; }
.primary-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.primary-navigation a { color: var(--prime-ink); font-weight: 650; font-size: 15px; }
.primary-navigation a:hover { color: var(--prime-blue); }
.menu-toggle { display: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 10px; font-weight: 750; transition: .2s ease; border: 1px solid transparent; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--prime-blue), var(--prime-cyan)); box-shadow: 0 10px 25px rgba(11, 79, 138, .22); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); }
.btn-outline { color: var(--prime-blue); background: #fff; border-color: #aac7dd; }
.header-cta { white-space: nowrap; }
.hero-section { position: relative; overflow: hidden; background: radial-gradient(circle at 90% 20%, rgba(21,165,182,.35), transparent 30%), linear-gradient(135deg, #061827 0%, #0a3153 58%, #0c5c72 100%); color: #fff; padding: 110px 0; }
.hero-section:before { content:""; position:absolute; inset:auto -8% -45% auto; width:620px; height:620px; border:1px solid rgba(255,255,255,.18); border-radius:50%; box-shadow:0 0 0 80px rgba(255,255,255,.03),0 0 0 160px rgba(255,255,255,.02); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: center; }
.hero-section h1 { margin: 14px 0 22px; max-width: 780px; font-size: clamp(42px, 6vw, 72px); line-height: 1.04; letter-spacing: -.035em; }
.hero-section p { max-width: 700px; color: #d6e7f1; font-size: 20px; }
.eyebrow { display: inline-block; color: var(--prime-gold); font-weight: 800; text-transform: uppercase; letter-spacing: .13em; font-size: 12px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-card { padding: 34px; border-radius: 22px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(12px); box-shadow: var(--prime-shadow); }
.hero-card strong, .hero-card span, .hero-card a { display: block; }
.hero-card strong { font-size: 24px; }
.hero-card span { color: #d6e7f1; margin: 12px 0 24px; }
.hero-card a { color: #fff; font-weight: 750; }
.section { padding: 92px 0; }
.section-light { background: var(--prime-bg); }
.section-dark { background: var(--prime-navy); color: #fff; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 { margin: 8px 0 10px; font-size: clamp(34px, 4vw, 52px); line-height: 1.12; letter-spacing: -.025em; }
.section-heading p { color: var(--prime-muted); font-size: 18px; }
.section-dark .section-heading p { color: #c5d5e2; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card, .content-card, .trust-card, .contact-card { padding: 30px; background: #fff; border: 1px solid var(--prime-border); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(7,26,45,.06); }
.service-card { transition: .2s ease; position: relative; overflow: hidden; }
.service-card:after { content:""; position:absolute; inset:auto -45px -45px auto; width:120px; height:120px; border-radius:50%; background:rgba(21,165,182,.09); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--prime-shadow); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(11,79,138,.12), rgba(21,165,182,.18)); color: var(--prime-blue); font-size: 26px; }
.service-card h3 { margin: 20px 0 8px; font-size: 22px; }
.service-card p { color: var(--prime-muted); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 26px; border-radius: 16px; text-align: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.stat strong { display: block; font-size: 36px; color: #fff; }
.stat span { color: #bcd0dd; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { display: grid; gap: 16px; margin: 26px 0; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check { flex: 0 0 28px; height: 28px; border-radius: 50%; background: #e5f7f5; color: #118477; display: grid; place-items: center; font-weight: 900; }
.visual-panel { min-height: 420px; border-radius: 26px; padding: 36px; display: flex; align-items: end; background: linear-gradient(160deg, rgba(7,26,45,.1), rgba(7,26,45,.8)), url('../images/corporate-pattern.svg') center/cover, #0b4f8a; color: #fff; box-shadow: var(--prime-shadow); }
.visual-panel .panel-box { padding: 28px; border-radius: 18px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px); }
.cta-band { padding: 42px; border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: linear-gradient(135deg, var(--prime-blue), var(--prime-cyan)); color: #fff; }
.cta-band h2 { margin: 0 0 6px; }
.page-hero { padding: 76px 0; color: #fff; background: linear-gradient(135deg, #061827, #0b4f8a); }
.compact-hero h1 { margin: 10px 0 0; font-size: clamp(38px, 5vw, 58px); }
.page-content > *:not(.alignfull) { max-width: 1180px; margin-left: auto; margin-right: auto; }
.page-content { min-height: 480px; }
.content-area { padding-block: 70px; }
.site-footer { background: #061827; color: #bacbd7; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr 1fr; gap: 42px; }
.footer-logo { max-width: 300px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer h3 { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: #d8e7ef; }
.footer-bottom { margin-top: 54px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 980px) {
  .site-branding { flex-basis: 260px; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; border: 1px solid var(--prime-border); background: #fff; padding: 10px 14px; border-radius: 8px; }
  .primary-navigation { display: none; position: absolute; top: 130px; left: 20px; right: 20px; background: #fff; border-radius: 14px; box-shadow: var(--prime-shadow); padding: 20px; }
  .primary-navigation.is-open { display: block; }
  .primary-navigation ul { display: grid; gap: 8px; justify-content: stretch; }
  .primary-navigation a { display: block; padding: 10px; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar-inner { justify-content: center; text-align: center; min-height: 50px; }
  .topbar-inner > span, .topbar-links a:first-child { display: none; }
  .nav-wrap { min-height: 76px; }
  .site-branding { flex-basis: 215px; }
  .hero-section { padding: 74px 0; }
  .hero-section h1 { font-size: 42px; }
  .hero-section p { font-size: 17px; }
  .section { padding: 68px 0; }
  .card-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}
