/* ===== index_fixed.html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; }

    :root {
      /* Brand */
      --blue: #3e4797;
      --blue-dim: rgba(62,71,151,0.11);
      --blue-glow: rgba(62,71,151,0.22);

      /* Hero / dark */
      --hero-bg: #0f1540;
      --hero-text: #f0ece6;
      --hero-muted: rgba(240,236,230,0.46);
      --border-dark: rgba(255,255,255,0.09);
      --glass-dark: rgba(15,21,64,0.5);

      /* Light sections */
      --bg-light: #f4f6fd;
      --bg-white: #ffffff;
      --text-dark: #111418;
      --text-mid: #4a5260;
      --text-muted: #8a909e;
      --border-light: rgba(0,0,0,0.07);

      /* Cards */
      --card-bg: #1a2060;
      --card-border: rgba(255,255,255,0.055);
      --card-muted: rgba(190,210,225,0.65);
    }

    html { font-size: 17px; }

    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', sans-serif; overflow-x: hidden; background: var(--bg-light); color: var(--text-dark); }

    /* ─────────────────────────────────────────────────────────────
       NAV
    ───────────────────────────────────────────────────────────── */
    nav {
      position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
      width: calc(100% - 48px); max-width: 1160px; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 12px; height: 64px; border-radius: 100px;
      background: var(--glass-dark);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border: 1px solid var(--border-dark);
      box-shadow: 0 4px 32px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
      transition: top 0.35s ease, background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
    }
    nav.scrolled { top: 10px; }
    nav.light {
      background: rgba(244,246,253,0.9);
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 4px 24px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
    }

    .nav-left, .nav-right { display: flex; align-items: center; gap: 2px; flex: 1; }
    .nav-right { justify-content: flex-end; }

    .nav-wordmark {
      display: inline-flex; align-items: center; justify-content: center;
      overflow: hidden;
      text-decoration: none; flex-shrink: 0; white-space: nowrap;
      height: 38px; padding: 0 10px; border-radius: 8px; border: none;
      background: #fff;
      transition: opacity 0.2s;
    }
    nav.light .nav-wordmark { background: transparent; }
    .nav-wordmark:hover { opacity: 0.82; }
    nav.light .nav-wordmark:hover { opacity: 0.82; }

    .nav-link {
      font-size: 0.79rem; font-weight: 500; color: var(--hero-muted);
      text-decoration: none; padding: 8px 13px; border-radius: 100px;
      transition: color 0.2s, background 0.2s; white-space: nowrap;
    }
    nav.light .nav-link { color: var(--text-muted); }
    .nav-link:hover { color: var(--hero-text); background: rgba(255,255,255,0.08); }
    nav.light .nav-link:hover { color: var(--text-dark); background: rgba(0,0,0,0.05); }

    .nav-dropdown { position: relative; }
    .nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; user-select: none; }
    .nav-dropdown-toggle svg { width: 9px; height: 9px; opacity: 0.38; transition: transform 0.25s, opacity 0.2s; }
    .nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); opacity: 0.85; }

    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 12px); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 238px; padding: 6px;
      background: rgba(15,21,64,0.97);
      backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 18px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
      opacity: 0; pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
    }
    nav.light .nav-dropdown-menu {
      background: rgba(255,255,255,0.98);
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    }
    .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .nav-dropdown-menu a {
      display: block; padding: 10px 14px; font-size: 0.78rem; color: rgba(180,200,220,0.8);
      text-decoration: none; border-radius: 12px; transition: background 0.18s, color 0.18s;
    }
    nav.light .nav-dropdown-menu a { color: var(--text-muted); }
    .nav-dropdown-menu a:hover { background: var(--blue-dim); color: var(--blue); }
    .dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 3px 6px; }
    nav.light .dropdown-divider { background: rgba(0,0,0,0.06); }

    .lang-switcher {
      display: flex; align-items: center; gap: 1px;
      margin-left: 8px; padding-left: 12px;
      border-left: 1px solid var(--border-dark);
      transition: border-color 0.45s;
    }
    nav.light .lang-switcher { border-color: rgba(0,0,0,0.1); }
    .lang-btn {
      font-size: 0.67rem; font-weight: 600; letter-spacing: 0.07em;
      color: var(--hero-muted); background: none; border: none; cursor: pointer;
      padding: 5px 8px; border-radius: 100px; font-family: 'Outfit', sans-serif;
      transition: color 0.2s, background 0.2s;
    }
    nav.light .lang-btn { color: var(--text-muted); }
    .lang-btn:hover, .lang-btn.active { color: var(--blue); background: var(--blue-dim); }

    /* ─────────────────────────────────────────────────────────────
       HERO
    ───────────────────────────────────────────────────────────── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden; padding: 0 24px;
      background: var(--hero-bg);
    }

    .hero-video {
      position: absolute; inset: 0; z-index: 0;
      background: radial-gradient(ellipse 110% 70% at 50% -5%, #0f1d6b 0%, #0b1250 50%, #0f1540 100%);
      background-color: #0f1540;
    }
    .hero-video video {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; opacity: 1;
      pointer-events: none; display: block;
    }

    .hero-grain {
      position: absolute; inset: 0; z-index: 1; opacity: 0.04; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .hero-overlay {
      position: absolute; inset: 0; z-index: 2;
      /* Barely-there flat tint — keeps the video clearly visible; text relies on its shadows */
      background: rgba(15, 21, 64, 0.16);
    }

    .hero-content {
      position: relative; z-index: 3; max-width: 1000px;
      display: flex; flex-direction: column; align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 16px;
      font-size: 0.63rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 28px;
      opacity: 0; animation: fadeUp 1s 0.15s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--blue); opacity: 0.3; }

    .hero-prelabel {
      font-size: clamp(0.88rem, 1.7vw, 1.15rem); font-weight: 300; letter-spacing: 0.08em;
      color: var(--hero-muted); margin-bottom: 0;
      opacity: 0; animation: fadeUp 1s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    /* ── Rolling display ── */
    .roll-stage {
      position: relative;
      width: 100%;
      height: clamp(62px, 10vw, 110px);
      overflow: hidden;
      margin-bottom: 36px;
      mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
      opacity: 0; animation: fadeUp 1s 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .roll-track {
      display: flex; flex-direction: column;
      transition: transform 0.72s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .roll-phrase {
      display: flex; align-items: center; justify-content: center;
      height: clamp(62px, 10vw, 110px);
      font-family: 'Outfit', sans-serif;
      font-weight: 300; font-style: normal;
      font-size: clamp(36px, 6.5vw, 64px);
      color: var(--blue);
      line-height: 1; white-space: nowrap; user-select: none; flex-shrink: 0;
      text-shadow: 0 0 80px rgba(62,71,151,0.14);
    }

    .hero-sub {
      font-size: clamp(0.88rem, 1.5vw, 1rem); font-weight: 300;
      color: var(--hero-muted); line-height: 1.82; max-width: 500px; margin-bottom: 52px;
      opacity: 0; animation: fadeUp 1s 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .hero-buttons {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      flex-wrap: nowrap;
      opacity: 0; animation: fadeUp 1s 0.75s cubic-bezier(0.22,1,0.36,1) forwards;
    
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 34px; background: var(--blue); color: #ffffff;
      font-family: 'Outfit', sans-serif; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.06em;
      text-decoration: none; border-radius: 100px;
      box-shadow: 0 4px 22px var(--blue-glow);
      transition: background 0.28s, transform 0.28s, box-shadow 0.28s;
    }
    .btn-primary:hover { background: #6272c9; transform: translateY(-2px); box-shadow: 0 10px 38px rgba(62,71,151,0.35); }
    .btn-primary svg { transition: transform 0.28s; }
    .btn-primary:hover svg { transform: translateX(4px); }

    .btn-ghost-dark {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 34px; background: rgba(255,255,255,0.04); color: var(--hero-text);
      font-family: 'Outfit', sans-serif; font-size: 0.84rem; font-weight: 400; letter-spacing: 0.05em;
      text-decoration: none; border-radius: 100px; border: 1px solid rgba(255,255,255,0.13);
      transition: border-color 0.28s, background 0.28s, transform 0.28s;
    }
    .btn-ghost-dark:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* Ghost button (light sections) */
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 34px; background: rgba(255,255,255,0.6); color: #1a1a1a;
  font-family: 'Outfit', sans-serif; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none; border-radius: 100px; border: 1px solid rgba(0,0,0,0.14);
  transition: border-color 0.28s, background 0.28s, transform 0.28s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(0,0,0,0.18); background: rgba(255,255,255,0.78); transform: translateY(-2px); }

    .hero-scroll {
      position: absolute; bottom: 40px; left: 0; right: 0; margin: 0 auto;
      width: fit-content;
      display: flex; flex-direction: column; align-items: center; gap: 9px; z-index: 3;
      opacity: 0; animation: fadeUp 1s 1s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-scroll span { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--hero-muted); opacity: 0.45; }
    .scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollPulse 2.4s ease-in-out infinite; opacity: 0.55; }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes scrollPulse { 0%,100% { opacity: 0.22; } 50% { opacity: 0.65; } }

    /* ─────────────────────────────────────────────────────────────
       EDITORIAL DIVIDER
    ───────────────────────────────────────────────────────────── */
    .divider {
      position: relative; background: var(--bg-light);
      height: 1px; display: flex; align-items: center; justify-content: center;
    }
    .divider::before {
      content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(62,71,151,0.2) 20%, rgba(62,71,151,0.2) 80%, transparent);
    }
    .divider-mark {
      position: relative; z-index: 1; width: 26px; height: 26px;
      background: var(--bg-light); border: 1px solid rgba(62,71,151,0.28);
      border-radius: 4px; transform: rotate(45deg);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .divider-mark::after {
      content: ''; width: 6px; height: 6px; background: var(--blue);
      border-radius: 50%; transform: rotate(-45deg); opacity: 0.65;
    }

    /* ─────────────────────────────────────────────────────────────
       SERVICES
    ───────────────────────────────────────────────────────────── */
    .services { background: var(--bg-light); padding: 90px 24px 120px; }
    .services-inner { max-width: 1100px; margin: 0 auto; }

    .section-eyebrow {
      display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
    }
    .section-eyebrow span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
    .section-eyebrow::before, .section-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.09); }

    .section-heading {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300; color: var(--text-dark);
      text-align: center; margin-bottom: 64px; line-height: 1.12;
    }
    .section-heading em { font-style: normal; color: var(--blue); }

    /* Bento grid */
    .bento { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 460px 300px; gap: 14px; }
    .card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
    .card:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
    .card:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
    .card:nth-child(4) { grid-column: 3 / 4; grid-row: 2; }

    .card {
      position: relative; border-radius: 20px; overflow: hidden;
      background: var(--card-bg); border: 1px solid var(--card-border);
      cursor: pointer; text-decoration: none; display: block;
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
    }
    .card:nth-child(1) { transition-delay: 0s; }
    .card:nth-child(2) { transition-delay: 0.09s; }
    .card:nth-child(3) { transition-delay: 0.17s; }
    .card:nth-child(4) { transition-delay: 0.24s; }
    .card.visible { opacity: 1; transform: translateY(0); }
    .card.visible:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(0,0,0,0.2); }

    .card-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #1a2060; transition: transform 0.75s cubic-bezier(0.23,1,0.32,1); }
    .card.visible:hover .card-img { transform: scale(1.04); }

    .card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(6,8,14,0.88) 0%, rgba(8,12,22,0.35) 45%, rgba(10,14,28,0.05) 100%);
      transition: background 0.4s;
    }
    .card.visible:hover .card-overlay { background: linear-gradient(to top, rgba(6,8,14,0.92) 0%, rgba(8,12,22,0.5) 55%, rgba(10,14,28,0.12) 100%); }

    /* Gold top-edge sweep on hover */
    .card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), rgba(62,71,151,0.2)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s cubic-bezier(0.23,1,0.32,1); z-index: 2; }
    .card.visible:hover::after { transform: scaleX(1); }

    .card-number { position: absolute; top: 20px; right: 22px; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; color: rgba(255,255,255,0.14); z-index: 2; }

    .card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 1; }

    .card-tag { display: inline-block; font-size: 0.71rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; opacity: 0.85; }

    .card-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 400; color: #eef2f7; line-height: 1.18; margin-bottom: 10px;
    }
    .card:nth-child(1) .card-title { font-size: 2rem; }
    .card:nth-child(n+2) .card-title { font-size: 1.3rem; }

    .card-desc { font-size: 0.79rem; font-weight: 300; color: var(--card-muted); line-height: 1.7; margin-bottom: 18px; max-width: 420px; }
    .card:nth-child(n+2) .card-desc { font-size: 0.76rem; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    .card-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; color: var(--blue); text-decoration: none; opacity: 0.85; transition: gap 0.25s, opacity 0.25s; }
    .card.visible:hover .card-link { gap: 11px; opacity: 1; }
    .card-link svg { transition: transform 0.25s; flex-shrink: 0; }
    .card.visible:hover .card-link svg { transform: translateX(3px); }

    /* ─────────────────────────────────────────────────────────────
       ABOUT
    ───────────────────────────────────────────────────────────── */
    .about { background: var(--bg-white); padding: 120px 24px; }
    .about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }

    /* Photo collage */
    .collage { position: relative; height: 520px; }
    .collage::before { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(62,71,151,0.07) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(50px); z-index: 0; }

    .collage-photo { position: absolute; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
    .collage-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .collage-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(62,71,151,0.06) 0%, transparent 60%); pointer-events: none; }
    .collage-photo:nth-child(1) { width: 66%; height: 60%; top: 0; left: 0; transform: rotate(-3deg); z-index: 1; }
    .collage-photo:nth-child(2) { width: 58%; height: 54%; bottom: 20px; right: 0; transform: rotate(2.5deg); z-index: 2; }
    .collage-photo:nth-child(3) { width: 40%; height: 38%; top: 50%; left: 24%; transform: translateY(-50%) rotate(-1deg); z-index: 3; box-shadow: 0 24px 60px rgba(0,0,0,0.16); }

    .collage-badge {
      position: absolute; bottom: 0; left: 0; z-index: 4;
      background: var(--blue); color: #ffffff;
      border-radius: 14px; padding: 14px 20px;
      display: flex; flex-direction: column; gap: 3px;
      box-shadow: 0 12px 32px rgba(62,71,151,0.3);
    }
    .badge-number { font-family: 'Outfit', sans-serif; font-size: 1.9rem; font-weight: 400; line-height: 1; }
    .badge-label { font-size: 0.61rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }

    /* About text */
    .about-text { display: flex; flex-direction: column; }

    /* .about-eyebrow defined globally below */

    .about-heading {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.14;
      color: var(--text-dark); margin-bottom: 24px;
    }
    .about-heading em { font-style: normal; color: var(--blue); }

    .about-body { font-size: 0.93rem; font-weight: 300; color: var(--text-mid); line-height: 1.84; margin-bottom: 40px; }
    .about-body p + p { margin-top: 14px; }

    .stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border-light); border-radius: 16px; overflow: hidden; margin-bottom: 40px; }
    .stat { padding: 22px 18px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--border-light); }
    .stat:last-child { border-right: none; }
    .stat-number { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 400; color: var(--blue); line-height: 1; }
    .stat-label { font-size: 0.71rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.04em; line-height: 1.4; }

    .btn-dark {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 34px; background: var(--text-dark); color: #fff;
      font-family: 'Outfit', sans-serif; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.05em;
      text-decoration: none; border-radius: 100px; align-self: flex-start;
      transition: background 0.28s, transform 0.28s, box-shadow 0.28s;
    }
    .btn-dark:hover { background: #252c38; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.14); }
    .btn-dark svg { transition: transform 0.28s; }
    .btn-dark:hover svg { transform: translateX(4px); }

    /* ─────────────────────────────────────────────────────────────
       HAMBURGER BUTTON
    ───────────────────────────────────────────────────────────── */
    .nav-hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      width: 40px; height: 40px; border-radius: 100px;
      background: none; border: 1px solid var(--border-dark);
      cursor: pointer; gap: 5px; padding: 0;
      transition: background 0.2s, border-color 0.4s;
      flex-shrink: 0;
    }
    nav.light .nav-hamburger { border-color: rgba(0,0,0,0.12); }
    .nav-hamburger:hover { background: rgba(255,255,255,0.07); }
    nav.light .nav-hamburger:hover { background: rgba(0,0,0,0.05); }

    .nav-hamburger span {
      display: block; width: 16px; height: 1.5px;
      background: var(--hero-text); border-radius: 2px;
      transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.2s, background 0.4s;
      transform-origin: center;
    }
    nav.light .nav-hamburger span { background: var(--text-dark); }

    /* X state */
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ─────────────────────────────────────────────────────────────
       MOBILE LANG — always visible in pill on mobile
    ───────────────────────────────────────────────────────────── */
    .nav-lang-mobile {
      display: none;
      align-items: center; gap: 1px;
    }
    .nav-lang-mobile .lang-btn { font-size: 0.65rem; }

    /* ─────────────────────────────────────────────────────────────
       SLIDE-IN DRAWER
    ───────────────────────────────────────────────────────────── */
    .drawer-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 90;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .drawer-overlay.visible {
      display: block;
      opacity: 1;
      pointer-events: auto;
    }

    .drawer {
      position: fixed;
      top: 90px; /* starts below the floating navbar pill */
      right: 0; bottom: 0; z-index: 95;
      width: min(320px, 85vw);
      background: #141840;
      border-left: 1px solid rgba(255,255,255,0.07);
      border-top: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px 0 0 0;
      box-shadow: -20px 0 60px rgba(0,0,0,0.5);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
      display: flex; flex-direction: column;
      padding: 0;
      overflow-y: auto;
    }
    .drawer.open { transform: translateX(0); }

    /* Drawer header — removed, no longer needed */

    /* Override global nav styles inside drawer */
    .drawer-nav {
      padding: 16px 20px 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      /* Reset inherited nav styles */
      position: static;
      top: auto; left: auto; transform: none;
      width: auto; max-width: none;
      height: auto; border-radius: 0;
      background: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border: none;
      box-shadow: none;
      text-align: center;
    }

    .drawer-link {
      display: block;
      padding: 13px 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 0 18px rgba(255,255,255,0.15);
      text-decoration: none;
      line-height: 1;
      transition: color 0.2s, text-shadow 0.2s;
      white-space: nowrap;
    }
    .drawer-link:hover {
      color: var(--blue);
      text-shadow: 0 0 28px rgba(62,71,151,0.5);
      background: none;
    }

    /* Services submenu toggle */
    .drawer-submenu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 13px 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 0 18px rgba(255,255,255,0.15);
      background: none; border: none; cursor: pointer;
      line-height: 1;
      text-align: center;
      transition: color 0.2s, text-shadow 0.2s;
    }
    .drawer-submenu-toggle:hover {
      color: var(--blue);
      text-shadow: 0 0 28px rgba(62,71,151,0.5);
      background: none;
    }
    .drawer-submenu-toggle svg {
      width: 11px; height: 11px;
      stroke: currentColor; opacity: 0.6;
      transition: transform 0.28s ease;
      flex-shrink: 0;
    }
    .drawer-submenu-toggle.open { color: var(--blue); text-shadow: 0 0 28px rgba(62,71,151,0.5); }
    .drawer-submenu-toggle.open svg { transform: rotate(180deg); }

    .drawer-submenu {
      overflow: hidden;
      max-height: 0;
      width: 100%;
      transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1);
      text-align: center;
    }
    .drawer-submenu.open { max-height: 320px; }
    .drawer-submenu a {
      display: block; padding: 9px 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.72rem; font-weight: 400;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.72); text-decoration: none;
      transition: color 0.18s;
    }
    .drawer-submenu a:hover { color: var(--blue); background: none; }

    .drawer-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 24px; width: calc(100% - 48px); }

    /* Drawer footer — contact CTA */
    .drawer-footer {
      padding: 20px 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: auto;
    }
    .drawer-cta {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 14px;
      background: var(--blue); color: #ffffff;
      font-family: 'Outfit', sans-serif; font-size: 0.84rem; font-weight: 600;
      letter-spacing: 0.06em; text-decoration: none; border-radius: 100px;
      transition: background 0.28s;
    }
    .drawer-cta:hover { background: #6272c9; }

    /* ─────────────────────────────────────────────────────────────
       HOW IT WORKS
    ───────────────────────────────────────────────────────────── */
    .how {
      background: #ffffff;
      padding: 110px 24px 130px;
      position: relative;
      overflow: hidden;
    }
    /* Subtle texture */
    .how::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(62,71,151,0.05) 0%, transparent 65%);
      pointer-events: none;
    }

    .how-inner { max-width: 1100px; margin: 0 auto; }

    .how-eyebrow span { color: var(--blue) !important; }
    .section-eyebrow.how-eyebrow::before,
    .section-eyebrow.how-eyebrow::after { background: rgba(62,71,151,0.2) !important; }

    .how-heading { color: var(--text-dark) !important; }
    .how-heading em { color: var(--blue) !important; font-style: normal; }

    /* Steps row */
    .how-steps {
      display: flex;
      align-items: flex-start;
      gap: 0;
      margin-top: 70px;
    }

    .how-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
    }
    .how-step.visible { opacity: 1; transform: translateY(0); }
    .how-step:nth-child(1) { transition-delay: 0s; }
    .how-step:nth-child(3) { transition-delay: 0.12s; }
    .how-step:nth-child(5) { transition-delay: 0.24s; }
    .how-step:nth-child(7) { transition-delay: 0.36s; }

    /* Large step number */
    .how-step-num {
      font-family: 'Outfit', sans-serif;
      font-size: 3.5rem; font-weight: 400;
      color: var(--blue);
      line-height: 1;
      opacity: 0.25;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    /* Vertical gold line below number */
    .how-step-line {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, var(--blue), rgba(62,71,151,0.2));
      margin-bottom: 16px;
      opacity: 0.5;
    }

    .how-step-body { padding: 0 16px; }

    .how-step-title {
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .how-step-desc {
      font-size: 0.8rem; font-weight: 300;
      color: var(--text-mid);
      line-height: 1.78;
    }

    /* Horizontal connector between steps */
    .how-connector {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 26px; /* align with number midpoint */
      flex-shrink: 0;
      width: 48px;
    }
    .how-connector-line {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, rgba(62,71,151,0.35), rgba(62,71,151,0.35));
    }
    .how-connector-diamond {
      width: 7px; height: 7px;
      background: var(--blue);
      transform: rotate(45deg);
      margin-top: -4px;
      opacity: 0.7;
      flex-shrink: 0;
    }

    /* ─────────────────────────────────────────────────────────────
       LOGOS MARQUEE
    ───────────────────────────────────────────────────────────── */
    .logos {
      background: var(--bg-light);
      padding: 56px 0 60px;
      overflow: hidden;
    }

    .logos-eyebrow {
      text-align: center;
      margin-bottom: 32px;
    }
    .logos-eyebrow span {
      font-size: 0.63rem; font-weight: 600; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--blue);
    }

    .logos-track-wrap {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
      mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    }

    .logos-track {
      display: flex;
      align-items: center;
      gap: 48px;
      width: max-content;
      animation: marquee 18s linear infinite;
    }
    .logos-track:hover { animation-play-state: paused; }

    .logo-item {
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
      opacity: 0.6;
      transition: opacity 0.25s, color 0.25s;
      cursor: default;
      padding: 4px 0;
    }
    .logo-item:hover { opacity: 1; color: var(--text-dark); }

    /* Dot separator between logos */
    .logo-item::after {
      content: '◆';
      margin-left: 48px;
      font-size: 0.4rem;
      color: var(--blue);
      opacity: 0.4;
      vertical-align: middle;
    }
    .logo-item:last-child::after { display: none; }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─────────────────────────────────────────────────────────────
       CTA BANNER
    ───────────────────────────────────────────────────────────── */
    .cta-banner {
      position: relative;
      background: #3e4797;
      padding: 100px 24px;
      overflow: hidden;
    }

    .cta-banner-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 80% at 10% 50%, rgba(62,71,151,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 90% 30%, rgba(62,71,151,0.05) 0%, transparent 55%);
      pointer-events: none;
    }
    .cta-grain {
      position: absolute; inset: 0; opacity: 0.035; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* Gold top border accent */
    .cta-banner::before {
      content: '';
      position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(62,71,151,0.4), transparent);
    }

    .cta-inner {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center;
      justify-content: space-between; gap: 60px;
    }

    .cta-eyebrow {
      font-size: 0.63rem; font-weight: 600; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 16px;
    }

    .cta-heading {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 400; color: #f0ece6;
      line-height: 1.1; margin-bottom: 16px;
    }
    .cta-heading em { font-style: normal; color: var(--blue); }

    .cta-sub {
      font-size: 0.88rem; font-weight: 300;
      color: rgba(240,236,230,0.42);
      letter-spacing: 0.02em;
    }

    .cta-actions {
      display: flex; flex-direction: column;
      align-items: flex-start; gap: 14px;
      flex-shrink: 0;
    }

    .cta-btn {
      white-space: nowrap;
      padding: 18px 48px;
      font-size: 0.92rem;
    }

    .cta-contacts {
      display: flex; flex-direction: row; align-items: center;
      gap: 28px; flex-wrap: wrap;
    }
    .cta-phone, .cta-email {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
      color: rgba(240,236,230,0.45);
      text-decoration: none;
      transition: color 0.25s;
      padding: 4px 0;
    }
    .cta-phone:hover, .cta-email:hover { color: var(--blue); }
    .cta-phone svg, .cta-email svg { stroke: currentColor; flex-shrink: 0; }

    /* ─────────────────────────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      /* Nav pill */
      nav { width: calc(100% - 24px); padding: 0 10px 0 14px; }
      .nav-left { display: none; }
      .nav-right .nav-link { display: none; }
      .lang-switcher { display: none; }
      .nav-lang-mobile { display: flex; }
      .nav-hamburger { display: flex; }
      

      /* Bento */
      .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
      .card:nth-child(1),.card:nth-child(2),.card:nth-child(3),.card:nth-child(4) { grid-column: 1; grid-row: auto; min-height: 300px; }
      .card:nth-child(1) { min-height: 420px; }

      /* About */
      .about-inner { grid-template-columns: 1fr; gap: 60px; }
      .collage { height: 380px; }

      /* Logos: faster + tighter on mobile */
      .logos-track { gap: 32px; animation-duration: 12s; }
      .logo-item::after { margin-left: 32px; }

      /* How it works */
      .how-steps { flex-direction: column; align-items: stretch; gap: 0; }
      .how-connector { flex-direction: row; width: auto; padding-top: 0; padding-left: 26px; height: 40px; }
      .how-connector-line { width: 1px; height: 100%; }
      .how-connector-diamond { margin-top: 0; margin-left: -4px; }
      .how-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; }
      .how-step-num { font-size: 2.4rem; min-width: 52px; }
      .how-step-line { display: none; }
      .how-step-body { padding: 0; padding-top: 4px; }

      /* CTA */
      .cta-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
      .cta-actions { flex-direction: row; flex-wrap: wrap; }
      .cta-contacts { flex-direction: column; gap: 12px; }
    }

    /* ─────────────────────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────────────────────── */
    .footer {
      background: #0d1035;
      padding: 80px 24px 0;
      position: relative;
      overflow: hidden;
    }

    /* Top gold accent line */
    .footer::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent 0%, rgba(62,71,151,0.5) 30%, rgba(62,71,151,0.5) 70%, transparent 100%);
    }

    /* Subtle background glow */
    .footer::after {
      content: '';
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(62,71,151,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .footer-inner {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    /* Brand column */
    .footer-brand {}

    .footer-logo {
      display: inline-flex; align-items: center;
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: #f0ece6;
      text-decoration: none;
      padding: 9px 20px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 22px;
      transition: border-color 0.25s, background 0.25s;
    }
    .footer-logo:hover { border-color: rgba(62,71,151,0.4); background: rgba(62,71,151,0.05); }

    .footer-tagline {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(240,236,230,0.38);
      line-height: 1.72; max-width: 240px;
      margin-bottom: 28px;
    }

    /* Social / cert badges */
    .footer-badges {
      display: flex; gap: 10px;
    }
    .footer-badge {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 7px 13px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(240,236,230,0.3);
      text-decoration: none; transition: border-color 0.25s, color 0.25s;
    }
    .footer-badge:hover { border-color: rgba(62,71,151,0.3); color: var(--blue); }
    .footer-badge-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--blue); opacity: 0.6; flex-shrink: 0;
    }

    /* Nav columns */
    .footer-col-title {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 20px; opacity: 0.8;
    }

    .footer-col-links {
      display: flex; flex-direction: column; gap: 10px;
    }

    .footer-col-link {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(240,236,230,0.45);
      text-decoration: none; letter-spacing: 0.02em;
      transition: color 0.2s;
      width: fit-content;
    }
    .footer-col-link:hover { color: #f0ece6; }

    /* Contact column */
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 18px;
    }
    .footer-contact-item:last-child { margin-bottom: 0; }

    .footer-contact-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(62,71,151,0.08);
      border: 1px solid rgba(62,71,151,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .footer-contact-icon svg { stroke: var(--blue); opacity: 0.7; }

    .footer-contact-label {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(240,236,230,0.28);
      margin-bottom: 3px;
    }
    .footer-contact-value {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(240,236,230,0.6); text-decoration: none;
      transition: color 0.2s; display: block;
    }
    a.footer-contact-value:hover { color: var(--blue); }

    /* Bottom bar */
    .footer-bottom {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto;
      padding: 22px 0 28px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 16px;
    }

    .footer-copy {
      font-size: 0.72rem; font-weight: 300;
      color: rgba(240,236,230,0.2); letter-spacing: 0.04em;
    }
    .footer-copy a { color: rgba(62,71,151,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-copy a:hover { color: var(--blue); }

    .footer-legal {
      display: flex; gap: 20px;
    }
    .footer-legal a {
      font-size: 0.72rem; font-weight: 300;
      color: rgba(240,236,230,0.2); text-decoration: none;
      transition: color 0.2s; letter-spacing: 0.04em;
    }
    .footer-legal a:hover { color: rgba(240,236,230,0.5); }

    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
      .footer-badges { flex-wrap: wrap; }
    }
    @media (max-width: 500px) {
      .footer-inner { grid-template-columns: 1fr; }
    }

  
    /* ── FIXES: stable hero buttons + long rolling phrases ── */
    /* ── FIXES: consistent service card title sizing on mobile ── */
    @media (max-width: 900px) {
      .card-title { font-size: 1.35rem !important; }
    }

    /* ── FIXES: CTA contacts beside button on mobile ── */
    @media (max-width: 620px) {
      .cta-actions{
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 16px;
        row-gap: 0;
      }
      .cta-contacts{
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }
      .cta-btn{ width: auto; }
    }
    @media (max-width: 420px) {
      .cta-actions{ grid-template-columns: 1fr; row-gap: 14px; }
      .cta-btn{ width: 100%; }
      .cta-contacts{ align-items: flex-start; }
    }

    @media (max-width: 520px) {
      .hero-eyebrow { letter-spacing: 0.18em; }
      .hero-eyebrow::before, .hero-eyebrow::after { display: none; }
      .hero-buttons { flex-wrap: wrap; width: 100%; }
      .hero-buttons a { width: 100%; justify-content: center; }
      .roll-stage { height: 200px; }
      .roll-phrase {
        height: 200px;
        font-size: clamp(40px, 10.5vw, 72px);
        white-space: normal;
        text-align: center;
        padding: 0 18px;
        line-height: 1.05;
        overflow-wrap: break-word;
        hyphens: auto;
      }
    }
    .roll-phrase { max-width: calc(100vw - 48px); }


/* ===== kontakt_fixed.html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue: #3e4797;
      --blue-dim: rgba(62,71,151,0.10);
      --blue-glow: rgba(62,71,151,0.22);
      --hero-bg: #0f1540;
      --hero-text: #f0ece6;
      --hero-muted: rgba(240,236,230,0.46);
      --border-dark: rgba(255,255,255,0.09);
      --glass-dark: rgba(15,21,64,0.5);
      --bg-light: #f4f6fd;
      --bg-white: #ffffff;
      --dark: #0f1540;
      --dark-2: #1a2060;
      --text-dark: #111418;
      --text-mid: #4a5260;
      --text-muted: #8a909e;
      --border-light: rgba(0,0,0,0.07);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', sans-serif; background: var(--bg-light); color: var(--text-dark); overflow-x: hidden; }

    /* ── NAV (identical to homepage) ──────────────────────────── */
    nav {
      position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
      width: calc(100% - 48px); max-width: 1160px; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 12px; height: 64px; border-radius: 100px;
      background: var(--glass-dark);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border: 1px solid var(--border-dark);
      box-shadow: 0 4px 32px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
      transition: top 0.35s ease, background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
    }
    nav.scrolled { top: 10px; }
    nav.light {
      background: rgba(244,246,253,0.9);
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 4px 24px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
    }
    .nav-left, .nav-right { display: flex; align-items: center; gap: 2px; flex: 1; }
    .nav-right { justify-content: flex-end; }
    .nav-wordmark {
      display: inline-flex; align-items: center; justify-content: center;
      overflow: hidden;
      text-decoration: none; flex-shrink: 0; white-space: nowrap;
      height: 38px; padding: 0 10px; border-radius: 8px; border: none;
      background: #fff;
      transition: opacity 0.2s;
    }
    nav.light .nav-wordmark { background: transparent; }
    .nav-wordmark:hover { opacity: 0.82; }
    nav.light .nav-wordmark:hover { opacity: 0.82; }
    .nav-link {
      font-size: 0.79rem; font-weight: 500; color: var(--hero-muted);
      text-decoration: none; padding: 8px 13px; border-radius: 100px;
      transition: color 0.2s, background 0.2s; white-space: nowrap;
    }
    nav.light .nav-link { color: var(--text-muted); }
    .nav-link:hover { color: var(--hero-text); background: rgba(255,255,255,0.08); }
    nav.light .nav-link:hover { color: var(--text-dark); background: rgba(0,0,0,0.05); }
    .nav-link.active { color: var(--blue) !important; }
    .nav-dropdown { position: relative; }
    .nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; user-select: none; }
    .nav-dropdown-toggle svg { width: 9px; height: 9px; opacity: 0.38; transition: transform 0.25s, opacity 0.2s; }
    .nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); opacity: 0.85; }
    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 4px); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 238px; padding: 6px;
      background: rgba(15,21,64,0.97); backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,0.09); border-radius: 18px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
      opacity: 0; pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
    }
    /* Invisible bridge so mouse can reach menu without it closing */
    .nav-dropdown-menu::before {
      content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
    }
    nav.light .nav-dropdown-menu { background: rgba(255,255,255,0.98); border-color: rgba(0,0,0,0.08); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
    .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .nav-dropdown-menu a {
      display: block; padding: 10px 14px; font-size: 0.78rem; color: rgba(180,200,220,0.8);
      text-decoration: none; border-radius: 12px; transition: background 0.18s, color 0.18s;
    }
    nav.light .nav-dropdown-menu a { color: var(--text-muted); }
    .nav-dropdown-menu a:hover { background: var(--blue-dim); color: var(--blue); }
    .dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 3px 6px; }
    nav.light .dropdown-divider { background: rgba(0,0,0,0.06); }
    .lang-switcher {
      display: flex; align-items: center; gap: 1px;
      margin-left: 8px; padding-left: 12px;
      border-left: 1px solid var(--border-dark); transition: border-color 0.45s;
    }
    nav.light .lang-switcher { border-color: rgba(0,0,0,0.1); }
    .lang-btn {
      font-size: 0.67rem; font-weight: 600; letter-spacing: 0.07em;
      color: var(--hero-muted); background: none; border: none; cursor: pointer;
      padding: 5px 8px; border-radius: 100px; font-family: 'Outfit', sans-serif;
      transition: color 0.2s, background 0.2s;
    }
    nav.light .lang-btn { color: var(--text-muted); }
    .lang-btn:hover, .lang-btn.active { color: var(--blue); background: var(--blue-dim); }
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center; align-items: center;
      width: 40px; height: 40px; border-radius: 100px;
      background: none; border: 1px solid var(--border-dark);
      cursor: pointer; gap: 5px; padding: 0;
      transition: background 0.2s, border-color 0.4s; flex-shrink: 0;
    }
    nav.light .nav-hamburger { border-color: rgba(0,0,0,0.12); }
    .nav-hamburger:hover { background: rgba(255,255,255,0.07); }
    nav.light .nav-hamburger:hover { background: rgba(0,0,0,0.05); }
    .nav-hamburger span {
      display: block; width: 16px; height: 1.5px;
      background: var(--hero-text); border-radius: 2px;
      transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.2s, background 0.4s;
      transform-origin: center;
    }
    nav.light .nav-hamburger span { background: var(--text-dark); }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .nav-lang-mobile { display: none; align-items: center; gap: 1px; }
    .nav-lang-mobile .lang-btn { font-size: 0.65rem; }

    /* ── PAGE HERO ─────────────────────────────────────────────── */
    .page-hero {
      position: relative;
      min-height: 56vh;
      display: flex; align-items: flex-end;
      padding: 0 24px 80px;
      /* Contact/Kariéra/etc. dark hero */
      background-color: var(--hero-bg);
      background: radial-gradient(ellipse 120% 80% at 30% -10%, #0f1d6b 0%, #0b1250 45%, #0f1540 100%);
      overflow: hidden;
    }
    .page-hero-grain {
      position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }
    .page-hero-glow {
      position: absolute; top: -120px; left: -60px;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(62,71,151,0.07) 0%, transparent 60%);
      pointer-events: none;
    }
    /* Fade bottom edge into bg-light */
    .page-hero-fade {
      position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
      background: linear-gradient(to bottom, transparent, var(--bg-light));
      pointer-events: none; z-index: 1;
    }
    .page-hero-inner {
      position: relative; z-index: 2;
      max-width: 1100px; width: 100%; margin: 0 auto;
    }
    .page-eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.63rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.9s 0.15s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .page-eyebrow::before, .page-eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--blue); opacity: 0.3; }
    .page-title {
      font-size: clamp(3.2rem, 7.5vw, 6rem); font-weight: 700;
      letter-spacing: -0.02em; color: var(--hero-text); line-height: 0.93;
      opacity: 0; animation: fadeUp 0.9s 0.27s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .page-title em { font-style: normal; color: var(--blue); font-weight: 300; }
    .page-sub {
      margin-top: 24px; font-size: 0.98rem; font-weight: 300;
      color: var(--hero-muted); max-width: 520px; line-height: 1.8;
      opacity: 0; animation: fadeUp 0.9s 0.38s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    /* ── CONTACT SECTION ───────────────────────────────────────── */
    .contact-section {
      background: var(--bg-light);
      padding: 80px 24px 100px;
    }
    .contact-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1px 380px;
      gap: 64px; align-items: start;
    }

    /* Gold vertical divider */
    .contact-divider {
      background: linear-gradient(to bottom, transparent, rgba(62,71,151,0.3) 20%, rgba(62,71,151,0.3) 80%, transparent);
      align-self: stretch;
    }

    /* ── FORM COLUMN ─────────────────────────────────────────── */
    .col-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.26em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 32px;
    }
    .col-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--blue); opacity: 0.5; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 7px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-label {
      font-size: 0.69rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-muted);
    }
    .form-input, .form-textarea {
      width: 100%; padding: 13px 16px;
      background: var(--bg-white); color: var(--text-dark);
      border: 1px solid rgba(0,0,0,0.09); border-radius: 10px;
      font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 300;
      outline: none; transition: border-color 0.22s, box-shadow 0.22s;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.2); }
    .form-input:focus, .form-textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(62,71,151,0.1);
    }
    .form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

    .pills-label {
      font-size: 0.69rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
    }
    .pills { display: flex; flex-wrap: wrap; gap: 7px; }
    .pill {
      padding: 7px 15px; border-radius: 100px; border: 1px solid rgba(0,0,0,0.1);
      font-size: 0.77rem; font-weight: 500; color: var(--text-muted);
      cursor: pointer; background: var(--bg-white);
      transition: border-color 0.18s, color 0.18s, background 0.18s; user-select: none;
    }
    /* Non-interactive pills (e.g., hero meta tags) */
    .pill.static{ cursor: default; }
    .pill.static:hover{ border-color: rgba(0,0,0,0.1); color: var(--text-muted); }
    .pill:hover { border-color: rgba(62,71,151,0.5); color: var(--text-dark); }
    .pill.on { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }

    .form-foot { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 36px; background: var(--blue); color: #ffffff;
      font-family: 'Outfit', sans-serif; font-size: 0.86rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      border: none; border-radius: 100px; cursor: pointer;
      box-shadow: 0 4px 20px var(--blue-glow);
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .btn-primary:hover { background: #6272c9; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(62,71,151,0.32); }
    .btn-primary svg { transition: transform 0.25s; }
    .btn-primary:hover svg { transform: translateX(4px); }
    .form-note { font-size: 0.74rem; font-weight: 300; color: var(--text-muted); line-height: 1.65; }

    .form-success {
      display: none; padding: 40px 32px; border-radius: 16px; text-align: center;
      background: rgba(62,71,151,0.06); border: 1px solid rgba(62,71,151,0.18);
    }
    .form-success.show { display: block; }
    .success-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 52px; height: 52px; border-radius: 50%; margin-bottom: 16px;
      background: var(--blue-dim); border: 1px solid rgba(62,71,151,0.25);
    }
    .success-icon svg { stroke: var(--blue); }
    .form-success h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
    .form-success p { font-size: 0.85rem; color: var(--text-muted); }

    /* ── INFO COLUMN ─────────────────────────────────────────── */
    .info-col { display: flex; flex-direction: column; gap: 0; }

    /* Direct contact — large, prominent */
    .info-contact-block { margin-bottom: 40px; }
    .info-direct-item {
      display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px;
    }
    .info-direct-item:last-child { margin-bottom: 0; }
    .info-direct-label {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--blue); opacity: 0.8;
    }
    .info-direct-value {
      font-size: 1.15rem; font-weight: 700; color: var(--text-dark);
      text-decoration: none; letter-spacing: -0.01em;
      transition: color 0.2s;
    }
    a.info-direct-value:hover { color: var(--blue); }

    /* Address blocks — smaller, typographic */
    .info-address-block {
      padding-top: 28px;
      border-top: 1px solid var(--border-light);
      margin-bottom: 28px;
    }
    .info-address-block:last-child { margin-bottom: 0; }
    .info-addr-label {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--blue); opacity: 0.75; margin-bottom: 8px;
    }
    .info-addr-name {
      font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px;
    }
    .info-addr-text {
      font-size: 0.86rem; font-weight: 300; color: var(--text-mid); line-height: 1.75;
    }

    /* ICO/DIC inline row */
    .info-ids {
      display: flex; gap: 24px; flex-wrap: wrap;
      padding-top: 24px; border-top: 1px solid var(--border-light);
    }
    .info-id { display: flex; flex-direction: column; gap: 3px; }
    .info-id-label {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--blue); opacity: 0.75;
    }
    .info-id-value { font-size: 0.88rem; font-weight: 400; color: var(--text-mid); }

    /* ── DIVIDER (same diamond as homepage) ─────────────────── */
    .section-divider {
      position: relative; background: var(--bg-light);
      height: 1px; display: flex; align-items: center; justify-content: center;
    }
    .section-divider::before {
      content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(62,71,151,0.2) 20%, rgba(62,71,151,0.2) 80%, transparent);
    }
    .divider-mark {
      position: relative; z-index: 1; width: 26px; height: 26px;
      background: var(--bg-light); border: 1px solid rgba(62,71,151,0.28);
      border-radius: 4px; transform: rotate(45deg);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .divider-mark::after {
      content: ''; width: 6px; height: 6px; background: var(--blue);
      border-radius: 50%; transform: rotate(-45deg); opacity: 0.65;
    }

    /* ── MAP SECTION ─────────────────────────────────────────── */
    .map-section {
      position: relative; height: 500px; overflow: hidden;
    }
    .map-section iframe {
      width: 100%; height: 100%; border: none; display: block;
      filter: grayscale(20%) contrast(1.05) brightness(0.96);
    }
    .map-card {
      position: absolute;
      top: 50%; left: max(24px, calc(50% - 550px));
      transform: translateY(-50%);
      background: rgba(15,21,64,0.95);
      backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px; padding: 30px 32px;
      min-width: 280px; max-width: 320px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.55); z-index: 2;
    }

    /* Mobile usability: keep the map fully draggable by moving the card below the iframe */
    @media (max-width: 900px) {
      .map-section { height: auto; overflow: visible; background: var(--bg-light); padding-bottom: 24px; }
      .map-section iframe { height: 420px; }
      .map-card {
        position: relative;
        top: auto; left: auto;
        transform: none;
        margin: 16px auto 0;
        width: calc(100% - 32px);
        max-width: 520px;
      }
    }
    .map-card::before {
      content: '';
      position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
      background: linear-gradient(to right, transparent, rgba(62,71,151,0.5), transparent);
    }
    .map-card-label {
      font-size: 0.61rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 20px; opacity: 0.85;
    }
    .map-row { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 16px; }
    .map-row:last-of-type { margin-bottom: 22px; }
    .map-icon {
      width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0;
      background: rgba(62,71,151,0.08); border: 1px solid rgba(62,71,151,0.14);
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .map-icon svg { stroke: var(--blue); opacity: 0.8; }
    .map-row-label {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(240,236,230,0.28); margin-bottom: 2px;
    }
    .map-row-value {
      font-size: 0.84rem; font-weight: 300;
      color: rgba(240,236,230,0.72); line-height: 1.55;
    }
    .btn-navigate {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 22px; border-radius: 100px;
      background: var(--blue); color: #ffffff;
      font-size: 0.77rem; font-weight: 600; letter-spacing: 0.07em;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.22s, transform 0.22s;
    }
    .btn-navigate:hover { background: #6272c9; transform: translateY(-1px); }
    .btn-navigate svg { transition: transform 0.22s; }
    .btn-navigate:hover svg { transform: translateX(3px); }

    /* ── DRAWER ──────────────────────────────────────────────── */
    .drawer-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 90;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .drawer-overlay.visible {
      display: block;
      opacity: 1;
      pointer-events: auto;
    }
    .drawer {
      position: fixed; top: 90px; right: 0; bottom: 0; z-index: 95;
      width: min(320px, 85vw); background: #141840;
      border-left: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px 0 0 0; box-shadow: -20px 0 60px rgba(0,0,0,0.5);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
      display: flex; flex-direction: column; overflow-y: auto;
    }
    .drawer.open { transform: translateX(0); }
    .drawer-nav {
      padding: 16px 20px 8px; display: flex; flex-direction: column;
      align-items: center; gap: 0; position: static; top: auto; left: auto; transform: none;
      width: auto; max-width: none; height: auto; border-radius: 0; background: none;
      backdrop-filter: none; -webkit-backdrop-filter: none; border: none; box-shadow: none; text-align: center;
    }
    .drawer-link {
      display: block; padding: 13px 8px;
      font-size: 0.88rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(255,255,255,0.9); text-shadow: 0 0 18px rgba(255,255,255,0.15);
      text-decoration: none; line-height: 1; transition: color 0.2s, text-shadow 0.2s; white-space: nowrap;
    }
    .drawer-link:hover, .drawer-link.active { color: var(--blue); text-shadow: 0 0 28px rgba(62,71,151,0.5); background: none; }
    .drawer-submenu-toggle {
      display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
      padding: 13px 8px; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.9); text-shadow: 0 0 18px rgba(255,255,255,0.15);
      background: none; border: none; cursor: pointer; line-height: 1;
      font-family: 'Outfit', sans-serif; transition: color 0.2s, text-shadow 0.2s;
    }
    .drawer-submenu-toggle:hover { color: var(--blue); text-shadow: 0 0 28px rgba(62,71,151,0.5); background: none; }
    .drawer-submenu-toggle svg { width: 11px; height: 11px; stroke: currentColor; opacity: 0.6; transition: transform 0.28s; flex-shrink: 0; }
    .drawer-submenu-toggle.open { color: var(--blue); text-shadow: 0 0 28px rgba(62,71,151,0.5); }
    .drawer-submenu-toggle.open svg { transform: rotate(180deg); }
    .drawer-submenu { overflow: hidden; max-height: 0; width: 100%; transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1); text-align: center; }
    .drawer-submenu.open { max-height: 320px; }
    .drawer-submenu a {
      display: block; padding: 9px 8px; font-size: 0.72rem; font-weight: 400;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.18s;
    }
    .drawer-submenu a:hover { color: var(--blue); background: none; }
    .drawer-footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: auto; }
    .drawer-cta {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 14px; background: var(--blue); color: #ffffff;
      font-size: 0.84rem; font-weight: 600; letter-spacing: 0.06em;
      text-decoration: none; border-radius: 100px; transition: background 0.28s;
      font-family: 'Outfit', sans-serif;
    }
    .drawer-cta:hover { background: #6272c9; }

    /* ── FOOTER ──────────────────────────────────────────────── */
    .footer { background: #0d1035; padding: 80px 24px 0; position: relative; overflow: hidden; }
    .footer::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent 0%, rgba(62,71,151,0.5) 30%, rgba(62,71,151,0.5) 70%, transparent 100%);
    }
    .footer::after {
      content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(62,71,151,0.04) 0%, transparent 70%); pointer-events: none;
    }
    .footer-inner {
      position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 60px;
      padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo {
      display: inline-flex; align-items: center; font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase; color: #f0ece6; text-decoration: none;
      padding: 9px 20px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 22px; transition: border-color 0.25s, background 0.25s;
    }
    .footer-logo:hover { border-color: rgba(62,71,151,0.4); background: rgba(62,71,151,0.05); }
    .footer-tagline { font-size: 0.82rem; font-weight: 300; color: rgba(240,236,230,0.38); line-height: 1.72; max-width: 240px; margin-bottom: 28px; }
    .footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
    .footer-badge {
      display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.08); font-size: 0.66rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,236,230,0.3);
      transition: border-color 0.25s, color 0.25s;
    }
    .footer-badge:hover { border-color: rgba(62,71,151,0.3); color: var(--blue); }
    .footer-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); opacity: 0.6; flex-shrink: 0; }
    .footer-col-title { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; opacity: 0.8; }
    .footer-col-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-col-link { font-size: 0.82rem; font-weight: 300; color: rgba(240,236,230,0.45); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; width: fit-content; }
    .footer-col-link:hover { color: #f0ece6; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
    .footer-contact-item:last-child { margin-bottom: 0; }
    .footer-contact-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(62,71,151,0.08); border: 1px solid rgba(62,71,151,0.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .footer-contact-icon svg { stroke: var(--blue); opacity: 0.7; }
    .footer-contact-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,236,230,0.28); margin-bottom: 3px; }
    .footer-contact-value { font-size: 0.82rem; font-weight: 300; color: rgba(240,236,230,0.6); text-decoration: none; transition: color 0.2s; display: block; }
    a.footer-contact-value:hover { color: var(--blue); }
    .footer-bottom {
      position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
      padding: 22px 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .footer-copy { font-size: 0.72rem; font-weight: 300; color: rgba(240,236,230,0.2); letter-spacing: 0.04em; }
    .footer-copy a { color: rgba(62,71,151,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-copy a:hover { color: var(--blue); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 0.72rem; font-weight: 300; color: rgba(240,236,230,0.2); text-decoration: none; transition: color 0.2s; letter-spacing: 0.04em; }
    .footer-legal a:hover { color: rgba(240,236,230,0.5); }

    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 900px) {
      nav { width: calc(100% - 24px); padding: 0 10px 0 14px; }
      .nav-left { display: none; }
      .nav-right .nav-link { display: none; }
      .lang-switcher { display: none; }
      .nav-lang-mobile { display: flex; }
      .nav-hamburger { display: flex; }
      
      .contact-inner { grid-template-columns: 1fr; gap: 48px; }
      .contact-divider { display: none; }
      .form-grid { grid-template-columns: 1fr; }
      .form-group.full { grid-column: 1; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
      .map-section { height: 560px; }
      .map-card {
        top: auto; bottom: 20px; left: 50%; right: auto;
        transform: translateX(-50%); max-width: calc(100% - 40px); min-width: 0; width: 100%;
      }
      .page-hero { min-height: 46vh; padding: 0 18px 72px; }
    }
    @media (max-width: 500px) {
      .footer-inner { grid-template-columns: 1fr; }
      .page-title { font-size: clamp(2.6rem, 12vw, 3.2rem); }
    }


/* ===== o-spolecnosti_fixed.html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue: #3e4797;
      --blue-dim: rgba(62,71,151,0.10);
      --blue-glow: rgba(62,71,151,0.22);
      --hero-text: #f0ece6;
      --hero-muted: rgba(240,236,230,0.46);
      --border-dark: rgba(255,255,255,0.09);
      --glass-dark: rgba(15,21,64,0.5);
      --bg-light: #f4f6fd;
      --bg-white: #ffffff;
      --dark: #0f1540;
      --dark-2: #1a2060;
      --text-dark: #111418;
      --text-mid: #4a5260;
      --text-muted: #8a909e;
      --border-light: rgba(0,0,0,0.07);
      --card-bg: #1a2060;
      --card-border: rgba(255,255,255,0.055);
      --card-muted: rgba(190,210,225,0.65);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', sans-serif; background: var(--bg-light); color: var(--text-dark); overflow-x: hidden; }

/* ─────────────────────────────────────────────────────────────
       NAV
    ───────────────────────────────────────────────────────────── */
    nav {
      position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
      width: calc(100% - 48px); max-width: 1160px; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 12px; height: 64px; border-radius: 100px;
      background: var(--glass-dark);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border: 1px solid var(--border-dark);
      box-shadow: 0 4px 32px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
      transition: top 0.35s ease, background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
    }
    nav.scrolled { top: 10px; }
    nav.light {
      background: rgba(244,246,253,0.9);
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 4px 24px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
    }

    .nav-left, .nav-right { display: flex; align-items: center; gap: 2px; flex: 1; }
    .nav-right { justify-content: flex-end; }

    .nav-wordmark {
      display: inline-flex; align-items: center; justify-content: center;
      overflow: hidden;
      text-decoration: none; flex-shrink: 0; white-space: nowrap;
      height: 38px; padding: 0 10px; border-radius: 8px; border: none;
      background: #fff;
      transition: opacity 0.2s;
    }
    nav.light .nav-wordmark { background: transparent; }
    .nav-wordmark:hover { opacity: 0.82; }
    nav.light .nav-wordmark:hover { opacity: 0.82; }

    .nav-link {
      font-size: 0.79rem; font-weight: 500; color: var(--hero-muted);
      text-decoration: none; padding: 8px 13px; border-radius: 100px;
      transition: color 0.2s, background 0.2s; white-space: nowrap;
    }
    nav.light .nav-link { color: var(--text-muted); }
    .nav-link:hover { color: var(--hero-text); background: rgba(255,255,255,0.08); }
    nav.light .nav-link:hover { color: var(--text-dark); background: rgba(0,0,0,0.05); }

    .nav-dropdown { position: relative; }
    .nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; user-select: none; }
    .nav-dropdown-toggle svg { width: 9px; height: 9px; opacity: 0.38; transition: transform 0.25s, opacity 0.2s; }
    .nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); opacity: 0.85; }

    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 12px); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 238px; padding: 6px;
      background: rgba(15,21,64,0.97);
      backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 18px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
      opacity: 0; pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
    }
    nav.light .nav-dropdown-menu {
      background: rgba(255,255,255,0.98);
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    }
    .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .nav-dropdown-menu a {
      display: block; padding: 10px 14px; font-size: 0.78rem; color: rgba(180,200,220,0.8);
      text-decoration: none; border-radius: 12px; transition: background 0.18s, color 0.18s;
    }
    nav.light .nav-dropdown-menu a { color: var(--text-muted); }
    .nav-dropdown-menu a:hover { background: var(--blue-dim); color: var(--blue); }
    .dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 3px 6px; }
    nav.light .dropdown-divider { background: rgba(0,0,0,0.06); }

    .lang-switcher {
      display: flex; align-items: center; gap: 1px;
      margin-left: 8px; padding-left: 12px;
      border-left: 1px solid var(--border-dark);
      transition: border-color 0.45s;
    }
    nav.light .lang-switcher { border-color: rgba(0,0,0,0.1); }
    .lang-btn {
      font-size: 0.67rem; font-weight: 600; letter-spacing: 0.07em;
      color: var(--hero-muted); background: none; border: none; cursor: pointer;
      padding: 5px 8px; border-radius: 100px; font-family: 'Outfit', sans-serif;
      transition: color 0.2s, background 0.2s;
    }
    nav.light .lang-btn { color: var(--text-muted); }
    .lang-btn:hover, .lang-btn.active { color: var(--blue); background: var(--blue-dim); }

    

    /* Nav starts in light mode on contact / non-hero pages */
    .nav-hamburger{
      display:none; /* hidden on desktop */
      width:44px; height:44px;
      border:1px solid rgba(0,0,0,0.12);
      border-radius:12px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      align-items:center;
      justify-content:center;
      gap:4px;
      padding:0;
      cursor:pointer;
    }
    .nav-hamburger span{
      display:block;
      width:20px;
      height:2px;
      background: var(--text-dark);
      border-radius:999px;
    }
    @media (max-width: 900px){
      .nav-hamburger{ display:flex; flex-direction:column; }
    }
    .nav-lang-mobile { display: none; align-items: center; gap: 1px; }
    .nav-lang-mobile .lang-btn { font-size: 0.65rem; }
    .dropdown-divider { background: rgba(0,0,0,0.06); }

