:root{
      --blue:#005794;
      --blue-dark:#004279;
      --yellow:#FFD100;
      --yellow-dark:#FFB300;
      --dark:#003768;
      --muted:#4A5570;
      --bg:#F5F7FB;
      --card:#FFFFFF;
      --radius-xl:18px;
      --radius-lg:14px;
      --shadow-soft:0 20px 45px rgba(12,18,34,0.08);
    }
    *{box-sizing:border-box;}
    body{
      margin:0;
      font-family:'Montserrat',sans-serif;
      background:var(--bg);
      color:var(--dark);
      line-height:1.6;
      font-size:16px;
    }
    img{max-width:100%;display:block;}
    a{text-decoration:none;color:inherit;}
    .container{
      width:100%;
      max-width:1200px;
      margin:0 auto;
      padding:0 16px;
    }

    /* ===== HEADER ===== */
    header{ position:sticky; top:0; z-index:900; background:#fff; transform:translateZ(0); }
   /* ===== FIX: no jitter on sticky header ===== */
   /* ===== TOP BAR HIDE ON SCROLL (same as delivery) ===== */
.top-bar{
  max-height: 40px;
  transition: max-height .22s ease, padding .22s ease;
  overflow: hidden; /* важливо, щоб контент не випирав */
  background:#012b51;
  transform:translateZ(0);
  backface-visibility:hidden;
}

header.scrolled .top-bar{
  max-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.top-bar{
  background:#012b51;
  color:#f5f7fb;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding:6px 0;

}

    .top-bar{
      background:#012b51;
      color:#f5f7fb;
      font-size:12px;
      letter-spacing:.04em;
      text-transform:uppercase;
      padding:6px 0;
    }
    .top-bar-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
    .top-bar-text{ text-align:center; width:100%; color:#FFD100; font-weight:600; }
    .top-bar-text span{ color:inherit; font-weight:inherit; }
    .lang-switch{
      display:inline-flex; gap:6px; padding:2px; border-radius:999px;
      background:#111827; border:1px solid rgba(148,163,184,0.6); flex-shrink:0;
    }
    .lang-switch span{ padding:3px 10px; border-radius:999px; cursor:pointer; font-size:11px; color:#e5e7eb; }
    .lang-switch span.active{ background:#fff; color:#111827; font-weight:600; }

    .main-bar{ background:#fff; border-bottom:1px solid rgba(15,23,42,0.08); box-shadow:0 6px 18px rgba(15,23,42,0.04); }
    .main-bar-inner{ display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:24px; }
    .logo-row{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
    .logo-row img{ height:56px; }

    nav{ flex:1; display:flex; justify-content:center; }
    .nav-rows{ display:flex; flex-direction:column; align-items:center; gap:2px; }
    .nav-list{
      list-style:none; display:flex; flex-wrap:nowrap; gap:16px 22px;
      padding:0; margin:0; font-size:14px; font-weight:500; justify-content:center;
    }
    .nav-list a{
      position:relative; color:var(--muted); padding:4px 0; transition:color .2s ease; white-space:nowrap;
    }
    .nav-list a::after{
      content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px;
      border-radius:999px; background:#005794; opacity:0; transform:scaleX(0.7); transition:all .2s ease;
    }
    .nav-list a:hover{ color:var(--dark); }
    .nav-list a:hover::after{ opacity:1; transform:scaleX(1); }

    

    .nav-list a.is-active{ color:var(--dark); }
    .nav-list a.is-active::after{ opacity:1; transform:scaleX(1); }
    
    /* щоб underline не з’їжджав до нижнього рядка (було bottom:-4px) */
.nav-list a::after{
  bottom:0px; /* або 1px, якщо хочеш ближче до тексту */
}

/* ACTIVE: синій + жирний + тінь */
/* ACTIVE: синій + жирний + "затемнення під словом" */
.nav-list a.is-active,
.nav-list a[aria-current="page"]{
  color:var(--blue);
  font-weight:700;
  position:relative;
  z-index:1;
}

/* м'яка тінь під словом */
.nav-list a.is-active::before,
.nav-list a[aria-current="page"]::before{
      content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 3px;
    height: 8px;
    background: rgb(0 0 0 / 30%);
    filter: blur(7px);
    opacity: .85;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
}
/* якщо underline для активного НЕ потрібен — вимкни */
.nav-list a.is-active::after,
.nav-list a[aria-current="page"]::after{
  opacity:0;
}
    
    
.header-actions{ display:flex; gap:10px; align-items:center; flex-shrink:0; }
    .header-link{
      display:inline-flex;align-items:center;justify-content:center;
      padding:9px 12px;
      border-radius:12px;
      font-size:13px;
      font-weight:600;
      color:var(--muted);
      background:rgba(255,255,255,0.7);
      border:1px solid rgba(15,23,42,0.08);
      transition:all .2s ease;
      white-space:nowrap;
    }
    .header-link:hover{
      color:var(--blue);
      background:#fff;
      box-shadow:0 10px 26px rgba(12,18,34,0.10);
      transform:translateY(-1px);
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 22px; border-radius:999px; font-size:14px; font-weight:600;
      border:none; cursor:pointer; transition:all .2s ease; white-space:nowrap;
    }
    .btn-primary{
      background:var(--yellow);
      color:#1F2933;
      box-shadow:0 14px 34px rgba(255, 209, 0, .35);
      border:1px solid rgba(15,23,42,0.10);
    }
    .btn-primary:hover{
      background:var(--yellow-dark);
      transform:translateY(-1px);
      box-shadow:0 18px 44px rgba(255, 179, 0, .38);
    }

    .btn-primary1{ background:#60636a; color:#fff; box-shadow:0 10px 30px rgb(96 100 106); }
    .btn-primary1:hover{ background:#35373b; transform:translateY(-1px); box-shadow:0 16px 40px rgb(96 100 106); }

    .btn-outline{
      background:#fff;
      color:var(--blue);
      border:1px solid rgb(255 255 255);
      box-shadow:0 0 0 1px rgba(21, 84, 246, 0.06);
    }
    .btn-outline:hover{
      background:#fff;
      color:var(--blue);
      border-color:1px solid rgb(255 255 255);
      box-shadow:0 10px 26px rgba(12,18,34,0.10);
    }
    .btn-outline1{
      background:#fff;
      color:var(--blue);
      border:1px solid rgba(0,87,148,0.22);
      box-shadow:0 0 0 1px rgba(21, 84, 246, 0.06);
    }
    .btn-outline1:hover{
      background:rgba(0,87,148,0.06);
      color:var(--blue);
      border-color:rgba(0,87,148,0.34);
      box-shadow:0 10px 26px rgba(12,18,34,0.10);
    }
    /* floating chat */
    .chat-floating{
      position:fixed; right:22px; bottom:22px; z-index:50;
      width:54px; height:54px; border-radius:999px;
      display:flex; align-items:center; justify-content:center;
      background:#fff;
      border:1px solid rgba(0,87,148,0.22);
      box-shadow:0 16px 36px rgba(12,18,34,0.18);
      cursor:pointer;
    }
    .chat-floating:hover{
      transform:translateY(-1px);
      box-shadow:0 20px 44px rgba(12,18,34,0.22);
    }
    .chat-floating .icon{
      width:28px;height:28px;border-radius:999px;
      background:rgba(0,87,148,0.08);
      display:flex;align-items:center;justify-content:center;
    }
    .chat-floating img{ width:18px;height:18px;display:block; }

    /* ===== HERO ===== */
    .hero{ padding:42px 0 54px; }
    .hero-plain{
      padding:72px 0 64px;
      background: linear-gradient(180deg, rgba(0,87,148,0.08) 0%, rgba(245,247,251,0) 65%);
    }
    .hero-plain .hero-grid{ gap:48px; }
.hero-grid{ display:grid; grid-template-columns:minmax(0,1.15fr) minmax(0,1fr); gap:40px; align-items:center; }
    .eyebrow{
      display:inline-flex;align-items:center;gap:6px; padding:4px 12px;border-radius:999px;
      background:rgba(21,84,246,0.08); color:#005794; font-size:12px;font-weight:600;
      text-transform:uppercase;letter-spacing:.08em;
    }
    .hero h1{ margin:18px 0 12px; font-size:44px;line-height:1.12; letter-spacing:-0.03em; }
    .hero-subtitle{ font-size:15px;color:var(--muted);max-width:540px; }
    .hero-actions{ margin-top:22px;display:flex;flex-wrap:wrap;gap:12px;align-items:center; }
    .hero-meta{ margin-top:16px;font-size:13px;color:var(--muted);display:flex;flex-wrap:wrap;gap:12px; }
    .hero-meta span{ display:inline-flex;align-items:center;gap:4px; }
    .hero-media{ position:relative; }
    .hero-main-img{ border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-soft); }
    .hero-tag{
      position:absolute;left:10px;bottom:-14px;
      background:#fff;padding:10px 14px;border-radius:var(--radius-lg);
      box-shadow:0 10px 30px rgba(12,18,34,.18);
      font-size:12px;max-width:300px;
    }
    .hero-tag strong{ display:block;margin-bottom:2px;font-size:13px; }

    .page--storage .hero-media > .hero-tag{
      bottom:20px;
    }
    @media (max-width:640px){
      .page--storage .hero-media > .hero-tag{
        bottom:-6px;
      }
    }
    /* ===== SECTIONS ===== */
    :root{ --header-offset: 110px; } /* fallback */

html{ scroll-padding-top: var(--header-offset); } /* допомагає і для hash, і для клавіатурної навігації */

section{
  padding:72px 0;
  scroll-margin-top: var(--header-offset);
}

/* щоб під час “якорного” скролу top-bar не робила layout-jump */
header.anchor-nav .top-bar{ transition:none !important; }
    .section-head{ display:flex;justify-content:space-between;align-items:flex-end; gap:16px;margin-bottom:22px; }
    .section-title{ font-size:24px;margin:0;letter-spacing:-0.02em; }
    .section-sub{ max-width:520px;font-size:14.5px;color:var(--muted); }

    .pill-grid{ display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px; }
    .pill{
      background:#fff;border-radius:999px;padding:10px 16px;font-size:14px;
      display:flex;align-items:center;gap:8px; box-shadow:0 10px 25px rgba(12,18,34,0.04);
    }
    .pill span.icon{font-size:18px; width:34px; display:flex; align-items:center; justify-content:center;}
    .pill span.icon img{ width:32px; height:32px; object-fit:contain; }

    .value-wrap{ display:grid; grid-template-columns:minmax(0,1.2fr) minmax(0,1fr); gap:26px; align-items:flex-start; }
    .value-text{ font-size:14.5px;color:var(--dark); }

    .icon-grid{ display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px; }
    .icon-card{ background:#fff;border-radius:var(--radius-lg); padding:14px 14px 12px; box-shadow:0 12px 30px rgba(12,18,34,0.06); font-size:13.5px; }
    .icon-card strong{ display:block;margin-bottom:4px; }

    .banner-row{
      display:grid; grid-auto-flow:column; grid-auto-columns:minmax(260px,1fr);
      gap:16px; overflow-x:auto; padding-bottom:4px; scroll-snap-type:x mandatory;
    }
    .banner-card{
      scroll-snap-align:start;
      background:linear-gradient(135deg,#007fc3,#003a6d); color:#fff;border-radius:var(--radius-xl);
      padding:18px 18px 16px; position:relative;overflow:hidden; box-shadow:var(--shadow-soft);
    }
    .banner-card.banner-alt{ background:linear-gradient(135deg,#FFD100,#FFB300); color:#1F2933; }
    .banner-tag{ font-size:11px;text-transform:uppercase;letter-spacing:.12em;opacity:.9;margin-bottom:4px; }
    .banner-card h3{ margin:2px 0 8px;font-size:18px; }
    .banner-card p{ font-size:13.5px;margin:0 0 8px; }
    .banner-note{ font-size:11.5px;opacity:.9; }

    .calc-row-title{ margin-top:26px;margin-bottom:10px; font-weight:600;font-size:14px; text-transform:uppercase;letter-spacing:.1em;color:var(--muted); }
    .calc-row{ display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px; }
    .calc-card{ background:#fff;border-radius:var(--radius-lg); padding:14px 14px 12px; box-shadow:0 14px 30px rgba(12,18,34,0.06); font-size:13.5px; }
    .calc-card h4{ margin:0 0 8px;font-size:15px; }
    .calc-card ul{ margin:0 0 8px;padding-left:18px; }
    .calc-card li{ margin-bottom:3px; }
    .calc-card .price{ font-weight:600;margin-bottom:4px; }
    .calc-card .hint{ font-size:11.5px;color:var(--muted); }

    .cards-grid{ display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px; }
    .adv-card{ background:#fff;border-radius:var(--radius-lg); padding:14px 14px 12px; box-shadow:0 12px 28px rgba(12,18,34,0.06); font-size:13.5px; }
    .adv-card h4{ margin:0 0 6px;font-size:15px; }
    .adv-card p{ margin:0; color:var(--muted); }

    /* ===== TIMELINE ===== */
    .timeline{ position:relative;max-width:960px;margin:0 auto;padding:10px 0 10px; }
    .timeline::before{
      content:'';position:absolute;top:0;bottom:0;left:50%;
      width:2px;transform:translateX(-50%);
      background:linear-gradient(to bottom,rgba(21,84,246,0.25),rgba(21,84,246,0.05));
    }
    .timeline-row{ display:grid; grid-template-columns:1fr 70px 1fr; gap:18px;align-items:center;margin-bottom:26px; }
    .timeline-center{ position:relative;display:flex;align-items:center;justify-content:center;height:100%; }
    .timeline-marker{
      width:26px;height:26px;border-radius:999px;background:#fff;border:2px solid #005794;
      display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:600;color:#005794;
      box-shadow:0 0 0 4px rgba(21,84,246,0.08);
    }
    .timeline-card{
      background:#fff;border-radius:var(--radius-lg); padding:14px 14px 12px;
      box-shadow:0 14px 32px rgba(12,18,34,0.06);
      font-size:13.5px; display:grid; grid-template-columns:56px minmax(0,1fr); gap:10px;
    }
    .timeline-thumb{
      width:56px;height:56px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      font-size:26px;color:#fff;overflow:hidden;
    }
    .timeline-thumb img{ width:100%;height:100%;object-fit:cover; }
    .timeline-body h4{ margin:0 0 4px;font-size:15px; }
    .timeline-body p{ margin:0;font-size:13.5px;color:var(--muted); }
    .timeline-row.left .timeline-card{grid-column:1/2;}
    .timeline-row.left .timeline-center{grid-column:2/3;}
    .timeline-row.right .timeline-card{grid-column:3/4;}
    .timeline-row.right .timeline-center{grid-column:2/3;}

    /* ===== AUTOMATION ===== */
    .auto-grid{ display:grid; grid-template-columns:minmax(0,1.25fr) minmax(0,1fr); gap:34px; align-items:stretch; }
    .section-surface{
      background:#fff;
      border-radius:var(--radius-xl);
      padding:30px 26px;
      box-shadow:0 16px 44px rgba(12,18,34,0.06);
      border:1px solid rgba(15,23,42,0.06);
      /* equal height in 2-col rows */
      height:100%;
      display:flex;
      flex-direction:column;
    }
    .section-surface .section-sub{ max-width:none; }
    .section-surface .section-head{ margin-bottom:14px; }
    .section-surface p{ margin-top:0; }
    .section-surface ul{ margin-top:8px; }
    .section-surface > *:last-child{ margin-bottom:0; }
    .section-surface .media-card{ margin-top:auto; }

    /* pricing actions */
    .pricing-actions{
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:10px;
    }
    .pricing-actions .btn-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
      align-items:center;
    }
    .pricing-actions .pricing-link{
      font-size:12.5px;
      color:var(--muted);
      text-decoration:underline;
      text-underline-offset:3px;
    }
    .pricing-actions .pricing-link:hover{ color:var(--dark); }

    .platforms{ display:flex;flex-wrap:wrap;gap:8px;font-size:12px;margin-bottom: 10px; }
    .platform-pill{ padding:5px 9px;border-radius:999px; border:1px solid rgba(12,18,34,0.12);background:#fff; }

    /* ===== SECURITY ===== */
    .security-wrap{ display:grid; grid-template-columns:minmax(0,1.15fr) minmax(0,1fr); gap:34px; align-items:stretch; }
    .bullet-grid{ display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;font-size:13.5px; }
    .bullet-item{ background:#fff;border-radius:var(--radius-lg); padding:12px 14px;box-shadow:0 12px 28px rgba(12,18,34,0.06); border:1px solid rgba(15,23,42,0.06); }

    .cta-block{
      background:linear-gradient(120deg,#007fc3,#003a6d);
      color:#fff;border-radius:var(--radius-xl);
      padding:24px 22px;
      display:flex;flex-wrap:wrap;gap:18px;
      align-items:center;justify-content:space-between;
      box-shadow:var(--shadow-soft);
    }
    .cta-block h3{ margin:0 0 6px;font-size:20px; }
    .cta-block p{ margin:0;font-size:13.5px;opacity:.92;max-width:520px; }

    /* ===== FAQ (Покращений) ===== */
    .faq-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:12px; }
    .faq-search{
      flex:1; min-width:220px; background:#fff;
      border:1px solid rgba(12,18,34,0.12);
      border-radius:999px; padding:10px 14px; outline:none; font:inherit;
      box-shadow:0 10px 24px rgba(12,18,34,0.04);
    }
    .faq-actions .btn{ padding:9px 16px; font-size:13px; }
    .faq-list{ display:flex;flex-direction:column;gap:10px;width:100%; }
    details.faq-item{
      background:#fff; border-radius:var(--radius-lg); padding:0;
      box-shadow:0 10px 24px rgba(12,18,34,0.06);
      border:1px solid rgba(12,18,34,0.06); overflow:hidden;
    }
    details.faq-item summary{
      list-style:none; cursor:pointer; padding:12px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; user-select:none;
    }
    details.faq-item summary::-webkit-details-marker{ display:none; }
    .faq-q{ margin:0; font-size:14.5px; font-weight:600; }
    .faq-toggle{
      flex-shrink:0; width:22px;height:22px; border-radius:999px;
      border:1px solid rgba(15,23,42,0.2);
      display:flex;align-items:center;justify-content:center;
      font-size:14px; color:var(--muted);
      transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }
    details.faq-item[open] .faq-toggle{ transform:rotate(90deg); background:#005794; color:#fff; border-color:#005794; }
    .faq-body{ padding:0 16px 14px; color:var(--muted); font-size:13.5px; }
    .faq-body p{ margin:8px 0 0; }
    .faq-body ul{ margin:8px 0 0; padding-left:18px; }
    .faq-body li{ margin-bottom:4px; }
    .faq-badge{
      display:inline-flex; align-items:center; gap:6px; padding:4px 10px;
      border-radius:999px; font-size:11px; font-weight:600;
      background:rgba(21,84,246,0.08); color:#005794; margin-top:10px;
    }
    .faq-muted{ font-size:12px; color:rgba(74,85,112,0.9); margin-top:10px; }

    /* ===== POPUPS (forms) — FIX for BIG FORM ===== */
    .modal-overlay{
      position:fixed; inset:0;
      background:rgba(0, 12, 28, .55);
      display:none;
      align-items:center;
      justify-content:center;
      padding:18px;
      z-index:999;
      backdrop-filter: none;
    }
    .modal-overlay.open{ display:flex; }

    .modal{
      width:100%;
      max-width:860px;
      background:#fff;
      border-radius:18px;
      box-shadow:0 24px 60px rgba(12,18,34,.22);
      overflow:hidden;
      border:1px solid rgba(15,23,42,0.08);

      display:flex;
      flex-direction:column;
      max-height: calc(100vh - 36px);
    }

    .modal-head{
      padding:14px 16px;
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      background:linear-gradient(135deg, rgba(0,87,148,.10), rgba(242,172,22,.16));
      flex:0 0 auto;
    }
    .modal-head strong{ display:block; font-size:15px; margin-bottom:2px; }
    .modal-head .note{ font-size:12.5px; color:var(--muted); line-height:1.4; }

    .modal-x{
      border:none; background:#fff;
      width:34px;height:34px; border-radius:999px;
      cursor:pointer;
      box-shadow:0 10px 24px rgba(12,18,34,.10);
      font-size:18px;
      line-height:34px;
      text-align:center;
      color:var(--dark);
      flex:0 0 auto;
    }

    /* скрол саме всередині модалки */
    .modal-body{ padding:16px; overflow:auto; flex:1 1 auto; -webkit-overflow-scrolling: touch; }

    /* нижня панель (видима завжди) */
    .modal-footer{
      flex:0 0 auto;
      padding:12px 16px;
      border-top:1px solid rgba(15,23,42,0.08);
      background:rgba(245,247,251,0.7);
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }

    .form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
    .field{ display:flex; flex-direction:column; gap:6px; }
    .field label{ font-size:12px; font-weight:600; color:var(--dark); }
    .input, .select, .textarea{
      width:100%;
      border:1px solid rgba(12,18,34,0.14);
      border-radius:14px;
      padding:10px 12px;
      font:inherit;
      outline:none;
      background:#fff;
      box-shadow:0 10px 24px rgba(12,18,34,0.04);
    }
    .textarea{ min-height:120px; resize:vertical; }

    .form-actions{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      margin-top:12px; flex-wrap:wrap;
    }
    .form-actions .btn{ padding:10px 18px; }

    .small-muted{ font-size:12px; color:var(--muted); }
    .inline-link{ font-size:12.5px; color:#005794; text-decoration:underline; cursor:pointer; }

    .form-success{
      display:none; margin-top:12px; padding:12px 12px; border-radius:14px;
      background:rgba(21,84,246,0.08); color:#00315e;
      border:1px solid rgba(21,84,246,0.18); font-size:13px;
    }
    .form-error{
      display:none; margin-top:12px; padding:12px 12px; border-radius:14px;
      background:rgba(239,68,68,0.08); color:#7f1d1d;
      border:1px solid rgba(239,68,68,0.18); font-size:13px;
    }

    /* ===== FOOTER ===== */
    footer{
      margin-top:40px;padding:26px 0 26px;
      background:#003768;color:#E5E8F0;font-size:13.5px;
    }
    .footer-grid{ display:grid;grid-template-columns:2fr 1.5fr 1fr;gap:26px; }
    .footer-title{ font-weight:600;margin-bottom:8px;text-transform:uppercase; font-size:12px;letter-spacing:.1em; }
    .footer-nav, .footer-contacts{ list-style:none;padding:0;margin:0; }
    .footer-nav li, .footer-contacts li{ margin-bottom:4px; }
    .footer-nav a{ color:#D0D4E2; }
    .footer-nav a:hover{ color:#fff; }
    .social-row{ display:flex;gap:8px;margin-top:8px; }
    .social-pill{ border-radius:999px;border:1px solid rgba(229,232,240,0.35); padding:4px 9px;font-size:12px; }

    .footer-bottom{
      margin-top:18px;border-top:1px solid rgba(229,232,240,0.12);
      padding-top:10px;font-size:11.5px;color:#9CA3B5;
      display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
    }


    

    /* === GRID NORMALIZATION (equal width + equal height) === */
    .hero-grid,
    .value-wrap,
    .auto-grid,
    .security-wrap{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:34px;
      align-items:stretch;
    }
    /* keep hero a bit tighter visually without changing equality */
    .hero-grid{ gap:40px; }

    /* Ensure both columns behave like equal-height cards */
    .hero-grid > *,
    .value-wrap > *,
    .auto-grid > *,
    .security-wrap > * > *{
      height:100%;
      min-height:0;
      display:flex;
      flex-direction:column;
    }

    /* Make media fill its column height without forcing huge blocks */
    .media-card{ height:100%; }
    .media-card img,
    .media-card video{ height:100%; object-fit:cover; }

@media (max-width:992px){
      .pricing-actions{ align-items:flex-start; }
      .pricing-actions .btn-row{ justify-content:flex-start; }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width:992px){
      .hero-grid,.value-wrap,.auto-grid,.security-wrap{ grid-template-columns:1fr; }
      .hero-media{order:-1;}
      .hero{padding-top:30px;}
      nav{display:none;}
      .main-bar-inner{justify-content:space-between;}
      .pill-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
      .calc-row{grid-template-columns:repeat(2,minmax(0,1fr));}
      .cards-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
      .bullet-grid{grid-template-columns:1fr;}
      .footer-grid{grid-template-columns:1fr 1fr;}
    }
    @media (max-width:768px){
      .timeline::before{ left:18px; }
      .timeline-row{
        position:relative;
        display:block;
        padding-left:54px;
        margin-bottom:26px;
      }
      .timeline-row > div:empty{ display:none; }
      .timeline-row.left .timeline-card,
      .timeline-row.right .timeline-card{
        grid-column:auto;
      }
      .timeline-row.left .timeline-center,
      .timeline-row.right .timeline-center{
        position:absolute;
        left:5px;
        top:50%;
        width:28px;
        height:28px;
        transform:translateY(-50%);
        grid-column:auto;
        z-index:2;
      }
      .timeline-card{ grid-template-columns:48px minmax(0,1fr); }
    }
    @media (max-width:640px){
      .hero h1{font-size:30px;}
      .pill-grid{grid-template-columns:1fr;}
      .value-wrap{gap:18px;}
      .calc-row{grid-template-columns:1fr;}
      .cards-grid{grid-template-columns:1fr;}
      .footer-grid{grid-template-columns:1fr;}
      .cta-block{align-items:flex-start;}
      .top-bar-inner{flex-direction:row;}
      .chat-floating{right:12px;bottom:12px;}

      .form-grid{ grid-template-columns:1fr; }
      .modal-overlay{ padding:10px; }
      .modal{ max-height: calc(100vh - 20px); border-radius:16px; }
      .modal-body{ padding:14px; }
    }
    @media (max-width:640px){
    }
  
   

    /* ===== HERO POLISH (more air, calmer business look) ===== */
    .hero{ padding:64px 0 70px; }
    .hero-subtitle{ font-size:16.5px; line-height:1.6; }
    .hero-checks{ gap:10px; }
    .hero-checks span{ background:#fff; border-radius:999px; padding:10px 14px; box-shadow:0 10px 26px rgba(12,18,34,0.05); }
    @media (max-width:992px){ .hero{ padding:46px 0 56px; } }

  
    /* ===== GLOBAL GRID RHYTHM (one system for 2/3 columns) ===== */
    :root{ --grid-gap:34px; }
    .hero-grid{ gap:40px; }
    .value-wrap{ gap:var(--grid-gap); }
    .auto-grid{ gap:var(--grid-gap); }
    .security-wrap{ gap:var(--grid-gap); }

    /* ===== HERO VIDEO ===== */
    .hero-main-img{ aspect-ratio: 16/0; }
    .hero-main-img1{ aspect-ratio: 16/14; }
    .hero-main-img .hero-video{
      width:100%;
      height:100%;
      display:block;
      object-fit:cover;
    }
    @media (max-width:992px){
      .hero-main-img{ aspect-ratio: 16/0; }
    }

    /* ===== TYPOGRAPHY (unified) ===== */
    .body-text{ font-size:14.5px; color:var(--muted); margin:0 0 12px; }
    .body-h4{ font-size:16px; margin:18px 0 8px; font-weight:700; color:var(--dark); }
    .bullet-list{
      margin:0 0 12px 18px;
      padding:0;
      font-size:14.5px;
      color:var(--muted);
    }
    .bullet-list li{ margin-bottom:4px; }

    /* ===== MEDIA CARD (equal height blocks) ===== */
    .media-card{
      background:#fff;
      border-radius:var(--radius-xl);
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(15,23,42,0.06);
      height:100%;
      /* do NOT force huge heights in 2-col layouts */
      min-height:0;
    }
    .media-card--sm{ min-height:220px; }
    .media-card img{ width:100%; height:100%; object-fit:cover; display:block; }
    .hero-main-img > picture,
    .hero-main-img1 > picture,
    .media-card > picture{ display:contents; }
    @media (max-width:992px){
      .media-card{ min-height:220px; }
      .media-card--sm{ min-height:200px; }
    }

    /* === GLOBAL 2-COL CONSISTENCY (grid + padding) === */
    .auto-grid,
    .security-wrap,
    .value-wrap{
      align-items:stretch;
    }

  
/* ============================
   ABOVE THE FOLD — HERO REFOCUS
   ============================ */
.hero{ padding:0 !important; }
.hero-stage{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  overflow:hidden;
 /* background:#001529;*/
}
.hero-bg-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.02);
  filter:saturate(1.05) contrast(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,17,36,.86) 0%, rgba(0,17,36,.64) 50%, rgba(0,17,36,.42) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:88px 0;
  max-width:760px;
}
.hero-content h1{
  margin:0 0 14px;
  color:#fff;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-.02em;
}
.hero-content .hero-subtitle{
  margin:0 0 26px;
  color:rgba(255,255,255,0.92);
  font-size:16.5px;
  line-height:1.55;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.hero-actions .btn{ padding:12px 22px; }
.hero-actions .btn-outline{
  background:rgba(255,255,255,0.10);
  color:#fff;
  border:1px solid rgba(255,255,255,0.38);
  box-shadow:none;
}
.hero-actions .btn-outline:hover{
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.50);
  box-shadow:none;
}
.hero-checks{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:0;
}
.hero-checks span{
  color:rgba(255,255,255,0.95);
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.20);
  padding:8px 10px;
  border-radius:12px;
  font-size:13px;
  line-height:1.35;
}
.hero-checks-delivery span {
    color: var(--dark);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgb(0 55 104);
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.35;
}
/* more “air” on mobile */
@media (max-width: 900px){
  section{ padding:56px 0; }
  .hero-content{ padding:74px 0; max-width:100%; }
  .hero-plain{ padding:58px 0 50px; }
  .hero-plain .hero-grid{ gap:26px; }
  .hero-content h1{ font-size:34px; }
  .hero-actions{ gap:10px; }
  .hero-actions .btn{ width:100%; }
}

/* ============================
   MOBILE HEADER + BURGER MENU
   ============================ */
.top-bar-inner{ min-width:0; }
.top-bar-text{ flex:1; min-width:0; width:auto; }

@media (max-width: 640px){
  .container{ padding:0 14px; }
  .top-bar-text{ font-size:11px; line-height:1.35; }
  .top-bar-inner{ gap:10px; }
  .lang-switch span{ padding:3px 9px; }
  .logo-row img{ height:44px; }
  .main-bar-inner{ padding:10px 0; gap:10px; }
  .header-link{ padding:8px 10px; font-size:12px; border-radius:10px; }
}

/* Burger button (shown on <=992px) */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow:0 10px 26px rgba(12,18,34,0.06);
  cursor:pointer;
  position:relative;
}
.burger::before, .burger::after, .burger span{
  content:'';
  position:absolute;
  left:12px; right:12px;
  height:2px;
  background:#111827;
  border-radius:999px;
  transition:transform .2s ease, top .2s ease, bottom .2s ease, opacity .2s ease;
}
.burger span{ top:50%; transform:translateY(-50%); }
.burger::before{ top:15px; }
.burger::after{ bottom:15px; }

.burger[aria-expanded="true"] span{ opacity:0; }
.burger[aria-expanded="true"]::before{
  top:50%;
  transform:translateY(-50%) rotate(45deg);
}
.burger[aria-expanded="true"]::after{
  bottom:auto;
  top:50%;
  transform:translateY(-50%) rotate(-45deg);
}

@media (max-width: 992px){
  nav{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }
  .header-actions{ gap:8px; }
}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0;
  background:rgba(0, 12, 28, .55);
  display:none;
  z-index:998;
  backdrop-filter: blur(7px);
}
.mobile-nav.open{ display:block; }
.mobile-nav__panel{
  position:absolute; top:0; right:0; bottom:0;
  width:min(86vw, 380px);
  background:#fff;
  border-left:1px solid rgba(15,23,42,0.08);
  box-shadow:-24px 0 60px rgba(12,18,34,.22);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:14px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav__head{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}
.mobile-nav__brand{
  display:flex; align-items:center; gap:10px;
}
.mobile-nav__brand img{ height:40px; width:auto; display:block; }
.mobile-nav__close{
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.10);
  background:#fff;
  box-shadow:0 10px 24px rgba(12,18,34,0.08);
  cursor:pointer;
  font-size:20px;
  line-height:38px;
  text-align:center;
  color:var(--dark);
}
.mobile-nav__sectionTitle{
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:var(--muted);
  margin:6px 0 0;
}
.mobile-nav__links{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.mobile-nav__links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  background:rgba(245,247,251,0.6);
  border:1px solid rgba(15,23,42,0.06);
  color:var(--dark);
  font-weight:600;
  font-size:14px;
}
.mobile-nav__links a:hover{ background:rgba(0,87,148,0.06); border-color:rgba(0,87,148,0.18); }


.mobile-nav__links a.is-active{
  background:rgba(0,87,148,0.08);
  border-color:rgba(0,87,148,0.22);
}
.mobile-nav__cta{
  margin-top:auto;
  padding-top:10px;
  border-top:1px solid rgba(15,23,42,0.08);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-nav__cta .btn{ width:100%; }

/* ============================
   PRICING: mobile stack (no horizontal scroll)
   ============================ */
@media (max-width: 768px){
  .section-head{ flex-direction:column; align-items:flex-start; }
  .pricing-actions{ width:100%; align-items:flex-start; }
  .pricing-actions .btn-row{ width:100%; flex-direction:column; justify-content:flex-start; }
  .pricing-actions .btn{ width:100%; }
  .banner-row{
    display:grid;
    grid-template-columns:1fr;
    grid-auto-flow:row;
    grid-auto-columns:unset;
    overflow-x:visible;
    scroll-snap-type:none;
    padding-bottom:0;
  }
}

/* ===== Language switch links (a instead of span) ===== */
.lang-switch a{
  padding:3px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:11px;
  color:#e5e7eb;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
}
.lang-switch a.active{
  background:#fff;
  color:#111827;
  font-weight:600;
}
.lang-switch a:focus-visible{
  outline:2px solid rgba(242,172,22,.6);
  outline-offset:2px;
}


/* === ECOSYSTEM layout fix: center "Import & colné služby" under the hub === */
@media (min-width: 900px){
  #ecosystem .eco-map{
    /* 3×3: top-center, middle row, bottom-center */
    grid-template-columns:repeat(3, minmax(0, 1fr));
    grid-template-areas:
      ". log ."
      "cons hub cert"
      ". customs .";
    align-items:stretch;
  }

  /* Explicit areas (in case earlier rules conflict) */
  #ecosystem .eco-hub{ grid-area: hub; }
  #ecosystem .eco-node--log{ grid-area: log; }
  #ecosystem .eco-node--cons{ grid-area: cons; }
  #ecosystem .eco-node--cert{ grid-area: cert; }
  #ecosystem .eco-node--customs{ grid-area: customs; }

  /* ---- Connector for customs: make it vertical (up to hub), NOT diagonal ---- */
  #ecosystem .eco-node--customs::after{
    content:"";
    position:absolute;
    left:50%;
    top:-18px;
    width:3px;
    height:18px;
    transform:translateX(-50%);
    border-radius:999px;

    /* if your "animated rays" exist, it will animate; otherwise it will still look fine */
    background:linear-gradient(to top,
      rgba(0,87,148,0) 0%,
      rgba(0,87,148,.34) 22%,
      rgba(255,209,0,.68) 50%,
      rgba(0,87,148,.34) 78%,
      rgba(0,87,148,0) 100%);
    background-size:100% 220%;
    opacity:.92;
  }

  #ecosystem .eco-node--customs::before{
    content:"";
    position:absolute;
    left:50%;
    top:-18px;
    width:10px;
    height:22px;
    transform:translateX(-50%);
    background:linear-gradient(to top,
      rgba(255,209,0,0) 0%,
      rgba(255,209,0,.30) 40%,
      rgba(255,209,0,0) 100%);
    filter: blur(6px);
    border-radius:999px;
    pointer-events:none;
    opacity:.45;
  }
}
/* ===== FOOTER CTA (Napíšte nám + eVizitka) ===== */
.footer-cta{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
}
footer .footer-btn{
  padding:10px 18px;
  font-size:13px;
}
footer .footer-eviz{
  background:rgba(255,255,255,0.94);
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(229,232,240,0.22);
  box-shadow:0 14px 34px rgba(0,0,0,0.22);
}
footer .footer-eviz img{ display:block; }

/* ===== PARTNERS: add courier logos ===== */
.partners-grid .partner-head{ align-items:flex-start; }
.partners-grid .partner-brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.partners-grid .partner-logo{
  width:60px;
  height:60px;
  border-radius:14px;
  background:rgba(0,87,148,0.06);
  border:1px solid rgba(0,87,148,0.14);
  box-shadow:0 10px 24px rgba(12,18,34,0.06);
  overflow:hidden;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.partners-grid .partner-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
 /* padding:6px;*/
  display:block;
}
@media (max-width:640px){
  .partners-grid .partner-logo{ width:48px; height:48px; border-radius:12px; }
  .partners-grid .partner-logo img{ /*padding:5px;*/ }
}
/* Flags in tables */
.table-flags td:first-child{
  display:flex;
  align-items:center;
  gap:12px;
}

.table-flags .flag{
  width:60px;            /* розмір прапорця */
  height:50px;
  border-radius:6px;
  background-position:center;
  background-repeat:no-repeat;
  background-size:contain;
  flex:0 0 auto;
  box-shadow:0 8px 18px rgba(12,18,34,0.10);
  border:1px solid rgba(0,0,0,0.06);
}

/* mapping icons */
.table-flags .flag--sk{ background-image:url("/images/sk.png"); }
.table-flags .flag--cz{ background-image:url("/images/cz.png"); }
.table-flags .flag--eu{ background-image:url("/images/eu.png"); }

@media (max-width:640px){
  .table-flags .flag{ width:28px; height:20px; }
}


/* ECOSYSTEM: залишити лінію між HUB і "Партнерів...", але прибрати все що йде нижче */
@media (min-width: 900px){

  /* 1) Забрати будь-які "хвости" у блоку сервісів */
  #ecosystem .eco-node--customs::before,
  #ecosystem .eco-node--customs::after{
    content: none !important;
    display: none !important;
  }

  /* 2) Намалювати вертикальний промінь з HUB вниз (тільки до сервісів) */
  #ecosystem .eco-hub{
    position: relative;
    z-index: 3;
    --hub-ray-h: 18px; /* <- висота проміня (можеш 18-30px) */
  }

  #ecosystem .eco-hub::after{
    content:"";
    position:absolute;
    left:50%;
    bottom: calc(-1 * var(--hub-ray-h));
    width:3px;
    height: var(--hub-ray-h);
    transform: translateX(-50%);
    border-radius:999px;
    pointer-events:none;
    z-index: 1;

    background: linear-gradient(to bottom,
      var(--eco-ray-fade) 0%,
      var(--eco-ray-blue) 22%,
      var(--eco-ray-yellow) 50%,
      var(--eco-ray-blue) 78%,
      var(--eco-ray-fade) 100%);
    background-size: 100% 220%;
    animation: ecoRayFlowV 2.4s linear infinite;
    opacity: .92;

    /* легке затухання на кінці, щоб не "влазило" в блок сервісів */
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
  }

  #ecosystem .eco-hub::before{
    content:"";
    position:absolute;
    left:50%;
    bottom: calc(-1 * var(--hub-ray-h) - 4px);
    width:12px;
    height: calc(var(--hub-ray-h) + 10px);
    transform: translateX(-50%);
    border-radius:999px;
    pointer-events:none;
    z-index: 1;

    background: linear-gradient(to bottom,
      rgba(255,209,0,0) 0%,
      rgba(255,209,0,.30) 40%,
      rgba(255,209,0,0) 100%);
    filter: blur(6px);
    opacity:.45;
    animation: ecoRayPulse 2.2s ease-in-out infinite;

    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
  }
}
/* =========================
   ECOSYSTEM — pastel colors + wider bottom + one-line services
   paste at END of core.css
   ========================= */

/* Фон самої карти (щоб картки не були білими на білому) */
#ecosystem .eco-map{
  background: linear-gradient(180deg, rgba(0,87,148,0.06), rgba(0,87,148,0.02)) !important;
  border: 1px solid rgba(0,87,148,0.12) !important;
}

/* Прибираємо дубль “картка в картці”:
   eco-node робимо прозорим, а вигляд задає timeline-card */
#ecosystem .eco-node{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  position: relative;
}

/* Пастельно-синій вигляд карток навколо HUB */
#ecosystem .eco-node .timeline-card{
  background: linear-gradient(135deg, rgba(0,87,148,0.10), rgba(255,255,255,0.92)) !important;
  border: 1px solid rgba(0,87,148,0.14) !important;
  box-shadow: 0 14px 32px rgba(12,18,34,0.06) !important;
  position: relative;
  z-index: 2; /* щоб промені були позаду */
}

/* HUB — більш “жовтий” (пастель) */
#ecosystem .eco-hub{
 /* background: linear-gradient(135deg, rgba(255,209,0,0.65), rgba(255,255,255,0.90)) !important;
  border: 1px solid rgba(255,179,0,0.75) !important;
  box-shadow: 0 14px 30px rgba(12,18,34,0.06) !important;*/
  z-index: 3;
}

/* Нижній блок ширший + текст в 1 рядок (десктоп) */
@media (min-width: 900px){
  #ecosystem .eco-node--customs{
    justify-self: center;
   width: min(500px); /* <- робить ширше */
  }

  #ecosystem .eco-node--customs .timeline-body p{
    white-space: nowrap;     /* <- 1 рядок */
    font-size: 13px;         /* трохи менше, щоб вмістилось */
  }
}

/* На менших екранах дозволяємо перенос (щоб не ламало верстку) */
@media (max-width: 899px){
  #ecosystem .eco-node--customs .timeline-body p{
    white-space: normal;
  }
}

/* ECOSYSTEM — equal height cards (desktop) */
@media (min-width: 900px){
  /* grid-item stretches + inner card fills full height */
  #ecosystem .eco-node{ display:flex; align-self:stretch; }
  #ecosystem .eco-node > .timeline-card{ flex:1; height:100%; }
}


/* =========================
   COOKIE CONSENT
========================= */
:root{
  --ck-primary:#003a6d;
  --ck-primary-hover:#0a4c87;
  --ck-accent:#2f63b6;
  --ck-text:#1f1f1f;
  --ck-muted:#5a5a5a;
  --ck-border:#d9d9d9;
  --ck-bg:#efefef;
  --ck-white:#ffffff;
  --ck-shadow:0 20px 50px rgba(0,0,0,.18);
}

.ck-hidden{display:none !important;}

.ck-banner{
  position:fixed;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:9999;
  max-width:1100px;
  margin:0 auto;
  background:var(--ck-bg);
  border-radius:4px;
  box-shadow:var(--ck-shadow);
  color:var(--ck-text);
}

.ck-banner__inner{
  display:grid;
  grid-template-columns:1fr 230px;
  gap:26px;
  padding:28px 32px 10px;
}

.ck-banner__left h3{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.2;
  color:#2f5184;
  font-weight:700;
}

.ck-banner__left p{
  margin:0;
  max-width:430px;
  font-size:17px;
  line-height:1.45;
  color:#4a4a4a;
}

.ck-banner__right{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:14px;
}

.ck-btn{
  appearance:none;
  border:0;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  min-height:46px;
  border-radius:3px;
  transition:.2s ease;
  padding:12px 16px;
}

.ck-btn--primary{
  background:var(--ck-primary);
  color:#fff;
}

.ck-btn--primary:hover{
  background:var(--ck-primary-hover);
}

.ck-details-link{
  appearance:none;
  border:0;
  background:none;
  color:#2b63b7;
  font-size:16px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  padding:2px 0 0;
}

.ck-details-link span{
  font-size:28px;
  line-height:1;
}

.ck-inline-toggles{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
  align-items:center;
  padding:6px 32px 26px;
}

.ck-toggle-row{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:16px;
  font-weight:600;
  color:#111;
}

.ck-switch{
  position:relative;
  display:inline-flex;
}

.ck-switch input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.ck-slider{
  width:44px;
  height:24px;
  background:#cfcfcf;
  border-radius:999px;
  position:relative;
  transition:.2s ease;
}

.ck-slider::after{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  top:3px;
  left:3px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1px 3px rgba(0,0,0,.2);
  transition:.2s ease;
}

.ck-switch input:checked + .ck-slider{
  background:#003a6d;
}

.ck-switch input:checked + .ck-slider::after{
  left:23px;
}

.ck-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:10000;
}

/*.ck-modal{
  position:fixed;
  inset:0;
  z-index:10001;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
*/
.ck-modal__panel{
  width:min(980px, 100%);
  max-height:min(88vh, 900px);
  background:#f2f2f2;
  color:var(--ck-text);
  border-radius:3px;
  box-shadow:0 24px 60px rgba(0,0,0,.24);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.ck-modal__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  border-bottom:1px solid #2f63b6;
  padding:0 18px;
  background:#f2f2f2;
}

.ck-tabs{
  display:flex;
  gap:6px;
}

.ck-tab{
  appearance:none;
  background:none;
  border:0;
  padding:18px 10px 16px;
  font-size:15px;
  font-weight:700;
  color:#222;
  cursor:pointer;
  border-bottom:3px solid transparent;
}

.ck-tab.is-active{
  color:#1f4da0;
  border-bottom-color:#2f63b6;
}

.ck-close{
  appearance:none;
  border:0;
  background:none;
  cursor:pointer;
  font-size:42px;
  line-height:1;
  color:#777;
  padding:8px 10px 10px;
}

.ck-modal__body{
  display:grid;
  grid-template-columns:170px 1fr;
  min-height:420px;
  overflow:hidden;
}

.ck-sidebar{
  padding:28px 18px;
}

.ck-side-option{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 18px;
  font-size:18px;
  font-weight:700;
  color:#111;
  cursor:pointer;
}

.ck-side-option input{
  width:20px;
  height:20px;
  accent-color:var(--ck-primary);
}

.ck-side-option.is-active span{
  color:#0a8bdc;
}

.ck-content{
  padding:38px 32px 24px 16px;
  overflow:auto;
}

.ck-tab-panel,
.ck-cat-panel{
  display:none;
}

.ck-tab-panel.is-active,
.ck-cat-panel.is-active{
  display:block;
}

.ck-content h3{
  margin:0 0 24px;
  font-size:22px;
  line-height:1.2;
  color:#2c56a2;
}

.ck-content p{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.55;
  color:#3e3e3e;
  max-width:760px;
}

.ck-table-wrap{
  margin-top:20px;
  overflow:auto;
  max-height:380px;
  background:#fff;
  border:1px solid var(--ck-border);
}

.ck-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
  background:#fff;
}

