/* ==========================================================================
   PrimeKey — design tokens
   ========================================================================== */
:root {
  --navy-900: #0a141f;
  --navy: #0d1b2a;
  --navy-700: #17293d;
  --navy-600: #223752;
  --gold: #c9a24b;
  --gold-light: #e0c07f;
  --gold-tint: #f6efe0;
  --white: #ffffff;
  --cream: #faf9f6;
  --gray-light: #f4f5f7;
  --border: #e5e3dc;
  --slate: #5b6472;
  --slate-dark: #333c48;

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Lato", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 4px;
  --shadow-soft: 0 10px 40px rgba(13, 27, 42, 0.08);
  --shadow-lift: 0 20px 50px rgba(13, 27, 42, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
svg { display: block; }

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { color: var(--slate); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.68); }
.section--gray { background: var(--gray-light); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.05rem; margin-top: 14px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-light); box-shadow: 0 14px 30px rgba(201, 162, 75, 0.35); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(13,27,42,0.25);
}
.btn--outline-dark:hover { border-color: var(--navy); background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn--block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(10, 20, 31, 0.94);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(5, 10, 16, 0.25);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 34px; height: auto; }
.brand__word {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.14em;
  color: var(--white);
  font-weight: 500;
}
.brand__word b { color: var(--gold); font-weight: 600; }

.nav-main { display: flex; align-items: center; gap: 40px; }
.nav-main__list { display: flex; gap: 34px; }
.nav-main__list a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 4px;
}
.nav-main__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-main__list a:hover { color: var(--white); }
.nav-main__list a:hover::after { right: 0; }
.nav-main__list a.is-active { color: var(--gold); }
.nav-main__list a.is-active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.lang-switch { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); }
.lang-switch button { color: rgba(255,255,255,0.6); padding: 2px 4px; }
.lang-switch button.is-active { color: var(--gold); font-weight: 600; }
.lang-switch span { color: rgba(255,255,255,0.3); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy) 55%, var(--navy-600) 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 120px;
}

.hero__route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero__content { position: relative; z-index: 2; max-width: 660px; }
.hero__content h1 { color: var(--white); }
.hero__content h1 em { font-style: normal; color: var(--gold); }
.hero__content p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-top: 22px; max-width: 520px; }
.hero__actions { display: flex; gap: 18px; margin-top: 38px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--gold), transparent);
}

/* ==========================================================================
   Stat / feature strip
   ========================================================================== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: -78px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lift);
}
.feature-card {
  background: var(--white);
  padding: 38px 34px;
  display: flex;
  gap: 18px;
}
.feature-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__icon svg { width: 24px; height: 24px; stroke: var(--navy); }
.feature-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.92rem; }

/* ==========================================================================
   Two-col intro / generic content blocks
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.checklist { display: grid; gap: 14px; margin-top: 28px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--slate-dark); }
.checklist svg { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--gold); margin-top: 2px; }

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.1;
}
.media-frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events: none;
}
.media-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background:
    linear-gradient(155deg, var(--navy) 0%, var(--navy-600) 100%);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 20px;
}
.media-placeholder svg { width: 34px; height: 34px; stroke: var(--gold); opacity: 0.9; }
.media-placeholder span { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.media-placeholder small { font-size: 0.78rem; color: rgba(255,255,255,0.4); max-width: 220px; }

/* ==========================================================================
   Key-tooth divider (signature motif)
   ========================================================================== */
.key-divider {
  height: 22px;
  width: 100%;
  background-repeat: repeat-x;
  background-size: 44px 22px;
  opacity: 0.9;
}
.key-divider--gold-on-cream {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='22' viewBox='0 0 44 22'%3E%3Cpath d='M0 0h44v6h-8v4h8v4h-8v4h8v4H0z' fill='%23c9a24b' fill-opacity='0.16'/%3E%3C/svg%3E");
}
.key-divider--gold-on-navy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='22' viewBox='0 0 44 22'%3E%3Cpath d='M0 0h44v6h-8v4h8v4h-8v4h8v4H0z' fill='%23c9a24b' fill-opacity='0.22'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Route connector (Prague <-> Manila signature)
   ========================================================================== */