/* ─────────────────────────────────────────────────────────────
       EDITORIAL DIVIDER
    ───────────────────────────────────────────────────────────── */
    .divider {
      position: relative; background: var(--bg-light);
      height: 1px; display: flex; align-items: center; justify-content: center;
    }
    .divider::before {
      content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(62,71,151,0.2) 20%, rgba(62,71,151,0.2) 80%, transparent);
    }
    .divider-mark {
      position: relative; z-index: 1; width: 26px; height: 26px;
      background: var(--bg-light); border: 1px solid rgba(62,71,151,0.28);
      border-radius: 4px; transform: rotate(45deg);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .divider-mark::after {
      content: ''; width: 6px; height: 6px; background: var(--blue);
      border-radius: 50%; transform: rotate(-45deg); opacity: 0.65;
    }

    

    /* ═══════════════════════════════════════════════════════════
       ABOUT HERO — warm light with spark canvas
       (This must NOT override .page-hero used on other pages, e.g. Kontakt.)
    ═══════════════════════════════════════════════════════════ */
    .about-hero {
      position: relative;
      min-height: 100vh;
      background: var(--bg-light);
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden; padding: 0 24px;
    }

    #spark-canvas {
      position: absolute; inset: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 0;
    }

    /* Warm gold radial bloom at centre */
    .hero-bloom {
      position: absolute;
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 900px; height: 900px; pointer-events: none; z-index: 0;
      background: radial-gradient(ellipse, rgba(62,71,151,0.07) 0%, transparent 60%);
    }

    /* Thin gold horizontal rule */
    .hero-rule {
      position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(62,71,151,0.25), transparent);
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 960px; width: 100%;
      display: flex; flex-direction: column; align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 16px;
      font-size: 0.63rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 28px;
      opacity: 0; animation: fadeUp 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: ''; width: 36px; height: 1px; background: var(--blue); opacity: 0.35;
    }

    /* Big display heading in dark text */
    .hero-h1 {
      font-size: clamp(4.5rem, 11vw, 9.5rem);
      font-weight: 700; letter-spacing: -0.035em;
      color: var(--text-dark); line-height: 0.9;
      margin-bottom: 0;
      opacity: 0; animation: fadeUp 0.9s 0.33s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-h1 em { font-style: normal; color: var(--blue); }

    /* Year tag */
    .hero-tag {
      display: inline-flex; align-items: center; gap: 9px;
      margin-top: 28px; margin-bottom: 28px;
      padding: 8px 18px; border-radius: 100px;
      background: rgba(255,255,255,0.72); border: 1px solid rgba(0,0,0,0.09);
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--text-muted);
      opacity: 0; animation: fadeUp 0.9s 0.46s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

    .hero-desc {
      font-size: clamp(0.9rem, 1.5vw, 1.02rem); font-weight: 300;
      color: var(--text-mid); line-height: 1.82; max-width: 520px;
      opacity: 0; animation: fadeUp 0.9s 0.58s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    /* Scroll cue */
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 0;
      right: 0;
      width: fit-content;
      margin: 0 auto;
      display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
      opacity: 0; animation: fadeUp 1s 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-scroll span {
      font-size: 0.57rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--text-muted); opacity: 0.45;
    }
    .scroll-line {
      width: 1px; height: 34px;
      background: linear-gradient(to bottom, var(--blue), transparent);
      animation: scrollPulse 2.4s ease-in-out infinite; opacity: 0.45;
    }

    @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
    @keyframes scrollPulse { 0%,100%{opacity:0.22;} 50%{opacity:0.65;} }

    /* ═══════════════════════════════════════════════════════════
       ABOUT — editorial two-pane layout
       Left: oversized heading + pull-quote
       Right: body text + three value rows
    ═══════════════════════════════════════════════════════════ */
    .about {
      background: var(--bg-white);
      padding: 110px 24px 120px;
      position: relative; overflow: hidden;
    }

    /* Ghost year watermark behind content */
    .about-watermark {
      position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
      font-size: 22vw; font-weight: 700; line-height: 1;
      color: rgba(0,0,0,0.024); pointer-events: none; user-select: none;
      letter-spacing: -0.05em;
    }

    .about-inner {
      max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
    }

    /*
      IMPORTANT:
      The homepage uses an older .about section that also defines .about-inner as a grid.
      On the "O společnosti" page we need .about-inner to be a normal block container,
      otherwise the topbar + grid get split into unintended grid cells (causing huge whitespace
      and the heading to appear centered/high).
    */
    .page-about .about-inner{ display:block; }

    /* Top bar: eyebrow + stat pills in one line */
    .about-topbar {
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px; flex-wrap: wrap; margin-bottom: 60px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border-light);
    }
    .about-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.63rem; font-weight: 600; letter-spacing: 0.26em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 20px;
    }
    .about-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--blue); opacity: 0.45; }
    .about-pills { display: flex; gap: 8px; flex-wrap: wrap; }
    .about-pill {
      display: flex; align-items: center; gap: 7px;
      padding: 6px 14px; border-radius: 100px;
      background: var(--bg-light); border: 1px solid var(--border-light);
      font-size: 0.76rem; font-weight: 400; color: var(--text-mid);
    }
    .pill-num { font-weight: 700; color: var(--blue); }

    /* Two-column body */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }

    /* LEFT column */
    .about-left { }
    .about-big-h {
      font-size: clamp(2.4rem, 4.2vw, 3.8rem); font-weight: 700;
      letter-spacing: -0.025em; color: var(--text-dark); line-height: 1.01;
      margin-bottom: 40px;
    }
    .about-big-h em { font-style: normal; color: var(--blue); font-weight: 300; }

    /* Pull quote */
    .about-quote {
      position: relative;
      padding: 24px 24px 24px 28px;
      background: var(--bg-light);
      border-radius: 14px;
      border: 1px solid var(--border-light);
      overflow: hidden;
    }
    /* Gold left accent bar */
    .about-quote::before {
      content: ''; position: absolute;
      left: 0; top: 20px; bottom: 20px; width: 3px;
      background: linear-gradient(to bottom, var(--blue), rgba(62,71,151,0.2));
      border-radius: 0 2px 2px 0;
    }
    /* Large faint opening quote mark */
    .about-quote-mark {
      font-size: 5rem; font-family: Georgia, serif; line-height: 0.7;
      color: var(--blue); opacity: 0.12; position: absolute; top: 14px; right: 16px;
      pointer-events: none; user-select: none;
    }
    .about-quote-text {
      font-size: 0.96rem; font-weight: 300; color: var(--text-mid);
      line-height: 1.72; font-style: italic; margin-bottom: 14px; position: relative; z-index: 1;
    }
    .about-quote-attr {
      font-size: 0.69rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--blue); opacity: 0.7;
    }

    /* RIGHT column */
    .about-right { padding-top: 4px; }
    .about-body p {
      font-size: 0.94rem; font-weight: 300; color: var(--text-mid); line-height: 1.88;
    }
    .about-body p + p { margin-top: 16px; }

    /* Three value rows */
    .about-values { margin-top: 40px; }
    .about-val {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 16px 0; border-bottom: 1px solid var(--border-light);
    }
    .about-val:last-child { border-bottom: none; padding-bottom: 0; }
    .about-val-icon {
      width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
      background: var(--blue-dim); border: 1px solid rgba(62,71,151,0.2);
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .about-val-icon svg { stroke: var(--blue); opacity: 0.9; }
    .about-val-title {
      font-size: 0.86rem; font-weight: 600; color: var(--text-dark); margin-bottom: 3px;
    }
    .about-val-desc {
      font-size: 0.8rem; font-weight: 300; color: var(--text-muted); line-height: 1.62;
    }

/* ─────────────────────────────────────────────────────────────
       SERVICES
    ───────────────────────────────────────────────────────────── */
    .services { background: var(--bg-light); padding: 90px 24px 120px; }
    .services-inner { max-width: 1100px; margin: 0 auto; }

    .section-eyebrow {
      display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
    }
    .section-eyebrow span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
    .section-eyebrow::before, .section-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.09); }

    .section-heading {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300; color: var(--text-dark);
      text-align: center; margin-bottom: 64px; line-height: 1.12;
    }
    .section-heading em { font-style: normal; color: var(--blue); }

    /* Bento grid */
    .bento { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 460px 300px; gap: 14px; }
    .card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
    .card:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
    .card:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
    .card:nth-child(4) { grid-column: 3 / 4; grid-row: 2; }

    .card {
      position: relative; border-radius: 20px; overflow: hidden;
      background: var(--card-bg); border: 1px solid var(--card-border);
      cursor: pointer; text-decoration: none; display: block;
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
    }
    .card:nth-child(1) { transition-delay: 0s; }
    .card:nth-child(2) { transition-delay: 0.09s; }
    .card:nth-child(3) { transition-delay: 0.17s; }
    .card:nth-child(4) { transition-delay: 0.24s; }
    .card.visible { opacity: 1; transform: translateY(0); }
    .card.visible:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(0,0,0,0.2); }

    .card-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #1a2060; transition: transform 0.75s cubic-bezier(0.23,1,0.32,1); }
    .card.visible:hover .card-img { transform: scale(1.04); }

    .card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(6,8,14,0.88) 0%, rgba(8,12,22,0.35) 45%, rgba(10,14,28,0.05) 100%);
      transition: background 0.4s;
    }
    .card.visible:hover .card-overlay { background: linear-gradient(to top, rgba(6,8,14,0.92) 0%, rgba(8,12,22,0.5) 55%, rgba(10,14,28,0.12) 100%); }

    /* Gold top-edge sweep on hover */
    .card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), rgba(62,71,151,0.2)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s cubic-bezier(0.23,1,0.32,1); z-index: 2; }
    .card.visible:hover::after { transform: scaleX(1); }

    .card-number { position: absolute; top: 20px; right: 22px; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; color: rgba(255,255,255,0.14); z-index: 2; }

    .card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 1; }

    .card-tag { display: inline-block; font-size: 0.71rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; opacity: 0.85; }

    .card-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 400; color: #eef2f7; line-height: 1.18; margin-bottom: 10px;
    }
    .card:nth-child(1) .card-title { font-size: 2rem; }
    .card:nth-child(n+2) .card-title { font-size: 1.3rem; }

    .card-desc { font-size: 0.79rem; font-weight: 300; color: var(--card-muted); line-height: 1.7; margin-bottom: 18px; max-width: 420px; }
    .card:nth-child(n+2) .card-desc { font-size: 0.76rem; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    .card-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; color: var(--blue); text-decoration: none; opacity: 0.85; transition: gap 0.25s, opacity 0.25s; }
    .card.visible:hover .card-link { gap: 11px; opacity: 1; }
    .card-link svg { transition: transform 0.25s; flex-shrink: 0; }
    .card.visible:hover .card-link svg { transform: translateX(3px); }

    

    /* ═══════════════════════════════════════════════════════════
       TEAM — dark section, clean minimal cards
    ═══════════════════════════════════════════════════════════ */
    .team {
      background: var(--dark-2);
      padding: 100px 24px 120px;
      position: relative; overflow: hidden;
    }
    .team::before {
      content: ''; position: absolute;
      top: -60px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 480px;
      background: radial-gradient(ellipse, rgba(62,71,151,0.055) 0%, transparent 65%);
      pointer-events: none;
    }
    .team::after {
      content: ''; position: absolute;
      top: 0; left: 8%; right: 8%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(62,71,151,0.35), transparent);
    }
    .team-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

    .team-header { text-align: center; margin-bottom: 68px; }
    .team-eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
    }
    .team-eyebrow::before, .team-eyebrow::after {
      content: ''; width: 32px; height: 1px; background: var(--blue); opacity: 0.28;
    }
    .team-heading {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
      color: var(--hero-text); letter-spacing: -0.01em; line-height: 1.02;
    }
    .team-heading em { font-style: normal; color: var(--blue); font-weight: 300; }

    /* 5-column grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    /* Default: visible (prevents an "empty" team section if JS doesn't run / is cached wrong) */
    .team-card {
      border-radius: 16px; overflow: hidden;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.07);
      opacity: 1; transform: none;
      transition:
        opacity 0.65s cubic-bezier(0.22,1,0.36,1),
        transform 0.65s cubic-bezier(0.22,1,0.36,1),
        border-color 0.28s, background 0.28s;
    }
    /* When JS is active, start hidden and reveal on scroll */
    html.js .team-card { opacity: 0; transform: translateY(22px); }
    .team-card.visible { opacity: 1; transform: translateY(0); }
    .team-card:nth-child(2) { transition-delay: 0.07s; }
    .team-card:nth-child(3) { transition-delay: 0.14s; }
    .team-card:nth-child(4) { transition-delay: 0.21s; }
    .team-card:nth-child(5) { transition-delay: 0.28s; }
    .team-card.visible:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(62,71,151,0.2);
    }

    /* Square photo area with initials placeholder */
    .team-photo {
      aspect-ratio: 1; position: relative; overflow: hidden;
      background: linear-gradient(140deg, #181d27 0%, #0e1118 100%);
    }
    /* Subtle gold radial inside photo */
    .team-photo::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(62,71,151,0.07) 0%, transparent 65%);
    }
    /* Gold sweep top bar on hover */
    .team-photo::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--blue), rgba(62,71,151,0.15));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.38s cubic-bezier(0.23,1,0.32,1);
    }
    .team-card.visible:hover .team-photo::after { transform: scaleX(1); }

    /* Initials */
    .team-initials {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.1rem; font-weight: 700; letter-spacing: -0.02em;
      color: rgba(62,71,151,0.18);
    }

    .team-body { padding: 16px 16px 20px; }
    .team-role {
      font-size: 0.59rem; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--blue); opacity: 0.75;
      margin-bottom: 5px;
    }
    .team-name {
      font-size: 0.87rem; font-weight: 600;
      color: rgba(240,236,230,0.88); line-height: 1.25; margin-bottom: 13px;
    }
    .team-contacts { display: flex; flex-direction: column; gap: 6px; }
    .team-contact {
      display: flex; align-items: center; gap: 7px;
      font-size: 0.78rem; font-weight: 400;
      color: rgba(240,236,230,0.85); text-decoration: none;
      transition: color 0.2s; line-height: 1.25;
    }
    .team-contact svg { stroke: var(--blue); opacity: 0.45; flex-shrink: 0; transition: opacity 0.2s; }
    a.team-contact:hover { color: var(--blue); }
    a.team-contact:hover svg { opacity: 0.9; }

