:root {
  --navy: #0b1f35;
  --navy-2: #102b47;
  --ink: #18222d;
  --muted: #5c6773;
  --line: #dfe4e8;
  --soft: #f5f7f9;
  --white: #ffffff;
  --accent: #6e7f90;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -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% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: baseline; gap: 9px; letter-spacing: .08em; }
.brand-main { color: var(--navy); font-weight: 750; font-size: 22px; }
.brand-sub { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.site-header .brand-logo { display: inline-flex; align-items: center; line-height: 0; }
.site-header .brand-logo img { height: 46px; width: auto; max-width: 320px; display: block; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: #34404c; }
.nav a:hover { color: var(--navy); }
.nav-cta { border: 1px solid var(--navy); padding: 10px 16px; color: var(--navy); font-weight: 650; }
.mobile-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11,31,53,.035) 1px, transparent 1px),
    linear-gradient(rgba(11,31,53,.035) 1px, transparent 1px),
    #fff;
  background-size: 56px 56px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(11,31,53,.09);
  transform: rotate(45deg);
}
.hero-inner { min-height: 610px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; padding: 74px 0; }
.eyebrow { display: inline-block; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; font-size: 12px; font-weight: 750; margin-bottom: 22px; }
h1 { margin: 0; max-width: 760px; font-size: clamp(42px, 5.3vw, 70px); line-height: 1.04; letter-spacing: -.035em; color: var(--navy); font-weight: 690; }
.hero-copy p { max-width: 680px; margin: 28px 0 0; color: #4d5966; font-size: 19px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 21px; border: 1px solid var(--navy); font-size: 14px; font-weight: 700; transition: .2s ease; }
.btn-primary { color: #fff; background: var(--navy); }
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary { color: var(--navy); background: #fff; }
.btn-secondary:hover { background: var(--soft); }
.hero-meta { margin-top: 30px; font-size: 12px; letter-spacing: .10em; text-transform: uppercase; color: #78838e; font-weight: 650; }

.hero-panel { position: relative; z-index: 1; background: var(--navy); padding: 46px; color: #fff; min-height: 350px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-panel small { text-transform: uppercase; letter-spacing: .16em; color: #aebdcc; font-size: 11px; font-weight: 750; }
.hero-panel h2 { margin: 20px 0 0; font-size: 30px; line-height: 1.22; font-weight: 600; letter-spacing: -.02em; }
.hero-panel-list { border-top: 1px solid rgba(255,255,255,.22); margin-top: 40px; }
.hero-panel-list div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 13px; color: #d6dfe7; }
.hero-panel-list span:first-child { color: #fff; }

section { padding: 96px 0; }
.section-head { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; margin-bottom: 54px; }
.section-kicker { font-size: 12px; color: var(--muted); text-transform: uppercase; font-weight: 750; letter-spacing: .14em; }
.section-title { margin: 0; color: var(--navy); font-size: clamp(32px, 4vw, 49px); line-height: 1.12; letter-spacing: -.025em; font-weight: 650; }
.section-intro { margin: 20px 0 0; color: var(--muted); max-width: 760px; font-size: 17px; }

.services { background: var(--soft); border-bottom: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cfd6dc; border-left: 1px solid #cfd6dc; }
.service-card { background: #fff; min-height: 330px; padding: 36px; border-right: 1px solid #cfd6dc; border-bottom: 1px solid #cfd6dc; }
.service-number { font-size: 12px; color: #7b8792; font-weight: 750; letter-spacing: .12em; }
.service-card h3 { margin: 48px 0 14px; font-size: 25px; color: var(--navy); font-weight: 630; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; }

.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.step { padding: 28px 26px 10px 0; min-height: 230px; border-right: 1px solid var(--line); margin-right: 26px; }
.step:last-child { border-right: 0; margin-right: 0; }
.step-num { color: #81909e; font-size: 12px; font-weight: 750; letter-spacing: .12em; }
.step h3 { color: var(--navy); font-size: 22px; margin: 34px 0 12px; font-weight: 650; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.about { background: var(--navy); color: #fff; }
.about .section-kicker { color: #a9bac8; }
.about .section-title { color: #fff; }
.about .section-intro { color: #cbd6df; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; margin-top: 54px; }
.about-card { border-top: 1px solid rgba(255,255,255,.25); padding-top: 26px; }
.about-card h3 { margin: 0 0 14px; font-size: 20px; font-weight: 620; }
.about-card p { margin: 0; color: #cbd6df; }

.partner-note { border: 1px solid var(--line); padding: 38px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; align-items: start; }
.partner-note h3 { margin: 0; color: var(--navy); font-size: 24px; }
.partner-note p { margin: 0; color: var(--muted); }

.contact { background: var(--soft); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.contact-details h2 { margin: 0; color: var(--navy); font-size: 45px; line-height: 1.1; letter-spacing: -.025em; }
.contact-details p { color: var(--muted); }
.contact-list { margin-top: 34px; border-top: 1px solid var(--line); }
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.contact-item span { display: block; color: #7c8791; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; margin-bottom: 4px; }

.form { background: #fff; border: 1px solid var(--line); padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-size: 12px; font-weight: 750; color: #46515d; margin-bottom: 7px; }
input, textarea, select { width: 100%; border: 1px solid #cdd5dc; background: #fff; color: var(--ink); border-radius: 0; padding: 12px 13px; outline: 0; }
input:focus, textarea:focus, select:focus { border-color: var(--navy); box-shadow: 0 0 0 1px var(--navy); }
textarea { min-height: 130px; resize: vertical; }
.form-note { color: #75818c; font-size: 12px; margin: 14px 0 0; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.site-footer { background: #081725; color: #c7d1da; padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { width: min(390px, 100%); height: auto; display: block; }
.footer-brand p { max-width: 560px; color: #aebcc8; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; align-items: start; padding-top: 26px; font-size: 11px; color: #8fa0af; }
.footer-legal { max-width: 800px; }

.page-hero { background: var(--soft); border-bottom: 1px solid var(--line); padding: 78px 0 60px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 58px); }
.legal-content { width: min(calc(100% - 48px), 900px); margin: 0 auto; padding: 72px 0 110px; }
.legal-content h2 { color: var(--navy); font-size: 24px; margin: 44px 0 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #4f5b67; }
.legal-content ul { padding-left: 20px; }
.legal-meta { color: #7a8793; font-size: 13px; margin-top: 10px; }
.notice { background: var(--soft); border-left: 3px solid var(--navy); padding: 18px 20px; margin: 24px 0; }
.status-page { min-height: 72vh; display: grid; place-items: center; padding: 60px 24px; background: var(--soft); }
.status-card { width: min(100%, 650px); background: #fff; border: 1px solid var(--line); padding: 48px; text-align: center; }
.status-card h1 { font-size: 40px; }
.status-card p { color: var(--muted); }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 20px 24px 26px; flex-direction: column; align-items: stretch; gap: 16px; }
  .nav.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 44px; padding: 64px 0; }
  .hero-panel { min-height: 300px; }
  .section-head, .contact-grid, .partner-note, .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  .container, .legal-content { width: min(calc(100% - 32px), var(--max)); }
  .nav-wrap { height: 68px; }
  .nav { top: 68px; }
  .site-header .brand-logo img { height: 36px; max-width: 240px; }
  .brand-sub { display: none; }
  section { padding: 72px 0; }
  h1 { font-size: 44px; }
  .hero-inner { padding: 50px 0; }
  .hero-copy p { font-size: 17px; }
  .hero-panel { padding: 30px; }
  .service-card { padding: 28px; min-height: 280px; }
  .how-grid { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); margin: 0; padding: 24px 0 28px; min-height: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .contact-details h2 { font-size: 37px; }
  .footer-bottom { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; }
  .status-card { padding: 34px 24px; }
}