.route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin: 56px 0;
}
.route__node { text-align: center; }
.route__node .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 14px;
  box-shadow: 0 0 0 6px var(--gold-tint);
}
.route__node span { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
.route__node small { display: block; margin-top: 4px; font-size: 0.82rem; color: var(--slate); }
.route__line { position: relative; width: 100%; min-width: 80px; }
.route__line svg { width: 100%; height: 30px; overflow: visible; }
.route__line path { stroke: var(--gold); stroke-width: 2; fill: none; stroke-dasharray: 5 7; stroke-linecap: round; }
.route__plane { width: 18px; height: 18px; stroke: var(--gold); }

/* ==========================================================================
   Cards
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.card__icon { width: 46px; height: 46px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; background: var(--gold-tint); border-radius: 50%; }
.card__icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

.value-card { text-align: center; padding: 40px 28px; }
.value-card .card__icon { margin-inline: auto; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.process { counter-reset: step; margin-top: 20px; }
.process__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.process__item:last-child { border-bottom: 1px solid var(--border); }
.process__num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.process__body h3 { margin-bottom: 8px; }
.process__body p { max-width: 620px; }

/* ==========================================================================
   Split CTA (Pro firmy / Pro uchazeče)
   ========================================================================== */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border: 1px solid var(--border); }
.audience-card {
  background: var(--navy);
  color: var(--white);
  padding: 60px 50px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.audience-card:nth-child(2) { background: var(--navy-700); }
.audience-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,162,75,0.18), transparent 70%);
}
.audience-card .eyebrow { color: var(--gold); }
.audience-card h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 12px; }
.audience-card p { color: rgba(255,255,255,0.68); margin-bottom: 26px; max-width: 380px; }

/* ==========================================================================
   Logos / references strip
   ========================================================================== */
.logo-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.logo-chip {
  background: var(--white);
  min-height: 96px;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px dashed transparent;
}
.logo-chip span { border: 1px dashed var(--border); padding: 8px 14px; border-radius: 3px; color: #9aa1ab; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy);
  font-weight: 500;
}
.faq-item__q svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--gold); transition: transform 0.35s var(--ease); }
.faq-item.is-open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item__a p { padding: 0 4px 24px; max-width: 640px; }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  position: relative;
  padding: 190px 0 90px;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy) 60%, var(--navy-600) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-header .breadcrumb { font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.page-header .breadcrumb a:hover { color: var(--gold); }
.page-header h1 { color: var(--white); max-width: 640px; }
.page-header p { color: rgba(255,255,255,0.66); max-width: 560px; margin-top: 16px; font-size: 1.05rem; }
.page-header__route { position: absolute; inset: 0; opacity: 0.4; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.96rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-tint);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--slate); }
.field-check input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); }
.field-check a { color: var(--navy); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-note { display: none; margin-top: 18px; padding: 14px 18px; border-radius: var(--radius); font-size: 0.9rem; }
.form-note.is-visible { display: block; }
.form-note--success { background: #eaf5ec; color: #285c36; border: 1px solid #c8e6cc; }

.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; margin-bottom: 24px; }
.contact-info-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.contact-info-card h3 svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-info-card dl { display: grid; gap: 10px; font-size: 0.94rem; }
.contact-info-card dt { color: var(--slate); display: inline; }
.contact-info-card dd { display: inline; color: var(--slate-dark); font-weight: 600; }
.contact-info-card .line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.contact-info-card .line:last-child { border-bottom: none; }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); filter: grayscale(0.35) contrast(1.05); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand__word { color: var(--white); }
.footer-brand p { margin-top: 18px; color: rgba(255,255,255,0.5); font-size: 0.92rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .25s ease, background .25s ease; }
.footer-social a:hover { border-color: var(--gold); background: rgba(201,162,75,0.12); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.6); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 0.82rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 22px; }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 24px 26px;
  z-index: 900;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p { font-size: 0.88rem; margin-bottom: 16px; }
.cookie-banner p a { color: var(--navy); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; }
.cookie-banner .btn { padding: 11px 20px; font-size: 0.72rem; }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
  z-index: 400;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; stroke: var(--gold); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-main { position: fixed; inset: 0; top: 0; background: var(--navy-900); flex-direction: column; justify-content: center; align-items: center; gap: 40px; opacity: 0; visibility: hidden; transition: opacity 0.35s ease; z-index: 950; }
  .nav-main.is-open { opacity: 1; visibility: visible; }
  .nav-main__list { flex-direction: column; text-align: center; gap: 26px; }
  .nav-main__list a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  .split, .grid-3, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .split__media { order: -1 !important; }
  .feature-strip { grid-template-columns: 1fr; margin-top: -40px; }
  .audience-grid { grid-template-columns: 1fr; }
  .route { grid-template-columns: 1fr; text-align: center; }
  .route__line { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process__item { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .grid-4, .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .page-header { padding: 150px 0 70px; }
}

@media (max-width: 640px) {
  .header-actions .btn--gold { display: none; }
  .lang-switch { display: none; }
}