/* ─────────────────────────────────────────────────────────────
       SLIDE-IN DRAWER
    ───────────────────────────────────────────────────────────── */
    .drawer-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 90;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .drawer-overlay.visible {
      display: block;
      opacity: 1;
      pointer-events: auto;
    }

    .drawer {
      position: fixed;
      top: 90px; /* starts below the floating navbar pill */
      right: 0; bottom: 0; z-index: 95;
      width: min(320px, 85vw);
      background: #141840;
      border-left: 1px solid rgba(255,255,255,0.07);
      border-top: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px 0 0 0;
      box-shadow: -20px 0 60px rgba(0,0,0,0.5);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
      display: flex; flex-direction: column;
      padding: 0;
      overflow-y: auto;
    }
    .drawer.open { transform: translateX(0); }

    /* Drawer header — removed, no longer needed */

    /* Override global nav styles inside drawer */
    .drawer-nav {
      padding: 16px 20px 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      /* Reset inherited nav styles */
      position: static;
      top: auto; left: auto; transform: none;
      width: auto; max-width: none;
      height: auto; border-radius: 0;
      background: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border: none;
      box-shadow: none;
      text-align: center;
    }

    .drawer-link {
      display: block;
      padding: 13px 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 0 18px rgba(255,255,255,0.15);
      text-decoration: none;
      line-height: 1;
      transition: color 0.2s, text-shadow 0.2s;
      white-space: nowrap;
    }
    .drawer-link:hover {
      color: var(--blue);
      text-shadow: 0 0 28px rgba(62,71,151,0.5);
      background: none;
    }

    /* Services submenu toggle */
    .drawer-submenu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 13px 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 0 18px rgba(255,255,255,0.15);
      background: none; border: none; cursor: pointer;
      line-height: 1;
      text-align: center;
      transition: color 0.2s, text-shadow 0.2s;
    }
    .drawer-submenu-toggle:hover {
      color: var(--blue);
      text-shadow: 0 0 28px rgba(62,71,151,0.5);
      background: none;
    }
    .drawer-submenu-toggle svg {
      width: 11px; height: 11px;
      stroke: currentColor; opacity: 0.6;
      transition: transform 0.28s ease;
      flex-shrink: 0;
    }
    .drawer-submenu-toggle.open { color: var(--blue); text-shadow: 0 0 28px rgba(62,71,151,0.5); }
    .drawer-submenu-toggle.open svg { transform: rotate(180deg); }

    .drawer-submenu {
      overflow: hidden;
      max-height: 0;
      width: 100%;
      transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1);
      text-align: center;
    }
    .drawer-submenu.open { max-height: 320px; }
    .drawer-submenu a {
      display: block; padding: 9px 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.72rem; font-weight: 400;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.72); text-decoration: none;
      transition: color 0.18s;
    }
    .drawer-submenu a:hover { color: var(--blue); background: none; }

    .drawer-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 24px; width: calc(100% - 48px); }

    /* Drawer footer — contact CTA */
    .drawer-footer {
      padding: 20px 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: auto;
    }
    .drawer-cta {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 14px;
      background: var(--blue); color: #ffffff;
      font-family: 'Outfit', sans-serif; font-size: 0.84rem; font-weight: 600;
      letter-spacing: 0.06em; text-decoration: none; border-radius: 100px;
      transition: background 0.28s;
    }
    .drawer-cta:hover { background: #6272c9; }

    

/* ─────────────────────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────────────────────── */
    .footer {
      background: #0d1035;
      padding: 80px 24px 0;
      position: relative;
      overflow: hidden;
    }

    /* Top gold accent line */
    .footer::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent 0%, rgba(62,71,151,0.5) 30%, rgba(62,71,151,0.5) 70%, transparent 100%);
    }

    /* Subtle background glow */
    .footer::after {
      content: '';
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(62,71,151,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .footer-inner {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    /* Brand column */
    .footer-brand {}

    .footer-logo {
      display: inline-flex; align-items: center;
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: #f0ece6;
      text-decoration: none;
      padding: 9px 20px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 22px;
      transition: border-color 0.25s, background 0.25s;
    }
    .footer-logo:hover { border-color: rgba(62,71,151,0.4); background: rgba(62,71,151,0.05); }

    .footer-tagline {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(240,236,230,0.38);
      line-height: 1.72; max-width: 240px;
      margin-bottom: 28px;
    }

    /* Social / cert badges */
    .footer-badges {
      display: flex; gap: 10px;
    }
    .footer-badge {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 7px 13px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(240,236,230,0.3);
      text-decoration: none; transition: border-color 0.25s, color 0.25s;
    }
    .footer-badge:hover { border-color: rgba(62,71,151,0.3); color: var(--blue); }
    .footer-badge-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--blue); opacity: 0.6; flex-shrink: 0;
    }

    /* Nav columns */
    .footer-col-title {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 20px; opacity: 0.8;
    }

    .footer-col-links {
      display: flex; flex-direction: column; gap: 10px;
    }

    .footer-col-link {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(240,236,230,0.45);
      text-decoration: none; letter-spacing: 0.02em;
      transition: color 0.2s;
      width: fit-content;
    }
    .footer-col-link:hover { color: #f0ece6; }

    /* Contact column */
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 18px;
    }
    .footer-contact-item:last-child { margin-bottom: 0; }

    .footer-contact-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(62,71,151,0.08);
      border: 1px solid rgba(62,71,151,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .footer-contact-icon svg { stroke: var(--blue); opacity: 0.7; }

    .footer-contact-label {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(240,236,230,0.28);
      margin-bottom: 3px;
    }
    .footer-contact-value {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(240,236,230,0.6); text-decoration: none;
      transition: color 0.2s; display: block;
    }
    a.footer-contact-value:hover { color: var(--blue); }

    /* Bottom bar */
    .footer-bottom {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto;
      padding: 22px 0 28px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 16px;
    }

    .footer-copy {
      font-size: 0.72rem; font-weight: 300;
      color: rgba(240,236,230,0.2); letter-spacing: 0.04em;
    }
    .footer-copy a { color: rgba(62,71,151,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-copy a:hover { color: var(--blue); }

    .footer-legal {
      display: flex; gap: 20px;
    }
    .footer-legal a {
      font-size: 0.72rem; font-weight: 300;
      color: rgba(240,236,230,0.2); text-decoration: none;
      transition: color 0.2s; letter-spacing: 0.04em;
    }
    .footer-legal a:hover { color: rgba(240,236,230,0.5); }

    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
      .footer-badges { flex-wrap: wrap; }
    }
    @media (max-width: 500px) {
      .footer-inner { grid-template-columns: 1fr; }
    }


    /* ── PAGE RESPONSIVE ─────────────────────────────────── */
    @media (max-width: 1080px) {
      .team-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      nav { width: calc(100% - 24px); padding: 0 10px 0 14px; }
      .nav-left { display: none; }
      .nav-right .nav-link { display: none; }
      .lang-switcher { display: none; }
      .nav-lang-mobile { display: flex; }
      .nav-lang-mobile .lang-btn { font-size: 0.65rem; }
      .nav-hamburger { display: flex; }
      
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
      .card:nth-child(1),.card:nth-child(2),.card:nth-child(3),.card:nth-child(4) { grid-column: 1; grid-row: auto; min-height: 300px; }
      .card:nth-child(1) { min-height: 420px; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    }
    @media (max-width: 500px) {
      .footer-inner { grid-template-columns: 1fr; }
    }

/* =====================================================================
   FIX PACK v4 (shared overrides)
   - prevents hero phrase overflow causing layout jitter
   - stabilises hero CTA buttons
   - fixes duplicated language switcher visibility
   - ensures hamburger/drawer always clickable above page overlays
   - normalises service card title sizing on mobile
   - fixes CTA contacts layout on small screens
   ===================================================================== */

html, body { overflow-x: hidden; }

/* Keep navbar + drawer above all page layers */
#navbar { z-index: 1000 !important; }

/* Logo image in navbar — tightly cropped asset, sized directly */
.nav-wordmark img { height: 34px; width: auto; display: block; flex-shrink: 0; mix-blend-mode: multiply; }
.drawer-overlay { z-index: 2000 !important; }
.drawer { z-index: 2100 !important; }

/* Page hero overlay layers should never block clicks on nav */
.page-hero-grain,
.page-hero-glow,
.page-hero-fade,
.hero-grain,
.hero-overlay,
.cta-grain,
.cta-banner-bg {
  pointer-events: none !important;
}

/* Language switcher: never show both at once (desktop ≥1241, compact below) */
@media (max-width: 1240px) {
  .lang-switcher { display: none !important; }
  .nav-lang-mobile { display: flex !important; }
}
@media (min-width: 1241px) {
  .lang-switcher { display: flex !important; }
  .nav-lang-mobile { display: none !important; }
}

/* Rolling hero phrases: avoid horizontal overflow and keep height stable */
.roll-stage {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.roll-phrase {
  max-width: 100%;
  padding: 0 18px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 820px) {
  .roll-phrase {
    white-space: normal !important;
    line-height: 1.05;
  }
}

/* Hero buttons: keep consistent layout (no random wrap caused by overflow) */
.hero-buttons { flex-wrap: wrap; justify-content: center; }
.hero-buttons > a { flex: 0 0 auto; }
@media (max-width: 520px) {
  .hero-buttons > a { width: 100%; justify-content: center; }
}

/* Service card titles: equal sizing on mobile */
@media (max-width: 900px) {
  .card-title { font-size: 1.35rem !important; }
}

/* CTA banner: keep phone/email to the right of the big button on mobile */
@media (max-width: 620px) {
  .cta-actions{
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
    column-gap: 16px !important;
    row-gap: 0 !important;
  }
  .cta-btn{ width: auto !important; }
  .cta-contacts{
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }
}
@media (max-width: 420px) {
  .cta-actions{ grid-template-columns: 1fr !important; row-gap: 14px !important; }
  .cta-btn{ width: 100% !important; }
}

/* ── CAREERS PAGE ───────────────────────────────────────────── */
.career-hero-actions{
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.careers-section{
  background: var(--bg-light);
  padding: 84px 24px 110px;
}
.careers-inner{
  max-width: 1100px;
  margin: 0 auto;
}
.careers-top{ max-width: 820px; }
.careers-h{
  margin: 8px 0 16px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-dark);
}
.careers-lead{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.career-benefits{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.career-benefit{
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.career-benefit-title{
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.career-benefit-desc{
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.careers-split{
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}
.careers-subh{
  margin: 10px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}
.careers-p{
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.career-depts{
  display: grid;
  gap: 12px;
}
.career-dept{
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.career-dept-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.career-dept-name{ font-weight: 650; color: var(--text-dark); }
.career-pill{
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  background: rgba(62,71,151,0.14);
  border: 1px solid rgba(62,71,151,0.22);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.career-dept-desc{
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.career-process{ margin-top: 56px; }
.career-steps{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.career-step{
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.career-step-num{
  width: 34px; height: 34px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(62,71,151,0.16);
  border: 1px solid rgba(62,71,151,0.22);
  font-weight: 700;
  color: rgba(0,0,0,0.75);
}
.career-step-title{ font-weight: 650; color: var(--text-dark); margin-top: 2px; }
.career-step-desc{ font-size: 0.92rem; line-height: 1.65; color: var(--text-muted); margin-top: 6px; }

.career-cta{
  margin-top: 62px;
  border-radius: 26px;
  padding: 28px;
  background: radial-gradient(ellipse 140% 120% at 10% 10%, rgba(62,71,151,0.12) 0%, rgba(0,0,0,0.02) 40%, rgba(0,0,0,0.0) 60%),
              linear-gradient(135deg, rgba(18,20,24,0.96), rgba(10,12,16,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.career-cta-title{
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--hero-text);
}
.career-cta-desc{ margin-top: 8px; max-width: 560px; color: var(--hero-muted); line-height: 1.7; }
.career-cta-actions{ display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }

@media (max-width: 980px){
  .career-benefits{ grid-template-columns: repeat(2, 1fr); }
  .careers-split{ grid-template-columns: 1fr; }
  .career-steps{ grid-template-columns: 1fr; }
  .career-step{ grid-template-columns: 34px 1fr; }
  .career-cta{ flex-direction: column; align-items: flex-start; }
  .career-cta-actions{ justify-content: flex-start; }
}
@media (max-width: 520px){
  .career-benefits{ grid-template-columns: 1fr; }
}


/* ── CONTACT HERO REDESIGN ─────────────────────────────────── */
.contact-hero{
  min-height: 78vh;
  align-items: center;
  padding: 138px 24px 96px;
  background:
    radial-gradient(circle at 16% 18%, rgba(62,71,151,0.18) 0%, rgba(62,71,151,0.06) 22%, transparent 46%),
    radial-gradient(circle at 82% 76%, rgba(74,168,216,0.10) 0%, transparent 30%),
    linear-gradient(180deg, #0f1540 0%, #0c0f14 38%, #11161f 100%);
}
.contact-hero::after{
  content:'';
  position:absolute;
  left:24px; right:24px; bottom:0;
  height:1px;
  background:linear-gradient(to right, transparent, rgba(62,71,151,0.3), transparent);
  z-index:1;
}
.contact-hero .page-hero-glow,
.contact-hero .page-hero-fade{
  display:none;
}
.contact-hero-aurora{
  position:absolute;
  border-radius:50%;
  filter: blur(8px);
  pointer-events:none;
}
.contact-hero-aurora-1{
  top:-140px;
  left:-120px;
  width:520px;
  height:520px;
  background:radial-gradient(circle, rgba(62,71,151,0.14) 0%, rgba(62,71,151,0.04) 40%, transparent 72%);
}
.contact-hero-aurora-2{
  right:-120px;
  bottom:-120px;
  width:460px;
  height:460px;
  background:radial-gradient(circle, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 36%, transparent 70%);
}
.contact-hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 78%);
  opacity:0.16;
  pointer-events:none;
}
.contact-hero-inner{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap:42px;
  align-items:end;
}
.contact-hero-copy{
  max-width:680px;
}
.contact-hero-title{
  max-width: 8.5ch;
  font-size: clamp(3.6rem, 8vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.contact-hero-title em{
  color: var(--blue);
  font-style: normal;
  font-weight: 300;
}
.contact-hero-sub{
  margin-top: 28px;
  max-width: 560px;
  font-size: 1rem;
  color: rgba(240,236,230,0.72);
}
.contact-hero-actions{
  margin-top: 34px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.contact-hero-panel{
  position:relative;
  z-index:2;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 70px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.contact-hero-panel::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:28px;
  padding:1px;
  background:linear-gradient(135deg, rgba(62,71,151,0.34), rgba(255,255,255,0.05), rgba(62,71,151,0.12));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  pointer-events:none;
}
.contact-hero-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}
.contact-hero-panel-kicker{
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--blue);
}
.contact-hero-panel-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.72rem;
  color:rgba(240,236,230,0.64);
  white-space:nowrap;
}
.contact-hero-panel-status span{
  width:7px; height:7px;
  border-radius:50%;
  background:var(--blue);
  box-shadow:0 0 18px rgba(62,71,151,0.45);
}
.contact-hero-cards{
  display:grid;
  gap:12px;
}
.contact-hero-card{
  display:block;
  text-decoration:none;
  padding:18px 18px 17px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  transition:transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.contact-hero-card:hover{
  transform:translateY(-2px);
  border-color:rgba(62,71,151,0.28);
  background:rgba(255,255,255,0.06);
}
.contact-hero-card-label{
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(240,236,230,0.48);
  margin-bottom:8px;
}
.contact-hero-card-value{
  font-size:1.02rem;
  font-weight:500;
  color:var(--hero-text);
  line-height:1.45;
}
.contact-hero-card-static{
  cursor:default;
}
.contact-hero-card-static:hover{
  transform:none;
}
.contact-hero-note{
  margin-top:16px;
  font-size:0.9rem;
  line-height:1.7;
  color:rgba(240,236,230,0.58);
}
@media (max-width: 980px){
  .contact-hero{
    min-height:auto;
    padding:128px 24px 88px;
  }
  .contact-hero-inner{
    grid-template-columns: 1fr;
    gap:28px;
    align-items:start;
  }
  .contact-hero-copy{
    max-width:620px;
  }
}
@media (max-width: 620px){
  .contact-hero{
    padding:118px 18px 78px;
  }
  .contact-hero-title{
    max-width:none;
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }
  .contact-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .contact-hero-actions a{
    width:100%;
    justify-content:center;
  }
  .contact-hero-panel{
    padding:22px;
    border-radius:24px;
  }
  .contact-hero-panel-head{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* ── CONTACT HERO PATCH ───────────────────────────────────── */
.contact-hero{
  min-height: max(760px, 86vh);
  padding: 170px 24px 110px;
}
.contact-hero-inner{
  align-items:center;
  gap:54px;
  padding-top:22px;
}
.contact-hero-copy,
.contact-hero-panel{
  position:relative;
  z-index:2;
}
.contact-hero-title{
  max-width: 9.5ch;
  margin: 0;
}
.contact-hero-sub{
  color: rgba(240,236,230,0.82);
}
.contact-hero-panel{
  width:100%;
  max-width:420px;
  justify-self:end;
  color: var(--hero-text);
  background: linear-gradient(180deg, rgba(14,18,25,0.96), rgba(9,12,18,0.92));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 28px 72px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.05);
}
.contact-hero-panel-head,
.contact-hero-note,
.contact-hero-cards,
.contact-hero-card,
.contact-hero-card-label,
.contact-hero-card-value{
  position:relative;
  z-index:2;
}
.contact-hero-card,
.contact-hero-card:link,
.contact-hero-card:visited{
  color: var(--hero-text) !important;
  text-decoration: none !important;
}
.contact-hero-card-label{
  color: rgba(240,236,230,0.54);
}
.contact-hero-card-value{
  color: #f4efe8 !important;
}
.contact-hero-note,
.contact-hero-panel-status{
  color: rgba(240,236,230,0.70);
}
.contact-hero-actions .btn-ghost-dark{
  color: var(--hero-text);
}
@media (max-width: 980px){
  .contact-hero{
    min-height: auto;
    padding: 150px 24px 88px;
  }
  .contact-hero-inner{
    gap: 30px;
    padding-top: 0;
  }
  .contact-hero-panel{
    justify-self: stretch;
    max-width: none;
  }
}
@media (max-width: 620px){
  .contact-hero{
    padding: 132px 18px 78px;
  }
  .contact-hero-title{
    max-width:none;
  }
}



/* ===== minimal mobile drawer fix ===== */
.drawer-overlay:not(.visible) {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.drawer-overlay.visible {
  display: block !important;
  pointer-events: auto !important;
}



/* ===== mobile map fix ===== */
@media (max-width: 900px) {
  .map-section {
    height: auto !important;
    overflow: visible !important;
    background: var(--bg-light);
    padding-bottom: 24px !important;
  }

  .map-section iframe {
    display: block;
    height: 420px !important;
    min-height: 0 !important;
  }

  .map-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 16px auto 0 !important;
    width: calc(100% - 32px) !important;
    max-width: 520px !important;
  }
}

.page-about .team-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .team-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .team-card a[href^="mailto:"],
  .team-card a[href^="tel:"] {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 700px) {
  .footer,
  .footer-inner,
  .footer-brand,
  .footer-col,
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-col-links {
    align-items: center;
  }

  .footer-legal {
    justify-content: center;
  }

  /* Kontakt block centered under the two columns above */
  .footer-col:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: fit-content;
    text-align: center;
  }

  .footer-col:last-child > .footer-col-title {
    text-align: center;
  }

  .footer-col:last-child .footer-contact-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .footer-col:last-child .footer-contact-icon {
    margin: 0 auto;
  }

  .footer-col:last-child .footer-contact-item > div:last-child {
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGES (import-export, etc.)
   Paste at the bottom of styles.css
══════════════════════════════════════════════════════════════ */

/* ── Shared wrapper ─────────────────────────────────────────── */
.svc-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── HERO ───────────────────────────────────────────────────── */
.svc-hero {
  position: relative;
  background: #0f1540;
  min-height: max(78vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 24px 100px;
}

/* Grain texture */
.svc-hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Gold glow top-left */
.svc-hero-glow {
  position: absolute;
  top: -120px; left: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse, rgba(62,71,151,0.12) 0%, rgba(62,71,151,0.03) 40%, transparent 68%);
  pointer-events: none; z-index: 0;
}

/* Gold bottom hairline */
.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(62,71,151,0.28) 30%, rgba(62,71,151,0.28) 70%, transparent);
  pointer-events: none; z-index: 1;
}

.svc-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; width: 100%; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: 60px;
  align-items: center;
}

/* Eyebrow */
.svc-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.9s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}
.svc-eyebrow-line {
  display: inline-block; width: 28px; height: 1px;
  background: var(--blue); opacity: 0.35;
}

/* Title */
.svc-hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--hero-text);
  margin: 0 0 24px;
  opacity: 0; animation: fadeUp 0.9s 0.27s cubic-bezier(0.22,1,0.36,1) both;
}
.svc-hero-title em {
  color: var(--blue);
  font-style: normal;
  font-weight: 300;
}

/* Sub paragraphs */
.svc-hero-sub {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(240,236,230,0.66);
  max-width: 520px;
  margin: 0 0 12px;
  opacity: 0; animation: fadeUp 0.9s 0.38s cubic-bezier(0.22,1,0.36,1) both;
}
.svc-hero-sub:last-of-type { margin-bottom: 0; }

/* CTA row */
.svc-hero-actions {
  margin-top: 34px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.50s cubic-bezier(0.22,1,0.36,1) both;
}

/* Ghost button override for dark hero */
.svc-ghost {
  color: var(--hero-text) !important;
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.16) !important;
}
.svc-ghost:hover {
  color: var(--hero-text) !important;
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.26) !important;
}

/* RIGHT panel */
.svc-hero-panel {
  position: relative; z-index: 2;
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(160deg, #10141c, #0c0f16);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 28px 72px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0; animation: fadeUp 0.9s 0.42s cubic-bezier(0.22,1,0.36,1) both;
}
/* Gold top highlight */
.svc-hero-panel::before {
  content: '';
  position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(62,71,151,0.4), transparent);
  border-radius: 1px; pointer-events: none;
}

.svc-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 20px;
}
.svc-panel-kicker {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue);
}
.svc-panel-badge {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(62,71,151,0.12); border: 1px solid rgba(62,71,151,0.22);
  color: rgba(62,71,151,0.9);
}

.svc-panel-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-panel-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 300;
  color: rgba(240,236,230,0.82);
  padding: 10px 12px; border-radius: 11px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
}
.svc-panel-icon {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--blue); min-width: 24px; text-align: center;
}

.svc-panel-note {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.78rem; font-weight: 300;
  color: rgba(240,236,230,0.38); line-height: 1.6;
}

/* Scroll cue */
.svc-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; z-index: 2;
  opacity: 0; animation: fadeUp 0.9s 1s cubic-bezier(0.22,1,0.36,1) both;
}
.svc-scroll-dot {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
  opacity: 0.5;
}

/* ── STATS STRIP ─────────────────────────────────────────────── */
.svc-stats-strip {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
.svc-stats-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: stretch;
}
.svc-stat {
  flex: 1;
  padding: 36px 24px;
  text-align: center;
}
.svc-stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.svc-stat-num span {
  color: var(--blue);
  font-weight: 400;
}
.svc-stat-label {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.svc-stat-divider {
  width: 1px;
  background: var(--border-light);
  margin: 20px 0;
  flex-shrink: 0;
}

/* ── SECTION SHARED ──────────────────────────────────────────── */
.svc-section {
  padding: 96px 24px 112px;
}
.svc-section-light {
  background: var(--bg-light);
}
.svc-section-dark {
  background: #1a2060;
  position: relative;
}
/* Subtle gold glow on dark section */
.svc-section-dark::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(62,71,151,0.05) 0%, transparent 65%);
}

.svc-section-head {
  text-align: center;
  max-width: 680px; margin: 0 auto 64px;
}
.svc-section-head-dark { /* no override needed, kicker/h2 classes handle color */ }

.svc-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.svc-kicker-gold { color: var(--blue); }
.svc-kicker::before, .svc-kicker::after {
  content: ''; width: 20px; height: 1px;
  background: currentColor; opacity: 0.35;
}

.svc-h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.08;
  color: var(--text-dark); margin: 0;
}
.svc-h2 em { font-style: normal; color: var(--blue); font-weight: 300; }
.svc-h2-light { color: var(--hero-text) !important; }

.svc-section-lead {
  margin-top: 16px;
  font-size: 0.97rem; font-weight: 300; line-height: 1.78;
  color: var(--text-muted);
}

/* ── SERVICES CHECKLIST ──────────────────────────────────────── */
.svc-checklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
}

.svc-check {
  background: var(--bg-white);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.2s;
}
.svc-check:hover { background: #faf9f6; }

.svc-check-num {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--blue); opacity: 0.8;
}

.svc-check-title {
  font-size: 0.93rem; font-weight: 600;
  color: var(--text-dark); line-height: 1.2;
}
.svc-check-text {
  font-size: 0.82rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.68;
}

/* ── WHY US GRID ─────────────────────────────────────────────── */
.svc-why-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.svc-why-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.svc-why-card:hover {
  border-color: rgba(62,71,151,0.25);
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}
/* Gold top accent on hover */
.svc-why-card::after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  border-radius: 18px 18px 0 0;
}
.svc-why-card { position: relative; overflow: hidden; }
.svc-why-card:hover::after { transform: scaleX(1); }

.svc-why-ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: rgba(62,71,151,0.10); border: 1px solid rgba(62,71,151,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 18px;
}
.svc-why-title {
  font-size: 0.93rem; font-weight: 600;
  color: var(--hero-text); margin-bottom: 10px;
}
.svc-why-text {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(240,236,230,0.52); line-height: 1.7;
}

/* ── BENEFITS ────────────────────────────────────────────────── */
.svc-benefits-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.svc-benefits-left { position: sticky; top: 100px; }
.svc-benefits-lead {
  margin-top: 16px;
  font-size: 0.97rem; font-weight: 300; line-height: 1.78;
  color: var(--text-muted);
}
.svc-benefits-actions { margin-top: 32px; }

.svc-benefits-cards {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
}

.svc-benefit-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 26px 26px;
  background: var(--bg-white);
  transition: background 0.2s;
}
.svc-benefit-card:hover { background: #faf9f6; }

.svc-benefit-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(62,71,151,0.10); border: 1px solid rgba(62,71,151,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-top: 2px;
}
.svc-benefit-title {
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 5px;
}
.svc-benefit-text {
  font-size: 0.82rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.66;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.svc-cta-banner {
  background: #0f1540;
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.svc-cta-banner::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 10% 50%, rgba(62,71,151,0.07) 0%, transparent 60%);
}
/* Top separator line */
.svc-cta-banner::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
}

.svc-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.svc-cta-copy { max-width: 580px; }
.svc-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
  color: var(--hero-text); margin-top: 12px;
}
.svc-cta-title em { color: var(--blue); font-style: normal; font-weight: 300; }
.svc-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0;
}

