﻿/* =============================================
  PODSTAWOWE RESET I KLASY UĹ»YWANE W TOPBAR
  ============================================= */

#mobile-nav-overlay { display: none; }
#mobile-nav-overlay.is-open { display: flex; }

header.sticky {
  border-bottom: none !important;
  position: relative;
}
header.sticky::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #4f7dc9 15%, #4f7dc9 85%, transparent);
}
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .font-sans {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .sticky {
    position: sticky;
  }

  .top-0 {
    top: 0;
  }

  .z-50 {
    z-index: 50;
  }

  .max-w-7xl {
    max-width: 1280px;
  }

  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  @media (min-width: 768px) {
    .md\:py-24 {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
  }

  .py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .flex {
    display: flex;
  }

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

  .justify-between {
    justify-content: space-between;
  }

  .gap-3 {
    gap: 0.75rem;
  }

  .gap-6 {
    gap: 1.5rem;
  }

  .gap-8 {
    gap: 2rem;
  }

  .hidden {
    display: none;
  }

  @media (min-width: 1024px) {
    .lg\:flex {
      display: flex;
    }
    .lg\:py-5 {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
    }
  }

  .text-sm {
    font-size: 0.875rem;
  }

  .text-slate-300 {
    color: #cbd5e1;
  }

  .h-\[40px\] {
    height: 40px;
  }

  .w-auto {
    width: auto;
  }

  .object-contain {
    object-fit: contain;
  }

  :root {
    --bg: #1e2127;
    --panel: rgba(30, 33, 39, 0.84);
    --panel-strong: #282c34;
    --panel-soft: rgba(36, 40, 48, 0.68);
    --text: #eef3fb;
    --muted: #9aa9bf;
    --line: rgba(160, 177, 204, 0.14);
    --line-strong: rgba(160, 177, 204, 0.22);
    --opel: #e3b84b;
    --ford: #4f7dc9;
    --accent: #cf5d4c;
    --accent-soft: #f2c96a;
    --radius-lg: 1.6rem;
    --radius-md: 1.15rem;
    --header-offset: 8.5rem;
    --hero-top-gap: 1.5rem;
  }

  /* STYLE DLA NAWIGACJI */
  nav a {
    text-decoration: none;
    color: #cbd5e1;
    transition: color 0.2s ease;
    font-weight: 500;
  }

  nav a:hover {
    color: white;
  }

  /* GLOBALNA KLASA DLA Ĺ»Ă“ĹTEGO AKCENTU TEKSTU */
  .text-accent-yellow {
    color: #f2c96a !important;
    font-weight: 600;
  }

  nav a.active {
    color: #f2c96a !important;
    font-weight: 600;
  }

  .border-b-2 {
    border-bottom-width: 2px;
  }

  .backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .inline-flex {
    display: inline-flex;
  }

  .px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .rounded-full {
    border-radius: 9999px;
  }

  .font-semibold {
    font-weight: 600;
  }

  .group:hover .group-hover\:block {
    display: block;
  }

  .text-slate-400 {
    color: #94a3b8;
  }

/* =============================================
  DOKĹADNY TOPBAR 1:1 Z ORYGINAĹEM
  ============================================= */
  header {
    background: rgba(30, 30, 30, 0.95) !important;
    border-bottom: 2px solid #4f7dc9 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
  }

  header a {
    text-decoration: none;
  }

  .border-\[\#4f7dc9\] {
    border-color: #4f7dc9 !important;
  }

  .bg-\[\#1e1e1e\] {
    background-color: #1e1e1e !important;
  }

/* =============================================
  PRZYCISK ZADZWOĹ TERAZ 1:1
  ============================================= */
  .accent-button {
    background: linear-gradient(180deg, #f0c864 0%, #e4b84e 100%) !important;
    color: #08101b !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-radius: 9999px !important;
    transition: filter 0.2s ease !important;
  }

  .accent-button:hover {
    filter: brightness(1.05) !important;
  }

  body[data-theme="light"] {
    --bg: #f4f7fb;
    --panel: rgba(255, 255, 255, 0.9);
    --panel-strong: #ffffff;
    --panel-soft: rgba(255, 255, 255, 0.82);
    --text: #152235;
    --muted: #617089;
    --line: rgba(97, 112, 137, 0.16);
    --line-strong: rgba(97, 112, 137, 0.26);
    --opel: #c6931d;
    --ford: #356cc8;
    --accent: #c96a40;
    --accent-soft: #f1cf7a;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-offset) + 0.5rem);
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(79, 125, 201, 0.1), transparent 30%),
      radial-gradient(circle at top right, rgba(227, 184, 75, 0.08), transparent 24%),
      #1e2127;
    color: var(--text);
    line-height: 1.5;
  }

  body[data-theme="light"] {
    background:
      radial-gradient(circle at top left, rgba(53, 108, 200, 0.06), transparent 24%),
      radial-gradient(circle at top right, rgba(201, 154, 64, 0.08), transparent 18%),
      linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 42%, #edf2f7 100%);
  }

  .glass {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
  }

  body[data-theme="light"] .glass {
    box-shadow: 0 14px 28px rgba(28, 42, 61, 0.06);
  }

  .grid-line {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
  }

  body[data-theme="light"] .grid-line {
    background-image:
      linear-gradient(rgba(21, 34, 53, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21, 34, 53, 0.03) 1px, transparent 1px);
  }

  .brand-chip {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
  }

  .card-hover {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  }

  .card-hover:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 184, 75, 0.28);
    box-shadow: 0 16px 32px rgba(3, 8, 20, 0.22);
  }

  .process-cards .process-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    will-change: transform, border-color, box-shadow, background;
    animation: processCardMarch 6.6s ease-in-out infinite;
    animation-delay: var(--process-delay, 0s);
  }

  .process-cards .process-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    width: 34%;
    background: linear-gradient(
      90deg,
      rgba(242, 201, 106, 0) 0%,
      rgba(242, 201, 106, 0.05) 20%,
      rgba(242, 201, 106, 0.16) 52%,
      rgba(79, 125, 201, 0.08) 78%,
      rgba(79, 125, 201, 0) 100%
    );
    transform: skewX(-18deg) translateX(-240%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    animation: processCardSweep 6.6s ease-in-out infinite;
    animation-delay: var(--process-delay, 0s);
  }

  .process-cards .process-card > * {
    position: relative;
    z-index: 1;
  }

  @keyframes processCardMarch {
    0%,
    64%,
    100% {
      transform: translate3d(0, 0, 0);
      border-color: var(--line);
      box-shadow: none;
      background: var(--panel-soft);
    }
    10%,
    20% {
      transform: translate3d(0, -2px, 0);
      border-color: rgba(227, 184, 75, 0.22);
      box-shadow: 0 12px 24px rgba(3, 8, 20, 0.18);
      background:
        radial-gradient(circle at top left, rgba(227, 184, 75, 0.05), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
        var(--panel-soft);
    }
  }

  @keyframes processCardSweep {
    0%,
    8%,
    100% {
      opacity: 0;
      transform: skewX(-18deg) translateX(-240%);
    }
    12% {
      opacity: 0.72;
      transform: skewX(-18deg) translateX(-110%);
    }
    20% {
      opacity: 0.22;
      transform: skewX(-18deg) translateX(290%);
    }
    21%,
    64% {
      opacity: 0;
      transform: skewX(-18deg) translateX(320%);
    }
  }

  .services-cards .service-card {
    opacity: 0;
    transform: translateY(20px);
  }

  .services-cards.visible .service-card {
    animation: liftSequence 0.8s ease-out forwards;
  }

  .services-cards.visible .service-card:nth-child(1) {
    animation-delay: 0s;
  }

  .services-cards.visible .service-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .services-cards.visible .service-card:nth-child(3) {
    animation-delay: 0.4s;
  }

  .services-cards.visible .service-card:nth-child(4) {
    animation-delay: 0.6s;
  }



  @keyframes liftSequence {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }



  @media (prefers-reduced-motion: reduce) {
    .process-cards .process-card,
    .process-cards .process-card::after,
    .services-cards .service-card,
    .services-cards .service-card::after,
    .services-cards .service-card .quick-info-icon {
      animation: none;
    }
  }

  .faq-jump-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }

  .faq-jump-card,
  .faq-link-card {
    display: block;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
  }

  .faq-jump-card {
    padding: 1.15rem 1.2rem;
  }

  .faq-jump-kicker,
  .faq-link-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: #f2c96a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .faq-jump-card strong,
  .faq-link-card strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.4;
    font-weight: 700;
  }

  .faq-jump-card p {
    margin-top: 0.6rem;
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .faq-link-grid {
    display: grid;
    gap: 0.9rem;
  }

  .faq-link-card {
    padding: 1rem 1.1rem;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: var(--panel-soft);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  }

  .faq-item[open] {
    border-color: rgba(227, 184, 75, 0.26);
    box-shadow: 0 16px 30px rgba(3, 8, 20, 0.16);
    background:
      radial-gradient(circle at top left, rgba(227, 184, 75, 0.05), transparent 42%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
      var(--panel-soft);
  }

  .faq-summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    cursor: pointer;
    list-style: none;
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.45;
  }

  .faq-summary::-webkit-details-marker {
    display: none;
  }

  .faq-summary-icon {
    position: relative;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 0.35rem;
  }

  .faq-summary-icon::before,
  .faq-summary-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: #f2c96a;
    transform: translate(-50%, -50%);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .faq-summary-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .faq-item[open] .faq-summary-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
  }

  .faq-answer {
    padding: 0 1.35rem 1.3rem;
    color: #cbd5e1;
  }

  .faq-answer p {
    line-height: 1.75;
  }

  .faq-answer p + p {
    margin-top: 0.85rem;
  }

  .faq-answer a {
    color: #f2c96a;
    text-decoration: none;
    font-weight: 600;
  }

  .faq-answer a:hover {
    color: #ffffff;
  }

  .store-mosaic {
    display: grid;
    gap: 1.6rem;
    align-items: start;
  }

  .store-copy-block {
    position: relative;
    z-index: 3;
    max-width: 32rem;
  }

  .store-copy-block--lead {
    padding-left: 1.4rem;
  }

  .store-copy-block--lead::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    bottom: 0.4rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2c96a 0%, rgba(242, 201, 106, 0.18) 100%);
  }

  .store-copy-kicker {
    margin: 0 0 0.75rem;
    color: #f2c96a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .store-copy-heading {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1.04;
    font-weight: 800;
    text-wrap: balance;
  }

  .store-copy-text {
    margin-top: 1.15rem;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.75;
    text-wrap: pretty;
  }

  .store-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 1.55rem;
    box-shadow: 0 24px 44px rgba(3, 8, 20, 0.18);
  }

  .store-photo--front,
  .store-photo--shelves,
  .store-photo--main {
    aspect-ratio: 4 / 3;
  }

  .store-year-grid {
    align-items: stretch;
  }

  .store-year-card {
    height: 100%;
  }

  .store-year-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(227, 184, 75, 0.2);
    background: rgba(242, 201, 106, 0.08);
    color: #f2c96a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .store-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .store-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
  }

  @media (min-width: 480px) {
    .store-pill-row {
      flex-wrap: nowrap;
    }
  }

  @media (min-width: 1024px) {
    .store-mosaic {
      grid-template-columns: minmax(300px, 0.9fr) minmax(460px, 1.18fr);
      grid-template-areas:
        "lead front"
        "main trust"
        "stock shelves";
      column-gap: 3.2rem;
      row-gap: 2.4rem;
    }

    .store-copy-block--lead {
      grid-area: lead;
      align-self: center;
      max-width: 28rem;
      padding-top: 0.8rem;
    }

    .store-photo--front {
      grid-area: front;
      justify-self: end;
      width: min(100%, 40rem);
      align-self: start;
    }

    .store-photo--main {
      grid-area: main;
      justify-self: start;
      width: min(100%, 33rem);
      margin-left: 1.5rem;
      align-self: start;
    }

    .store-copy-block--trust {
      grid-area: trust;
      align-self: center;
      max-width: 27rem;
      margin-top: 0.25rem;
    }

    .store-copy-block--stock {
      grid-area: stock;
      align-self: end;
      max-width: 27rem;
    }

    .store-photo--shelves {
      grid-area: shelves;
      justify-self: end;
      width: min(100%, 34rem);
      align-self: start;
    }
  }

  @media (max-width: 1023px) {
    .store-copy-block--lead {
      padding-left: 1.1rem;
    }

    .store-copy-heading {
      font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .store-copy-text {
      font-size: 1rem;
      line-height: 1.7;
    }

    .store-photo--main {
      width: min(100%, 42rem);
    }
  }

  .section-title {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: #f2c96a !important;
  }

  .tile-media {
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.18);
  }

  .tile-media--clean {
    border: none;
    border-radius: 1.35rem;
    box-shadow: 0 18px 34px rgba(3, 8, 20, 0.18);
  }

  .tile-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 38%);
  }

  .tile-media--clean::before {
    display: none;
  }

  body[data-theme="light"] .tile-media {
    border-color: rgba(97, 112, 137, 0.18);
  }

  body[data-theme="light"] .tile-media::before {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 55%),
      radial-gradient(circle at top right, rgba(53, 108, 200, 0.08), transparent 38%);
  }

  .map-placeholder {
    background:
      linear-gradient(135deg, rgba(45, 108, 223, 0.18), rgba(244, 197, 66, 0.08)),
      repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.04) 12px,
        transparent 12px,
        transparent 24px
      );
  }

  .map-embed {
    width: 100%;
    min-height: 220px;
    border: 0;
    display: block;
    filter: saturate(0.95) contrast(1.02);
  }

  .map-link-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
  }

  body[data-theme="light"] .map-link-card {
    background: rgba(255, 255, 255, 0.78);
  }

  body[data-theme="light"] .entry-card,
  body[data-theme="light"] .brand-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.94));
    color: #152235;
  }

  body[data-theme="light"] .entry-card.text-white {
    color: #152235;
  }

  body[data-theme="light"] .entry-card.text-white h2,
  body[data-theme="light"] .entry-card.text-white p:not(.entry-kicker) {
    color: #152235 !important;
  }

  body[data-theme="light"] .entry-kicker {
    color: #152235;
  }

  body[data-theme="light"] .entry-visual,
  body[data-theme="light"] .entry-visual-opel,
  body[data-theme="light"] .entry-visual-ford {
    background:
      radial-gradient(circle at top right, rgba(53, 108, 200, 0.08), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 243, 248, 0.9));
    border-color: rgba(97, 112, 137, 0.14);
  }

  body[data-theme="light"] .entry-visual::after {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42));
  }

  body[data-theme="light"] .entry-badge {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(97, 112, 137, 0.12);
    color: #24344c;
  }

  body[data-theme="light"] .entry-copy p,
  body[data-theme="light"] .entry-copy .text-white,
  body[data-theme="light"] .entry-copy .text-white\/65 {
    color: #24344c !important;
  }

  body[data-theme="light"] .brand-panel-opel::after,
  body[data-theme="light"] .brand-panel-ford::after {
    opacity: 0.7;
  }

  body[data-theme="light"] .topbar-calm {
    background: linear-gradient(180deg, rgba(248, 233, 192, 0.95), rgba(242, 214, 144, 0.92));
  }

  body[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.78) !important;
    border-bottom-color: rgba(97, 112, 137, 0.1) !important;
    box-shadow: 0 10px 26px rgba(25, 40, 60, 0.04);
  }

  body[data-theme="light"] nav a,
  body[data-theme="light"] .text-slate-300,
  body[data-theme="light"] .text-slate-400 {
    color: #617089 !important;
  }

  body[data-theme="light"] .hover\:text-white:hover {
    color: #152235 !important;
  }

  body[data-theme="light"] .soft-button {
    background: rgba(255, 255, 255, 0.8);
  }

  body[data-theme="light"] .bg-\[\#07101d\]\/85 {
    background: rgba(255, 255, 255, 0.86) !important;
  }

  body[data-theme="light"] footer {
    background: linear-gradient(180deg, #eef3f8 0%, #e8eef5 100%) !important;
    border-top-color: rgba(97, 112, 137, 0.12) !important;
  }

  body[data-theme="light"] footer a.text-white {
    color: #152235 !important;
  }

  body[data-theme="light"] #phone-modal > div:last-child {
    background: white !important;
    color: #152235;
  }

  body[data-theme="light"] #phone-modal .text-slate-400 {
    color: #64748b !important;
  }

  body[data-theme="light"] .bg-\[\#f7f8fb\] {
    background: #ffffff !important;
  }

  body[data-theme="light"] .border-white\/10,
  body[data-theme="light"] .border-white\/15 {
    border-color: rgba(97, 112, 137, 0.14) !important;
  }

  body[data-theme="light"] .bg-white\/5 {
    background: rgba(255, 255, 255, 0.72) !important;
  }

  body[data-theme="light"] .view-toggle {
    color: #4d5d75;
  }

  body[data-theme="light"] .theme-toggle.is-active {
    background: #152235;
    color: #fff;
    border-color: #152235;
  }

  [data-view-target] {
    display: none;
  }

  body[data-view-mode="full"] [data-view-target="full"],
  body[data-view-mode="clean"] [data-view-target="clean"],
  body[data-view-mode="full"] [data-view-target="shared"],
  body[data-view-mode="clean"] [data-view-target="shared"] {
    display: block;
  }

  body[data-view-mode="full"] section[data-view-target="full"],
  body[data-view-mode="clean"] section[data-view-target="clean"],
  body[data-view-mode="full"] section[data-view-target="shared"],
  body[data-view-mode="clean"] section[data-view-target="shared"] {
    display: block;
  }

  .view-toggle {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: #c8d3e4;
  }

  .view-toggle.is-active {
    background: var(--accent-soft);
    color: #08101b;
    border-color: var(--accent-soft);
  }

  .theme-toggle.is-active {
    background: #152235;
    color: #f7fafc;
    border-color: #152235;
  }

  .accent-button {
    background: linear-gradient(180deg, #f0c864 0%, #e4b84e 100%);
    color: #08101b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .accent-button:hover {
    filter: brightness(1.02);
  }

  .soft-button {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
  }

  .soft-panel {
    background: var(--panel-soft);
    border: 1px solid var(--line);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
  }

  .soft-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 184, 75, 0.25);
    box-shadow: 0 16px 32px rgba(3, 8, 20, 0.18);
  }

  .delivery-card {
    background: white;
    border: 1px solid #e2e8f0;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .delivery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .brand-panel {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(16, 28, 46, 0.92), rgba(12, 21, 36, 0.96));
  }

  .brand-panel-opel::after,
  .brand-panel-ford::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
  }

  .brand-panel-opel::after {
    background: linear-gradient(180deg, rgba(227, 184, 75, 0.9), rgba(227, 184, 75, 0.15));
  }

  .brand-panel-ford::after {
    background: linear-gradient(180deg, rgba(79, 125, 201, 0.9), rgba(79, 125, 201, 0.15));
  }

  .topbar-calm {
    background: linear-gradient(180deg, rgba(240, 200, 100, 0.94), rgba(227, 184, 75, 0.92));
  }

  .muted-copy {
    color: var(--muted);
  }

  .quick-info-card {
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 32%),
      linear-gradient(180deg, rgba(15, 26, 44, 0.98), rgba(11, 20, 34, 0.96));
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(4, 9, 18, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
  }

  .quick-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(4, 9, 18, 0.22);
    border-color: rgba(227, 184, 75, 0.25);
  }

  body[data-theme="light"] .quick-info-card {
    background:
      radial-gradient(circle at top right, rgba(53, 108, 200, 0.06), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98));
  }

  .quick-info-shell {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .quick-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  body[data-theme="light"] .quick-info-icon {
    background: rgba(255, 255, 255, 0.82);
    color: #1e3350;
  }

  .quick-info-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f2c96a !important;
    font-weight: 700;
  }

  .quick-info-value {
    margin-top: 0.35rem;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .quick-info-note {
    margin-top: 0.5rem;
    font-size: 0.84rem;
    color: var(--muted);
  }

a.entry-card {
  color: var(--text);
  text-decoration: none;
}

.entry-card {
  border-radius: 1.6rem;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(4, 9, 18, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
    animation: goldPulse 3s ease-in-out infinite;


  transition: all 0.25s ease;
}

.entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
@keyframes goldPulse {
  0% {
    box-shadow:
      0 0 0 rgba(227, 184, 75, 0),
      0 12px 28px rgba(4, 9, 18, 0.12);
  }

  50% {
    box-shadow:
      0 0 14px rgba(227, 184, 75, 0.18),
      0 12px 28px rgba(4, 9, 18, 0.12);
  }

  100% {
    box-shadow:
      0 0 0 rgba(227, 184, 75, 0),
      0 12px 28px rgba(4, 9, 18, 0.12);
  }
}

  .entry-visual {
    position: relative;
    min-height: 228px;
    border-radius: 1.1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.09), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  }

  .entry-visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 82%;
    background: linear-gradient(180deg, transparent, rgba(7, 13, 23, 0.78));
  }

  .entry-visual::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 124px;
    z-index: 0;
    background: linear-gradient(180deg, rgba(7, 13, 23, 0), rgba(7, 13, 23, 0.92));
  }

  .entry-visual-store {
    background:
      radial-gradient(circle at top right, rgba(227, 184, 75, 0.18), transparent 36%),
      radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 28%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  }

  .entry-visual-opel {
    background:
      linear-gradient(180deg, rgba(7, 13, 23, 0.08), rgba(7, 13, 23, 0.08)),
      radial-gradient(circle at top right, rgba(227, 184, 75, 0.18), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  }

  .entry-visual-ford {
    background:
      linear-gradient(180deg, rgba(7, 13, 23, 0.08), rgba(7, 13, 23, 0.08)),
      radial-gradient(circle at top right, rgba(79, 125, 201, 0.18), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  }

  .entry-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(7, 13, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .entry-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.98;
    transform: scale(1.16);
    filter: saturate(1.05) contrast(1.06);
  }

  .entry-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .hero-banner {
    position: relative;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: 0 12px 28px rgba(4, 9, 18, 0.1);
  }

  body[data-theme="light"] .hero-banner-image {
    box-shadow: 0 12px 28px rgba(28, 42, 61, 0.08);
  }

  .hero-banner-placeholder {
    position: relative;
    width: 100%;
  }

  .hero-banner-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .hero-banner-image:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  .brand-logos img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .brand-logos img:hover {
    transform: scale(1.15);
  }

  .brand-logos img.logo-large {
    max-height: 120px;
    max-width: 220px;
  }

  @keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
  }

  .animate-shake {
    animation: shake 0.5s ease-in-out infinite;
  }

  .hero-banner-image-light {
    display: none;
  }

  body[data-theme="light"] .hero-banner-image-dark {
    display: none;
  }

  body[data-theme="light"] .hero-banner-image-light {
    display: block;
  }

  .hero-banner-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
  }

  .hero-banner-title {
    margin-top: 0.8rem;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .hero-banner-note {
    margin-top: 0.9rem;
    color: var(--muted);
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 767px) {
    .entry-visual {
      min-height: 196px;
    }

    .entry-visual::before {
      height: 112px;
    }

    .entry-image {
      transform: scale(1.1);
    }

    .hero-banner-image {
      border-radius: 1.1rem;
    }

    .brand-logos {
      gap: 1.5rem;
    }

    .brand-logos img {
      max-height: 50px;
      max-width: 80px;
    }

    .brand-logos img.logo-large {
      max-height: 60px;
      max-width: 100px;
    }

    h1 {
      font-size: 2rem !important;
    }

    .text-\[2rem\] {
      font-size: 1.5rem !important;
    }

  }

  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
  }

  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .lazy-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .lazy-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .lazy-card {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .lazy-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ANIMACJA WEJĹšCIA - W PEĹNI SPRZÄTOWO AKCELEROWANA */
  .hero-section {
    padding: var(--hero-top-gap) 20px 20px;
    text-align: center;
    position: relative;
    contain: layout;
  }

  .hero-container {
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.45s ease, transform 0.45s ease;
    backface-visibility: hidden;
  }

  .hero-section.loaded .hero-container {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.intro-active {
    overflow: hidden;
  }

  main > :not(.hero-section) {
    transition: opacity 0.35s ease;
  }

  body.intro-active main > :not(.hero-section) {
    opacity: 0;
    pointer-events: none;
  }

  .hero-container.is-intro-animating {
    opacity: 1;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform, opacity;
    transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s ease;
  }

  .entry-card {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.98);
    transition: opacity 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backface-visibility: hidden;
  }

  .entry-card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* OPTYMALIZACJE */
  .fade-in-up, .lazy-section, .lazy-card {
    backface-visibility: hidden;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-offset) + 0.5rem);
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    .hero-container,
    .entry-card,
    .fade-in-up,
    .lazy-section,
    .lazy-card {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
      animation: none !important;
    }

    body.intro-active {
      overflow: auto;
    }

    body.intro-active main > :not(.hero-section) {
      opacity: 1 !important;
      pointer-events: auto;
    }
  }

  @keyframes cascadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .reviews-fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
