:root {
  --navy: #002a66;
  --navy-deep: #001f44;
  --ink: #0f1728;
  --muted: #64748b;
  --bg: #f7f9fc;
  --card: #ffffff;
  --line: #d9e1ea;
  --soft: #eef4fa;
  --shadow: 0 18px 44px rgba(0, 31, 68, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.page { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  display: block;
  width: min(290px, 48vw);
  height: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}
nav a:hover { color: var(--navy); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 4px;
}
.lang-switch button, .lang-choice button {
  font: inherit;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy-deep);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
}
.lang-switch button.active, .lang-choice button:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 760;
  border: 1px solid var(--navy);
}
.button.secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(0,42,102,0.18);
}
.hero-wrap {
  background: radial-gradient(circle at 100% 0%, rgba(0,42,102,0.08), transparent 26rem), linear-gradient(180deg, #ffffff, #f3f7fb 100%);
  border-bottom: 1px solid var(--line);
}
.hero {
  padding: 90px 0 72px;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.072em;
  margin: 0 0 24px;
  max-width: 860px;
  color: var(--navy-deep);
}
.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  max-width: 720px;
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  margin: 0 0 16px;
  font-size: 1.42rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--navy-deep);
}
.hero-card p { color: var(--muted); margin: 0; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -26px auto 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.metric { padding: 28px 24px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: none; }
.metric strong { display:block; font-size:1.7rem; letter-spacing:-0.04em; color: var(--navy); }
.metric span { display:block; color:var(--muted); font-size:0.95rem; margin-top:4px; }
section { padding: 76px 0; }
.section-head { max-width: 780px; margin-bottom: 34px; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 0 0 18px;
  color: var(--navy-deep);
}
.section-head p { color: var(--muted); font-size: 1.08rem; margin:0; }
.grid {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow: var(--shadow);
}
.card h3 { margin:0 0 12px; font-size:1.12rem; letter-spacing:-0.025em; color:var(--navy-deep); }
.card p { margin:0; color: var(--muted); }
.process {
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
  counter-reset: step;
}
.step {
  background: var(--soft);
  border:1px solid rgba(0,42,102,0.08);
  border-radius:22px;
  padding:24px;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display:inline-flex;
  margin-bottom:24px;
  font-size:0.82rem;
  font-weight:800;
  color:var(--navy);
  letter-spacing:0.08em;
}
.step h3 { margin:0 0 8px; font-size:1rem; color:var(--navy-deep); }
.step p { margin:0; color:var(--muted); font-size:0.96rem; }
.company-box {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.details {
  background: var(--navy-deep);
  color:#fff;
  border-radius:28px;
  padding:34px;
  box-shadow: var(--shadow);
}
.details h2 { margin:0 0 18px; font-size:2rem; letter-spacing:-0.05em; }
.details dl { display:grid; gap:12px; margin:0; }
.details div {
  display:grid;
  grid-template-columns: 150px 1fr;
  gap:16px;
  border-top:1px solid rgba(255,255,255,0.16);
  padding-top:12px;
}
.details dt { color: rgba(255,255,255,0.64); }
.details dd { margin:0; }
.contact {
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:28px;
  box-shadow: var(--shadow);
}
.contact h2 { margin:0 0 12px; font-size:2rem; letter-spacing:-0.05em; color:var(--navy-deep); }
.contact p { margin:0; color:var(--muted); }
footer {
  border-top:1px solid var(--line);
  padding:30px 0;
  color: var(--muted);
  font-size:0.92rem;
  background:#fff;
}
.footer-row {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.language-gate {
  position:fixed;
  inset:0;
  background: rgba(247,249,252,0.96);
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.language-gate.visible { display:flex; }
.language-box {
  width:min(620px, 100%);
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}
.language-box h1 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  margin-bottom:18px;
  color:var(--navy-deep);
}
.language-box p { color:var(--muted); margin:0 0 26px; }
.lang-choice { display:flex; gap:10px; flex-wrap:wrap; }
@media (max-width: 920px) {
  nav { flex-wrap: wrap; justify-content: flex-end; }
  .nav { align-items:flex-start; padding:16px 0; }
}
@media (max-width: 860px) {
  .brand img { width: min(230px, 54vw); }
  nav a:not(.button) { display:none; }
  .hero, .company-box, .metrics, .grid, .process { grid-template-columns:1fr; }
  .metric { border-right:none; border-bottom:1px solid var(--line); }
  .metric:last-child { border-bottom:none; }
  .details div { grid-template-columns:1fr; gap:2px; }
  section { padding:54px 0; }
  .hero { padding:72px 0 64px; }
}


.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 6vw, 48px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 760;
  color: var(--navy-deep);
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(0, 42, 102, 0.16);
  border-color: var(--navy);
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.notice {
  background: var(--soft);
  border: 1px solid rgba(0,42,102,0.08);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