/* ── REVEAL ANIMATION ────────────────────────────────────────── */
.reveal-up {
  opacity: 1;
  transform: none;
}

.js .reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

.js .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger siblings */
.svc-checklist .reveal-up:nth-child(2) { transition-delay: 0.07s; }
.svc-checklist .reveal-up:nth-child(3) { transition-delay: 0.13s; }
.svc-checklist .reveal-up:nth-child(4) { transition-delay: 0.19s; }
.svc-checklist .reveal-up:nth-child(5) { transition-delay: 0.07s; }
.svc-checklist .reveal-up:nth-child(6) { transition-delay: 0.13s; }
.svc-checklist .reveal-up:nth-child(7) { transition-delay: 0.19s; }
.svc-checklist .reveal-up:nth-child(8) { transition-delay: 0.25s; }
.svc-why-grid .reveal-up:nth-child(2) { transition-delay: 0.09s; }
.svc-why-grid .reveal-up:nth-child(3) { transition-delay: 0.17s; }
.svc-why-grid .reveal-up:nth-child(4) { transition-delay: 0.25s; }
.svc-benefits-cards .reveal-up:nth-child(2) { transition-delay: 0.08s; }
.svc-benefits-cards .reveal-up:nth-child(3) { transition-delay: 0.15s; }
.svc-benefits-cards .reveal-up:nth-child(4) { transition-delay: 0.22s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .svc-checklist { grid-template-columns: repeat(2, 1fr); }
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-benefits-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-benefits-left { position: static; }
}
@media (max-width: 860px) {
  .svc-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-hero-panel { max-width: 480px; }
  .svc-stats-inner { flex-wrap: wrap; }
  .svc-stat { flex: 0 0 50%; }
  .svc-stat-divider { display: none; }
  .svc-cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
}
@media (max-width: 600px) {
  .svc-hero { padding: 140px 18px 88px; }
  .svc-hero-title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .svc-hero-actions { flex-direction: column; align-items: stretch; }
  .svc-hero-actions a { width: 100%; justify-content: center; }
  .svc-checklist { grid-template-columns: 1fr; }
  .svc-why-grid { grid-template-columns: 1fr; }
  .svc-stat { flex: 0 0 100%; }
}