html,
body {
  min-height: 100%;
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.7;
}

/* light theme */
body[data-theme="light"]::before {
  background-image:
    linear-gradient(rgba(21, 34, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 34, 53, 0.03) 1px, transparent 1px);
  opacity: 0.55;
}

/* content nad kratkÄ… */
body > * {
  position: relative;
  z-index: 1;
}
/* TITLE */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #ffffff;

  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.7),
    0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ACCENT */
.hero-title .accent {
  color: #f4c542;
}

/* SUBTITLE */
.hero-subtitle {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #aab4c6;

  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6);
}

/* BENEFITS GRID */
.hero-benefits {
  margin-bottom: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width: 901px) {
  .hero-benefits .benefit-item:nth-child(1) { justify-content: flex-start; }
  .hero-benefits .benefit-item:nth-child(2) { justify-content: center; }
  .hero-benefits .benefit-item:nth-child(3) { justify-content: flex-end; }
}

/* SINGLE ITEM */
.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;

  font-size: 1.85rem;
  color: #e5ecf7;

  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.55);
}

/* CHECK ICON */
.check {
  color: #8b5cf6;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.benefit-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.icon-bulb {
  color: #e3b84b;
}

.icon-star {
  color: #f2c96a;
}

.icon-shield {
  color: #4f7dc9;

  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

/* CTA */
.hero-cta {
  margin-top: 40px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;

  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-benefits {
    grid-template-columns: 1fr;
  }
}

.map-wrapper {
  background: #0b1220;
}

/* BRANDS STATIC */
.brands-section {
  padding: 0px 40px 20px;
  margin-top: 16px;
}

.brands-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a6a82;
  margin-bottom: 18px;
}

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 36px;
}

