:root {
  --navy: #071b36;
  --blue: #1156d8;
  --cyan: #20b9d7;
  --ink: #10233d;
  --muted: #617086;
  --surface: #f4f7fb;
  --line: #dce5ef;
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 27, 54, .12);
}
* { 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; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-header { position: fixed; z-index: 20; inset: 0 0 auto; background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(220,229,239,.8); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 190px; max-height: 52px; object-fit: contain; background: var(--navy); padding: 8px 12px; border-radius: 12px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; font-weight: 700; font-size: .94rem; }
.nav-links a:hover { color: var(--blue); }
.nav-links .nav-cta { color: var(--white); background: var(--navy); padding: 11px 20px; border-radius: 999px; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: white; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; }
.hero { min-height: 760px; position: relative; display: grid; place-items: center; color: white; overflow: hidden; padding-top: 78px; }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image { background: url('/assets/hero.jpg') center/cover no-repeat; transform: scale(1.03); }
.hero-overlay { background: linear-gradient(90deg, rgba(3,19,40,.96) 0%, rgba(5,33,68,.9) 48%, rgba(9,52,94,.55) 100%); }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -170px; bottom: -190px; background: rgba(32,185,215,.2); filter: blur(2px); }
.hero-content { position: relative; z-index: 2; padding-block: 100px 80px; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800; color: #8eeaff; }
.eyebrow.dark { color: var(--blue); }
.hero h1 { max-width: 800px; font-size: clamp(3rem, 7vw, 6rem); line-height: .98; letter-spacing: -.055em; margin: 22px 0 28px; }
.hero p { max-width: 690px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: #d7e5f5; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 24px; border-radius: 14px; text-decoration: none; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--cyan), #56dba9); color: var(--navy); box-shadow: 0 14px 38px rgba(32,185,215,.28); }
.button-ghost { border: 1px solid rgba(255,255,255,.42); color: white; }
.hero-points { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 70px; color: #d6e5f4; font-weight: 700; font-size: .92rem; }
.hero-points span::before { content: "✓"; color: #65e5b7; margin-right: 8px; }
.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.compact { margin-bottom: 36px; }
.section h2 { font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -.045em; margin: 12px 0 18px; }
.section-heading p, .about-copy p { color: var(--muted); font-size: 1.08rem; }
.services { background: var(--surface); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px; box-shadow: 0 10px 30px rgba(7,27,54,.04); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: #e9f1ff; color: var(--blue); font-weight: 900; }
.service-card h3 { font-size: 1.25rem; margin: 24px 0 10px; }
.service-card p { color: var(--muted); margin: 0; }
.accent-card { color: white; background: linear-gradient(145deg, var(--blue), var(--navy)); border-color: transparent; }
.accent-card .service-icon { background: rgba(255,255,255,.14); color: white; }
.accent-card p { color: #d6e4f8; }
.accent-card a { display: inline-block; margin-top: 20px; color: #8eeaff; font-weight: 800; text-decoration: none; }
.split-layout { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; }
.about-copy h2 { margin-top: 14px; }
.stats-panel { display: grid; grid-template-columns: repeat(2, 1fr); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.stats-panel div { min-height: 170px; padding: 28px; background: var(--navy); color: white; border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; justify-content: flex-end; }
.stats-panel div:nth-child(2), .stats-panel div:nth-child(3) { background: #0d315b; }
.stats-panel strong { font-size: 2.15rem; line-height: 1; }
.stats-panel span { margin-top: 10px; color: #bcd0e7; font-size: .9rem; }
.process { background: #fff; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.process-list li { background: white; padding: 28px 24px; min-height: 230px; }
.process-list > li > span { font-weight: 900; color: var(--blue); }
.process-list h3 { margin: 38px 0 8px; font-size: 1.15rem; }
.process-list p { margin: 0; color: var(--muted); font-size: .93rem; }
.contact { padding-top: 30px; }
.contact-card { color: white; background: linear-gradient(135deg, var(--navy), #0a4f92); border-radius: 30px; padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 50px; box-shadow: var(--shadow); }
.contact-card h2 { max-width: 700px; font-size: clamp(2rem, 4vw, 3.4rem); margin: 10px 0 15px; }
.contact-card p { color: #c9daed; max-width: 650px; margin: 0; }
.contact-actions { min-width: 270px; display: grid; gap: 12px; }
.button-light { background: white; color: var(--navy); }
.button-outline-light { border: 1px solid rgba(255,255,255,.4); color: white; }
.site-footer { margin-top: 80px; background: #061426; color: #c2d0df; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr .8fr; gap: 60px; align-items: start; }
.footer-logo { width: 180px; background: #0d315b; padding: 9px 12px; border-radius: 10px; margin-bottom: 20px; }
.footer-grid p { max-width: 420px; }
.footer-grid address { font-style: normal; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #dbe7f3; text-decoration: none; }
.footer-links a:hover { color: #8eeaff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 20px; font-size: .88rem; }
.legal-page { background: var(--surface); min-height: 100vh; }
.legal-header { background: var(--navy); padding: 22px 0; }
.legal-header img { width: 180px; background: #0d315b; padding: 8px 10px; border-radius: 10px; }
.legal-card { max-width: 900px; margin: 60px auto; padding: 48px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.legal-card h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-top: 0; }
.legal-card h2 { margin-top: 30px; font-size: 1.25rem; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--blue); }
@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links { position: absolute; inset: 78px 20px auto; background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); display: none; align-items: stretch; flex-direction: column; gap: 8px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-links .nav-cta { text-align: center; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 45px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .contact-card { align-items: stretch; flex-direction: column; padding: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 160px; }
  .hero { min-height: 700px; }
  .hero-content { padding-top: 85px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .hero-points { margin-top: 46px; gap: 14px; flex-direction: column; }
  .section { padding: 82px 0; }
  .card-grid, .process-list, .footer-grid { grid-template-columns: 1fr; }
  .service-card { padding: 25px; }
  .stats-panel div { min-height: 140px; }
  .contact { padding-top: 10px; }
  .contact-card { padding: 34px 24px; border-radius: 22px; }
  .contact-actions { min-width: 0; }
  .legal-card { margin: 30px auto; padding: 28px 22px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