.page-service .reveal-up {
  opacity: 1 !important;
  transform: none !important;
}

/* ── OBCHODNÍ ZASTOUPENÍ — brand cards & partners ───────────
   Paste at the bottom of service-pages.css
─────────────────────────────────────────────────────────── */

/* White section variant */
.svc-section-white {
  background: var(--bg-white);
}

/* Two-column brand cards grid */
.oz-brands-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.oz-brand-card {
  padding: 34px 30px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.25s, background 0.25s;
}
.oz-brand-card:hover {
  border-color: rgba(62,71,151,0.2);
  background: rgba(255,255,255,0.06);
}

/* Featured card (COCOCHOCO) gets a gold tint */
.oz-brand-card-featured {
  border-color: rgba(62,71,151,0.22);
  background: linear-gradient(160deg, rgba(62,71,151,0.07), rgba(255,255,255,0.03));
}
.oz-brand-card-featured:hover {
  border-color: rgba(62,71,151,0.38);
  background: linear-gradient(160deg, rgba(62,71,151,0.10), rgba(255,255,255,0.05));
}

.oz-brand-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 14px;
}

.oz-brand-logo-wrap {
  flex: 1;
}

.oz-brand-name {
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1;
  color: var(--hero-text);
}
.oz-brand-name small {
  display: block;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(240,236,230,0.5);
  margin-top: 3px;
}
.oz-brand-name-featured { color: var(--blue); }