.brands-grid img {
  height: 70px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1) brightness(1.2);
  transform: scale(1);
  margin: 0 0px;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease, margin 0.3s ease;
}

.brands-grid img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: scale(1.25);
  margin: 0 18px;
}

/* Indywidualne korekty optyczne */
.brands-grid img:nth-child(2)  { height: 108px; } /* Ford â€“ pĹ‚aski oval */
.brands-grid img:nth-child(4)  { height: 92px;  } /* Audi â€“ 4 szerokie pierĹ›cienie */
.brands-grid img:nth-child(6)  { height: 74px;  } /* Skoda */
.brands-grid img:nth-child(7)  { height: 84px;  } /* Seat â€“ litera w kole */
.brands-grid img:nth-child(8)  { height: 74px;  } /* Peugeot */
.brands-grid img:nth-child(9)  { height: 100px; } /* Citroen â€“ dwa szewrony */

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ETYKIETY OPEL / FORD */
.car-banner-wrapper {
  display: flex;
  flex-direction: column;
}

.car-labels-row {
  display: flex;
  margin-bottom: 8px;
}

.opel-label {
  flex: 1;
  text-align: center;
  color: #e3b84b;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  padding-right: 9%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.ford-label {
  flex: 1;
  text-align: center;
  padding-left: 9%;
  color: #4f7dc9;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}


/* WRAPPER */
.oplex-assistant {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/* BUTTON */
.assistant-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;

  background: rgba(30, 33, 39, 0.9);
  border: 1px solid rgba(255,255,255,0.08);

  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;

  cursor: pointer;
  backdrop-filter: blur(10px);

  transition: all 0.25s ease;
}

/* HOVER + ZĹOTY AKCENT */
.assistant-btn:hover {
  border-color: rgba(227,184,75,0.4);
  box-shadow: 0 0 14px rgba(227,184,75,0.25);
  transform: translateY(-2px);
}

/* PANEL */
.assistant-panel {
  position: absolute;
  bottom: 70px;
  right: 0;

  width: 260px;

  background: rgba(30, 33, 39, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem;

  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);

  overflow: hidden;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);

  transition: all 0.25s ease;
}