.ck-table th,
.ck-table td{
  border:1px solid var(--ck-border);
  padding:12px 10px;
  text-align:left;
  vertical-align:top;
  font-size:14px;
  line-height:1.45;
}

.ck-table th{
  background:#f7f7f7;
  font-weight:700;
}

.ck-modal__bottom{
  padding:0 18px 18px;
  display:flex;
  gap:10px;
}

.ck-modal__bottom .ck-btn{
  min-width:140px;
}

@media (max-width: 860px){
  .ck-banner{
    left:12px;
    right:12px;
    bottom:12px;
  }

  .ck-banner__inner{
    grid-template-columns:1fr;
    padding:20px 18px 8px;
  }

  .ck-banner__left p{
    max-width:none;
    font-size:15px;
  }

  .ck-banner__right{
    width:100%;
  }

  .ck-inline-toggles{
    gap:18px;
    padding:8px 18px 18px;
  }

  .ck-modal{
    padding:8px;
  }

  .ck-modal__body{
    grid-template-columns:1fr;
  }

  .ck-sidebar{
    padding:18px 18px 0;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }

  .ck-side-option{
    margin:0;
    font-size:16px;
  }

  .ck-content{
    padding:22px 18px 18px;
  }

  .ck-close{
    font-size:34px;
  }
}
/* =========================================
   COOKIE BANNER — MODERN VOKKY STYLE
   ========================================= */