.oz-brand-since {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,236,230,0.35);
  white-space: nowrap; padding-top: 4px;
}

.oz-brand-badge-excl {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(62,71,151,0.15); border: 1px solid rgba(62,71,151,0.28);
  color: var(--blue); white-space: nowrap;
}

.oz-brand-desc {
  font-size: 0.9rem; font-weight: 300; line-height: 1.72;
  color: rgba(240,236,230,0.62);
  margin: 0;
}

.oz-brand-features {
  display: flex; flex-direction: column; gap: 9px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.oz-brand-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; font-weight: 300;
  color: rgba(240,236,230,0.72);
}
.oz-brand-feature-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); opacity: 0.7; flex-shrink: 0;
}

.oz-brand-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--blue); text-decoration: none;
  transition: gap 0.22s, opacity 0.22s;
  opacity: 0.85; width: fit-content;
}
.oz-brand-link:hover { gap: 12px; opacity: 1; }

/* Partners grid */
.oz-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.oz-partner {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 20px;
  border-radius: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.oz-partner:hover {
  border-color: rgba(62,71,151,0.25);
  background: #f0ede8;
  transform: translateY(-2px);
}
.oz-partner img {
  max-width: 100%; max-height: 44px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.22s;
}
.oz-partner:hover img {
  filter: grayscale(0) opacity(1);
}

/* Responsive */
@media (max-width: 860px) {
  .oz-brands-grid { grid-template-columns: 1fr; }
  .oz-partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .oz-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .oz-brand-card { padding: 24px 20px; }
}

/* AML subtitle — matches COCOCHOCO "Professional" line height for alignment */
.oz-brand-subtitle {
  display: block;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(240,236,230,0.5);
  margin-top: 3px;
}
.oz-brand-logo-img {
  display: block;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 6px;
}
.oz-brand-logo-thermann { max-height: 20px; width: auto; max-width: 280px; }
.oz-brand-logo-cocochoco { max-width: 190px; }

/* AML product thumbnails */
.oz-brand-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.oz-brand-thumbs img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.75;
  filter: grayscale(0.3);
  transition: opacity 0.22s, filter 0.22s;
}
.oz-brand-thumbs img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ── CESTOVNÍ AGENTURA — testimonials ───────────────────────── */
.ca-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.ca-testimonial {
  padding: 28px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 20px;
}
.ca-testimonial-text {
  font-size: 0.92rem; font-weight: 300; line-height: 1.76;
  color: rgba(240,236,230,0.78);
  font-style: italic; flex: 1;
}
.ca-testimonial-attr {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ca-testimonial-name {
  font-size: 0.84rem; font-weight: 600;
  color: var(--blue);
}
.ca-testimonial-role {
  font-size: 0.74rem; font-weight: 300;
  color: rgba(240,236,230,0.38);
  letter-spacing: 0.02em;
}
.ca-testimonials-cta {
  margin-top: 36px; text-align: center;
  position: relative; z-index: 1;
}
@media (max-width: 860px) {
  .ca-testimonials { grid-template-columns: 1fr; }
}

/* ── KARIÉRA PAGE ───────────────────────────────────────────── */
/* Flat solid navy — no gradient, no glow */
.career-hero {
  min-height: 52vh; padding: 160px 24px 90px;
  background: #0f1540;
}
.career-hero .page-hero-glow,
.career-hero .page-hero-fade {
  display: none;
}
.career-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 8%; right: 8%; height: 1px;
  background: rgba(62,71,151,0.28);
  pointer-events: none;
}
@media (max-width: 900px) {
  .career-hero { min-height: auto; padding: 140px 20px 70px; }
}

