:root {
  --navy: #142b47;
  --navy-2: #0e2036;
  --ink: #172333;
  --muted: #647386;
  --line: #dce3ea;
  --paper: #ffffff;
  --mist: #f4f7fa;
  --sand: #f2eee7;
  --accent: #a77f4c;
  --shadow: 0 18px 50px rgba(20, 43, 71, .12);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 18px; color: var(--navy-2); }
h1 { font-size: clamp(2.65rem, 6vw, 5.75rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); letter-spacing: -.04em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 760px; }
.muted { color: var(--muted); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.91); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(220,227,234,.85); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 195px; height: 64px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #435168; font-weight: 700; font-size: .94rem; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--accent); transition: .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta { padding: 11px 17px; color: white !important; background: var(--navy); border-radius: 999px; }
.nav-cta::after { display: none; }
.menu-btn { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-btn span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 6px 0; transition: .25s ease; }

.hero { min-height: 720px; display: grid; align-items: center; overflow: hidden; position: relative; background: radial-gradient(circle at 86% 20%, #eef3f8 0, transparent 32%), linear-gradient(135deg, #fff 0%, #f8fafc 72%, #f1ede6 100%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(20,43,71,.08); border-radius: 50%; right: -180px; bottom: -180px; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 70px; align-items: center; padding: 70px 0; }
.hero-copy p { max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 23px; border-radius: 999px; border: 1px solid var(--navy); font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(20,43,71,.14); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-secondary { background: #fff; color: var(--navy); }
.hero-logo-card { background: rgba(255,255,255,.72); border: 1px solid rgba(220,227,234,.9); box-shadow: var(--shadow); border-radius: 36px; padding: 56px 34px; transform: rotate(-1.5deg); }
.hero-logo-card img { filter: drop-shadow(0 20px 30px rgba(20,43,71,.08)); }
.trust-row { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted); font-size: .92rem; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

section { padding: 105px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-head p { max-width: 580px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--mist); color: var(--navy); font-size: 1.35rem; margin-bottom: 22px; font-weight: 900; }
.card ul { list-style: none; padding: 0; margin: 20px 0 0; }
.card li { padding: 8px 0 8px 20px; position: relative; color: var(--muted); }
.card li::before { content: ""; width: 7px; height: 7px; border: 2px solid var(--accent); border-radius: 50%; position: absolute; left: 0; top: 15px; }
.band { background: var(--navy-2); color: #fff; position: relative; overflow: hidden; }
.band h2, .band h3 { color: #fff; }
.band .lead, .band .muted { color: #c4cfdb; }
.band::after { content: "H"; position: absolute; font-family: Georgia, serif; font-size: 28rem; line-height: 1; opacity: .025; right: -30px; top: -90px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.stat { padding: 26px; border-left: 1px solid rgba(255,255,255,.18); }
.stat strong { display: block; font-size: 2.35rem; color: #fff; line-height: 1; margin-bottom: 10px; }
.stat span { color: #c4cfdb; }
.split-feature { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: center; }
.visual-panel { min-height: 480px; background: linear-gradient(135deg, var(--navy), #274d75); border-radius: 30px; padding: 45px; position: relative; overflow: hidden; color: #fff; box-shadow: var(--shadow); }
.visual-panel::before, .visual-panel::after { content:""; position:absolute; border:1px solid rgba(255,255,255,.15); border-radius:50%; }
.visual-panel::before { width:320px; height:320px; right:-80px; top:-90px; }
.visual-panel::after { width:220px; height:220px; left:-90px; bottom:-80px; }
.visual-panel h3 { color: #fff; font-size: 2rem; max-width: 360px; position: relative; z-index: 1; }
.visual-list { margin-top: 85px; position: relative; z-index: 1; }
.visual-list div { display:flex; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.17); padding:15px 0; }
.visual-list span:last-child { color:#cbd7e2; }
.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check { display: flex; gap: 14px; align-items: flex-start; }
.check b { width: 24px; height: 24px; border-radius: 50%; background: var(--sand); color: var(--accent); display: grid; place-items: center; flex: 0 0 auto; }

.page-hero { padding: 115px 0 90px; background: linear-gradient(135deg, #f8fafc, #f2eee8); }
.page-hero .lead { max-width: 820px; }
.breadcrumb { color: var(--muted); margin-bottom: 24px; font-size: .92rem; }
.breadcrumb a { color: var(--navy); font-weight: 800; }
.service-detail { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 38px 0; border-top: 1px solid var(--line); }
.service-number { font-size: 2.4rem; color: #c8d2dc; font-weight: 800; }
.service-detail .columns { columns: 2; column-gap: 50px; padding-left: 18px; color: var(--muted); }
.service-detail li { break-inside: avoid; margin-bottom: 9px; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.timeline .card { position: relative; padding-top: 64px; }
.timeline .card::before { counter-increment: step; content: "0" counter(step); position:absolute; top:24px; left:30px; font-weight:900; color:var(--accent); }
.profile-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.profile { padding: 36px; background: var(--mist); border-radius: var(--radius); }
.profile .role { color: var(--accent); font-weight: 800; margin-bottom: 16px; }
.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:start; }
.contact-card { background:var(--navy-2); color:#fff; border-radius:28px; padding:40px; position:sticky; top:115px; }
.contact-card h2,.contact-card h3 { color:#fff; }
.contact-card a { color:#fff; text-decoration:underline; text-underline-offset:3px; }
.contact-item { padding:20px 0; border-top:1px solid rgba(255,255,255,.15); }
form { display:grid; gap:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
label { display:grid; gap:8px; font-weight:800; color:var(--navy-2); }
input, textarea, select { width:100%; border:1px solid #cfd8e1; border-radius:13px; padding:14px 15px; background:#fff; color:var(--ink); outline:none; }
input:focus, textarea:focus, select:focus { border-color:var(--navy); box-shadow:0 0 0 4px rgba(20,43,71,.08); }
textarea { min-height:160px; resize:vertical; }
.form-status { min-height: 24px; color: var(--muted); }
.cta { padding: 65px; border-radius: 32px; background: linear-gradient(135deg, #f1ece4, #f8fafc); display:flex; align-items:center; justify-content:space-between; gap:40px; }
.cta h2 { max-width:700px; margin-bottom:0; }

.site-footer { background:#0b192a; color:#aebccb; padding:65px 0 26px; }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:50px; }
.footer-logo { width:210px; filter: brightness(0) invert(1); opacity:.95; margin-bottom:22px; }
.site-footer h3 { color:#fff; font-size:1rem; margin-bottom:15px; }
.site-footer a { display:block; padding:5px 0; }
.site-footer a:hover { color:#fff; }
.footer-bottom { margin-top:50px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; gap:20px; font-size:.88rem; }
.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 900px) {
  .menu-btn { display:block; }
  .nav-links { position:fixed; inset:82px 0 auto; background:#fff; border-bottom:1px solid var(--line); padding:24px 20px 30px; flex-direction:column; align-items:flex-start; transform:translateY(-130%); opacity:0; transition:.3s ease; box-shadow:0 20px 30px rgba(20,43,71,.1); }
  .nav-links.open { transform:none; opacity:1; }
  .nav-links a { width:100%; padding:6px 0; }
  .nav-cta { width:auto !important; }
  .hero { min-height:auto; }
  .hero-grid, .split-feature, .contact-grid { grid-template-columns:1fr; gap:45px; }
  .hero-grid { padding:65px 0 80px; }
  .hero-logo-card { max-width:620px; }
  .grid-3 { grid-template-columns:1fr 1fr; }
  .stats, .timeline { grid-template-columns:1fr 1fr; }
  .section-head { display:block; }
  .section-head p { margin-top:20px; }
  .contact-card { position:static; }
}
@media (max-width: 620px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  section { padding:75px 0; }
  .brand img { width:150px; height:58px; }
  .nav-wrap { min-height:72px; }
  .nav-links { inset:72px 0 auto; }
  h1 { font-size:2.75rem; }
  .hero-logo-card { padding:36px 18px; border-radius:24px; }
  .grid-2,.grid-3,.stats,.timeline,.profile-grid,.form-row { grid-template-columns:1fr; }
  .stat { border-left:0; border-top:1px solid rgba(255,255,255,.18); }
  .service-detail { grid-template-columns:1fr; gap:8px; }
  .service-detail .columns { columns:1; }
  .page-hero { padding:85px 0 65px; }
  .cta { padding:36px 25px; display:block; }
  .cta .btn { margin-top:25px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { display:block; }
}
