:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --text: #1a2633;
  --text-muted: #5a6a7a;
  --line: #d7e0ea;
  --header-bg: rgba(9, 26, 43, 0.92);
  --header-text: #f4f8fc;
  --accent: #1f6f8b;
  --accent-strong: #124b63;
  --focus: #0f7fb0;
  --ok: #1f7a49;
  --warn: #7a2b1f;
  --radius: 14px;
  --shadow: 0 14px 32px rgba(15, 33, 53, 0.12);
  --max: 1120px;
  --font-main: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at 95% -10%, rgba(31, 111, 139, 0.15), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(18, 75, 99, 0.1), transparent 38%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 500;
  background: #ffffff;
  color: #000000;
  padding: 8px 12px;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--header-bg);
  color: var(--header-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: clamp(158px, 18vw, 210px);
  max-width: 48vw;
  display: block;
}

.brand .brand-avatar {
  width: clamp(42px, 5vw, 50px);
  height: clamp(42px, 5vw, 50px);
  max-width: none;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: #17304b;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 6px;
  transition: 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 2px);
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  gap: 3px;
  padding: 12px;
  border-radius: var(--radius);
  background: #0f2338;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #f0f5fa;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(147, 190, 219, 0.18);
  color: #ffffff;
}

.header-right {
  display: none;
}

.header-right > a {
  font-weight: 600;
  font-size: 14px;
  color: #e6f2ff;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch a,
.lang-switch span {
  min-width: 34px;
  text-align: center;
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.lang-switch .is-active {
  background: #ffffff;
  color: #123149;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link img {
  width: 19px;
  height: 19px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-1px);
}

.site-header .social-link img {
  filter: brightness(0) invert(1);
}

.page {
  padding: 42px 0 78px;
}

.hero {
  display: grid;
  gap: 24px;
  align-items: center;
  background: linear-gradient(155deg, #0f2135 0%, #16324c 58%, #1b4a61 100%);
  color: #f3f8fc;
  border-radius: 20px;
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.hero > div:first-child {
  display: grid;
  align-content: start;
  gap: 14px;
}

.hero h1 {
  margin: 0;
  line-height: 1.14;
  font-size: clamp(30px, 5vw, 48px);
}

.hero p {
  margin: 0;
  color: #d1dde8;
}

.hero-meta {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 15px;
}

.hero-meta strong {
  line-height: 1.45;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(145deg, #2a8ab0, #1b6480);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.btn-light {
  background: #ffffff;
  border-color: #d8e2ec;
  color: #0f2a40;
}

.section {
  margin-top: 36px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
}

.section .lead {
  color: var(--text-muted);
  max-width: 76ch;
}

.card-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 16px rgba(15, 33, 53, 0.06);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.card p,
.card li {
  margin: 0;
  color: var(--text-muted);
}

.steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.audience {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.audience-item {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px;
  font-weight: 600;
}

.contact-panel {
  background: #f0f5fb;
  border: 1px solid #d3e0ee;
  border-radius: 18px;
  padding: 20px;
}

.contact-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
}

.contact-list img {
  width: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.contact-list span,
.contact-list a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.form-wrap {
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.form-row {
  display: grid;
  gap: 12px;
}

.form-row.two {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 5px;
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  border: 1px solid #b8c7d7;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

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

.checkbox-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
}

.checkbox-row input {
  margin-top: 3px;
}

.form-note {
  font-size: 13px;
  color: #66788a;
}

.form-status {
  margin-top: 10px;
  padding: 12px;
  border-radius: 10px;
  display: none;
  font-weight: 600;
}

.form-status.success {
  background: #e8f6ee;
  color: var(--ok);
  border: 1px solid #b7e4c6;
  display: block;
}

.form-status.error {
  background: #fdecea;
  color: var(--warn);
  border: 1px solid #f3c1b8;
  display: block;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.legal-content {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  gap: 14px;
}

.legal-content h2,
.legal-content h3 {
  margin: 0;
}

.legal-content p,
.legal-content li {
  margin: 0;
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.site-footer {
  margin-top: 52px;
  background: #0e2236;
  color: #d3dce8;
  padding: 38px 0 22px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand img {
  width: 176px;
  margin-bottom: 8px;
}

.footer-brand .footer-avatar {
  width: 64px;
  height: 64px;
  max-width: none;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.34);
}

.footer-brand p,
.footer-links a,
.footer-legal a {
  color: #d3dce8;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.6;
}

.footer-links,
.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links li,
.footer-legal li {
  margin: 0;
  line-height: 1.5;
}

.footer-links li strong,
.footer-legal li strong {
  display: block;
  margin-bottom: 4px;
  color: #f1f6fb;
  letter-spacing: 0.01em;
}

.footer-links a,
.footer-legal a {
  display: inline-block;
}

.footer-social {
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #a9bbcc;
}

.footer-social-links {
  display: grid;
  gap: 6px;
}

.footer-note {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: #9fb1c3;
}

.footer-attribution {
  margin-top: 8px;
  font-size: 12px;
  color: #8ea7be;
}

.footer-attribution a {
  color: #bdd7ee;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 210;
  background: #0f2236;
  color: #e6eef7;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 16px;
  box-shadow: var(--shadow);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  color: #e6eef7;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .primary {
  background: linear-gradient(145deg, #2a8ab0, #1b6480);
  border-color: transparent;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 30, 0.62);
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-overlay.show {
  display: flex;
}

.cookie-modal {
  width: min(100%, 640px);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #c8d7e7;
  padding: 18px;
  box-shadow: var(--shadow);
}

.cookie-modal h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.cookie-block {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px;
  background: #f7fafc;
}

.cookie-block strong {
  display: block;
}

.cookie-check {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-muted);
}

.cookie-check input {
  margin-top: 3px;
}

.cookie-close {
  float: right;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.chat-launcher {
  position: fixed;
  right: 16px;
  bottom: 104px;
  z-index: 200;
}

.chat-button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, #2a8ab0, #1b6480);
  color: #ffffff;
  padding: 11px 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(17, 70, 94, 0.35);
  cursor: pointer;
}

.chat-button img {
  width: 18px;
}

.chat-panel {
  margin-top: 8px;
  width: min(320px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid #c9d8e8;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: none;
}

.chat-panel.show {
  display: block;
}

.chat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.chat-top h3 {
  margin: 0;
  font-size: 17px;
}

.chat-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.chat-panel p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.chat-panel .btn {
  margin-top: 12px;
  width: 100%;
}

.link-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 2px;
    flex-wrap: wrap;
    align-items: center;
    max-width: calc(100% - 520px);
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 14px;
  }

  .site-nav .mobile-only {
    display: none;
  }

  .header-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1.2fr 1fr;
  }

  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    column-gap: 30px;
  }

  .cookie-banner {
    left: auto;
    width: min(560px, calc(100vw - 24px));
  }
}

@media (max-width: 899px) {
  .site-footer {
    padding: 34px 0 20px;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-links,
  .footer-legal {
    gap: 8px;
  }

  .footer-note {
    margin-top: 16px;
  }

  .hero {
    padding: 24px 20px 28px;
    gap: 20px;
  }

  .hero > div:first-child {
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.18;
  }

  .hero p {
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-width: 160px;
  }

  .hero-meta {
    gap: 8px;
    font-size: 14px;
  }

  .site-nav .mobile-only {
    display: block;
  }

  .chat-launcher {
    right: 12px;
    bottom: 84px;
  }
}
