:root {
    --primary-blue: #1A2F6B;
    --deep-navy: #0F1B3D;
    --gold: #F9C23C;
    --gold-hover: #E6AD1F;
    --light-gray: #F5F7FA;
    --medium-gray: #6B7280;
    --dark-gray: #1F2937;
    --white: #FFFFFF;
    --accent-blue: #3B82F6;
    --success-green: #10B981;
    --gradient-primary: linear-gradient(135deg, #1A2F6B 0%, #0F1B3D 100%);
    --gradient-gold: linear-gradient(135deg, #F9C23C 0%, #E6AD1F 100%);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.15);
    --blur-glass: blur(20px);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    scroll-behavior: smooth;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
    opacity: 0;
}

.nav-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(249, 194, 60, 0.1) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h2 {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    list-style: none;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 500;
}

.hero-features li::before {
    content: '✨';
    margin-right: 12px;
    font-size: 20px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-strong);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(249, 194, 60, 0.4);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.phone-mockup {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.phone-frame {
    background: linear-gradient(145deg, #2D3748, #1A202C);
    border-radius: 32px;
    padding: 20px;
    box-shadow: 
        0 0 0 8px rgba(255, 255, 255, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: var(--white);
    border-radius: 24px;
    padding: 16px;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 400px;
    overflow: hidden;
}

.chat-message {
    background: var(--light-gray);
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    opacity: 0;
    animation: chatAppear 0.6s ease-out forwards;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.chat-message:nth-child(1) { animation-delay: 1s; }
.chat-message:nth-child(2) { animation-delay: 1.3s; }
.chat-message:nth-child(3) { animation-delay: 1.6s; }

.chat-message.ai {
    background: var(--gradient-primary);
    color: var(--white);
    margin-left: 20px;
}

/* Target Section */
.target-section {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.section-header p {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.target-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 194, 60, 0.1), transparent);
    transition: left 0.6s ease;
}

.target-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-medium);
}

.target-card:hover::before {
    left: 100%;
}

.target-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.target-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.not-for {
    background: linear-gradient(135deg, #FEF3F3, #FDF2F8);
    border: 2px solid #FECACA;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.not-for h3 {
    color: #DC2626;
    margin-bottom: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--light-gray);
}

.benefits-table {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.benefits-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.benefits-table th,
.benefits-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.benefits-table th {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.benefits-table tr:hover {
    background: rgba(249, 194, 60, 0.05);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* Program Timeline */
.program-section {
    padding: 120px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 64px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 4px solid var(--white);
    border-radius: 50%;
    top: 24px;
    box-shadow: var(--shadow-soft);
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold);
}

.week-number {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 16px;
}

/* Bonuses Section */
.bonuses-section {
    padding: 120px 0;
    background: var(--light-gray);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.pricing-card.featured::after {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.price-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--primary-blue);
    margin: 24px 0;
    transition: all 0.3s ease;
}

.price-old {
    font-size: 24px;
    color: var(--medium-gray);
    text-decoration: line-through;
    margin-right: 16px;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.pricing-features li::before {
    content: '✅';
    margin-right: 12px;
    font-size: 16px;
}

.pricing-cta {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured .pricing-cta {
    background: var(--gradient-gold);
    color: var(--primary-blue);
}

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.testimonial-card {
    min-width: 400px;
    background: var(--light-gray);
    border-radius: 24px;
    padding: 40px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* FAQ */
.faq-section {
    padding: 120px 0;
    background: var(--light-gray);
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 24px 32px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 32px 24px;
    color: var(--medium-gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-strong);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.sticky-cta.visible {
    display: block;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sticky-cta:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 40px 0;
}

.countdown-item {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    display: block;
}

.countdown-label {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

@keyframes chatAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
    70% {
        transform: translateX(-50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .phone-mockup {
        max-width: 220px;
        transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) scale(0.85);
        margin: 0 auto;
    }

    .phone-mockup:hover {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(0.9);
    }

    .phone-screen {
        padding: 20px;
        min-height: 320px;
    }

    .chat-message {
        padding: 10px;
        font-size: 11px;
        border-radius: 10px;
        line-height: 1.2;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 20px;
    }

    .timeline-item::before {
        left: 10px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(even)::before {
        left: 10px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

    .testimonials-slider {
        gap: 16px;
        padding: 10px 0;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 24px;
    }

    .target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-table {
        font-size: 14px;
    }

    .benefits-table th,
    .benefits-table td {
        padding: 16px 12px;
    }

    .countdown {
        gap: 12px;
    }

    .countdown-item {
        padding: 16px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .sticky-cta {
        left: 20px;
        right: 20px;
        transform: none;
        text-align: center;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 16px;
    }

    .phone-mockup {
        max-width: 200px;
        transform: perspective(1000px) rotateY(-6deg) rotateX(2deg) scale(0.8);
    }

    .phone-screen {
        padding: 12px;
        min-height: 240px;
        gap: 8px;
    }

    .chat-message {
        padding: 8px;
        font-size: 10px;
        border-radius: 8px;
        line-height: 1.2;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .timeline-card {
        padding: 24px 20px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }
}
        