:root {
  --navy: #102a43;
  --navy-2: #163b5c;
  --ink: #172b3a;
  --muted: #607486;
  --cream: #f6f3ed;
  --white: #ffffff;
  --line: #dce5ea;
  --accent: #d59a4b;
  --accent-dark: #a96d25;
  --soft: #eef4f6;
  --shadow: 0 18px 55px rgba(16, 42, 67, .10);
  --radius: 20px;
}
* { 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;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,229,234,.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 12px; background: var(--navy); color: white; font-weight: 800;
}
.brand strong { display: block; font-size: 18px; line-height: 1; letter-spacing: -.02em; }
.brand small { display: block; margin-top: 4px; font-size: 8px; letter-spacing: .25em; font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--muted); font-size: 14px; font-weight: 700; padding: 27px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); border-bottom-color: var(--accent); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 25px; color: var(--navy); }
.hero {
  overflow: hidden; padding: 105px 0 95px;
  background: linear-gradient(135deg, #f8f5ef 0%, #eef4f6 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.eyebrow { display: inline-block; color: var(--accent-dark); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 850; }
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin: 0 0 18px; letter-spacing: -.035em; }
h1 { font-size: clamp(43px, 6vw, 70px); max-width: 750px; }
h2 { font-size: clamp(31px, 4vw, 48px); }
h3 { font-size: 21px; }
p { color: var(--muted); margin: 0 0 18px; }
.lead { font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin: 30px 0 25px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 22px; border-radius: 10px; font-weight: 800; font-size: 14px; border: 1px solid transparent; cursor: pointer; }
.btn-primary { color: white; background: var(--navy); }
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary { color: var(--navy); background: white; border-color: var(--line); }
.btn-light { color: var(--navy); background: white; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12px; color: var(--navy); font-weight: 700; }
.hero-card {
  position: relative; overflow: hidden; min-height: 430px; padding: 45px;
  border-radius: 30px; background: var(--navy); color: white; box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.card-glow { position: absolute; width: 270px; height: 270px; border-radius: 50%; background: rgba(213,154,75,.24); top: -80px; right: -60px; filter: blur(4px); }
.hero-card .mini-label { color: #d9e4eb; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.hero-card h2 { color: white; font-size: 43px; max-width: 390px; position: relative; }
.hero-card > p:not(.mini-label) { color: #cfdae1; max-width: 420px; position: relative; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 25px; position: relative; }
.stat-grid div { border-top: 1px solid rgba(255,255,255,.2); padding-top: 12px; }
.stat-grid strong { display: block; color: var(--accent); font-size: 20px; }
.stat-grid span { color: #d9e4eb; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.section { padding: 95px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 750px; margin-bottom: 45px; }
.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.service-card, .principle {
  padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white;
}
.service-card { transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 25px; border-radius: 10px; background: var(--cream); color: var(--accent-dark); font-weight: 900; font-size: 12px; }
.service-card a, .text-link { color: var(--navy); font-weight: 800; font-size: 13px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split > div:last-child { padding-top: 8px; }
.page-hero { padding: 90px 0 75px; background: var(--cream); }
.page-hero h1 { font-size: clamp(40px, 5vw, 60px); max-width: 850px; margin-top: 8px; }
.page-hero p { max-width: 680px; font-size: 18px; }
.service-list { display: grid; gap: 0; }
.service-detail {
  display: grid; grid-template-columns: 90px 1fr; gap: 40px;
  padding: 55px 0; border-bottom: 1px solid var(--line);
}
.service-number { color: var(--accent-dark); font-size: 16px; font-weight: 900; letter-spacing: .08em; }
.service-detail p { max-width: 700px; }
.service-detail ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px 35px; margin: 25px 0 0; padding: 0; list-style: none; color: var(--muted); }
.service-detail li::before { content: "✓"; color: var(--accent-dark); font-weight: 900; margin-right: 8px; }
.narrow { max-width: 800px; }
.about-intro { padding-bottom: 20px; }
.principle { background: var(--white); }
.cta { background: var(--navy); padding: 65px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { color: white; margin: 7px 0 0; }
.cta .eyebrow { color: #e2b875; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.contact-form { padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: block; color: var(--navy); font-size: 13px; font-weight: 800; margin: 0 0 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin: 0 0 20px; padding: 13px 14px;
  border: 1px solid #ccd9e0; border-radius: 9px; background: white;
  color: var(--ink); font: inherit; outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(16,42,67,.08); }
.contact-note { border-top: 1px solid var(--line); padding: 18px 0; display: grid; gap: 3px; }
.contact-note strong { color: var(--navy); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.contact-note span { color: var(--muted); font-size: 14px; }
.form-help { font-size: 11px; margin: 13px 0 0; }
.alert { padding: 13px 15px; border-radius: 9px; margin-bottom: 20px; font-size: 13px; font-weight: 700; }
.alert.success { background: #eaf5ee; color: #27613a; }
.alert.error { background: #faecec; color: #8b3030; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.site-footer { background: #0b2033; color: #b9c8d2; padding: 65px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .9fr; gap: 60px; padding-bottom: 50px; }
.footer-brand { color: white; margin-bottom: 18px; }
.footer-brand .brand-mark { background: var(--accent); color: var(--navy); }
.site-footer h3 { color: white; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 15px; }
.site-footer p, .site-footer a { color: #b9c8d2; font-size: 13px; }
.site-footer a { display: block; margin: 7px 0; }
.site-footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 11px; color: #8ea3b1; }
@media (max-width: 820px) {
  .container { width: min(100% - 28px, 680px); }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 78px; padding: 10px 20px 20px; background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 0; }
  .hero { padding: 65px 0; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-card { min-height: 360px; }
  .cards.three, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 65px 0; }
  .service-detail { grid-template-columns: 1fr; gap: 10px; padding: 40px 0; }
  .service-detail ul { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { gap: 30px; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .service-card { transition: none; } }
