.menu-container-pc {
    display: none;
}

body[data-menu-open] {
    overflow: hidden;
}

.przycisk-1 {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    text-decoration: none;
    background: #0d8c4e;
    text-align: center;
    padding: 10px;
    width: 50%; display: block;
}

.przycisk-2 {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    text-decoration: none;
    background: #154442;
    text-align: center;
    padding: 10px;
    width: 50%; display: block;
}

.button-sticky {
    display: flex;
    flex-wrap: nowrap;
    position: sticky;
    bottom: 0px;
    left: 0px;
    z-index: 1001;
}


.menu-box-menu-link {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 140%;
    color: #0d1213;
    text-decoration: none;
    margin: 0px 0px;
    display: flex;
    width: calc(100% - 10px);
    justify-content: space-between;
}

nav {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    height: 64px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 99000 !important;
    backdrop-filter: blur(12px);
}

nav > a img {
    height: 42px;
    width: auto;
    display: block;
}

nav > button {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px;
    transition: border-color 0.3s;
}

nav > button span {
    display: block;
    width: 32px;
    height: 1px;
    background: #0d1213;
    transition: transform 0.4s cubic-bezier(0.77,0,0.18,1),
                opacity 0.3s ease,
                width 0.3s ease;
    transform-origin: center;
}

nav > button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

nav > button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
}
    
nav > button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

aside {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    height: calc(100dvh - 64px);
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1),
                transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

aside[data-open] {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    z-index: 10000 !important;
}

aside > nav {
    position: static;
    height: auto;
    background: none;
    border: none;
    backdrop-filter: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
}

    aside > nav a {
      font-family: "Manrope", sans-serif !important;
      font-size: clamp(28px, 7vw, 38px);
      font-weight: 500;
      color: #0d1213;
      text-decoration: none;
      line-height: 1;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(16px);
      transition: color 0.3s ease, opacity 0.4s, transform 0.4s;
    }
    
    aside > nav a:hover::after { width: 100%; }

    aside > nav a i {
      font-style: normal;
      font-size: 18px;
      color: #0d1213;
      transition: transform 0.3s, color 0.3s;
    }

    /* stagger */
    aside[data-open] > nav a:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.12s; }
    aside[data-open] > nav a:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.18s; }
    aside[data-open] > nav a:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.24s; }
    aside[data-open] > nav a:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.30s; }
    aside[data-open] > nav a:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.36s; }

    /* ── FOOTER / BUTTON ── */
    aside > footer {
      margin-top: 36px;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.4s, transform 0.4s;
      transition-delay: 0.4s;
    }

    aside[data-open] > footer {
      opacity: 1;
      transform: translateY(0);
    }

    aside > footer a {
      text-decoration: none;
      display: block;
    }

    aside > footer button {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 17px 24px;
      background: #2e7d52;
      color: #fff;
      font-family: "Manrope", sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.3s, gap 0.3s;
    }

    aside > footer button:hover {
      background: #38a068;
      gap: 18px;
    }

    aside > footer button img {
      width: 16px;
      height: 16px;
      filter: brightness(0) invert(1);
      transition: transform 0.3s;
    }

    aside > footer button:hover img {
      transform: translateX(3px);
    }

    aside > footer button s {
      text-decoration: none;
      display: none;
      width: 10px;
      height: 10px;
      border-right: 2px solid #fff;
      border-top: 2px solid #fff;
      transform: rotate(45deg);
    }

    /* ── DEMO CONTENT ── */
    main {
      padding-top: calc(64px + 40px);
      padding-inline: 28px;
      color: rgba(255,255,255,0.2);
      font-size: 13px;
      line-height: 2.2;
      user-select: none;
    }


@media screen and (min-width: 769px) {
    .menu-container-pc {
        display: flex;
        width: 100%;
        margin: 0 auto;
    }

    .button-sticky {
        display: none;
    }

    .menu-box-pc {
        width: 100%;
        max-width: 1560px;
        padding: 10px 60px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;
    }

    .menu-box-menu-link-pc {
        font-family: "Manrope", sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: 140%;
        color: #0d1213;
        text-decoration: none;
        margin: 0px 10px;
    }

    .menu-logo-image-pc {
        width: 150px
    }

    .menu-box-image-pc {
        width: 200px;
        display: flex;
        justify-content: start;
    }

    .menu-box-button-pc {
        width: 200px;
        display: flex;
        justify-content: end;
    }

    .menu-box-menu-link-pc {
        text-decoration: none;
        position: relative;
        transition: 0.3s;
    }

    .menu-box-menu-link-pc::before {
        content: "";
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -4px;
        left: 50%;
        border-radius: 50%;
        background-color: #0d1213;
        transition: all 0.6s;
    }

    .menu-box-menu-link-pc:hover::before {
        width: 100%;
        left: 0;
    }

    nav {
        display: none;
    }

    .menu-box-menu-pc {
        display: flex;
    }
}

/* ══ DROPDOWN PC ══ */
.menu-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.menu-dropdown-arrow {
    width: 12px;
    height: 12px;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

.menu-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 12px; /* wypełnia lukę zamiast margin */
    z-index: 9999;
    min-width: 260px;
}

.menu-dropdown-list-inner {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}

/* pseudo-element mostek nad luką */
.menu-dropdown-list::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
}

.menu-dropdown:hover .menu-dropdown-list {
    display: block;
}

.menu-dropdown:hover .menu-dropdown-arrow {
    transform: rotate(270deg);
}

.menu-dropdown-item {
    font-family: "Manrope", sans-serif !important;
    padding: 10px 20px;
    color: #0d1213;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    display: block;
}

.menu-dropdown-item:hover {
    background: #f4f7fb;
    color: #0d8c4e;
}

/* ══ DROPDOWN MOBILE ══ */
.mobile-menu-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-family: "Manrope", sans-serif !important;
    font-size: inherit;
    color: inherit;
}

.mobile-dropdown-trigger i {
    display: inline-block;
    transition: transform 0.25s ease;
    font-style: normal;
}

.mobile-menu-dropdown.is-open .mobile-dropdown-trigger i {
    transform: rotate(90deg);
}

.mobile-dropdown-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-dropdown.is-open .mobile-dropdown-list {
    max-height: 400px;
}

.mobile-dropdown-list-inner {
    padding-left: 16px;
    border-left: 2px solid #0d8c4e;
    margin: 8px 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.mobile-dropdown-item:hover {
    opacity: 1;
    color: #0d8c4e;
}

.mobile-dropdown-item i {
    font-style: normal;
}

.mobile-menu-dropdown {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 140%;
    color: #0d1213;
    text-decoration: none;
}

.mobile-menu-dropdown {
    font-family: "Manrope", sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 140% !important;
    color: #0d1213 !important;
    text-decoration: none;
    margin: 0px 0px;
    display: flex;
    width: calc(100% - 10px);
    justify-content: space-between;
    padding: 20px 0px
}

.mobile-dropdown-trigger i {
    font-style: normal;
    font-size: 18px;
    color: #0d1213;
    transition: transform 0.3s, color 0.3s;
}

.mobile-dropdown-item i {
    font-style: normal;
    font-size: 18px;
    color: #0d1213;
    transition: transform 0.3s, color 0.3s;
}

.mobile-dropdown-item span {
     font-family: "Manrope", sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 140% !important;
    color: #0d1213 !important;
}

.menu-dropdown-arrow {
    display: none !important;
}