:root {
  --navy: #011640;
  --navy-2: #0a2a5c;
  --red: #e83338;
  --sky: #b6d5f2;
  --ink: #1c2430;
  --muted: #5b6777;
  --bg: #f6f8fb;
  --white: #fff;
  --max: 1120px;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(1, 22, 64, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Lato", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e7edf5;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
.logo img { height: 46px; width: auto; }
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.nav a { color: var(--navy); }
.nav a.active, .nav a:hover { color: var(--red); }
.nav .btn {
  background: var(--red);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 999px;
}
.nav .lang-switch {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 2px;
}
.nav .lang-switch svg {
  display: block;
  width: 26px;
  height: 16px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(1, 22, 64, .18);
}
.nav .lang-switch:hover svg,
.nav .lang-switch:focus-visible svg {
  box-shadow: 0 0 0 2px var(--red);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy) center/cover no-repeat;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,22,64,.35), rgba(1,22,64,.7));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 0 0 12px;
}
.hero p { font-size: 1.2rem; opacity: .95; margin: 0 0 24px; }
.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 72px 0 48px;
  text-align: center;
}
.page-hero h1 { margin: 0 0 8px; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero p { margin: 0; opacity: .85; }

.section { padding: 72px 0; }
.section.alt { background: var(--bg); }
.section.navy { background: var(--navy); color: #fff; }
.section.sky { background: var(--sky); color: var(--navy); }
.center { text-align: center; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 760px; margin: 0 auto 28px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 16px; color: var(--navy); }
h3 { color: var(--navy); }
.section.navy h2, .section.navy h3 { color: #fff; }

.grid-3, .grid-4, .grid-5, .grid-2 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card, .feature, .stat, .faq details {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card { padding: 28px; }
.feature { padding: 28px; color: #fff; text-align: center; }
.feature h3,
.feature p { color: #fff; }
.feature h3 { margin: 0 0 8px; }
.feature p { margin: 0; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  font-size: 1.85rem;
  color: #fff;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
}
.feature.red { background: var(--red); }
.feature.navy { background: var(--navy); }
.feature.sky { background: #6aa8d8; }
.stat {
  padding: 22px 16px;
  text-align: center;
}
.stat strong { display: block; font-size: 1.15rem; color: var(--navy); }
.stat span { color: var(--muted); font-size: .95rem; }

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.btn.ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}
.btn:hover { filter: brightness(1.05); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery a, .gallery img, .gallery picture {
  border-radius: 10px;
  overflow: hidden;
}
.gallery picture { display: block; }
.gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.slider img,
.slider picture img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.slider picture { display: block; }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 7px 0 7px 28px; position: relative; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.info-block { margin-bottom: 34px; }
.info-block h3 { margin-bottom: 8px; }

.faq details { padding: 16px 20px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.faq details + details { margin-top: 12px; }

form {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
label { font-weight: 700; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d5deea;
  border-radius: 10px;
  font: inherit;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 6px 0 0;
}
.recaptcha-error {
  color: var(--red);
  font-size: .92rem;
  margin: 0;
}
.recaptcha-note {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
  margin: 0;
}
.recaptcha-note a { color: var(--navy); }
.legal { font-size: .98rem; }
.legal h2, .legal h3 { margin-top: 1.4em; }
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  margin: 16px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed {
  position: relative;
  margin: 8px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: min(70vh, 480px);
}
.map {
  display: block;
  width: 100%;
  height: min(70vh, 480px);
  border: 0;
}

.site-footer {
  background: var(--navy);
  color: #d5e4f5;
  padding: 48px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.site-footer a { color: #fff; }
.site-footer h3 { color: #fff; margin-top: 0; }
.copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 16px; font-size: .9rem; }
.copy .cookie-open {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #011640;
  color: #fff;
  box-shadow: 0 -12px 40px rgba(1, 22, 64, .28);
  padding: 18px 20px;
}
.cookie-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p { margin: 6px 0 0; font-size: .92rem; color: #d5e4f5; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn.ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
  padding: 10px 16px;
}
.consent-placeholder {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  background: #0a2a5c;
  color: #fff;
  border-radius: 12px;
  padding: 28px 18px;
  min-height: 180px;
}
.consent-placeholder p { margin: 0; max-width: 420px; }
.video-wrap .consent-placeholder,
.map-embed .consent-placeholder {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: 0;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 82px;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid #e7edf5;
  }
  .nav.open { display: flex; }
  .nav .lang-switch svg {
    width: 32px;
    height: 19px;
  }
  .grid-3, .grid-4, .grid-5, .grid-2, .gallery, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .gallery img { height: 220px; }
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions { flex-wrap: wrap; }
}