/* ACTIVE */
.assistant-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* HEADER */
.assistant-header {
  padding: 12px 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* BODY */
.assistant-body {
  padding: 14px;
}

.assistant-body p {
  font-size: 0.85rem;
  color: #aab4c6;
  margin-bottom: 12px;
}

/* ACTIONS */
.assistant-action {
  display: block;
  padding: 10px 12px;
  border-radius: 0.8rem;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;

  margin-bottom: 8px;

  transition: all 0.2s ease;
}

.assistant-action:hover {
  border-color: rgba(227,184,75,0.3);
  background: rgba(255,255,255,0.06);
}

/* MOBILE */
@media (max-width: 768px) {
  .assistant-btn span {
    display: none;
  }
}


/* BUTTON */
.assistant-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;

  padding: 12px 16px;
  border-radius: 999px;

  background: rgba(30, 33, 39, 0.9);
  border: 1px solid rgba(255,255,255,0.08);

  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;

  cursor: pointer;
  backdrop-filter: blur(10px);

  transition: all 0.25s ease;
}

.assistant-btn:hover {
  border-color: rgba(227,184,75,0.4);
  box-shadow: 0 0 14px rgba(227,184,75,0.25);
  transform: translateY(-2px);
}

/* ICON + PLUS */
.assistant-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.assistant-icon {
  line-height: 1;
}

