/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* PALETA KOLORÓW - PRAWDZIWY ZŁOTY */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #242424;
    --text-main: #f3f4f6;
    --text-muted: #a1a1aa;
    
    /* ZŁOTY (Ciepły, luksusowy) */
    --color-gold: #C9A661;
    --color-gold-dark: #B8932E;
    --color-gold-light: #E5D4A6;
    --gradient-gold: linear-gradient(135deg, #C9A661 0%, #B8932E 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAFIA */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: white;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

.text-gold {
    color: var(--color-gold);
}

/* LINKI (Poprawione kolory) */
a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold-light);
}

/* LAYOUT */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 166, 97, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo .text-gold {
    color: var(--color-gold);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* PRZYCISKI - POPRAWIONY KONTRAST */
.btn-gold {
    background: var(--gradient-gold);
    color: #000000; /* CZARNY tekst na złotym - doskonały kontrast */
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 166, 97, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 166, 97, 0.4);
    background: linear-gradient(135deg, #E5D4A6 0%, #C9A661 100%);
    color: #000000;
}

.btn-outline {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #000000;
}

/* HERO SECTION */
.hero {
    padding: 180px 0 120px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(201, 166, 97, 0.08) 0%, transparent 60%);
    position: relative;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* SEKCJA STATYSTYK (Trust Bar) */
.stats-bar {
    background: var(--bg-card);
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 166, 97, 0.1);
    border-bottom: 1px solid rgba(201, 166, 97, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* AUDIO PLAYER */
.audio-demo {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 166, 97, 0.2);
    margin: 3rem auto;
    max-width: 700px;
    text-align: center;
}

.audio-demo h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.audio-demo p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.audio-player {
    width: 100%;
    margin-top: 1.5rem;
    background: #000;
    border-radius: 10px;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 166, 97, 0.3);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold-light);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
    margin-top: 6rem;
    text-align: center;
    border-top: 1px solid rgba(201, 166, 97, 0.2);
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    color: var(--text-muted);
}

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

.footer h4 { 
    color: white; 
    margin-bottom: 1rem; 
    font-family: var(--font-body);
    font-weight: 600;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.75rem; }

.footer a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer a:hover { 
    color: var(--color-gold); 
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* RWD */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn-gold, .hero-buttons .btn-outline { width: 100%; justify-content: center; margin: 0; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    h2 { font-size: 2rem; }
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    padding: 100px 20px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid rgba(201, 166, 97, 0.2);
    transition: all 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--color-gold);
    padding-left: 2rem;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none !important;
    }
    
    /* Hero */
    .hero {
        padding: 140px 0 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    .hero p {
        font-size: 1.1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
        margin: 0;
        margin-bottom: 1rem;
    }
    
    .landing-hero {
        padding: 160px 0 100px 0;
    }
    
    .landing-hero h1 {
        font-size: 2.2rem !important;
    }
    
    /* Stats Bar */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem !important;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    /* VS Container */
    .vs-container {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .vs-box {
        padding: 2rem;
    }
    
    .vs-box.winner {
        transform: scale(1);
    }
    
    /* Tables */
    .cost-shock-table {
        padding: 2rem;
        overflow-x: auto;
    }
    
    .cost-shock-table table {
        font-size: 0.9rem;
    }
    
    .cost-shock-table td {
        padding: 1rem 0.5rem !important;
    }
    
    /* Typography */
    h2 {
        font-size: 2rem !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
    }
    
    .stat-emotional {
        font-size: 3rem !important;
    }
    
    /* Pricing Explain */
    .pricing-explain {
        padding: 2rem;
    }
    
    /* Audio Demo */
    .audio-demo {
        padding: 2rem !important;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Pain/Success Lists */
    .pain-list li,
    .success-list li {
        padding-left: 3rem;
        font-size: 1rem;
    }
    
    .pain-list li:before,
    .success-list li:before {
        font-size: 1.5rem;
        left: 1rem;
    }
    
    /* FAQ */
    .faq-header {
        padding: 1.25rem 1.5rem !important;
    }
    
    .faq-header h3 {
        font-size: 1.05rem !important;
    }
    
    .faq-answer {
        padding: 0 1.5rem !important;
    }
    
    .faq-question.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem !important;
    }
    
    /* Buttons */
    .btn-gold,
    .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Scenario Boxes */
    div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"] > div {
        margin-bottom: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1,
    .landing-hero h1 {
        font-size: 2rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .logo {
        font-size: 1.3rem !important;
    }
    
    .cost-shock-table::before {
        font-size: 0.75rem;
        padding: 0.4rem 1.5rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero,
    .landing-hero {
        padding: 120px 0 60px 0;
    }
    
    .hero h1,
    .landing-hero h1 {
        font-size: 2rem !important;
    }
}

/* COMING SOON BADGE */
.badge-soon {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    vertical-align: middle;
}
