 /* POLITYKA PRYWATNOŚCI - TIMELINE DESIGN */

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Timeline line */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ad1739 0%, #d4a574 100%);
}

/* Timeline item */
.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }
.timeline-item:nth-child(10) { animation-delay: 1s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Timeline number badge */
.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ad1739 0%, #8b1230 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "PP Acma Bold", sans-serif;
    box-shadow: 0 4px 15px rgba(173, 23, 57, 0.4);
    z-index: 2;
}

/* Timeline card */
.timeline-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ad1739;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(173, 23, 57, 0.2);
}

.timeline-card h2 {
    font-family: "PP Acma Bold", sans-serif;
    color: #ad1739;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.timeline-card p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

.timeline-card p br {
    margin-bottom: 0.5rem;
}

.timeline-card b {
    color: #ad1739;
    font-weight: 600;
}

.timeline-card a {
    color: #ad1739;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.timeline-card a:hover {
    color: #8b1230;
}

/* Download button section */
.download-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FAF7F2 0%, #F5EDE0 100%);
    border-radius: 15px;
}

.download-section .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #ad1739 0%, #8b1230 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(173, 23, 57, 0.3);
}

.download-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(173, 23, 57, 0.4);
}

/* Progress indicator */
.progress-indicator {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 60px;
    background: white;
    border-radius: 30px;
    padding: 15px 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.progress-indicator.show {
    opacity: 1;
    visibility: visible;
}

.progress-dot {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 12px auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.progress-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(173, 23, 57, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.progress-dot:hover::after {
    width: 24px;
    height: 24px;
}

.progress-dot.active {
    background: #ad1739;
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(173, 23, 57, 0.2);
}

.progress-dot:hover {
    background: #d4a574;
    transform: scale(1.2);
}

/* RESPONSIVE - TABLET */
@media (max-width: 992px) {
    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-badge {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .progress-indicator {
        right: 20px;
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px 10px;
    }

    .timeline {
        padding: 20px 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .timeline-card h2 {
        font-size: 1.2rem;
    }

    .timeline-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .download-section {
        padding: 30px 15px;
        margin-top: 40px;
    }

    .download-section .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .progress-indicator {
        display: none !important;
    }
}

/* BARDZO MAŁE EKRANY */
@media (max-width: 480px) {
    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .timeline-card {
        padding: 1.25rem;
    }
}

