:root {
  --navy: #0a2540;
  --navy-deep: #06182b;
  --blue: #0b3d91;
  --blue-mid: #1565c0;
  --blue-soft: #e8f1fb;
  --sky: #4c8dff;
  --red: #e31c23;
  --gold: #f4c430;
  --text: #122033;
  --muted: #5b6b7c;
  --line: rgba(10, 37, 64, 0.1);
  --bg: #f6f8fb;
  --white: #ffffff;
  --max: 1140px;
  --header-h: 4.5rem;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(10, 37, 64, 0.1);
  --font: "Source Sans 3", "Noto Sans SC", sans-serif;
  --display: "Outfit", "Noto Sans SC", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #0b3d91;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--navy);
}

.logo-text span {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  border-radius: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--blue-mid);
}

.nav-order {
  background: var(--blue);
  color: #fff !important;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}

.nav-order:hover { background: var(--navy); color: #fff !important; }

.lang-switch {
  display: none;
}

.lang-switch.is-enabled {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 700;
}

.lang-switch button {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
}

.lang-switch button.is-active {
  background: var(--blue);
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 24, 43, 0.86) 0%, rgba(6, 24, 43, 0.45) 62%, rgba(6, 24, 43, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 38rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.6rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover { background: #c4181e; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section { padding: 4.5rem 0; }

.section-head {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin: 0.35rem 0 0.7rem;
}

.section-head p,
.muted { color: var(--muted); }

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 1.15rem;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card,
.stat,
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.card h3,
.stat strong,
.step h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.stat {
  text-align: left;
}

.stat em {
  font-style: normal;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--blue);
  display: block;
  margin-bottom: 0.25rem;
}

.photo-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(6, 24, 43, 0.72);
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.steps { counter-reset: step; }
.step { position: relative; padding-left: 3.4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.25rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.band {
  background: linear-gradient(120deg, var(--navy-deep), var(--blue));
  color: #fff;
}

.band .section-head h2,
.band .section-head p { color: #fff; }
.band .section-head p { color: rgba(255, 255, 255, 0.78); }

.page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 43, 0.25), rgba(6, 24, 43, 0.78));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 5rem 0 2.4rem;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.3rem 0 0.6rem; }

.contact-box {
  display: grid;
  gap: 0.85rem;
}

.contact-box a { color: var(--blue); font-weight: 700; }
.contact-box dt { color: var(--muted); font-size: 0.85rem; font-weight: 700; }
.contact-box dd { margin: 0.15rem 0 0; color: var(--navy); }

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.6rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.site-footer .logo-text strong,
.site-footer h3 { color: #fff; }
.site-footer .logo-text span { color: rgba(255, 255, 255, 0.65); }
.site-footer a:hover { color: #fff; }
.site-footer .logo { margin-bottom: 0.8rem; }

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .split,
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.3rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .grid-4,
  .grid-2 { grid-template-columns: 1fr; }
  .hero-content { padding: 4.2rem 0 2.8rem; }
}