/* ── REFERENCE PAGE ─────────────────────────────────────────── */
.ref-hero { min-height: 52vh; padding: 160px 24px 90px; }
.ref-hero-glow {
  position: absolute; top: -100px; left: -100px;
  width: 520px; height: 520px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(62,71,151,0.11) 0%, transparent 65%);
}

.ref-section { background: var(--bg-light); padding: 80px 24px 110px; }
.ref-wrap { max-width: 1100px; margin: 0 auto; }

/* Featured card */
.ref-featured {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 48px 52px;
  margin-bottom: 20px;
  overflow: hidden;
}
.ref-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--blue), rgba(62,71,151,0.2));
}
.ref-quote-mark {
  font-size: 9rem; line-height: 0.6;
  color: var(--blue); opacity: 0.08;
  font-family: Georgia, serif;
  position: absolute; top: 28px; right: 40px;
  pointer-events: none; user-select: none;
}
.ref-featured-text {
  font-size: 1.08rem; font-weight: 300; line-height: 1.82;
  color: var(--text-mid); font-style: italic;
  max-width: 820px; margin-bottom: 28px;
}
.ref-featured-attr { display: flex; align-items: center; gap: 14px; }
.ref-featured-name {
  font-size: 0.9rem; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.01em;
}
.ref-featured-role {
  font-size: 0.76rem; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.04em;
}
.ref-featured-attr::before {
  content: ''; width: 28px; height: 1px;
  background: var(--blue); opacity: 0.5;
}

/* Grid */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ref-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.22s, transform 0.22s;
}
.ref-card:hover {
  border-color: rgba(62,71,151,0.22);
  transform: translateY(-2px);
}
.ref-card-dark {
  background: linear-gradient(160deg, #10141c, #0c0f16);
  border-color: rgba(255,255,255,0.08);
}
.ref-card-dark:hover { border-color: rgba(62,71,151,0.28); }

.ref-card-header {
  display: flex; align-items: flex-start; gap: 14px;
}
.ref-card-initial {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: rgba(62,71,151,0.10); border: 1px solid rgba(62,71,151,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--blue);
}
.ref-card-initial-gold { background: rgba(62,71,151,0.15); }

.ref-card-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.ref-card-meta { font-size: 0.73rem; color: var(--text-muted); margin-top: 3px; line-height: 1.5; }
.ref-card-tenure { color: var(--blue); font-weight: 600; }

.ref-card-text {
  font-size: 0.85rem; font-weight: 300; line-height: 1.72;
  color: var(--text-mid); font-style: italic; flex: 1;
}
.ref-card-sig {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.02em;
}
.ref-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  width: fit-content;
}
.ref-card-link:hover { color: var(--blue); gap: 9px; }
.ref-card-link-gold { color: rgba(62,71,151,0.6); }
.ref-card-link-gold:hover { color: var(--blue); }
.ref-light { color: var(--hero-text) !important; }
.ref-muted { color: rgba(240,236,230,0.45) !important; }

/* Reference card product photos */
.ref-card-photo {
  width: 100%; border-radius: 10px; overflow: hidden;
  margin-top: 4px; flex-shrink: 0;
  aspect-ratio: 4 / 3; background: #ffffff;
  border: 1px solid var(--border-light);
}
.ref-card-photo img {
  width: 100%; height: 100%; object-fit: contain;
  display: block; border-radius: 10px;
}
.ref-featured-photo {
  width: 100%; border-radius: 12px; overflow: hidden;
  margin-top: 18px;
}
.ref-featured-photo img {
  width: 100%; height: auto; object-fit: contain;
  display: block; border-radius: 12px;
}

@media (max-width: 980px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-featured { padding: 36px 32px; }
}
@media (max-width: 600px) {
  .ref-grid { grid-template-columns: 1fr; }
  .ref-featured { padding: 28px 22px; }
  .ref-hero { padding: 140px 18px 72px; }
}

.svc-hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: saturate(0.7) brightness(1.05);
  pointer-events: none; z-index: 0;
}
.svc-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(15,21,64,0.35) 0%, rgba(15,21,64,0.05) 50%, rgba(15,21,64,0.55) 100%),
    radial-gradient(ellipse 70% 60% at -5% 30%, rgba(62,71,151,0.10) 0%, transparent 55%);
}
.svc-hero-video .svc-hero-glow { display: none; }
.svc-hero-video .svc-hero-inner { z-index: 2; }

/* ── IMPORT-EXPORT service blocks ───────────────────────────── */
.ie-service-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
}
.ie-service-block {
  background: var(--bg-white);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.ie-service-block-header {
  display: flex; align-items: center; gap: 16px;
}
.ie-service-block-num {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--blue); opacity: 0.8; min-width: 24px;
}
.ie-service-block-title {
  font-size: 1rem; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.01em;
}
.ie-service-block-lead {
  font-size: 0.88rem; font-weight: 300; line-height: 1.72;
  color: var(--text-mid);
}
.ie-service-block-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 6px;
  border-top: 1px solid var(--border-light);
}
.ie-service-block-list li {
  display: flex; flex-direction: column; gap: 3px;
  padding-left: 14px;
  border-left: 2px solid rgba(62,71,151,0.3);
}
.ie-list-title {
  font-size: 0.82rem; font-weight: 600; color: var(--text-dark);
}
.ie-list-text {
  font-size: 0.8rem; font-weight: 300; color: var(--text-muted); line-height: 1.62;
}
@media (max-width: 860px) {
  .ie-service-blocks { grid-template-columns: 1fr; }
}

/* ── O SPOLEČNOSTI — services row ───────────────────────────── */
.os-services { background: var(--bg-light); padding: 90px 24px 110px; }
.os-services-inner { max-width: 1100px; margin: 0 auto; }
.os-services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
}
.os-service-item {
  background: var(--bg-white);
  padding: 32px 26px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.2s;
}
.os-service-item:hover { background: #faf9f6; }
.os-service-num {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--blue); opacity: 0.8;
}
.os-service-name {
  font-size: 0.96rem; font-weight: 700;
  color: var(--text-dark); line-height: 1.2;
}
.os-service-desc {
  font-size: 0.82rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.62; flex: 1;
}
.os-service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 600;
  color: var(--blue); margin-top: 6px;
  transition: gap 0.2s;
}
.os-service-item:hover .os-service-link { gap: 10px; }

/* ── O SPOLEČNOSTI — how to start ───────────────────────────── */
.os-start { background: var(--bg-white); padding: 90px 24px 110px; }
.os-start-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.os-start-right { display: flex; flex-direction: column; gap: 0; }
.os-start-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.os-start-step:first-child { padding-top: 0; }
.os-start-step:last-of-type { border-bottom: none; }
.os-start-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--blue); min-width: 28px; padding-top: 2px;
}
.os-start-title {
  font-size: 0.92rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 5px;
}
.os-start-text {
  font-size: 0.84rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.66;
}

@media (max-width: 900px) {
  .os-services-row { grid-template-columns: repeat(2, 1fr); }
  .os-start-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 500px) {
  .os-services-row { grid-template-columns: 1fr; }
}

/* ── THREE MAPS SECTION ─────────────────────────────────────── */
.maps-section {
  background: var(--bg-light);
  padding: 80px 24px 110px;
}
.maps-inner { max-width: 1100px; margin: 0 auto; }
.maps-header { margin-bottom: 52px; }
.maps-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--text-dark); margin-top: 10px; line-height: 1.1;
}
.maps-heading em { font-style: normal; color: var(--blue); font-weight: 300; }

.maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.map-block {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.map-block-info {
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.map-block-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue);
}
.map-block-address {
  font-size: 0.92rem; font-weight: 400;
  color: var(--text-dark); line-height: 1.55;
}
.map-block-info .btn-navigate {
  margin-top: 10px; align-self: flex-start;
}

.map-block-embed {
  flex: 1; min-height: 220px;
}
.map-block-embed iframe {
  width: 100%; height: 100%; min-height: 220px;
  display: block; border: 0;
  filter: grayscale(0.15);
}

@media (max-width: 900px) {
  .maps-grid { grid-template-columns: 1fr; }
  .map-block-embed { min-height: 260px; }
  .map-block-embed iframe { min-height: 260px; }
}

/* ── CHINESE HOMEPAGE — fire horse ──────────────────────────── */
.cn-horse-wrap {
  position: absolute;
  right: -2%; bottom: 0;
  width: 60%; max-width: 860px;
  pointer-events: none; z-index: 1;
  opacity: 0.95;
  mask-image: linear-gradient(to left, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
}
.cn-horse-img {
  width: 100%; display: block;
  object-fit: contain; object-position: right bottom;
}
.cn-hero-heading h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.0; color: var(--hero-text);
  margin-bottom: 24px;
}
.cn-hero-heading h1 em {
  color: var(--blue); font-style: normal; font-weight: 300;
}
@media (max-width: 768px) {
  .cn-horse-wrap {
    width: 100%; opacity: 0.25;
    mask-image: linear-gradient(to top, transparent, rgba(0,0,0,0.5) 60%);
    -webkit-mask-image: linear-gradient(to top, transparent, rgba(0,0,0,0.5) 60%);
  }
}

/* ── CHINESE HOMEPAGE — equal 2-card bento ──────────────────── */
.page-home-cn .bento {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 460px;
}
.page-home-cn .card:nth-child(1),
.page-home-cn .card:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
  min-height: 460px;
}

.cn-greeting {
  border-top: 1px solid rgba(62,71,151,0.25);
  padding-top: 20px;
  font-size: 0.92rem;
  line-height: 1.9;
  max-width: 560px;
}

/* ── O SPOLEČNOSTI CN — video hero ──────────────────────────── */
.about-hero-video { position: relative; overflow: hidden; }
.about-hero-video { background: #0f1540; }
.about-hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0.85;
  filter: brightness(1.05);
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 62% at 50% 48%, rgba(15,21,64,0.45) 0%, rgba(15,21,64,0.2) 55%, transparent 75%),
    linear-gradient(to bottom, rgba(15,21,64,0.15) 0%, rgba(15,21,64,0.0) 42%, rgba(15,21,64,0.35) 100%);
  z-index: 1;
}
}
.about-hero-video .hero-content { position: relative; z-index: 2; }

/* About pages: "Home" in hero heading is gold */
.about-hero .hero-h1 span { color: var(--blue); }

/* ── DARK-SECTION ACCENT OVERRIDES ──────────────────────────────────
   Brand blue #3e4797 is invisible on dark backgrounds.
   On dark sections we use a light periwinkle for accent elements.
──────────────────────────────────────────────────────────────────── */
:root { --blue-on-dark: #7ba7ff; }

/* Hero */
.hero .hero-eyebrow { color: var(--blue-on-dark); }
.hero .hero-eyebrow::before,
.hero .hero-eyebrow::after { background: var(--blue-on-dark); }
.roll-phrase { color: var(--blue-on-dark) !important; }
.scroll-line { background: linear-gradient(to bottom, var(--blue-on-dark), transparent) !important; }

/* Page heroes (contact, about, services etc.) */
.page-hero .page-eyebrow { color: var(--blue-on-dark); }
.page-hero .page-eyebrow::before,
.page-hero .page-eyebrow::after { background: var(--blue-on-dark); }
.page-hero .page-title em { color: var(--blue-on-dark); }

/* Service page hero */
.hero-eyebrow,
.hero-tag-dot,
.svc-kicker-gold,
.svc-h2 em,
.svc-cta-title em { color: var(--blue-on-dark); }
.hero-tag-dot { background: var(--blue-on-dark) !important; }

/* About-page hero */
.about-hero .hero-h1 em,
.about-hero .hero-h1 span { color: var(--blue-on-dark); }
.about-big-h em { color: var(--blue-on-dark); }

/* How it works (dark section) */
.how .how-eyebrow span { color: var(--blue-on-dark) !important; }
.how .how-heading em { color: var(--blue-on-dark) !important; }
.how .how-step-num { color: var(--blue-on-dark); }
.how .how-step-line { background: linear-gradient(to bottom, var(--blue-on-dark), rgba(123,167,255,0.2)); }
.how .how-connector-line { background: rgba(123,167,255,0.35); }
.how .how-connector-diamond { background: var(--blue-on-dark); }

/* CTA banner (solid brand blue bg) */
.cta-banner .cta-eyebrow { color: #ffffff; }
.cta-banner .cta-heading { color: #ffffff; }
.cta-banner .cta-heading em { color: var(--blue-on-dark); }
.cta-banner .cta-sub { color: rgba(255,255,255,0.65); }
.cta-banner .cta-phone,
.cta-banner .cta-email { color: rgba(255,255,255,0.6); }
.cta-banner .cta-phone:hover,
.cta-banner .cta-email:hover { color: #ffffff; }
.cta-banner .btn-primary { background: #ffffff; color: #3e4797; box-shadow: 0 4px 22px rgba(0,0,0,0.2); }
.cta-banner .btn-primary:hover { background: #eef2ff; color: #3e4797; }

/* Service page hero – eyebrow, title accent, panel */
.svc-eyebrow { color: var(--blue-on-dark); }
.svc-eyebrow-line { background: var(--blue-on-dark); }
.svc-hero-title em { color: var(--blue-on-dark); }
.svc-hero-panel::before { background: linear-gradient(to right, transparent, rgba(123,167,255,0.4), transparent); }
.svc-panel-kicker { color: var(--blue-on-dark); }
.svc-panel-badge {
  background: rgba(123,167,255,0.12);
  border-color: rgba(123,167,255,0.22);
  color: rgba(123,167,255,0.9);
}
.svc-panel-icon { color: var(--blue-on-dark); }

/* Service page CTA */
.svc-cta-banner .svc-cta-title em { color: var(--blue-on-dark); }

/* Dark testimonials section */
.svc-section-dark .ca-testimonial-name { color: var(--blue-on-dark); }

/* Obchodní zastoupení – brand elements on dark section */
.svc-section-dark .oz-brand-name-featured { color: var(--blue-on-dark); }
.svc-section-dark .oz-brand-badge-excl {
  color: var(--blue-on-dark);
  background: rgba(123,167,255,0.12);
  border-color: rgba(123,167,255,0.25);
}
.svc-section-dark .oz-brand-feature-dot { background: var(--blue-on-dark); }
.svc-section-dark .oz-brand-link { color: var(--blue-on-dark); }

/* Drawer */
.drawer-link:hover,
.drawer-link.active,
.drawer-submenu-toggle:hover,
.drawer-submenu-toggle.open,
.drawer-submenu a:hover { color: var(--blue-on-dark); text-shadow: 0 0 28px rgba(123,167,255,0.5); }

/* Footer */
.footer { background: #0d1035; }
.footer::before { background: linear-gradient(to right, transparent 0%, rgba(123,167,255,0.3) 30%, rgba(123,167,255,0.3) 70%, transparent 100%); }
.footer .footer-col-title { color: var(--blue-on-dark); }
.footer .footer-badge-dot { background: var(--blue-on-dark); }
.footer .footer-badge:hover { border-color: rgba(123,167,255,0.3); color: var(--blue-on-dark); }
.footer .footer-contact-icon { background: rgba(123,167,255,0.08); border-color: rgba(123,167,255,0.15); }
.footer .footer-contact-icon svg { stroke: var(--blue-on-dark); }
.footer a.footer-contact-value:hover { color: var(--blue-on-dark); }
.footer .footer-copy a { color: rgba(123,167,255,0.5); }
.footer .footer-copy a:hover { color: var(--blue-on-dark); }

/* ── TEAM SECTION – dark background overrides ────────────────────── */
.team .team-eyebrow { color: var(--blue-on-dark); }
.team .team-eyebrow::before, .team .team-eyebrow::after { background: var(--blue-on-dark); }
.team .team-heading em { color: var(--blue-on-dark); }
.team .team-role { color: var(--blue-on-dark); }
.team .team-initials { color: rgba(123,167,255,0.2); }
.team .team-contact svg { stroke: var(--blue-on-dark); }
.team a.team-contact:hover { color: var(--blue-on-dark); }
.team .team-card.visible:hover { border-color: rgba(123,167,255,0.25); }
.team .team-photo::after { background: linear-gradient(90deg, var(--blue-on-dark), rgba(123,167,255,0.15)); }

/* ── LOGO IMAGE PLACEMENTS ───────────────────────────────────────── */

/* Footer: strip the text-pill styling, show image in white */
.footer-logo {
  padding: 0;
  border: none !important;
  background: none !important;
  margin-bottom: 18px;
}
.footer-logo:hover { border: none !important; background: none !important; }
.footer-logo img {
  width: 200px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

/* About page hero: logo image in original brand colors (matches header) */
.hero-logo-img {
  width: 520px;
  max-width: 82vw;
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.5)) drop-shadow(0 2px 6px rgba(255,255,255,0.35));
}
.about-hero .hero-eyebrow,
.about-hero .hero-desc {
  text-shadow: 0 1px 3px rgba(15,21,64,0.55), 0 2px 18px rgba(15,21,64,0.45);
}
/* Tag pill provides its own contrast; solid bg keeps text crisp over video */
.about-hero .hero-tag { background: rgba(255,255,255,0.92); }

/* Lighter hero video: text needs shadow for legibility */
.hero .hero-prelabel,
.hero .hero-sub,
.hero .roll-phrase {
  text-shadow: 0 1px 4px rgba(15,21,64,0.75), 0 2px 26px rgba(15,21,64,0.6);
}
.hero .hero-eyebrow {
  text-shadow: 0 1px 4px rgba(15,21,64,0.85), 0 2px 16px rgba(15,21,64,0.6);
}

/* Contact page: logo in blue (light background) */
.contact-logo-img {
  height: 36px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.info-addr-name { display: flex; align-items: center; flex-wrap: wrap; margin-bottom: 4px; }
.info-addr-sro { font-size: 0.9rem; font-weight: 500; color: var(--text-mid); vertical-align: middle; }

/* How-it-works: now white bg, switch accents back to brand blue */
.how .how-step-num { color: var(--blue) !important; }
.how .how-step-line { background: linear-gradient(to bottom, var(--blue), rgba(62,71,151,0.2)) !important; }
.how .how-connector-line { background: rgba(62,71,151,0.2) !important; }
.how .how-connector-diamond { background: var(--blue) !important; }
.how .how-eyebrow span { color: var(--blue) !important; }
.how .how-heading em { color: var(--blue) !important; }

/* ═══════════════════════════════════════════════════════════
   ZAHRANIČNÍ SPOLUPRÁCE + PORTFOLIO + REALIZAČNÍ FOTA
   ═══════════════════════════════════════════════════════════ */

/* Compact hero variant (portfolio / realizační fota) */
.svc-hero-compact { min-height: max(56vh, 480px); padding: 150px 24px 80px; }
.svc-hero-inner-center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 780px;
}
.svc-hero-inner-center .svc-eyebrow { justify-content: center; }
.svc-hero-inner-center .svc-hero-sub { margin-left: auto; margin-right: auto; }

/* Two-column running text */
.zs-text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
}
.zs-text-cols p {
  font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin: 0;
}

/* SWATTEN product portfolio strip (dark section) */
.zs-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.zs-portfolio-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.28s, border-color 0.28s;
}
.zs-portfolio-item:hover { transform: translateY(-4px); border-color: rgba(123,167,255,0.3); }
.zs-portfolio-num {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--blue-on-dark); margin-bottom: 14px;
}
.zs-portfolio-name {
  font-size: 1.02rem; font-weight: 600; color: var(--hero-text); margin-bottom: 8px;
}
.zs-portfolio-desc {
  font-size: 0.84rem; line-height: 1.65; color: var(--card-muted);
}

/* Checklist grid (Proč SWATTEN) */
.zs-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.zs-check {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.92rem; line-height: 1.65; color: var(--text-mid);
}
.zs-check-mark {
  flex: 0 0 auto;
  width: 20px; height: 20px; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue-dim); color: var(--blue);
  font-size: 0.7rem; font-weight: 700;
}

/* Info blocks (technologické zázemí / distributoři) */
.zs-info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.zs-info-title {
  font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-dark); margin: 0 0 14px;
}
.zs-info-block p {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); margin: 0 0 14px;
}
.zs-info-block p:last-child { margin-bottom: 0; }

