/* ========================================
   PROJEKT SERAFIN - MAIN STYLESHEET
   Kolorystyka: Granatowy (#1a2332) + Złoty (#d4af37)
   ======================================== */

/* === ROOT & RESET === */
:root {
    --primary-dark: #1a2332;
    --primary-text: #2c3e50;
    --accent-gold: #d4af37;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-light: #ecf0f1;
    --gray-mid: #95a5a6;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: var(--transition);
}

/* Logo square - prosty złoty kwadrat */
.logo-square {
    width: 42px;
    height: 42px;
    background: var(--accent-gold);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

/* Logo text - nazwa */
.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    transition: var(--transition);
}

/* Hover effect */
.nav-brand a:hover .logo-square {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
    background: #e5c14a;
}

.nav-brand a:hover .logo-text {
    color: #e5c14a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu .nav-cta {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.nav-menu .nav-cta:hover {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 130vh; /* ULTRA wysokość sekcji dla maksymalnej przestrzeni */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* Zdjęcie z MAKSYMALNĄ przestrzenią u góry - pełna głowa + DUŻO powietrza nad nią */
    background: url('../images/hero-mariusz-serafin.jpg?v=8') center 0% / cover no-repeat;
    background-color: #0a0f1a;
    padding-top: 280px; /* ULTRA-MAKSYMALNE "powietrze" nad głową (280px ciemnego tła) */
    padding-bottom: 3rem;
    overflow: hidden;
    /* Poprawa jakości renderowania obrazu */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Brak dodatkowej warstwy - czyste tło ciemne nad zdjęciem */
.hero::before {
    content: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Bardzo delikatna nakładka tylko na samym dole dla tekstu */
    background: linear-gradient(to bottom, 
        rgba(10, 15, 26, 0) 0%, 
        rgba(10, 15, 26, 0) 80%,
        rgba(10, 15, 26, 0.5) 92%,
        rgba(10, 15, 26, 0.75) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin-top: auto;
    padding-bottom: 2rem;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    animation: fadeInUp 0.8s ease;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--gray-light);
    animation: fadeInUp 0.8s ease 0.4s both;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 0 0 12px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 0.8rem;
    animation: fadeInUp 0.8s ease 0.6s both;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTION TITLES === */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray-mid);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* === PILLARS SECTION === */
.pillars {
    padding: 6rem 0;
    background: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.pillar-card p {
    color: var(--primary-text);
    line-height: 1.6;
}

/* === WHY STATIONARY SECTION === */
.why-stationary {
    padding: 6rem 0;
    background: var(--light-bg);
    text-align: center;
}

/* Zdjęcie centralnie */
.why-image-center {
    margin: 3rem auto;
    max-width: 600px;
}

/* Tekst centralnie */
.why-text-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-text-center .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.why-text-center p {
    margin-bottom: 1.5rem;
}

.why-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    justify-content: flex-start;
    text-align: left;
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* === OFFER SECTION === */
.offer {
    padding: 6rem 0;
    background: var(--white);
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.offer-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.offer-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.offer-header i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.offer-header h3 {
    font-size: 1.8rem;
}

.offer-tagline {
    color: var(--gray-mid);
    font-weight: 500;
    margin-bottom: 2rem;
}

.offer-features {
    list-style: none;
    margin: 2rem 0;
}

.offer-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offer-features li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.offer-variants {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

.offer-variants p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.variant-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.offer-logistics {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.offer-logistics h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.offer-logistics i {
    margin-right: 0.5rem;
}

/* === ABOUT SECTION === */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-cta {
    margin-top: 2rem;
}

.about-details {
    margin-top: 2rem;
}

.about-details h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1rem;
}

.about-details p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray-mid);
}

.about-details strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.about-placeholder {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* === STUDIO SECTION === */
.studio {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3e50 100%);
    color: var(--white);
    text-align: center;
}

.studio .section-title {
    color: var(--accent-gold);
}

.studio .section-subtitle {
    color: var(--gray-light);
}

.studio-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* YouTube Videos Grid */
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.youtube-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
    color: var(--accent-gold);
    padding: 2rem;
    text-align: center;
}

.youtube-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.youtube-placeholder p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.youtube-placeholder small {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.youtube-info {
    padding: 1.5rem;
    text-align: left;
}

.youtube-info h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.youtube-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-light);
}

.studio-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Responsive for YouTube Grid */
@media (max-width: 1200px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .studio-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .studio-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* === CONTACT SECTION === */
.contact {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--primary-text);
    margin: 0;
}

.social-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-light);
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* === FOOTER === */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-light);
}

