/* ================= PPF HERO ================= */

.ppf-hero {
    position: relative;
    min-height: 80vh;
    padding: 140px 0 110px;
    background-image: url("../img/ppf\ \(1\).jpg"); /* tymczasowo */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* OVERLAY – GRADIENT ZAMIAST OPACITY */

.ppf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(11,14,19,0.95) 0%,
        rgba(11,14,19,0.85) 45%,
        rgba(11,14,19,0.55) 75%,
        rgba(11,14,19,0.25) 100%
    );
    z-index: 1;
}

/* CONTAINER */

.ppf-hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 8%;
}

/* EYEBROW */

.ppf-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #c9a24d;
}

/* TITLE */

.ppf-hero-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.ppf-hero-container h1 span {
    color: #c9a24d;
}

/* TEXT */

.ppf-hero-text {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.85;
    color: #d1d5db;
    margin-bottom: 38px;
}

/* CTA */

.ppf-hero-actions {
    display: flex;
}

.ppf-hero-actions .btn {
    padding: 15px 38px;
    font-size: 15px;
    font-weight: 700;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .ppf-hero {
        min-height: 72vh;
        padding: 120px 0 90px;
        background-position: center;
    }

    .ppf-hero-container h1 {
        font-size: 34px;
    }

    .ppf-hero-text {
        font-size: 15px;
        line-height: 1.7;
    }
}
@media (max-width: 992px) {

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

}
/* ================= PPF ABOUT ================= */

.ppf-about {
    padding: 10% 8%;
    background: linear-gradient(
        to bottom,
        #0b0e13 0%,
        #0f131b 100%
    );
}

.ppf-about-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* HEADER */

.ppf-about-header {
    max-width: 900px;
    margin-bottom: 80px;
}

.ppf-about-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 0;
}

.ppf-about-header h2 span {
    color: #c9a24d;
}

/* CONTENT */

.ppf-about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 90px;
    align-items: flex-start;
}

/* TEXT */

.ppf-about-text p {
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* FEATURES */

.ppf-about-features {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.ppf-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ppf-feature span {
    color: #c9a24d;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    margin-top: 4px;
}

.ppf-feature p {
    color: #d1d5db;
    line-height: 1.7;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .ppf-about {
        padding: 14% 8%;
    }

    .ppf-about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ppf-about-header h2 {
        font-size: 32px;
    }
}
/* ================= PPF OFFER ================= */

.ppf-offer {
    padding: 10% 8%;
    background: #0b0e13;
}

.ppf-offer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* HEADER */

.ppf-offer-header {
    max-width: 900px;
    margin-bottom: 80px;
}

.ppf-offer-header h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.ppf-offer-header h2 span {
    color: #c9a24d;
}

.ppf-offer-header p {
    color: #9ca3af;
    line-height: 1.8;
}

/* GRID */

.ppf-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.ppf-offer-card {
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.15);
    border-radius: 20px;
    padding: 34px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ppf-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.ppf-offer-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.ppf-offer-desc {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 18px;
}

.ppf-offer-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ppf-offer-card ul li {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 6px;
}

.ppf-price {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: #c9a24d;
}

/* FEATURED */

.ppf-offer-card.featured {
    border-color: rgba(201,162,77,0.4);
    box-shadow: 0 0 0 1px rgba(201,162,77,0.2);
}

/* MOBILE */

@media (max-width: 900px) {

    .ppf-offer {
        padding: 14% 8%;
    }

    .ppf-offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ppf-offer-header h2 {
        font-size: 32px;
    }
}
/* ================= PPF FAQ GRID ================= */

.ppf-faq {
    padding: 10% 8%;
    background: linear-gradient(
        to bottom,
        #0b0e13 0%,
        #0f131b 100%
    );
}

.ppf-faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* HEADER */

.ppf-faq-header {
    max-width: 900px;
    margin-bottom: 80px;
}

.ppf-faq-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    margin-bottom: 18px;
}

.ppf-faq-header h2 span {
    color: #c9a24d;
}

.ppf-faq-header p {
    color: #9ca3af;
    line-height: 1.8;
}

/* GRID */

.ppf-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* CELL */

.ppf-faq-grid .faq-cell {
    padding: 32px 34px;
    border-right: 1px solid rgba(201,162,77,0.15);
    border-bottom: 1px solid rgba(201,162,77,0.15);
}

.ppf-faq-grid .faq-cell:nth-child(3n) {
    border-right: none;
}

.ppf-faq-grid .faq-cell:nth-last-child(-n+3) {
    border-bottom: none;
}

.faq-cell h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-cell p {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
}

/* CTA */

.ppf-faq-actions {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* MOBILE */

@media (max-width: 900px) {

    .ppf-faq {
        padding: 14% 8%;
    }

    .ppf-faq-grid {
        grid-template-columns: 1fr;
    }

    .ppf-faq-grid .faq-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .ppf-faq-grid .faq-cell:last-child {
        border-bottom: none;
    }

    .ppf-faq-header h2 {
        font-size: 32px;
    }

    .ppf-faq-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
/* ================= PPF CTA ================= */

.ppf-cta {
    position: relative;
    padding: 9% 8%;
    background-image: url("../img/ppf\ \(2\).jpg"); /* tymczasowo */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* OVERLAY */

.ppf-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(11,14,19,0.92) 0%,
        rgba(11,14,19,0.88) 50%,
        rgba(11,14,19,0.75) 100%
    );
    z-index: 1;
}

/* CONTAINER */

.ppf-cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* TITLE */

.ppf-cta-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 22px;
}

.ppf-cta-container h2 span {
    color: #c9a24d;
}

/* TEXT */

.ppf-cta-container p {
    max-width: 720px;
    margin: 0 auto 40px;
    color: #d1d5db;
    line-height: 1.8;
}

/* BUTTON */

.ppf-cta-btn {
    padding: 16px 46px;
    font-size: 15px;
    font-weight: 700;
}

/* MOBILE */

@media (max-width: 768px) {

    .ppf-cta {
        padding: 14% 8%;
    }

    .ppf-cta-container p {
        font-size: 15px;
        line-height: 1.7;
    }
}