/* Cross links to sibling pages */
.zs-more-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.zs-more-link {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 22px 26px;
  text-decoration: none;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
  color: var(--blue);
}
.zs-more-link:hover { transform: translateY(-3px); border-color: var(--blue-glow); box-shadow: 0 12px 30px rgba(62,71,151,0.1); }
.zs-more-kicker {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 5px;
}
.zs-more-title { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); }

/* "Připravujeme" placeholder (realizační fota) */
.zs-coming {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--bg-white);
  border: 1px dashed rgba(62,71,151,0.3);
  border-radius: 20px;
  padding: 64px 40px;
}
.zs-coming-icon {
  width: 58px; height: 58px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue-dim); color: var(--blue);
}
.zs-coming-title {
  font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-dark); margin: 0 0 12px;
}
.zs-coming-text {
  font-size: 0.95rem; line-height: 1.75; color: var(--text-mid); margin: 0 0 28px;
}
.zs-coming-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ── Portfolio gallery ─────────────────────────────────────── */
.pf-group { margin-bottom: 52px; }
.pf-group:last-child { margin-bottom: 0; }
.pf-group-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.pf-group-title {
  font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-dark); margin: 0;
}
.pf-group-count {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-muted);
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pf-item {
  display: block; padding: 0; margin: 0;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-white);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  transition: transform 0.28s, box-shadow 0.28s;
}
.pf-item:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(15,21,64,0.12); }
.pf-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.pf-item:hover img { transform: scale(1.04); }

/* ── Lightbox ──────────────────────────────────────────────── */
.lb-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(10,13,35,0.92);
  padding: 56px 72px;
}
.lb-overlay.open { display: flex; }
.lb-img {
  max-width: 100%; max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lb-close, .lb-nav {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s;
  font-family: 'Outfit', sans-serif;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-close {
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  font-size: 1.6rem; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 1.9rem; line-height: 1; padding-bottom: 4px;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .zs-portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .pf-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .zs-text-cols { grid-template-columns: 1fr; gap: 20px; }
  .zs-portfolio-grid { grid-template-columns: 1fr 1fr; }
  .zs-check-grid { grid-template-columns: 1fr; }
  .zs-info-blocks { grid-template-columns: 1fr; gap: 28px; }
  .zs-more-links { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .lb-overlay { padding: 64px 12px; }
  .lb-nav { width: 40px; height: 40px; }
  .zs-coming { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .zs-portfolio-grid { grid-template-columns: 1fr; }
}

/* Drawer submenu toggles: give wrapped two-line labels breathing room,
   and shrink the label box so the arrow hugs the text like on Služby */
.drawer-submenu-toggle { line-height: 1.4; }
.drawer-submenu-toggle > span { width: min-content; }

/* ═══════════════════════════════════════════════════════════
   MOBILE CENTERING — requested sections across the site
   ═══════════════════════════════════════════════════════════ */

/* ── Homepage: "Připraveni začít?" CTA banner ───────────────── */
@media (max-width: 900px) {
  .cta-inner { align-items: center; }
  .cta-text { text-align: center; }
  .cta-actions { align-items: center; }
  .cta-contacts { align-items: center; }
}

/* ── O společnosti: headline + "Jak začít spolupráci" ────────── */
@media (max-width: 900px) {
  .about-topbar { flex-direction: column; align-items: center; text-align: center; }
  .about-pills { justify-content: center; }
  .about-big-h { text-align: center; }
  .os-start-left,
  .os-start-right { text-align: center; }
  .os-start-step { flex-direction: column; align-items: center; gap: 8px; }
}

/* ── Shared service-page hero (import-export, skladovací služby,
     obchodní zastoupení, cestovní agentura, zahraniční spolupráce) ── */
@media (max-width: 860px) {
  .svc-hero-copy { text-align: center; }
  .svc-hero-sub { max-width: 480px; margin-left: auto; margin-right: auto; }
  .svc-hero-actions { justify-content: center; }
  .svc-hero-panel { margin: 0 auto; }
}

/* ── Shared service-page CTA banner (Zaujali/Zaujaly/Zájem/
     Nevíte/Máte zájem/Přidejte se — all svc-cta-banner instances) ── */
@media (max-width: 860px) {
  .svc-cta-inner { align-items: center; text-align: center; }
  .svc-cta-actions { justify-content: center; }
}

/* ── Import a export: numbered headlines in "Co zajistíme" ───── */
@media (max-width: 860px) {
  .ie-service-block-header { justify-content: center; }
}

/* ── Shared "benefits" intro column (Výhody spolupráce headline /
     Proč s námi section / Firemní eventy section) + card rows ── */
@media (max-width: 1020px) {
  .svc-benefits-left { text-align: center; }
  .svc-benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

/* ── SWATTEN page: "Silné technologické zázemí" info blocks ──── */
@media (max-width: 760px) {
  .zs-info-title,
  .zs-info-block p { text-align: center; }
}

/* ── Shared page-hero intro (Reference / Kariéra / Kontakt hero) ── */
@media (max-width: 900px) {
  .page-hero-inner { text-align: center; }
  .page-sub { margin-left: auto; margin-right: auto; }
  .career-hero-actions { justify-content: center; }
}

/* ── Kontakt hero specifics ───────────────────────────────────── */
@media (max-width: 980px) {
  .contact-hero-copy { text-align: center; margin-left: auto; margin-right: auto; }
  .contact-hero-sub { margin-left: auto; margin-right: auto; }
  .contact-hero-actions { justify-content: center; }
}

/* ── Kariéra: all sections ─────────────────────────────────────── */
@media (max-width: 980px) {
  .careers-top { text-align: center; margin-left: auto; margin-right: auto; }
  .career-benefit { text-align: center; }
  .careers-split { text-align: center; }
  .career-dept-top { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .career-step { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .career-cta { align-items: center; text-align: center; }
  .career-cta-desc { margin-left: auto; margin-right: auto; }
  .career-cta-actions { justify-content: center; }
}

/* ── Kontakt: all sections (info column, maps) ────────────────── */
@media (max-width: 900px) {
  .info-col { align-items: center; text-align: center; }
  .info-direct-item { align-items: center; }
  .info-ids { justify-content: center; }
  .pills-label { text-align: center; }
  .pills { justify-content: center; }
  .form-foot { justify-content: center; }
  .maps-header { text-align: center; }
  .map-block-info { align-items: center; text-align: center; }
  .map-block-info .btn-navigate { align-self: center; }
}

/* ═══════════════════════════════════════════════════════════
   WHITE HERO TEXT + BLUE-GLASS GHOST BUTTON + LIGHT FOOTER
   ═══════════════════════════════════════════════════════════ */

/* ── Hero text: white instead of muted gray (all pages) ─────── */
.hero-prelabel { color: #ffffff; }
.hero-sub { color: #ffffff; }
.svc-hero-sub { color: #ffffff; }
.page-sub { color: #ffffff; }
.contact-hero-sub { color: #ffffff; }
.svc-panel-list li { color: rgba(255,255,255,0.95); }
.svc-panel-note { color: rgba(255,255,255,0.72); }
.contact-hero-note,
.contact-hero-panel-status { color: rgba(255,255,255,0.85); }
.contact-hero-card-label { color: rgba(255,255,255,0.72); }

/* ── Ghost button on dark/video heroes: blue glassmorphic ───── */
.btn-ghost-dark {
  background: rgba(62,71,151,0.38);
  border-color: rgba(123,167,255,0.45);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost-dark:hover {
  background: rgba(62,71,151,0.55);
  border-color: rgba(123,167,255,0.7);
}

/* ── Footer: light blue theme so the standard colored logo works ── */
.footer { background: #e9edf9; }
.footer::before {
  background: linear-gradient(to right, transparent, rgba(62,71,151,0.35), transparent);
}
.footer::after {
  background: radial-gradient(ellipse, rgba(62,71,151,0.06) 0%, transparent 70%);
}
.footer-inner { border-bottom: 1px solid rgba(15,21,64,0.1); }

.footer-logo img {
  filter: none;
  opacity: 1;
}

.footer-tagline { color: var(--text-mid); }

.footer-badge {
  border-color: rgba(62,71,151,0.25);
  color: var(--text-mid);
}
.footer-badge:hover { border-color: rgba(62,71,151,0.45); color: var(--blue); }
.footer-badge-dot { opacity: 1; }

.footer-col-title { color: var(--blue); opacity: 1; }

.footer-col-link { color: var(--text-mid); }
.footer-col-link:hover { color: var(--blue); }

.footer-contact-icon {
  background: rgba(62,71,151,0.1);
  border-color: rgba(62,71,151,0.25);
}
.footer-contact-icon svg { opacity: 1; }

.footer-contact-label { color: var(--text-muted); }
.footer-contact-value { color: var(--text-dark); }
a.footer-contact-value:hover { color: var(--blue); }

.footer-copy { color: var(--text-muted); }
.footer-copy a { color: var(--blue); }
.footer-copy a:hover { color: #6272c9; }

.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--blue); }

/* ═══════════════════════════════════════════════════════════
   SERVICES BENTO REVAMP — import/export featured full-width
   on top, three cards below; lighter cards, visible accents
   ═══════════════════════════════════════════════════════════ */
.bento {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 380px 340px;
}
.card:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
.card:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
.card:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
.card:nth-child(4) { grid-column: 3 / 4; grid-row: 2; }

/* Featured card gets larger type and breathing room */
.card:nth-child(1) .card-body { padding: 36px 40px; }
.card:nth-child(1) .card-title { font-size: 2.2rem; }
.card:nth-child(1) .card-desc { max-width: 560px; font-size: 0.85rem; }

/* Lighter, navy-tinted scrim instead of near-black */
.card-overlay {
  background: linear-gradient(to top, rgba(13,18,48,0.85) 0%, rgba(13,18,48,0.32) 55%, rgba(13,18,48,0.03) 100%);
}
.card.visible:hover .card-overlay {
  background: linear-gradient(to top, rgba(13,18,48,0.9) 0%, rgba(13,18,48,0.42) 58%, rgba(13,18,48,0.08) 100%);
}

/* Readable accents on dark imagery */
.card { border-color: rgba(255,255,255,0.14); }
.card-tag { color: var(--blue-on-dark); opacity: 1; }
.card-link { color: var(--blue-on-dark); opacity: 1; }
.card-number { color: rgba(255,255,255,0.45); }
.card-title { color: #ffffff; }
.card-desc { color: rgba(255,255,255,0.8); }
.card::after { background: linear-gradient(90deg, var(--blue-on-dark), rgba(123,167,255,0.15)); }

/* CN homepage has only two cards: featured on top, warehouse below */
.page-home-cn .bento { grid-template-columns: 1fr; grid-template-rows: 380px 340px; }
.page-home-cn .card:nth-child(1) { grid-column: 1; grid-row: 1; min-height: 0; }
.page-home-cn .card:nth-child(2) { grid-column: 1; grid-row: 2; min-height: 0; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .card:nth-child(1),
  .card:nth-child(2),
  .card:nth-child(3),
  .card:nth-child(4) { grid-column: 1; grid-row: auto; min-height: 300px; }
  .card:nth-child(1) { min-height: 420px; }
  .card:nth-child(1) .card-body { padding: 28px; }
  .card:nth-child(1) .card-title { font-size: 1.6rem; }
  .card:nth-child(1) .card-desc { font-size: 0.79rem; }
}

/* ═══════════════════════════════════════════════════════════
   IMPORT/EXPORT PAGE IMAGERY + FLAT PORTFOLIO GALLERY
   ═══════════════════════════════════════════════════════════ */
.ie-block-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.ie-benefits-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 28px;
  display: block;
}
/* Denser grid for the flat 41-photo gallery */
.ie-pf-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .ie-pf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .ie-pf-grid { grid-template-columns: repeat(2, 1fr); } }

/* SWATTEN page: text + inverter render split */
.zs-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.zs-split-text p {
  font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin: 0 0 18px;
}
.zs-split-text p:last-child { margin-bottom: 0; }
.zs-split-img img {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(15,21,64,0.18));
}
@media (max-width: 860px) {
  .zs-split { grid-template-columns: 1fr; gap: 36px; }
  .zs-split-text { text-align: center; }
  .zs-split-img img { max-width: 340px; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE IMAGERY — CA photos, kariéra photo, sklad strip, OZ rows
   ═══════════════════════════════════════════════════════════ */
.ca-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}
.ca-photos img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.career-photo {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 18px;
  margin-top: 34px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.sklad-galerie { padding-top: 72px; padding-bottom: 72px; }
.sklad-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sklad-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.oz-brand-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.oz-brand-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 760px) {
  .ca-photos { grid-template-columns: 1fr; }
  .career-photo { aspect-ratio: 16 / 10; }
  .sklad-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Reference featured card: proportionate product photo row + link */
.ref-featured-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 16px;
}
.ref-featured-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  display: block;
}

/* Thermann card: fancoil + heat pump side by side */
.ref-card-photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ref-card-photo-duo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Dropdown hover fix: invisible bridge covers the gap between the
   toggle and the menu so slow mouse movement doesn't close it */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -16px; left: -10px; right: -10px; height: 16px;
}

/* ── Navbar fit: hamburger below 1240px (full nav needs ~1160px + slack),
   keep lang buttons on one line ─────────────────────────────── */
.lang-btn { white-space: nowrap; }
@media (max-width: 1240px) {
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .lang-switcher { display: none; }
  .nav-lang-mobile { display: flex; }
  .nav-hamburger { display: flex; }
}

/* Tighter nav spacing so the full bar fits with ~60px slack in all browsers */
.nav-link { padding: 8px 10px; }
.lang-btn { padding: 5px 6px; }
.lang-switcher { margin-left: 4px; padding-left: 8px; }
.nav-wordmark { padding: 0 6px; }

/* Small screens: scale the wordmark down so logo + lang + hamburger fit */
@media (max-width: 600px) {
  .nav-wordmark img { height: 26px; }
  .nav-lang-mobile .lang-btn { padding: 5px 5px; }
}
@media (max-width: 400px) {
  .nav-wordmark img { height: 22px; }
  .nav-lang-mobile .lang-btn { padding: 5px 4px; }
}

/* Homepage hero tag: more prominent per client (white, larger, strong shadow) */
.hero .hero-eyebrow {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-shadow: 0 1px 4px rgba(15,21,64,0.9), 0 2px 20px rgba(15,21,64,0.7);
}
.hero .hero-eyebrow::before,
.hero .hero-eyebrow::after { background: #ffffff; opacity: 0.75; }
