/* ===================================
   RESET & BASE STYLES
   =================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #f8f9fa;
    background: #0d1117;
    overflow-x: hidden;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

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

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #c9a96e;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a96e, #e6d690);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #c9a96e, #e6d690);
    color: #0d1117;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
    background: linear-gradient(135deg, #b8a082, #d4c4a0);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #1a1f29 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 231, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.urgency-banner {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f8f9fa, #c9a96e, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #c9a96e;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #9ca3af;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(201, 169, 110, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a96e;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 5px;
}

.pain-points {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.pain-points h3 {
    color: #dc3545;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.pain-points ul {
    list-style: none;
    color: #f8f9fa;
}

.pain-points li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.pain-points li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, #c9a96e, #e6d690);
    border-radius: 25px;
    opacity: 0.12;
    z-index: -1;
    filter: blur(20px);
}

.hero-main-image {
    height: 550px;
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    object-fit: cover;
    box-shadow: 
        0 25px 50px rgba(201, 169, 110, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.4);
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
    padding: 100px 0;
    background: #161b22;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.problem-card {
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.2);
    padding: 30px;
    border-radius: 15px;
}

.problem-card h3 {
    color: #dc3545;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.cost-highlight {
    background: linear-gradient(135deg, #c9a96e, #e6d690);
    color: #0d1117;
    padding: 20px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.cost-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.solution {
    padding: 100px 0;
    background: #0d1117;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f8f9fa;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #c9a96e;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 30px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.credential-item {
    background: rgba(201, 169, 110, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #c9a96e;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.credential-title {
    font-weight: 600;
    color: #c9a96e;
    margin-bottom: 5px;
}

.credential-desc {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ===================================
   CASE STUDIES SECTION
   =================================== */

.case-studies {
    padding: 100px 0;
    background: #161b22;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.case-study {
    background: rgba(201, 169, 110, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.case-study-before-after {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.before, .after {
    text-align: center;
}

.before span, .after span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.before span {
    color: #dc3545;
}

.after span {
    color: #28a745;
}

/* ===================================
   METHOD SECTION
   =================================== */

.method {
    padding: 100px 0;
    background: #0d1117;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.method-step {
    background: rgba(201, 169, 110, 0.04);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    text-align: center;
}

.step-number {
    background: linear-gradient(135deg, #c9a96e, #e6d690);
    color: #0d1117;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
}

/* ===================================
   PACKAGES SECTION
   =================================== */

.packages {
    padding: 100px 0;
    background: #161b22;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.package-card {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.04), rgba(22, 27, 34, 0.6));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.package-card.featured {
    border: 2px solid #c9a96e;
    transform: scale(1.05);
}

.package-card.featured::before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: 45px;
    right: -45px;
    background: linear-gradient(135deg, #c9a96e, #e6d690);
    color: #0d1117;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 20px 40px rgba(201, 169, 110, 0.1);
}

.package-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f8f9fa;
}

.package-description {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    color: #9ca3af;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a96e;
    font-weight: bold;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #c9a96e;
    text-align: center;
    margin-bottom: 20px;
}

.package-cta {
    background: linear-gradient(135deg, #c9a96e, #e6d690);
    color: #0d1117;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.25);
}

/* ===================================
   OBJECTIONS SECTION
   =================================== */

.objections {
    padding: 100px 0;
    background: #0d1117;
}

.objection-item {
    background: rgba(201, 169, 110, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #c9a96e;
}

.objection-question {
    font-size: 1.2rem;
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 15px;
}

.objection-answer {
    color: #9ca3af;
    line-height: 1.7;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */

.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #28a745, #20c997);
    text-align: center;
}

.guarantee h2, .guarantee p {
    color: white;
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ===================================
   CONSULTATION CTA
   =================================== */

.consultation {
    padding: 100px 0;
    background: linear-gradient(135deg, #c9a96e, #e6d690, #b8a082);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1117;
    margin-bottom: 20px;
}

.consultation p {
    font-size: 1.2rem;
    color: #1a1f29;
    margin-bottom: 40px;
    opacity: 0.9;
}

.consultation-button {
    background: #0d1117;
    color: #c9a96e;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(13, 17, 23, 0.3);
}

.consultation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 17, 23, 0.4);
    background: #161b22;
}

.scarcity {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background: #0d1117;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #c9a96e;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c9a96e;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    color: #9ca3af;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}