.assistant-plus {
  position: absolute;
  top: -6px;
  right: -7px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(180deg, #f0c864 0%, #e4b84e 100%);
  color: #08101b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;

  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* MINI ONLINE DOT ON BUTTON */
.assistant-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3ddc84;
  box-shadow: 0 0 10px rgba(61, 220, 132, 0.7);
  flex-shrink: 0;
}

/* PANEL */
.assistant-panel {
  position: absolute;
  bottom: 70px;
  right: 0;

  width: 260px;

  background: rgba(30, 33, 39, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem;

  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);

  overflow: hidden;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);

  transition: all 0.25s ease;
}

.assistant-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* HEADER */
.assistant-header {
  padding: 12px 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.06);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ONLINE BADGE */
.assistant-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 700;
  color: #dff7e9;

  background: rgba(61, 220, 132, 0.12);
  border: 1px solid rgba(61, 220, 132, 0.22);
}

.assistant-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3ddc84;
  box-shadow: 0 0 10px rgba(61, 220, 132, 0.65);
}

/* BODY */
.assistant-body {
  padding: 14px;
}

.assistant-body p {
  font-size: 0.85rem;
  color: #aab4c6;
  margin-bottom: 12px;
}

/* ACTIONS */
.assistant-action {
  display: block;
  padding: 10px 12px;
  border-radius: 0.8rem;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;

  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.assistant-action:hover {
  border-color: rgba(227,184,75,0.3);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .assistant-btn span:not(.assistant-icon-wrap):not(.assistant-online-dot) {
    display: none;
  }
}
.map-wrapper {
  height: 100%;
  max-height: 450px; /* đź”´ kontrola wielkoĹ›ci mapy */
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* iframe dopasowany */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* prawa kolumna */
.glass {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.cta-gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 26px;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;

  color: #1b1f27;
  text-decoration: none;

  background: linear-gradient(180deg, #f4c542 0%, #e3b84b 100%);
  border: 1px solid rgba(227, 184, 75, 0.4);

  box-shadow:
    0 8px 20px rgba(227, 184, 75, 0.25),
    inset 0 1px 0 rgba(255, 255, 255,0.3);
  animation: goldPulseBtn 5s ease-in-out infinite;

  transition: all 0.25s ease;
}

/* HOVER */
.cta-gold-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 30px rgba(227, 184, 75, 0.35),
    0 0 20px rgba(227, 184, 75, 0.25);

  background: linear-gradient(180deg, #ffd65a 0%, #e6bd4f 100%);
}

/* ACTIVE */
.cta-gold-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}


 @keyframes goldPulseBtn {
  0%, 100% {
    box-shadow:
      0 8px 20px rgba(227, 184, 75, 0.2);
  }
  50% {
    box-shadow:
      0 12px 28px rgba(227, 184, 75, 0.35);
  }
}

/* =============================================
  DODATKOWE KLASY DO LAYOUTU PODSTRONY
  ============================================= */
.py-18 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.py-22 {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (min-width: 768px) {
  .md\:py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .md\:py-22 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.max-w-3xl {
  max-width: 48rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-bold {
  font-weight: 700;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .md\:py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .md\:py-22 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

/* WYĹÄ„CZENIE TAILWIND WARNINGĂ“W */
.selection\:bg-amber-200::selection {
  background-color: #fde68a;
}

.selection\:text-black::selection {
  color: #000;
}



.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.inline-block {
  display: inline-block;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.italic {
  font-style: italic;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:p-8 {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-\[1fr_400px\] {
    grid-template-columns: 1fr 400px;
  }
}

/* DODATKOWE KLASY GRID */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-12 {
  gap: 3rem;
}

/* OBRAZY */
.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tile-media--clean img {
  border-radius: 1.35rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.items-start {
  align-items: start;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.rounded-\[1\.25rem\] {
  border-radius: 1.25rem;
}

.rounded-\[1\.5rem\] {
  border-radius: 1.5rem;
}

.rounded-\[1\.6rem\] {
  border-radius: 1.6rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.text-green-400 {
  color: #4ade80;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-t {
  border-top-width: 1px;
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:p-8 {
    padding: 2rem;
  }
  .md\:py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:py-22 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-center {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* FLEX */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* TEXT COLORS */
.text-slate-300 {
  color: #cbd5e1;
}

.text-slate-400 {
  color: #94a3b8;
}

/* FONTS */
.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-black {
  font-weight: 900;
}

/* SPACING */
.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* SIZES */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

/* LINE HEIGHT */
.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

/* WIDTH/HEIGHT */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* BORDERS */
.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

/* SHADOWS */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* OPACITY */
.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

/* DISPLAY */
.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.table {
  display: table;
}

/* POSITION */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* Z-INDEX */
.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

/* CALL MODAL */
.call-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.call-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.call-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 9999;
  background: rgba(26, 29, 36, 0.97);
  border: 1px solid rgba(160, 177, 204, 0.2);
  border-radius: 1.4rem;
  padding: 1.75rem 2rem 1.5rem;
  min-width: 300px;
  max-width: 360px;
  width: calc(100vw - 2rem);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.call-modal.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.call-modal-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f2c96a;
  margin-bottom: 0.6rem;
}

.call-modal-divider {
  height: 1px;
  background: rgba(160, 177, 204, 0.14);
  margin-bottom: 0.5rem;
}

.call-modal-number {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  text-decoration: none;
  color: #eef3fb;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
  border-bottom: 1px solid rgba(160, 177, 204, 0.08);
}

.call-modal-number:last-of-type {
  border-bottom: none;
}

.call-modal-number:hover {
  color: #f2c96a;
}

.call-modal-number-icon {
  font-size: 1rem;
  opacity: 0.7;
}

.call-modal-number-type {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7a91;
}

.call-modal-hours {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(160, 177, 204, 0.12);
  font-size: 0.83rem;
  color: #7a8899;
  line-height: 1.65;
}

.call-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(160, 177, 204, 0.15);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8899;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.call-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #eef3fb;
}

/* KONTAKT PAGE */
.contact-image-wrapper {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(227, 184, 75, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  height: 100%;
  min-height: 420px;
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-email-link {
  display: block;
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  margin-top: 0.4rem;
  transition: opacity 0.2s ease;
}

.contact-email-link:hover {
  opacity: 0.8;
}

/* Reset linkĂłw w kartach (soft-panel, glass) */
.soft-panel a,
.glass a {
  color: inherit;
  text-decoration: none;
}

/* MOBILE NAV */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: none;
  border: 1px solid rgba(160, 177, 204, 0.2);
  border-radius: 0.5rem;
  color: #cbd5e1;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  border-color: rgba(160, 177, 204, 0.45);
  color: #eef3fb;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-nav-overlay.is-open {
  display: flex;
}

.mobile-nav-overlay a {
  font-size: 1.35rem;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  transition: color 0.2s, background 0.2s;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active {
  color: #f2c96a;
  background: rgba(243, 201, 106, 0.07);
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: 1px solid rgba(160, 177, 204, 0.2);
  border-radius: 0.5rem;
  color: #9aa9bf;
  font-size: 1.1rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* mobile */

.brands-section--mobile {
  display: none;
}

@media (max-width: 768px) {
  .brands-section--desktop {
    display: none;
  }

  .brands-section--mobile {
    display: block;
  }
}

/* =========================
   MOBILE â€“ KOMPAKTOWE USĹUGI
   ========================= */

@media (max-width: 768px) {

  /* 1 kolumna zamiast 2/4 */
  .services-cards {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  /* spĹ‚aszczone kafle */
  .service-card {
    padding: 16px !important;
    border-radius: 16px;
  }

  /* mniejsza ikona */
  .service-card .quick-info-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  /* tytuĹ‚ ciaĹ›niejszy */
  .service-card h3 {
    font-size: 16px;
    line-height: 1.3;
  }

  /* opis â€“ maks 3 linie */
  .service-card p {
    font-size: 13px;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
  }
}



/* social proof pod mapÄ… */
.map-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.map-social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.map-social-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 184, 75, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(3, 8, 20, 0.14);
}

.map-social-card .text-left {
  min-width: 0;
}

@media (max-width: 768px) {
  .map-social-row {
    grid-template-columns: 1fr;
  }
}



/* =========================
   MOBILE NAV â€“ SOURCE OF TRUTH
   ========================= */

.mobile-menu-btn {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(160, 177, 204, 0.18);
  border-radius: 0.85rem;
  color: #cbd5e1;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-btn:hover {
  border-color: rgba(227, 184, 75, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  background: rgba(3, 8, 20, 0.58);
  backdrop-filter: blur(10px);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.mobile-nav-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: relative;
  width: min(86vw, 360px);
  height: 100%;
  padding: 1.15rem 1rem 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(79, 125, 201, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(20, 25, 34, 0.98), rgba(15, 20, 29, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.26s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-top img {
  height: 30px;
  width: auto;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(160, 177, 204, 0.16);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  color: #aeb9ca;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.mobile-nav-close:hover {
  border-color: rgba(227, 184, 75, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #e8edf7;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: #f2c96a;
  border-color: rgba(227, 184, 75, 0.24);
  background: rgba(242, 201, 106, 0.06);
  transform: translateX(2px);
}

.mobile-nav-cta {
  margin-top: auto;
  padding-top: 1rem;
}

.mobile-nav-cta a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2c96a, #e4b84e);
  color: #08101b;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .mobile-menu-btn {
    display: inline-flex;
  }
}
/* =============================================
  STORE SLIDER (Dlaczego OPLEX)
  ============================================= */
.store-slider {
  margin-top: 3rem;
  position: relative;
}

.store-slider-viewport {
  display: grid;
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.store-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 460px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}

.store-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.store-slide-image {
  position: relative;
  overflow: hidden;
  background: #0d0f12;
}

.store-slide-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(30, 33, 39, 0.45) 100%);
  pointer-events: none;
}

.store-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 8s ease;
}

.store-slide.is-active .store-slide-image img {
  transform: scale(1.06);
}

.store-slide-text {
  padding: 3rem 3rem 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.store-slide-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0;
}

.store-slide-title {
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 700;
  color: #eef3fb;
  margin: 0.2rem 0 0.4rem;
}

.store-slide-caption {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.store-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.store-slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(30, 33, 39, 0.7);
  border: 1px solid var(--line-strong);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.store-slider-arrow:hover {
  background: rgba(79, 125, 201, 0.2);
  border-color: rgba(79, 125, 201, 0.6);
  color: white;
  transform: translateY(-1px);
}

.store-slider-arrow:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.store-slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.store-slider-dots button {
  width: 28px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.store-slider-dots button:hover {
  background: rgba(255, 255, 255, 0.35);
}

.store-slider-dots button.is-active {
  background: var(--accent-soft);
  width: 44px;
}

@media (max-width: 900px) {
  .store-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .store-slide-image {
    aspect-ratio: 16 / 10;
  }
  .store-slide-image::after {
    background: linear-gradient(180deg, transparent 60%, rgba(30, 33, 39, 0.4) 100%);
  }
  .store-slide-text {
    padding: 1.75rem 1.5rem 2rem;
  }
  .store-slide-title {
    font-size: 1.35rem;
  }
  .store-slide-caption {
    font-size: 0.95rem;
  }
  .store-slider-controls {
    gap: 1rem;
    margin-top: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-slide,
  .store-slide-image img,
  .store-slider-arrow,
  .store-slider-dots button {
    transition: none;
  }
  .store-slide.is-active .store-slide-image img {
    transform: none;
  }
}

/* =============================================
  PRICING TABLE (Cennik â€“ clima.html)
  ============================================= */
.pricing-table {
  overflow: hidden;
  padding: 0;
}

.pricing-group {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--line);
}

.pricing-group:last-child {
  border-bottom: none;
}

.pricing-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 1rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.pricing-row-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.pricing-row-main {
  color: #eef3fb;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
}

.pricing-row-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.4;
}

.pricing-row-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  text-align: right;
}

.pricing-row-amount {
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.pricing-row-extra {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .pricing-group {
    padding: 1.25rem 1.25rem;
  }
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0.9rem 0;
  }
  .pricing-row-price {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    align-items: baseline;
  }
}

