:root {
    --pink: #FF6B9D;
    --pink-light: #FFB3D1;
    --blue: #4ECDC4;
    --blue-light: #A8E6CF;
    --yellow: #FFE66D;
    --purple: #A78BDB;
    --bg-light: #FFF8FA;
    --bg-white: #FFFFFF;
    --text-dark: #2D2640;
    --text-medium: #5A5270;
    --text-light: #8A82A0;
    --shadow-sm: 0 2px 8px rgba(255, 107, 157, 0.08);
    --shadow-md: 0 8px 30px rgba(255, 107, 157, 0.12);
    --radius-sm: 16px;
    --radius-md: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
}
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; line-height: 1.3; }

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0.8rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 60px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 1.25rem; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--text-medium); font-weight: 600;
    font-size: 0.9rem; transition: color 0.3s;
}
.nav-links a:hover { color: var(--pink); }
.nav-home {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: white !important; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 700 !important;
}
.nav-home:hover { opacity: 0.92; }
.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: white !important; padding: 0.5rem 1.15rem; border-radius: 50px; font-weight: 700 !important;
}
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 0.5rem;
}
.hamburger span { width: 24px; height: 2px; background: var(--pink); border-radius: 2px; transition: 0.3s; }

.page-top { padding-top: 5.5rem; background: linear-gradient(160deg, #FFF8FA 0%, #F0FAF8 100%); }
.breadcrumb {
    max-width: 1200px; margin: 0 auto; padding: 0.75rem 2rem 0;
    font-size: 0.85rem; color: var(--text-light);
}
.breadcrumb a { color: var(--pink); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero {
    padding: 1.5rem 2rem 4rem;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%;
    background: rgba(255,107,157,0.06); top: -40px; right: -60px;
}
.page-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.55rem); font-weight: 900;
    color: var(--text-dark); margin-bottom: 1rem;
}
.page-hero .lead { color: var(--text-medium); font-size: 1.05rem; margin-bottom: 1.75rem; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 1.5rem; border-radius: 50px; font-weight: 700;
    font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: white; box-shadow: 0 4px 15px rgba(255,107,157,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,157,0.35); }
.btn-secondary {
    background: white; color: var(--pink); border: 2px solid var(--pink-light);
}
.btn-secondary:hover { background: var(--pink); color: white; border-color: var(--pink); }
.hero-img {
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-md); aspect-ratio: 4/3;
    background: var(--bg-light);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section { padding: 4.5rem 2rem; }
.section-alt { background: var(--bg-light); }
.section-container { max-width: 1100px; margin: 0 auto; }
.section h2 {
    font-size: clamp(1.45rem, 3vw, 1.9rem); font-weight: 800;
    color: var(--text-dark); margin-bottom: 1rem;
}
.section-intro { color: var(--text-medium); margin-bottom: 1.25rem; max-width: 820px; line-height: 1.75; }
.list-label {
    font-weight: 700; margin-bottom: 0.85rem; color: var(--text-dark);
    font-family: 'Nunito', sans-serif; font-size: 0.98rem;
}

.check-list {
    list-style: none;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.55rem 1.5rem;
}
.check-list li {
    padding-left: 1.6rem; position: relative; color: var(--text-medium); font-size: 0.95rem;
}
.check-list li::before {
    content: '✓'; position: absolute; left: 0; color: var(--blue);
    font-weight: 700; font-size: 0.85rem;
}
.theme-pink .check-list li::before { color: var(--pink); }
.theme-blue .check-list li::before { color: var(--blue); }
.theme-yellow .check-list li::before { color: #D4A017; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.section-img {
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-md); aspect-ratio: 4/3;
    background: var(--bg-light); border: 1px solid rgba(255,107,157,0.08);
}
.section-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.effect-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem;
}
.effect-card {
    background: white; border-radius: var(--radius-sm); padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(255,107,157,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.effect-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.effect-card-icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.effect-card-icon svg { width: 22px; height: 22px; display: block; }
.theme-pink .effect-card-icon { background: linear-gradient(135deg, var(--pink), var(--pink-light)); }
.theme-blue .effect-card-icon { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.theme-yellow .effect-card-icon { background: linear-gradient(135deg, #E5B800, var(--yellow)); }
.effect-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text-dark); }
.effect-card p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.65; }

.highlight-box {
    display: flex; gap: 1.25rem; align-items: flex-start;
    background: linear-gradient(135deg, rgba(255,107,157,0.07), rgba(255,179,209,0.12));
    border-radius: var(--radius-md); padding: 1.75rem 2rem;
    border: 1px solid rgba(255,107,157,0.12); box-shadow: var(--shadow-sm);
    margin-top: 0.5rem;
}
.theme-blue .highlight-box {
    background: linear-gradient(135deg, rgba(78,205,196,0.08), rgba(168,230,207,0.14));
    border-color: rgba(78,205,196,0.18);
}
.theme-yellow .highlight-box {
    background: linear-gradient(135deg, rgba(229,184,0,0.1), rgba(255,230,109,0.18));
    border-color: rgba(229,184,0,0.2);
}
.highlight-box-icon {
    flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    box-shadow: 0 4px 12px rgba(255,107,157,0.25);
}
.theme-blue .highlight-box-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    box-shadow: 0 4px 12px rgba(78,205,196,0.25);
}
.theme-yellow .highlight-box-icon {
    background: linear-gradient(135deg, #E5B800, var(--yellow));
    box-shadow: 0 4px 12px rgba(229,184,0,0.25);
}
.highlight-box-icon svg { width: 24px; height: 24px; display: block; }
.highlight-box p { color: var(--text-medium); line-height: 1.75; flex: 1; margin: 0; }
@media (max-width: 600px) {
    .highlight-box { flex-direction: column; gap: 1rem; }
}

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.faq-item {
    background: white; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,107,157,0.1); overflow: hidden;
}
.section-alt .faq-item { background: var(--bg-white); }
.faq-item summary {
    padding: 1rem 1.25rem; font-weight: 700; cursor: pointer;
    color: var(--text-dark); list-style: none; font-family: 'Nunito', sans-serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; float: right; color: var(--pink); font-size: 1.2rem; font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    padding: 0 1.25rem 1.1rem; color: var(--text-medium); font-size: 0.93rem; line-height: 1.7;
}

.cta-section {
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: white; text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 0.75rem; font-size: clamp(1.4rem, 3vw, 1.85rem); }
.cta-section p { opacity: 0.95; max-width: 640px; margin: 0 auto 1.5rem; font-size: 1.02rem; line-height: 1.7; }
.cta-section .btn-primary {
    background: white; color: var(--pink); box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.theme-blue .cta-section {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
}
.theme-blue .cta-section .btn-primary { color: var(--blue); }
.theme-yellow .cta-section {
    background: linear-gradient(135deg, #E5B800, var(--yellow));
}
.theme-yellow .cta-section .btn-primary { color: #B8860B; }

.legal-content h2 {
    font-size: 1.25rem; font-weight: 800; margin: 2rem 0 0.75rem;
    color: var(--text-dark); font-family: 'Nunito', sans-serif;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
    font-size: 1.05rem; font-weight: 700; margin: 1.25rem 0 0.5rem;
    color: var(--text-dark); font-family: 'Nunito', sans-serif;
}
.legal-content p, .legal-content li { color: var(--text-medium); line-height: 1.75; margin-bottom: 0.75rem; }
.legal-content a { color: var(--pink); font-weight: 600; }
.legal-content ul.check-list { margin-bottom: 1rem; }

.related-offers { padding: 4rem 2rem; background: var(--bg-light); border-top: 1px solid rgba(255,107,157,0.08); }
.related-offers h2 { text-align: center; margin-bottom: 0.35rem; font-size: 1.35rem; }
.related-sub { text-align: center; color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.75rem; }
.related-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.related-card {
    background: white; border-radius: var(--radius-sm); padding: 1.35rem 1.4rem;
    text-decoration: none; color: inherit; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,107,157,0.08); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255,107,157,0.2); }
.related-card.current { opacity: 0.55; pointer-events: none; }
.related-card strong {
    display: block; color: var(--pink); font-family: 'Nunito', sans-serif;
    font-size: 0.95rem; margin-bottom: 0.35rem;
}
.related-card span { font-size: 0.85rem; color: var(--text-medium); line-height: 1.55; }

/* Footer — jak strona główna */
footer { background: var(--text-dark); color: rgba(255,255,255,0.65); padding: 3rem 2rem 1.5rem; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; margin-top: 0.75rem; }
.logo-img-footer { height: 45px; width: auto; display: block; }
.footer-links h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.8rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; font-size: 0.82rem; }

.theme-pink .page-hero h1 span { color: var(--pink); }
.theme-blue .page-hero h1 span { color: var(--blue); }
.theme-yellow .page-hero h1 span { color: #D4A017; }

@media (max-width: 900px) {
    .page-hero-inner, .two-col { grid-template-columns: 1fr; }
    .hero-img { order: -1; max-height: 300px; }
    .effect-grid, .related-grid { grid-template-columns: 1fr; }
    .check-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0;
        background: white; flex-direction: column; padding: 1.5rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        transform: translateY(-150%); transition: transform 0.3s;
    }
    .nav-links.active { transform: translateY(0); }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .page-top { padding-top: 5rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