.ck-banner{
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: auto;
  max-width: 1120px;
  margin: 0 auto;

  background: rgba(255,255,255,.94);
  color: var(--dark);
  border: 1px solid rgba(0,87,148,.12);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(3,26,52,.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.ck-banner::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, #0b78c7 55%, var(--yellow) 100%);
}

.ck-banner__inner{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
}

/* ліва колонка */
.ck-banner__inner > *:first-child{
  flex: 1 1 560px;
  min-width: 280px;
}

/* права колонка з кнопками */
.ck-banner__inner > *:last-child{
  flex: 0 0 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ck-banner h2,
.ck-banner h3,
.ck-banner h4,
.ck-banner strong:first-child{
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}

.ck-banner p{
  margin: 0;
  color: rgba(0,55,104,.78);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

/* кнопки */
.ck-banner button,
.ck-banner .ck-btn,
.ck-banner [role="button"]{
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

/* 1 кнопка — Accept all */
.ck-banner__inner > *:last-child button:nth-of-type(1),
.ck-banner__inner > *:last-child .ck-btn:nth-of-type(1){
  background: linear-gradient(135deg, var(--yellow) 0%, #ffb300 100%);
  color: #1f2933;
  box-shadow: 0 14px 34px rgba(255,209,0,.34);
}

/* 2 кнопка — Save / Allow selection */
.ck-banner__inner > *:last-child button:nth-of-type(2),
.ck-banner__inner > *:last-child .ck-btn:nth-of-type(2){
  background: #fff;
  color: var(--blue);
  border: 1px solid rgba(0,87,148,.18);
  box-shadow: 0 8px 24px rgba(12,18,34,.06);
}

/* 3 кнопка — Reject all */
.ck-banner__inner > *:last-child button:nth-of-type(3),
.ck-banner__inner > *:last-child .ck-btn:nth-of-type(3){
  background: #eef4fa;
  color: #41556f;
  border: 1px solid rgba(12,18,34,.06);
}

.ck-banner button:hover,
.ck-banner .ck-btn:hover,
.ck-banner [role="button"]:hover{
  transform: translateY(-1px);
}

.ck-banner__inner > *:last-child button:nth-of-type(1):hover,
.ck-banner__inner > *:last-child .ck-btn:nth-of-type(1):hover{
  box-shadow: 0 18px 42px rgba(255,179,0,.42);
}

.ck-banner__inner > *:last-child button:nth-of-type(2):hover,
.ck-banner__inner > *:last-child .ck-btn:nth-of-type(2):hover{
  background: rgba(0,87,148,.06);
  border-color: rgba(0,87,148,.28);
}

.ck-banner__inner > *:last-child button:nth-of-type(3):hover,
.ck-banner__inner > *:last-child .ck-btn:nth-of-type(3):hover{
  background: #e6eef7;
}

/* details link */
.ck-banner a{
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  transition: opacity .18s ease;
}

.ck-banner a:hover{
  opacity: .78;
}

/* нижній рядок тумблерів */
.ck-inline-toggles{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,87,148,.10);
}

.ck-inline-toggles > *{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f7fafc;
  border: 1px solid rgba(0,87,148,.08);
  color: var(--dark);
  font-weight: 500;
}

/* якщо всередині реальні checkbox 
.ck-inline-toggles input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: #d7e0ec;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background .2s ease;
  flex: 0 0 46px;
}

.ck-inline-toggles input[type="checkbox"]::before{
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(12,18,34,.18);
  transition: transform .2s ease;
}

.ck-inline-toggles input[type="checkbox"]:checked{
  background: linear-gradient(135deg, var(--blue) 0%, #0b78c7 100%);
}

.ck-inline-toggles input[type="checkbox"]:checked::before{
  transform: translateX(18px);
}*/

/* modal з деталями теж робимо сучаснішим */
.ck-modal-backdrop{
  background: rgba(2,12,27,.52);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.ck-modal{
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0,87,148,.10);
  box-shadow: 0 34px 80px rgba(3,26,52,.28);
}

/* mobile */
@media (max-width: 900px){
  .ck-banner{
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 18px;
  }

  .ck-banner__inner{
    padding: 18px;
    gap: 16px;
  }

  .ck-banner__inner > *:last-child{
    flex: 1 1 100%;
  }

  .ck-banner h2,
  .ck-banner h3,
  .ck-banner h4,
  .ck-banner strong:first-child{
    font-size: 22px;
  }

  .ck-banner p{
    font-size: 14px;
    line-height: 1.55;
  }

  .ck-inline-toggles{
    gap: 10px;
  }

  .ck-inline-toggles > *{
    width: 100%;
    justify-content: space-between;
  }
}
/* ===== COOKIE TOGGLES — ALIGN FIX ===== */

.ck-inline-toggles{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;

  /* головне: вирівнюємо по тих самих відступах, що і контент банера */
  padding: 18px 28px 28px;
  margin-top: 0;

  border-top: 1px solid rgba(0,87,148,.10);
}

.ck-inline-toggles .ck-toggle-row{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;

  min-height: 56px;
  padding: 10px 18px;
  margin: 0;

  border-radius: 999px;
  background: #f7fafc;
  border: 1px solid rgba(0,87,148,.08);
  color: var(--dark);
  font-weight: 600;
  box-sizing: border-box;
}

.ck-inline-toggles .ck-toggle-row .ck-switch{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  flex: 0 0 auto;
}

.ck-inline-toggles .ck-toggle-row > span:last-child{
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  line-height: 1.1;
}

/* сам тумблер 
.ck-inline-toggles input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: #d7e0ec;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background .2s ease;
  flex: 0 0 46px;
  margin: 0;
}

.ck-inline-toggles input[type="checkbox"]::before{
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(12,18,34,.18);
  transition: transform .2s ease;
}

.ck-inline-toggles input[type="checkbox"]:checked{
  background: linear-gradient(135deg, var(--blue) 0%, #0b78c7 100%);
}

.ck-inline-toggles input[type="checkbox"]:checked::before{
  transform: translateX(18px);
}*/

@media (max-width: 900px){
  .ck-inline-toggles{
    padding: 16px 18px 18px;
    gap: 10px;
  }

  .ck-inline-toggles .ck-toggle-row{
    width: 100%;
    justify-content: space-between !important;
  }
}
/* ===== COOKIE TOGGLE FIX — прибирає пусту колонку ===== */

.ck-inline-toggles{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 18px 28px 28px;
  margin-top: 0;
  border-top: 1px solid rgba(0,87,148,.10);
}

.ck-inline-toggles .ck-toggle-row{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;

  min-height: 56px;
  padding: 10px 18px;
  margin: 0;

  border-radius: 999px;
  background: #f7fafc;
  border: 1px solid rgba(0,87,148,.08);
  color: var(--dark);
  font-weight: 600;
  box-sizing: border-box;
}

.ck-inline-toggles .ck-switch{
  position: relative !important;
  display: inline-block !important;
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 24px !important;
  flex: 0 0 44px !important;
  margin: 0 !important;
}

.ck-inline-toggles .ck-switch input[type="checkbox"]{
  position: absolute !important;
  inset: 0 !important;
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.ck-inline-toggles .ck-switch .ck-slider{
  display: block !important;
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 24px !important;
  margin: 0 !important;
  background: #cfcfcf;
  border-radius: 999px;
  position: relative;
  transition: .2s ease;
}

.ck-inline-toggles .ck-switch .ck-slider::after{
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: .2s ease;
}

.ck-inline-toggles .ck-switch input:checked + .ck-slider{
  background: #003a6d !important;
}

.ck-inline-toggles .ck-switch input:checked + .ck-slider::after{
  left: 23px !important;
}

.ck-inline-toggles .ck-toggle-row > span:last-child{
  margin: 0 !important;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 900px){
  .ck-inline-toggles{
    padding: 16px 18px 18px;
    gap: 10px;
  }

  .ck-inline-toggles .ck-toggle-row{
    width: 100%;
  }
}
/* =========================================
   COOKIE MODAL — MODERN VOKKY STYLE
   ========================================= */

/* затемнення фону */
.ck-modal-backdrop{
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(3, 26, 52, .42) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* зовнішній контейнер модалки — ПРОЗОРИЙ */
.ck-modal{
  position: fixed;
  inset: 0;
  z-index: 10001;
  padding: 24px;
  display: grid;
  place-items: center;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* сама біла картка */
.ck-modal__panel{
  width: min(1040px, 100%);
  max-height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
  overflow: hidden;

  background: rgba(255,255,255,.97) !important;
  border: 1px solid rgba(0,87,148,.12);
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(3,26,52,.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* верх */
.ck-modal__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(0,87,148,.12);
  background: transparent;
}

.ck-tabs{
  display: flex;
  gap: 18px;
}

.ck-tab{
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 24px 2px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #5b6f86;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease;
}

.ck-tab:hover{
  color: var(--blue);
}

.ck-tab.is-active{
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.ck-close{
  appearance: none;
  border: 0;
  background: rgba(0,87,148,.06);
  color: #617a95;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, color .18s ease;
  padding: 0;
}

.ck-close:hover{
  background: rgba(0,87,148,.12);
  color: var(--blue);
  transform: rotate(90deg);
}

/* основа */
.ck-modal__body{
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 0;
  overflow: hidden;
}

/* лівий сайдбар */
.ck-sidebar{
  padding: 24px 18px 24px 24px;
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
  border-right: 1px solid rgba(0,87,148,.08);
}

.ck-side-option{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  color: #1e2b39;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.ck-side-option:hover{
  background: #f2f7fc;
}

.ck-side-option.is-active{
  background: #eef5fb;
  color: var(--blue);
}

.ck-side-option input{
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex: 0 0 18px;
}

/* контент справа */
.ck-content{
  padding: 28px 28px 24px;
  overflow: auto;
}

.ck-tab-panel,
.ck-cat-panel{
  display: none;
}

.ck-tab-panel.is-active,
.ck-cat-panel.is-active{
  display: block;
}

.ck-content h3{
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--blue);
}

.ck-content p{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0,55,104,.78);
  max-width: none;
}

/* таблиця */
.ck-table-wrap{
  margin-top: 20px;
  overflow: auto;
  max-height: 380px;
  background: #fff;
  border: 1px solid rgba(0,87,148,.10);
  border-radius: 18px;
}

.ck-table{
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
}

.ck-table th,
.ck-table td{
  border: 1px solid rgba(0,87,148,.08);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}

.ck-table th{
  background: #f6f9fc;
  color: var(--dark);
  font-weight: 700;
}

/* низ */
.ck-modal__bottom{
  padding: 0 28px 28px;
  display: flex;
  gap: 10px;
}

.ck-modal__bottom .ck-btn{
  min-width: 160px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,87,148,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.ck-modal__bottom .ck-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0,87,148,.28);
}

/* mobile */
@media (max-width: 860px){
  .ck-modal{
    padding: 10px;
  }

  .ck-modal__panel{
    width: 100%;
    max-height: 92vh;
    border-radius: 18px;
  }

  .ck-modal__top{
    padding: 0 16px;
    min-height: 64px;
  }

  .ck-tabs{
    gap: 12px;
    overflow: auto;
  }

  .ck-tab{
    padding: 20px 2px 14px;
    font-size: 14px;
    white-space: nowrap;
  }

  .ck-modal__body{
    grid-template-columns: 1fr;
  }

  .ck-sidebar{
    padding: 16px 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,87,148,.08);
  }

  .ck-side-option{
    margin: 0;
    font-size: 15px;
    padding: 10px 12px;
  }

  .ck-content{
    padding: 20px 16px 16px;
  }

  .ck-content h3{
    font-size: 21px;
  }

  .ck-modal__bottom{
    padding: 0 16px 16px;
  }

  .ck-modal__bottom .ck-btn{
    width: 100%;
  }
}
/* ===== COOKIE BANNER — NARROWER FIRST SCREEN ===== */

.ck-banner{
  width: min(920px, calc(100vw - 48px));
  max-width: 860px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 24px;
}

.ck-banner__inner{
  gap: 20px;
  padding: 22px 22px 0;
  grid-template-columns: minmax(0, 1fr) 260px;
}

.ck-banner__inner > *:first-child{
  flex: 1 1 0;
  min-width: 0;
}

.ck-banner__inner > *:last-child{
  flex: 0 0 260px;
  width: 260px;
}

.ck-banner h2,
.ck-banner h3,
.ck-banner h4,
.ck-banner strong:first-child{
  font-size: 24px;
  margin-bottom: 10px;
}

.ck-banner p{
  font-size: 15px;
  line-height: 1.55;
  max-width: 640px;
}

.ck-banner button,
.ck-banner .ck-btn,
.ck-banner [role="button"]{
  min-height: 48px;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 14px;
}

.ck-inline-toggles{
  padding: 16px 22px 22px;
  gap: 12px;
}

/* laptop / netbook */
@media (max-width: 1200px){
  .ck-banner{
    width: min(860px, calc(100vw - 32px));
    max-width: 860px;
  }

  .ck-banner__inner{
    gap: 18px;
    padding: 20px 20px 0;
  }

  .ck-banner__inner > *:last-child{
    flex: 0 0 240px;
    width: 240px;
  }

  .ck-inline-toggles{
    padding: 14px 20px 20px;
  }
}

/* tablet */
@media (max-width: 900px){
  .ck-banner{
    width: calc(100vw - 24px);
    max-width: none;
    left: 12px;
    right: 12px;
    transform: none;
    bottom: 12px;
  }

  .ck-banner__inner{
    padding: 18px 18px 0;
  }

  .ck-banner__inner > *:last-child{
    flex: 1 1 100%;
    width: 100%;
  }

  .ck-inline-toggles{
    padding: 14px 18px 18px;
  }
}

.blog-card.is-hidden{
  display:none !important;
}

.blog-controls{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.blog-controls__meta{
  font-size:13px;
  color:var(--muted);
}

.blog-controls__buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.blog-controls[hidden],
.blog-controls__buttons [hidden]{
  display:none !important;
}

@media (max-width:640px){
  .blog-controls{
    flex-direction:column;
    align-items:stretch;
  }

  .blog-controls__buttons{
    width:100%;
    display:flex;
    flex-direction:column;
  }

  .blog-controls__buttons .btn{
    width:100%;
  }
}

/* Photo ownership watermark: applied only to photo containers, not logos or UI icons. */
.photo-watermark{
  position:relative;
  overflow:hidden;
}
.photo-watermark::after{
  content:"Photo © VOKKY Group s.r.o.";
  position:absolute;
  right:12px;
  bottom:10px;
  z-index:3;
  max-width:calc(100% - 24px);
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  color:#fff;
  opacity:.5;
  font-size:13px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.02em;
  text-shadow:0 1px 3px rgba(0,0,0,.95), 0 0 8px rgba(0,0,0,.55);
  pointer-events:none;
  user-select:none;
  backdrop-filter:none;
}
.photo-watermark.photo-watermark--compact::after{
  content:"© VOKKY";
  right:8px;
  bottom:7px;
  padding:0;
  font-size:10px;
  letter-spacing:.01em;
}
@media (max-width:640px){
  .photo-watermark::after{
    right:9px;
    bottom:8px;
    font-size:11px;
    padding:0;
  }

  .hero-media .hero-main-img.photo-watermark::after{
    top:8px;
    right:9px;
    bottom:auto;
    font-size:10px;
  }
}

/* =========================================================
   RESTORE STRUCTURAL STYLES AFTER CACHE-BUSTED CORE.CSS
   Root cause: existing HTML uses these classes, but the current core.css
   from public_html (31) lost the layout rules that existed in earlier baseline.
   This block restores the existing mechanisms instead of changing HTML.
   ========================================================= */

.price-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.price-card{background:#fff;border-radius:var(--radius-lg);padding:14px 14px 12px;box-shadow:0 12px 28px rgba(12,18,34,0.06);border:1px solid rgba(12,18,34,0.06);color:var(--muted);font-size:13.5px;}
.price-card h3{margin:0 0 6px;font-size:15px;color:var(--dark);}
.meta{font-size:12.5px;color:rgba(74,85,112,0.92);}
.cards-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.card{background:#fff;border-radius:var(--radius-lg);padding:14px 14px 12px;box-shadow:0 12px 28px rgba(12,18,34,0.06);border:1px solid rgba(12,18,34,0.06);font-size:13.5px;color:var(--muted);}
.bullets{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;font-size:13.5px;}
.bullet{background:#fff;border-radius:var(--radius-lg);padding:10px 12px;box-shadow:0 10px 24px rgba(12,18,34,0.05);border:1px solid rgba(12,18,34,0.06);color:var(--muted);}
@media (max-width:992px){.price-grid{grid-template-columns:1fr;}.cards-3{grid-template-columns:1fr;}.bullets{grid-template-columns:1fr;}}

.quote{margin-top:14px;background:#fff;border-radius:var(--radius-xl);padding:14px 14px 12px;box-shadow:0 14px 34px rgba(12,18,34,0.06);border:1px solid rgba(12,18,34,0.06);color:var(--muted);font-size:14.5px;}
.quote1{margin-top:14px;border-radius:var(--radius-xl);padding:14px 14px 12px;color:var(--muted);font-size:14.5px;}
.quote strong{color:var(--dark);}
.stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:18px;}
.stat{background:#fff;border-radius:var(--radius-lg);padding:14px 14px 12px;box-shadow:0 12px 28px rgba(12,18,34,0.06);border:1px solid rgba(12,18,34,0.06);}
.stat .num{font-size:18px;font-weight:700;letter-spacing:-0.02em;color:var(--dark);margin-bottom:2px;}
.stat .cap{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:0;font-weight:600;}
.text-card{background:#fff;border-radius:var(--radius-xl);padding:18px 18px 16px;font-size:14.5px;box-shadow:0 16px 36px rgba(12,18,34,0.06);border:1px solid rgba(12,18,34,0.06);}
.text-card p{margin:0 0 10px;color:var(--muted);}
.text-card p:last-child{margin-bottom:0;}
.two-col{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:18px;align-items:stretch;}
.list{margin:10px 0 0;padding-left:18px;color:var(--muted);font-size:14.5px;}
.list li{margin-bottom:6px;}
.blog-wrap{background:linear-gradient(180deg, rgba(0,87,148,0.06), rgba(255,179,0,0.05));border-radius:var(--radius-xl);padding:18px;border:1px solid rgba(12,18,34,0.06);box-shadow:0 14px 34px rgba(12,18,34,0.04);}
.blog-top{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:14px;}
.blog-top .kicker{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;background:#fff;border:1px solid rgba(12,18,34,0.10);box-shadow:0 10px 24px rgba(12,18,34,0.04);font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--blue);}
.blog-actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}
.blog-grid{display:grid;gap:12px;grid-template-columns:repeat(3,minmax(0,1fr));margin-top:12px;}
.blog-card{background:#fff;border-radius:var(--radius-xl);border:1px solid rgba(12,18,34,0.06);box-shadow:0 12px 28px rgba(12,18,34,0.06);overflow:hidden;display:flex;flex-direction:column;min-height:210px;transition:transform .18s ease, box-shadow .18s ease;}
.blog-card:hover{transform:translateY(-2px);box-shadow:0 18px 40px rgba(12,18,34,0.10);}
.blog-card-top{padding:14px 14px 0;display:flex;align-items:center;justify-content:space-between;gap:10px;}
.blog-chip{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border-radius:999px;background:rgba(0,87,148,0.10);color:var(--blue);font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;}
.blog-date{font-size:11.5px;color:rgba(74,85,112,0.9);letter-spacing:.02em;white-space:nowrap;}
.blog-card h3{margin:10px 14px 6px;font-size:16px;line-height:1.25;letter-spacing:-0.02em;color:var(--dark);}
.blog-card p{margin:0 14px 12px;color:var(--muted);font-size:13.5px;}
.blog-card-bottom{margin-top:auto;padding:12px 14px 14px;display:flex;align-items:center;justify-content:space-between;gap:10px;border-top:1px solid rgba(12,18,34,0.06);background:linear-gradient(180deg, rgba(0,87,148,0.03), transparent);}
.blog-link{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--blue);}
.blog-link .arrow{width:22px;height:22px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(0,87,148,0.25);transition:transform .18s ease, background .18s ease, border-color .18s ease;}
.blog-card:hover .blog-link .arrow{transform:translateX(2px);background:rgba(0,87,148,0.08);border-color:rgba(0,87,148,0.35);}
.blog-meta{font-size:11.5px;color:rgba(74,85,112,0.9);display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.blog-dot{width:4px;height:4px;border-radius:999px;background:rgba(74,85,112,0.55);}
.blog-feature{margin-top:12px;background:#fff;border-radius:var(--radius-xl);border:1px solid rgba(12,18,34,0.06);box-shadow:0 14px 34px rgba(12,18,34,0.06);padding:16px;display:flex;gap:14px;align-items:flex-start;justify-content:space-between;flex-wrap:wrap;}
.blog-feature h4{margin:0 0 6px;font-size:16px;letter-spacing:-0.02em;}
.blog-feature p{margin:0;color:var(--muted);font-size:13.5px;max-width:760px;}
@media (max-width:992px){.stats{grid-template-columns:repeat(2,minmax(0,1fr));}.blog-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.two-col{grid-template-columns:1fr;}}
@media (max-width:640px){.stats{grid-template-columns:1fr;}.blog-grid{grid-template-columns:1fr;}.blog-wrap{padding:14px;}}

.soft-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;align-items:stretch;}
.soft-card{background:#fff;border-radius:var(--radius-xl);padding:16px 16px 14px;box-shadow:0 14px 34px rgba(12,18,34,0.06);border:1px solid rgba(12,18,34,0.06);}
.soft-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px;}
.soft-top .badge{display:inline-flex;align-items:center;gap:8px;padding:5px 10px;border-radius:999px;background:rgba(21,84,246,0.08);color:#005794;font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;}
.soft-top .icon{width:40px;height:40px;border-radius:14px;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;box-shadow:0 12px 28px rgba(12,18,34,0.12);flex-shrink:0;}
.soft-card h3{margin:0 0 6px;font-size:15px;letter-spacing:-0.01em;}
.soft-card p{margin:0;color:var(--muted);font-size:13.5px;}
.soft-list{margin:10px 0 0;padding-left:18px;color:var(--muted);font-size:13.5px;}
.soft-list li{margin-bottom:4px;}
.partners-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.partner{background:#fff;border-radius:var(--radius-lg);padding:14px 14px 12px;box-shadow:0 12px 28px rgba(12,18,34,0.06);border:1px solid rgba(12,18,34,0.06);display:flex;flex-direction:column;gap:8px;min-height:150px;}
.partner-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;}
.partner h4{margin:0;font-size:15px;}
.tag-row{display:flex;flex-wrap:wrap;gap:6px;}
.tag{font-size:11px;padding:4px 8px;border-radius:999px;border:1px solid rgba(12,18,34,0.12);color:rgba(74,85,112,0.95);background:#fff;}
.partner p{margin:0;color:var(--muted);font-size:13px;}
@media (max-width:992px){.soft-row{grid-template-columns:1fr;}.partners-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:640px){.partners-grid{grid-template-columns:1fr;}}

.contacts-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);gap:14px;align-items:stretch;}
.contacts-left{padding:18px 18px 16px;}
.contacts-right{padding:10px;}
.kicker{font-size:12px;color:rgba(74,85,112,0.9);text-transform:uppercase;letter-spacing:.08em;font-weight:600;margin-bottom:10px;}
.contact-lines{margin:0;padding:0;list-style:none;color:var(--muted);font-size:14px;}
.contact-lines li{margin:0 0 8px;}
.contact-lines b{color:var(--dark);font-weight:600;}
.mini-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.map-wrap{border-radius:calc(var(--radius-xl) - 6px);overflow:hidden;border:1px solid rgba(12,18,34,0.06);background:#fff;height:100%;min-height:340px;box-shadow:0 12px 28px rgba(12,18,34,0.06);}
.map-wrap iframe{width:100%;height:100%;border:0;}
.map-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px;}
.form-wrap{padding:18px;}
.form-note{margin:0 0 12px;color:var(--muted);font-size:14.5px;}
.req{color:#d13c3c;font-weight:700;}
.span-2{grid-column:1 / -1;}
.success{display:none;margin-top:10px;padding:12px;border-radius:14px;background:linear-gradient(135deg, rgba(0,87,148,0.08), rgba(242,172,22,0.10));border:1px solid rgba(0,87,148,0.12);color:var(--muted);font-size:13.5px;}
.page--kontakt #contactForm{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.page--kontakt #contactForm .field label{font-size:12px;font-weight:600;color:rgba(74,85,112,0.95);letter-spacing:.04em;}
.page--kontakt #contactForm input,.page--kontakt #contactForm select,.page--kontakt #contactForm textarea{width:100%;border:1px solid rgba(12,18,34,0.14);border-radius:14px;padding:12px;font:inherit;background:#fff;outline:none;box-shadow:0 10px 24px rgba(12,18,34,0.04);transition:border-color .2s ease, box-shadow .2s ease;}
.page--kontakt #contactForm textarea{min-height:120px;resize:vertical;}
.page--kontakt #contactForm input::placeholder,.page--kontakt #contactForm textarea::placeholder{color:rgba(74,85,112,0.75);}
.page--kontakt #contactForm select:invalid{color:rgba(74,85,112,0.75);}
.page--kontakt #contactForm input:focus,.page--kontakt #contactForm select:focus,.page--kontakt #contactForm textarea:focus{border-color:rgba(0,87,148,0.45);box-shadow:0 0 0 4px rgba(0,87,148,0.12);}
.page--kontakt #contactForm .hint{font-size:12px;color:rgba(74,85,112,0.9);line-height:1.45;}
@media (max-width:992px){.contacts-grid{grid-template-columns:1fr;}.map-wrap{min-height:300px;}.page--kontakt #contactForm{grid-template-columns:1fr;}}
@media (max-width:640px){.page--kontakt #contactForm .form-actions{flex-direction:column;align-items:stretch;}.page--kontakt #contactForm .form-actions .btn{width:100%;}}

.grid-2{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:14px;}
.table{width:100%;border-collapse:separate;border-spacing:0;overflow:hidden;border-radius:var(--radius-lg);background:#fff;box-shadow:0 14px 30px rgba(12,18,34,0.06);border:1px solid rgba(12,18,34,0.06);font-size:13.5px;}
.table th,.table td{padding:12px;border-bottom:1px solid rgba(12,18,34,0.08);text-align:left;}
.table th{font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);background:rgba(245,247,251,0.75);}
.table tr:last-child td{border-bottom:none;}
.price-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(21,84,246,0.08);color:#005794;font-weight:700;font-size:13px;border:1px solid rgba(21,84,246,0.16);}
@media (max-width:992px){.grid-2{grid-template-columns:1fr;}}

.integrations-kicker{font-size:12px;font-weight:700;letter-spacing:.02em;margin:0 0 10px;color:var(--dark,#0f0f12);opacity:.85;}
.integrations-board{display:grid;gap:18px;}
.integrations-title{font-size:12px;font-weight:700;color:var(--muted,#6b7280);margin:0 0 10px;text-transform:uppercase;letter-spacing:.06em;}
.integrations-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;}
.integration-card{position:relative;border-radius:14px;border:1px solid rgba(15,15,18,.10);background:rgba(255,255,255,.72);backdrop-filter:blur(8px);min-height:64px;display:flex;align-items:center;justify-content:center;gap:10px;padding:12px;box-shadow:0 8px 24px rgba(15,15,18,.05),0 1px 0 rgba(255,255,255,.6) inset;transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;}
.integration-card:hover{transform:translateY(-2px);border-color:rgba(15,15,18,.18);box-shadow:0 14px 34px rgba(15,15,18,.08),0 1px 0 rgba(255,255,255,.7) inset;}
.integration-card img{width:auto;height:26px;max-width:92px;object-fit:contain;display:block;filter:saturate(1.02);}
.integration-card span{font-size:13px;font-weight:700;color:var(--dark,#0f0f12);white-space:nowrap;opacity:.92;}
@media (max-width:980px){.integrations-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:640px){.integrations-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;}}
@media (max-width:420px){.integration-card span{display:none;}}

.cards-3 .card > h3.h3-ico{margin:0 0 10px;display:flex;align-items:center;gap:10px;font-size:16px;font-weight:800;color:var(--dark);letter-spacing:-0.01em;}
.cards-3 .card > h3.h3-ico .h-ico{width:60px;height:60px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 10px 24px rgba(12,18,34,0.05);overflow:hidden;}
.cards-3 .card > h3.h3-ico .h-ico img{width:60px;height:60px;display:block;object-fit:contain;}
