:root {
  --navy: #0b1f3a;
  --navy-2: #102c50;
  --blue: #1e5eff;
  --blue-soft: #eaf0ff;
  --ink: #111a29;
  --muted: #5b6879;
  --line: #dbe4ef;
  --mist: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(11, 31, 58, 0.1);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand-logo { width: 214px; height: auto; display: block; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  color: var(--white); background: var(--navy); border-radius: 11px;
  font-size: 18px; font-weight: 800; letter-spacing: -0.08em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.brand-sub { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a { color: var(--muted); font-size: 14px; font-weight: 700; transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a.active { color: var(--blue); }
.nav-toggle {
  display: none; width: 44px; height: 40px; border: 1px solid var(--line); border-radius: 10px;
  color: var(--navy); background: var(--white); font-size: 20px;
}

.hero {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 72px; align-items: center; min-height: 650px; padding: 88px 0 96px;
}
.hero::before { content: ""; position: absolute; z-index: -1; width: 440px; height: 440px; right: -180px; top: 40px; border-radius: 50%; background: var(--blue-soft); filter: blur(2px); }
.eyebrow, .section-kicker { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; color: var(--navy); font-size: clamp(44px, 6vw, 72px); line-height: 1.03; letter-spacing: -.065em; }
h1 span { color: var(--blue); }
.hero-copy > p { max-width: 630px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 21px; border: 1px solid transparent; border-radius: 10px; font-size: 14px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 24px rgba(30, 94, 255, .18); }
.button-primary:hover { background: #0d4ee8; }
.button-secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.button-secondary:hover { border-color: var(--blue); color: var(--blue); }

.hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.visual-orbit { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(30, 94, 255, .22); border-radius: 50%; }
.visual-orbit::before, .visual-orbit::after { content: ""; position: absolute; border: 1px solid rgba(30, 94, 255, .16); border-radius: 50%; }
.visual-orbit::before { inset: 38px; }
.visual-orbit::after { inset: 90px; }
.visual-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 7px rgba(30, 94, 255, .12); }
.dot-one { top: 46px; right: 57px; }
.dot-two { bottom: 75px; left: 18px; background: var(--navy); }
.visual-panel { position: relative; width: min(100%, 360px); padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; color: var(--white); background: linear-gradient(145deg, var(--navy-2), var(--navy)); box-shadow: 0 32px 70px rgba(11, 31, 58, .25); overflow: hidden; }
.visual-panel::before { content: ""; position: absolute; width: 180px; height: 180px; right: -65px; bottom: -75px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.panel-kicker { position: relative; color: #8fb0ff; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.panel-title { position: relative; max-width: 220px; margin: 26px 0 32px; font-size: 28px; font-weight: 750; line-height: 1.12; letter-spacing: -.04em; }
.panel-row { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.13); font-size: 13px; }
.panel-row span:last-child { color: #a7bcff; font-weight: 700; }

.section { padding: 100px 0; }
.section-tint { background: var(--mist); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-heading h2, .page-intro h1 { margin: 13px 0 0; color: var(--navy); font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.055em; }
.section-heading p { max-width: 430px; margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 290px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #b8c9e2; box-shadow: var(--shadow); }
.service-index { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.service-card h3 { margin: 31px 0 12px; color: var(--navy); font-size: 22px; line-height: 1.15; letter-spacing: -.03em; }
.service-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 800; }
.card-link span { font-size: 17px; line-height: 1; }

.approach-panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; padding: 70px; border-radius: 22px; color: var(--white); background: var(--navy); overflow: hidden; }
.approach-panel h2 { max-width: 360px; margin: 12px 0 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.04; letter-spacing: -.055em; }
.approach-panel .section-kicker { color: #86a8ff; }
.approach-panel p { max-width: 610px; margin: 0; color: #c5d1e2; font-size: 18px; line-height: 1.75; }
.approach-note { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: #fff; font-size: 13px; font-weight: 700; }
.approach-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #74a0ff; }
.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 40px 0 12px; }
.final-cta h2 { max-width: 520px; margin: 0; color: var(--navy); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.055em; }
.final-cta p { max-width: 390px; margin: 0; color: var(--muted); }

.page-intro { padding: 94px 0 64px; }
.page-intro h1 { max-width: 760px; }
.page-intro > p { max-width: 670px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.page-intro-compact { padding-bottom: 50px; }
.content-section { padding: 0 0 100px; }
.content-section h2 { margin: 0 0 20px; color: var(--navy); font-size: 30px; letter-spacing: -.04em; }
.content-section > p { max-width: 760px; color: var(--muted); }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.fact { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--mist); }
.fact-label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.fact-value { color: var(--navy); font-size: 17px; font-weight: 750; line-height: 1.35; }
.two-column { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.info-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.info-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 22px; letter-spacing: -.03em; }
.info-card p { margin: 0; color: var(--muted); }

.business-list { border-top: 1px solid var(--line); }
.business-item { display: grid; grid-template-columns: 86px minmax(190px, .72fr) 1fr; gap: 28px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--line); }
.business-number { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.business-item h2 { margin: 0; color: var(--navy); font-size: 25px; line-height: 1.15; letter-spacing: -.035em; }
.business-item p { max-width: 520px; margin: 0; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; align-items: start; }
.contact-details, .contact-form-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-details { color: var(--white); background: var(--navy); }
.contact-details h2, .contact-form-card h2 { margin: 0 0 24px; color: inherit; font-size: 28px; letter-spacing: -.04em; }
.contact-details p { color: #c7d2e2; }
.detail-list { display: grid; gap: 18px; margin: 34px 0 0; }
.detail-item { padding-top: 17px; border-top: 1px solid rgba(255,255,255,.16); }
.detail-label { display: block; margin-bottom: 3px; color: #8eadff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.detail-value { color: var(--white); font-size: 16px; line-height: 1.45; }
.detail-value:hover { color: #b7caff; }
.contact-form-card h2 { color: var(--navy); }
.form-intro { color: var(--muted); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 14px; font-weight: 750; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 9px; padding: 12px 13px; color: var(--ink); background: var(--white); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,94,255,.12); }
.field textarea { min-height: 140px; resize: vertical; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.form-note, .form-status { color: var(--muted); font-size: 13px; }
.form-status { flex-basis: 100%; min-height: 21px; color: var(--blue); font-weight: 700; }
.meeting-note { margin-top: 18px; padding: 18px 20px; border-left: 3px solid var(--blue); color: var(--muted); background: var(--mist); }

.policy { max-width: 820px; padding-bottom: 110px; }
.policy h2 { margin: 38px 0 12px; color: var(--navy); font-size: 24px; letter-spacing: -.03em; }
.policy p, .policy li { color: var(--muted); }
.policy ul { padding-left: 22px; }
.policy a { color: var(--blue); font-weight: 700; }

.site-footer { margin-top: 0; color: #c4d0df; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; padding: 54px 0 42px; }
.footer-brand { color: var(--white); font-size: 17px; font-weight: 800; }
.footer-grid p { max-width: 310px; margin: 12px 0 0; font-size: 14px; line-height: 1.6; }
.footer-heading { margin-bottom: 12px; color: #8eadff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 7px; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0 24px; border-top: 1px solid rgba(255,255,255,.13); font-size: 12px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 35px; padding-top: 70px; }
  .hero-visual { min-height: 360px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-panel { grid-template-columns: 1fr; gap: 32px; padding: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 650px) {
  .site-shell { width: min(100% - 32px, 1180px); }
  .brand-logo { width: 185px; }
  .site-header { min-height: 72px; position: relative; }
  .nav-toggle { display: block; }
  .primary-nav { display: none; position: absolute; z-index: 10; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 14px; border-radius: 8px; }
  .primary-nav a:hover, .primary-nav a.active { background: var(--blue-soft); }
  h1 { font-size: clamp(42px, 14vw, 62px); }
  .hero { min-height: auto; padding: 64px 0 76px; }
  .hero-copy > p, .page-intro > p { font-size: 16px; }
  .visual-orbit { width: 300px; height: 300px; }
  .visual-panel { width: min(100%, 320px); }
  .section, .content-section { padding: 76px 0; }
  .section-heading, .final-cta { display: block; }
  .section-heading p { margin-top: 18px; }
  .final-cta p { margin: 18px 0 24px; }
  .card-grid, .facts-grid, .two-column, .form-grid { grid-template-columns: 1fr; }
  .business-item { grid-template-columns: 44px 1fr; gap: 10px 18px; }
  .business-item p { grid-column: 2; }
  .field-full { grid-column: auto; }
  .approach-panel { padding: 36px 26px; }
  .page-intro { padding: 68px 0 48px; }
  .contact-details, .contact-form-card { padding: 25px 21px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 42px 0 30px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span + span { display: block; margin-top: 5px; }
}