.footer-links h4,
.footer-legal h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-legal a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-mid);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero {
        background-size: cover;
        align-items: flex-end;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        margin-top: auto;
        padding-bottom: 1.5rem;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-features {
        grid-template-columns: 1fr;
    }
    
    .offer-cards {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-dark);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Logo responsive - zmniejszone na mobile */
    .logo-square {
        width: 42px;
        height: 42px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 6rem 1rem 2rem;
        background-size: cover;
        align-items: flex-end;
    }
    
    .hero-content {
        margin-top: auto;
        padding-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 0.8rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .studio-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.3rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .offer-card {
        padding: 2rem;
    }
}

/* === PLACEHOLDER IMAGES === */
.placeholder-image {
    animation: placeholderPulse 2s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* === SUBPAGES (KLUBY, FIRMY) SPECIFIC STYLES === */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3e50 100%);
    color: var(--white);
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--accent-gold);
}

.breadcrumb i {
    margin: 0 0.5rem;
    font-size: 0.7rem;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.page-tagline {
    font-size: 1.2rem;
    color: var(--gray-light);
}

/* Workshop Intro */
.workshop-intro {
    padding: 6rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-highlight {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.intro-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.intro-highlight i {
    color: var(--accent-gold);
}

.highlight-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.stat-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--gray-mid);
}

/* For Whom Section */
.for-whom {
    padding: 6rem 0;
    background: var(--light-bg);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.audience-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.audience-card i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* Outcomes Section */
.outcomes {
    padding: 6rem 0;
    background: var(--white);
}

.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.outcome-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.outcome-number {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.outcome-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.outcome-content p {
    color: var(--primary-text);
    line-height: 1.7;
}

/* Program Section */
.program {
    padding: 6rem 0;
    background: var(--light-bg);
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    border-color: var(--accent-gold);
}

.tab-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

.tab-content {
    display: none;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-duration {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    justify-content: center;
}

.program-modules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.module.highlight-module {
    background: var(--primary-dark);
    color: var(--white);
    border-left-color: var(--white);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.module-time {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.module h3 {
    font-size: 1.2rem;
}

.module p {
    color: var(--primary-text);
    line-height: 1.6;
}

.highlight-module p {
    color: var(--gray-light);
}

.program-highlight {
    background: var(--primary-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.program-highlight strong {
    color: var(--accent-gold);
}

.extended-list {
    list-style: none;
    padding: 0;
}

.extended-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.extended-list strong {
    color: var(--accent-gold);
}

.program-deliverables {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.program-deliverables h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
}

.program-deliverables i {
    color: var(--accent-gold);
}

.program-deliverables ul {
    list-style: none;
    padding: 0;
}

.program-deliverables li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.program-deliverables li:last-child {
    border-bottom: none;
}

/* Situations Section */
.situations {
    padding: 6rem 0;
    background: var(--white);
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.situation-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.situation-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.situation-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.situation-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.situation-card p {
    font-size: 0.95rem;
    color: var(--primary-text);
}

/* Why Works Section */
.why-works {
    padding: 6rem 0;
    background: var(--light-bg);
}

.why-works-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.work-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.work-item p {
    line-height: 1.7;
    color: var(--primary-text);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3e50 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    line-height: 1.7;
}

/* Responsive for subpages */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .program-tabs {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .outcome-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .outcome-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
}

/* === LEGAL PAGES (REGULAMIN, POLITYKA PRYWATNOŚCI) === */
.legal-page {
    padding: 6rem 0 4rem;
    background: var(--light-bg);
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-text);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-updated {
    background: var(--light-bg);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-updated i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.legal-article {
    margin-bottom: 3rem;
}

.legal-article h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-gold);
    text-transform: uppercase;
}

.legal-article h2 i {
    color: var(--accent-gold);
    margin-right: 0.75rem;
}

.legal-article h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-transform: none;
}

.legal-article p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.legal-article ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-article li {
    margin-bottom: 0.5rem;
    color: var(--primary-text);
}

.legal-article strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.legal-article a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.legal-article a:hover {
    color: var(--primary-dark);
}

.info-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold);
    margin: 1rem 0;
}

.info-box p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-box strong {
    color: var(--primary-dark);
}

.legal-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 6px;
    text-align: center;
    border: 2px solid var(--accent-gold);
}

.legal-footer p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-dark);
}

.legal-footer i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

/* Responsive - Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .legal-article h2 {
        font-size: 1.3rem;
    }
    
    .legal-article h3 {
        font-size: 1.1rem;
    }
    
    .legal-article ul {
        margin-left: 1.5rem;
    }
}
