/* =====================================================
   Landing Pages (oferta/) — styles
   Reuses variables and base classes from style.css
   ===================================================== */

.lp-main {
    padding-top: 80px; /* offset for fixed header */
}

/* Breadcrumb */
.lp-breadcrumb {
    background: var(--gray-lightest);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
}
.lp-breadcrumb .container {
    padding-top: 14px;
    padding-bottom: 14px;
}
.lp-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    color: var(--text-muted);
}
.lp-breadcrumb a {
    color: var(--primary-light);
    text-decoration: none;
}
.lp-breadcrumb a:hover { text-decoration: underline; }
.lp-breadcrumb li::after { content: "›"; margin-left: 8px; color: var(--gray); }
.lp-breadcrumb li:last-child::after { content: ""; }
.lp-breadcrumb li:last-child { color: var(--text-secondary); font-weight: 500; }

/* Hero */
.lp-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
    color: var(--white);
    padding: 64px 0 72px;
}
.lp-hero-icon {
    width: 56px;
    height: 56px;
    color: var(--accent-light);
    margin-bottom: 20px;
}
.lp-hero-icon svg { width: 100%; height: 100%; }
.lp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--white);
}
.lp-hero .lp-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 760px;
    margin: 0;
}

/* Generic content section */
.lp-section { padding: 56px 0; }
.lp-section:nth-of-type(even) { background: var(--white-soft); }
.lp-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 0 0 24px;
}
.lp-lead {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 820px;
}

/* Features grid */
.lp-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 16px;
}
.lp-features li {
    position: relative;
    padding: 18px 18px 18px 52px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    color: var(--text-secondary);
    line-height: 1.55;
}
.lp-features li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Brands */
.lp-brands {
    background: var(--primary-pale);
    border-left: 4px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    max-width: 900px;
}
.lp-brands strong { color: var(--primary-dark); display: block; margin-bottom: 6px; }
.lp-brands span { color: var(--text-secondary); font-style: italic; }

/* FAQ */
.lp-faq-list { max-width: 860px; }
.lp-faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--white);
    margin-bottom: 12px;
    overflow: hidden;
}
.lp-faq-q {
    cursor: pointer;
    list-style: none;
    padding: 18px 52px 18px 22px;
    position: relative;
    font-weight: 600;
    color: var(--text-primary);
}
.lp-faq-q::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 16px;
    font-size: 1.4rem;
    color: var(--accent);
    transition: var(--transition);
}
.lp-faq-item.open .lp-faq-q::after { transform: rotate(45deg); }
.lp-faq-a {
    max-height: 0;
    opacity: 0;
    padding: 0 22px;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.lp-faq-item.open .lp-faq-a {
    max-height: 400px;
    opacity: 1;
    padding: 0 22px 20px;
}

/* CTA band */
.lp-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 54px 0;
}
.lp-cta h2 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.7rem;
    margin: 0 0 24px;
}
.lp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.lp-cta .btn-primary { background: var(--white); color: var(--accent); }
.lp-cta .btn-primary:hover { background: var(--white-soft); }
.lp-cta .btn-outline { border-color: var(--white); color: var(--white); }
.lp-cta .btn-outline:hover { background: rgba(255, 255, 255, 0.15); }

/* Related links (same category) */
.lp-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.lp-related a {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
}
.lp-related a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Style kafelków oferty (.offer-sublinks) są w css/style.css — stamtąd je ładuje strona główna. */

@media (max-width: 600px) {
    .lp-hero { padding: 48px 0 54px; }
    .lp-section { padding: 40px 0; }
}
