.logo-wrap{
  float: right;
  width: 180px;
  margin: -12px 0 18px 22px;
  border-radius: 18px;
  background: transparent;        /* ważne */
  overflow: visible;
}

.logo-img{
  width: 100%;
  height: auto;
  display: block;                 /* ważne: usuwa “baseline gap” */
  background: transparent !important;
  box-shadow: none;               /* na razie wyłącz */
  mix-blend-mode: normal;         /* wyłącz blendy */
  filter: none;                   /* wyłącz filtry */
}
    :root{
      --white:#ffffff;
      --text:#0b2a3a;

      --pageBgTop:#eaf7ff;
      --pageBgMid:#f6fbff;
      --pageBgBottom:#ffffff;

      --brandPink:#ff2a7a;
      --brandBlue:#23b7ff;

      --card: rgba(255,255,255,.92);
      --cardBorder: rgba(9, 76, 110, .10);
      --shadow: 0 12px 30px rgba(9, 76, 110, .10);
      --radius: 22px;

      --navBg: rgba(255,255,255,.74);
      --navBorder: rgba(9, 76, 110, .10);

      --max: 1180px;
    }

    *{ box-sizing:border-box; }
    html, body{ height:100%; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      color: var(--text);

      background:
        radial-gradient(900px 520px at 18% 8%, rgba(35,183,255,.26), transparent 55%),
        radial-gradient(850px 480px at 86% 18%, rgba(255,42,122,.10), transparent 58%),
        linear-gradient(180deg, var(--pageBgTop) 0%, var(--pageBgMid) 55%, var(--pageBgBottom) 100%);
    }

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

    /* ===== Top strip ===== */
    .top-strip{
      background: rgba(255,255,255,.62);
      border-bottom: 1px solid rgba(9, 76, 110, .10);
    }
    .top-strip-inner{
      max-width: var(--max);
      margin: 0 auto;
      padding: 10px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      font-size: 13px;
      color: rgba(11,42,58,.72);
    }

    .social{
      display:flex;
      gap: 10px;
      align-items:center;
    }
    .social a{
      width: 30px;
      height: 30px;
      border-radius: 10px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background: rgba(35,183,255,.10);
      border: 1px solid rgba(9, 76, 110, .10);
      font-weight: 1000;
      line-height: 1;
      color: rgba(11,42,58,.78);
    }
    .social a:hover{
      background: rgba(255,42,122,.10);
      border-color: rgba(255,42,122,.22);
      color: rgba(11,42,58,.92);
    }

    .phones{
      display:flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content:flex-end;
      align-items:center;
    }
    .phone{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      font-weight: 1000;
      letter-spacing: .2px;
      color: rgba(11,42,58,.78);
      white-space: nowrap;
    }
    .phone a{ color: rgba(11,42,58,.78); }
    .phone a:hover{
      color: rgba(11,42,58,.92);
      text-decoration: underline;
    }

    /* ===== Navbar ===== */
    .nav{
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--navBg);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--navBorder);
      box-shadow: 0 10px 26px rgba(9, 76, 110, .08);
    }
    .nav-inner{
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap: 10px;
      min-width: 240px;
    }
    .logo{
      width: 42px;
      height: 42px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--brandBlue), var(--brandPink));
      box-shadow: 0 14px 22px rgba(9, 76, 110, .14);
    }
    .brand-title{
      font-weight: 1100;
      letter-spacing: .2px;
      line-height: 1.05;
      color: rgba(11,42,58,.92);
    }
    .brand-sub{
      font-size: 12px;
      margin-top: 2px;
      font-weight: 800;
      color: rgba(11,42,58,.62);
    }

    .menu{
      display:flex;
      align-items:center;
      gap: 18px;
      font-weight: 1000;
      white-space: nowrap;
    }
    .menu a{
      padding: 10px 10px;
      border-radius: 12px;
      position: relative;
      color: rgba(11,42,58,.78);
    }
    .menu a:hover{
      background: rgba(35,183,255,.10);
      color: rgba(11,42,58,.92);
    }
    .menu a.active::after{
      content:"";
      position:absolute;
      left: 10px;
      right: 10px;
      bottom: 6px;
      height: 3px;
      background: var(--brandPink);
      border-radius: 99px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 11px 16px;
      border-radius: 14px;
      background: var(--brandPink);
      color:#fff;
      font-weight: 1100;
      border: 0;
      cursor:pointer;
      box-shadow: 0 18px 28px rgba(255,42,122,.22);
      transition: transform .08s ease, filter .08s ease;
      white-space: nowrap;
    }
    .btn:hover{ filter: brightness(1.04); }
    .btn:active{ transform: translateY(1px); }

    .btn-ghost{
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(9, 76, 110, .12);
      box-shadow: none;
      color: rgba(11,42,58,.80);
      font-weight: 1000;
    }
    .btn-ghost:hover{
      background: rgba(35,183,255,.12);
      color: rgba(11,42,58,.92);
    }

    .wrap{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 18px 60px;
    }

    .card{
      background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
      color: var(--text);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid var(--cardBorder);
    }

    label{
      display:block;
      font-weight: 1100;
      margin: 12px 0 6px;
      color: rgba(11,42,58,.92);
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(9, 76, 110, .18);
      font-size: 16px;
      outline: none;
      background: rgba(255,255,255,.98);
      color: rgba(11,42,58,.92);
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(35,183,255,.9);
      box-shadow: 0 0 0 4px rgba(35,183,255,.18);
    }
    .errorlist{
      margin: 10px 0;
      padding: 12px 12px;
      background: #ffe6ee;
      color:#8a0030;
      border-radius: 14px;
      list-style: none;
    }

    footer{
      margin-top: 42px;
      padding-top: 22px;
      border-top: 1px solid rgba(9, 76, 110, .10);
      color: rgba(11,42,58,.70);
      font-size: 13px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 18px;
      margin-bottom: 14px;
    }
    .footer-title{
      font-weight: 1100;
      margin: 0 0 8px;
      color: rgba(11,42,58,.90);
    }
    .footer-text{
      color: rgba(11,42,58,.70);
      line-height: 1.7;
      font-size: 13px;
      margin: 0;
    }
    .footer-links a{
      display:block;
      color: rgba(11,42,58,.70);
      padding: 6px 0;
    }
    .footer-links a:hover{
      color: rgba(11,42,58,.92);
      text-decoration: underline;
    }

    @media (max-width: 980px){
      .menu{ display:none; }
      .brand{ min-width: auto; }
      .phones{ display:none; }
    }

    .cookie{
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 80;
      background: rgba(255,255,255,.82);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(9, 76, 110, .10);
      padding: 12px 14px;
      display:flex;
      justify-content:center;
      color: rgba(11,42,58,.78);
    }
    .cookie-inner{
      width: min(var(--max), 100%);
      display:flex;
      gap: 12px;
      align-items:center;
      justify-content:space-between;
      font-size: 13px;
    }
    .cookie button{
      background: rgba(35,183,255,.16);
      border: 1px solid rgba(9, 76, 110, .12);
      color: rgba(11,42,58,.88);
      border-radius: 12px;
      padding: 8px 12px;
      font-weight: 1100;
      cursor:pointer;
    }
    .cookie button:hover{
      background: rgba(255,42,122,.12);
      border-color: rgba(255,42,122,.18);
    }
