@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #f59e0b;
    --accent: #10b981;
    --orange: #f97316;
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-success: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Header - Redesigned */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    height: 70px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.logo:hover {
    color: #1d4ed8;
    transform: translateY(-1px);
    text-decoration: none;
}

.logo:visited {
    color: #2563eb;
    text-decoration: none;
}

.logo:active {
    color: #1d4ed8;
    text-decoration: none;
}

.logo::before {
    content: '🧪';
    font-size: 1.8rem;
    margin-right: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    display: block;
}

.nav-links a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.nav-links a:active {
    transform: translateY(1px);
}

/* Mobile Menu Toggle - Redesigned */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: rgba(37, 99, 235, 0.1);
    border: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(37, 99, 235, 0.15);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #2563eb;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active {
    background: rgba(37, 99, 235, 0.2);
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu .nav-links {
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    align-items: stretch;
}

.mobile-menu .nav-links a {
    padding: 18px 20px;
    font-size: 16px;
    color: #334155;
    border-radius: 12px;
    margin: 4px 0;
    background: transparent;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.mobile-menu .nav-links a:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(4px);
}

/* Navigation CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    z-index: 1002;
    position: relative;
}

.nav-cta-button {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
    cursor: pointer;
}

.nav-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: white;
}

/* Mobile Navigation CTA */
.mobile-nav-cta {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
}

.mobile-nav-cta .nav-cta-button {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 16px;
}

/* Hero Section - SaaS Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
    padding-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
}

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

.hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '🚀';
    font-size: 16px;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-height: 52px;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}
        
/* Hero Dashboard Mockup */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 20px 20px 0 0;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-dot:nth-child(1) { background: #ef4444; }
.dashboard-dot:nth-child(2) { background: #f59e0b; }
.dashboard-dot:nth-child(3) { background: #10b981; }

.dashboard-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-left: auto;
    font-size: 14px;
}

.dashboard-content {
    display: grid;
    gap: 16px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.card-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.card-change {
    font-size: 12px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- START: Countdown Timer Styles --- */
.countdown-timer-container {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    margin: 48px 0;
    position: relative;
    overflow: hidden;
}

.countdown-timer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f97316);
    animation: pulse-bar 2s infinite;
}

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

.countdown-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timer-unit {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 24px 16px;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timer-unit:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

.timer-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.timer-unit .number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.timer-unit .label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero countdown smaller styling */
.hero .countdown-timer-container {
    padding: 24px 20px;
    margin: 24px 0;
    border-radius: 16px;
}

.hero .countdown-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero .countdown-timer {
    gap: 16px;
}

.hero .timer-unit {
    min-width: 70px;
    padding: 16px 12px;
    border-radius: 12px;
}

.hero .timer-unit .number {
    font-size: 1.8rem;
}

.hero .timer-unit .label {
    font-size: 0.8rem;
}

/* Presale announcement section */
.presale-announcement {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 146, 60, 0.1) 100%);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 20px;
    padding: 24px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.presale-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    animation: presale-pulse 2.5s infinite;
}

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

.presale-icon {
    font-size: 2rem;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.presale-content h4 {
    margin: 0 0 8px 0;
    color: #f59e0b;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.presale-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}
/* Pulse animation for popular badge */
@keyframes pulse-glow {
    0% { 
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        transform: scale(1);
    }
}

/* Pricing card pulse animation */
@keyframes pricing-card-pulse {
    0% { 
        box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
        border-color: var(--primary);
    }
    50% { 
        box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4), 0 0 0 4px rgba(37, 99, 235, 0.1);
        border-color: var(--primary-light);
    }
    100% { 
        box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
        border-color: var(--primary);
    }
}

/* Hover effects for pricing cards */
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pricing-card--popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 24px 64px rgba(37, 99, 235, 0.3);
}

/* --- END: Countdown Timer Styles --- */

/* --- START: Assistants Dashboard Mockup --- */
.assistants-dashboard-mockup {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 48px 0;
    border: 1px solid #334155;
}

.assistants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.assistant-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.assistant-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.assistant-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.assistant-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.assistant-status {
    font-size: 0.9rem;
    color: #10b981;
    margin-bottom: 12px;
    font-weight: 500;
}

.assistant-metric {
    font-size: 0.85rem;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .assistants-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .assistant-card {
        padding: 16px;
    }
    
    .assistant-icon {
        font-size: 1.5rem;
    }
}
/* --- END: Assistants Dashboard Mockup --- */

/* --- START: Transformation Map Dashboard --- */
.transformation-map-dashboard {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 48px 0;
    border: 1px solid #334155;
}

.transformation-progress {
    margin: 24px 0;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.weeks-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.timeline-week-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-week-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.week-number {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.week-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.week-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.week-status {
    font-size: 0.85rem;
    color: #10b981;
    margin-bottom: 8px;
    font-weight: 500;
}

.week-metric {
    font-size: 0.8rem;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .weeks-timeline {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .timeline-week-card {
        padding: 12px;
    }
    
    .week-icon {
        font-size: 1.5rem;
    }
    
    .week-title {
        font-size: 0.9rem;
    }
}
/* --- END: Transformation Map Dashboard --- */

/* --- START: Quick Wins Section --- */
.quick-wins-section {
    padding: 120px 0;
    background: white;
}

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

.win-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.win-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.win-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.win-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.win-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.win-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.win-card .highlight {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    font-weight: 600;
    color: var(--dark);
}

.graphic-placeholder {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin: 32px auto;
    max-width: 100%;
    display: block;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* --- END: Quick Wins Section --- */

/* Problem Section */
.problem-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Dashboard Image Showcase */
.dashboard-image-showcase {
    margin-top: 32px;
    text-align: center;
}

.dashboard-preview-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 8px;
    margin: 0 auto 16px;
    display: block;
}

.dashboard-caption {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Real Quotes Grid */
.real-quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.quote-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.quote-card.urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.1);
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.quote-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
}

.quote-card blockquote::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    position: absolute;
    left: -16px;
    top: -8px;
}

.quote-category {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* --- START: Psychology Section --- */
.psychology-section {
    padding: 120px 0;
    background: var(--dark);
    color: white;
}
.psychology-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.psychology-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
}
.psychology-content p {
    font-size: 1.25rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 32px;
}
.psychology-highlight {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}
.psychology-highlight strong {
    color: var(--secondary);
    font-weight: 700;
}
/* --- END: Psychology Section --- */

/* --- START: New Era Section --- */
.new-era-section {
    padding: 120px 0;
    background: white;
}

.era-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.era-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.era-content p {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.7;
}

.era-content .highlight {
    color: var(--primary);
    font-weight: 600;
}
/* --- END: New Era Section --- */

/* --- START: Live Prompt Section & Modal --- */
.live-prompt-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.modal-backdrop {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}
.modal-dialog {
    position: fixed;
    z-index: 1051;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    animation: slideInUp 0.4s ease;
    max-height: 90vh;
    overflow: hidden;
}
.modal-content {
    padding: 40px;
    max-height: 85vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}
.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
}
.modal-close {
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--gray);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.modal-close:hover {
    background: rgba(0,0,0,0.1);
}
.prompt-instruction {
    margin-bottom: 24px;
}
.prompt-instruction p {
    color: var(--gray);
    margin-bottom: 8px;
}
.prompt-instruction strong {
    color: var(--primary);
}
.prompt-box {
    background: var(--dark);
    color: var(--light);
    border-radius: 12px;
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.7;
    position: relative;
}
.prompt-box pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
}
.prompt-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.prompt-box-title {
    color: var(--secondary);
    font-weight: 600;
}
.copy-button {
    background: var(--dark-light);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 12px;
}
.copy-button:hover {
    background: var(--gray);
}
.prompt-cta-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInUp { from { transform: translate(-50%, -40%); opacity: 0; } to { transform: translate(-50%, -50%); opacity: 1; } }
/* --- END: Live Prompt Section & Modal --- */

/* --- START: Transformation Timeline Section --- */
.transformation-section {
    padding: 120px 0;
    background: var(--dark);
}
.transformation-timeline {
    position: relative;
    max-width: 1000px;
    margin: 64px auto 0;
    padding-left: 40px;
}
.timeline-week {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}
.week-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--dark);
}
.week-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}
.week-content:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.week-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}
.week-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.detail-item {
    background: rgba(0,0,0,0.2);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
}
.detail-item strong {
    display: block;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.detail-item p {
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}
/* --- END: Transformation Timeline Section --- */

/* --- START: After Lab Section (Redesigned) --- */
.after-lab-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
}
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 32px;
    align-items: start;
    max-width: 1000px;
    margin: 64px auto 0;
}
.transformation-column {
    text-align: center;
}
.transformation-column h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
}
.before-column h3 { color: #ef4444; }
.after-column h3 { color: var(--accent); }
.transformation-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
    position: relative;
}
.divider-line {
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 20%, var(--accent) 50%, var(--primary) 80%, transparent 100%);
    border-radius: 2px;
    position: relative;
}
.divider-line::before {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary);
}
.transformation-item {
    margin-bottom: 24px;
    text-align: left;
    padding: 28px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.transformation-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.transformation-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.transformation-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.transformation-item p {
    color: var(--gray);
    line-height: 1.5;
}
.testimonial-highlight {
    margin-top: 64px;
    text-align: center;
}

.testimonial-content {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-success);
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 24px;
    position: relative;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    left: -24px;
    top: -16px;
    line-height: 1;
}
/* --- END: After Lab Section (Redesigned) --- */

/* FAQ Accordion */
.faq-section {
    padding: 120px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 64px auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 23, 42, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gray);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 116, 139, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
    background: var(--accent);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 24px;
}

/* Solution Section */
.solution-section {
    padding: 120px 0;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.solution-content {
    position: relative;
    z-index: 2;
}

.solution-highlight-box {
    text-align: center; 
    margin-bottom: 64px; 
    padding: 32px; 
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 16px; 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-highlight-box p {
    font-size: 1.2rem; 
    font-weight: 500; 
    line-height: 1.6;
     color: rgba(255,255,255,0.9);
}

.solution-highlight-box strong {
    font-weight: 700;
     color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Author Section */
.author-section {
    padding: 120px 0;
    background: white;
}

.author-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    align-items: stretch;
    margin-top: 64px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
}

.author-card {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.author-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.author-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 16px 0 8px;
    color: var(--dark);
}

.author-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.author-achievements {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.achievement {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.author-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 24px;
    text-align: left;
    flex-grow: 1;
}

.author-quote {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    text-align: left;
    margin-top: auto;
}

.author-quote p {
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.author-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    object-fit: cover;
    border: 4px solid white;
    transition: all 0.3s ease;
}
.author-card:hover .author-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

/* What You Get Section */
.what-you-get {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.modules-grid {
    display: grid;
    gap: 24px;
    margin-top: 64px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.module-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.1);
}

.module-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
}

.module-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.module-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.module-card ul {
    margin-top: 16px;
    padding-left: 20px;
}

.module-card li {
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.5;
}

/* --- START: Checklist Roadmap Section (Redesigned as AI Assistants) --- */
.checklist-roadmap-section {
    padding: 120px 0;
    background: white;
}

.roadmap-container {
    margin-top: 64px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
        
.roadmap-stage {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-stage p {
    margin-bottom: 24px; 
    color: var(--gray);
    line-height: 1.6;
    text-align: left;
    font-size: 16px;
}

.roadmap-stage:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.roadmap-stage-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.roadmap-stage-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roadmap-stage-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    line-height: 1.3;
    margin: 0;
}

.roadmap-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.roadmap-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 16px;
    border-radius: 12px;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

.roadmap-checklist li::before {
    content: '✅';
    font-size: 1.2rem;
    margin-top: 2px;
    color: var(--accent);
    flex-shrink: 0;
}

.dashboard-promise-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 40px;
    margin-top: 64px;
    text-align: center;
    width: 100%;
    max-width: 800px;
}
.dashboard-promise-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.dashboard-promise-box p {
    color: var(--gray);
    font-size: 1.1rem;
}
/* --- END: Checklist Roadmap Section --- */

/* --- START: New Pricing Section --- */
.pricing-section {
    padding: 120px 0;
    background: var(--dark);
    color: white;
    text-align: center;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin: 64px auto 0;
    align-items: stretch;
    justify-content: center;
}
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.pricing-card--popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
    animation: pricing-card-pulse 3s ease-in-out infinite;
    z-index: 2;
}
.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    animation: pulse-glow 2s infinite;
}
.pricing-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.pricing-card-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    min-height: 40px;
}
.price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
}

.price::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.price-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.price-crossed {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: line-through;
    color: var(--gray-light);
    opacity: 0.6;
    margin-top: 4px;
    position: relative;
}

.price-crossed::before {
    content: "Zamiast ";
    text-decoration: none;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-right: 4px;
}
.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.installment-info {
    font-size: 0.9rem;
    color: rgba(16, 185, 129, 0.9);
    margin-bottom: 24px;
    font-weight: 500;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}
.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 800;
    margin-top: 2px;
}
.pricing-card .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}
.pricing-card .cta-button--secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.pricing-card .cta-button--secondary:hover {
     background: rgba(255, 255, 255, 0.2);
}
.guarantee-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 24px;
    padding: 40px 32px;
    margin: 64px auto;
    max-width: 800px;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #22c55e, #16a34a);
    animation: guarantee-pulse 3s infinite;
}

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

.guarantee-section h3 {
    color: #10b981;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guarantee-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}
/* --- END: New Pricing Section --- */


/* --- START: PS Section --- */
.ps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: left;
}

.ps-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.ps-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5em;
}

.ps-container p:last-child {
    margin-bottom: 0;
}
/* --- END: PS Section --- */

/* --- START: Cookie Banner Styles --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: var(--light);
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
}

.cookie-banner.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1 1 400px;
}

.cookie-text h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--primary);
    color: white;
}
.cookie-btn.accept:hover {
    background: var(--primary-light);
}

.cookie-btn.reject, .cookie-btn.settings, .cookie-btn.save {
    background: var(--dark-light);
    color: var(--light);
}
.cookie-btn.reject:hover, .cookie-btn.settings:hover, .cookie-btn.save:hover {
    background: var(--gray);
}

.cookie-settings {
    display: none;
    padding: 24px;
    background: var(--dark-lighter);
    border-top: 1px solid var(--dark-light);
}

.cookie-settings.show {
    display: block;
}

.cookie-setting {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-setting input[type="checkbox"] {
    margin-right: 12px;
    height: 18px;
    width: 18px;
}

.cookie-setting label {
    color: var(--gray-light);
}

.cookie-btn.save {
    margin-top: 16px;
    background: var(--accent);
}

/* Responsive cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .cookie-text {
        flex: 1 1 auto;
        margin-bottom: 16px;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .cookie-settings {
        padding: 16px;
    }
}
/* --- END: Cookie Banner Styles --- */

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 48px 0 32px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    padding-top: 32px;
    color: var(--gray-light);
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* 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 gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
     .pricing-card--popular {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    .transformation-divider {
        display: none;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .wins-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .real-quotes-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .header {
        background: #ffffff;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav {
        padding: 12px 0;
        height: 60px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo::before {
        font-size: 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-visual {
        order: 1;
        margin-top: 24px;
        margin-bottom: 0;
    }
    
    .dashboard-mockup {
        padding: 12px;
        max-width: 100%;
        overflow-x: auto;
        border-radius: 12px;
    }
    
    .dashboard-content {
        gap: 8px;
        grid-template-columns: 1fr;
    }
    
    .dashboard-card {
        padding: 12px;
        min-width: unset;
        border-radius: 8px;
    }
    
    .card-value {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .dashboard-title {
        font-size: 11px;
    }
    
    .dashboard-header {
        padding: 8px 12px;
    }
    
    .assistants-dashboard-mockup {
        padding: 16px;
        border-radius: 12px;
    }
    
    .assistants-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .assistant-card {
        padding: 16px;
    }
    
    .hero .countdown-timer {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .transformation-timeline::before {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-week {
        padding-left: 80px;
    }
    
    .week-marker {
        left: 0;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .psychology-content p,
    .era-content p {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .prompt-box {
        font-size: 12px;
        padding: 16px;
    }
    
    .testimonial-content {
        padding: 32px;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .testimonial-content blockquote::before {
        font-size: 3rem;
        left: -16px;
    }
    
    .psychology-highlight,
    .solution-highlight-box {
        padding: 24px;
    }
    
    .psychology-highlight,
    .solution-highlight-box p {
        font-size: 1.1rem;
    }
    
    .author-image {
        width: 120px;
        height: 120px;
    }
    
    .author-card {
        padding: 32px;
    }
    
    .guarantee-section {
        padding: 24px;
    }
    
    .ps-container {
        padding: 32px;
    }
    
    .ps-container p {
        font-size: 1rem;
    }
    
    .roadmap-stage {
        padding: 24px;
    }
    
    .roadmap-stage-title {
        font-size: 1.5rem;
    }
    
    .dashboard-promise-box {
        padding: 32px;
    }
    
    .dashboard-promise-box h3 {
        font-size: 1.5rem;
    }
    
    .dashboard-promise-box p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 4px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .mobile-menu {
        top: 60px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
    }
    
    .mobile-menu .nav-links {
        padding: 16px;
    }
    
    .mobile-menu .nav-links a {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .timer-unit {
        min-width: 50px;
        padding: 8px;
    }
    
    .timer-unit .number {
        font-size: 1.5rem;
    }
    
    .timer-unit .label {
        font-size: 0.65rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: none;
        margin-bottom: 12px;
    }
    
    .price-main {
        font-size: 2.8rem;
    }
    
    .price-crossed {
        font-size: 1.2rem;
    }
    
    .countdown-timer-container {
        padding: 32px 24px;
        margin: 32px 0;
    }
    
    .hero .countdown-timer-container {
        padding: 16px;
        margin: 16px 0;
        border-radius: 16px;
    }
    
    .countdown-title {
        font-size: 1.2rem;
    }
    
    .timer-unit {
        min-width: 80px;
        padding: 20px 12px;
    }
    
    .timer-unit .number {
        font-size: 2rem;
    }
    
    .guarantee-section {
        padding: 32px 24px;
    }
    
    .guarantee-section h3 {
        font-size: 1.5rem;
    }
    
    .presale-announcement {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .real-quotes-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-card {
        padding: 20px;
    }
    
    .quote-card blockquote {
        font-size: 1rem;
    }
    
    .win-card {
        padding: 24px;
    }
    
    .win-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .module-card {
        padding: 24px;
    }
    
    .module-card h3 {
        font-size: 1.25rem;
    }
    
    .roadmap-stage-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .roadmap-stage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .roadmap-stage-title {
        font-size: 1.25rem;
    }
    
    .pricing-card {
        padding: 24px;
        min-height: auto;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .pricing-card-description {
        margin-bottom: 24px;
        min-height: auto;
        line-height: 1.4;
    }
    
    .price {
        font-size: 2.2rem;
        margin-bottom: 6px;
        line-height: 1;
    }
    
    .price-period {
        margin-bottom: 24px;
        font-size: 0.9rem;
    }
    
    .popular-badge {
        top: 16px;
        right: 16px;
        padding: 3px 10px;
        font-size: 11px;
    }
    
    .pricing-features {
        margin-bottom: 32px;
    }
    
    .pricing-features li {
        margin-bottom: 10px;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .modal-dialog {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-content {
        padding: 20px;
        max-height: 85vh;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    .prompt-box {
        font-size: 11px;
        padding: 12px;
    }
    
    .copy-button {
        font-size: 11px;
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav {
        padding: 16px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 8px 12px;
        line-height: 1.3;
        text-align: center;
        max-width: 280px;
        margin: 0 auto 16px auto;
    }
    
    .dashboard-mockup {
        padding: 16px;
    }
    
    .dashboard-title {
        font-size: 12px;
    }
    
    .card-value {
        font-size: 20px;
    }
    
    .card-title {
        font-size: 12px;
    }
    
    .card-change {
        font-size: 11px;
    }
    
    .transformation-item {
        padding: 20px;
    }
    
    .transformation-item h4 {
        font-size: 1.1rem;
    }
    
    .transformation-item .icon {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .win-icon {
        font-size: 2.5rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
    }
    
    .week-marker {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .timeline-week {
        padding-left: 70px;
    }
    
    .week-content {
        padding: 24px;
    }
    
    .week-content h3 {
        font-size: 1.25rem;
    }
    
    .detail-item {
        padding: 10px 14px;
    }
    
    .detail-item p {
        font-size: 0.9rem;
    }
}

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

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

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

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

/* Additional utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.font-heading { font-family: 'Space Grotesk', sans-serif; }

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button:hover {
        transform: none;
    }
    
    .feature-card:hover,
    .win-card:hover,
    .quote-card:hover,
    .module-card:hover,
    .roadmap-stage:hover {
        transform: none;
    }
    
    .author-card:hover {
        transform: none;
    }
}

/* Focus states for accessibility */
.cta-button:focus,
.faq-question:focus,
.modal-close:focus,
.copy-button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Improved touch targets */
.cookie-btn {
    min-height: 44px;
    min-width: 44px;
}

.modal-close {
    min-height: 44px;
    min-width: 44px;
}

.copy-button {
    min-height: 44px;
    min-width: 44px;
}

.mobile-menu-toggle {
    min-height: 44px;
    min-width: 44px;
}

/* Performance optimizations */
.hero::before {
    will-change: transform;
}

.scroll-animate {
    will-change: opacity, transform;
}

.cta-button::before {
    will-change: left;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    padding: 12px 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show,
.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}

.cookie-text p {
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.reject {
    background: var(--gray-light);
    color: var(--dark);
}

.cookie-btn.reject:hover {
    background: var(--gray);
    color: var(--white);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cookie-btn.settings:hover {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn.save {
    background: var(--secondary);
    color: var(--white);
}

.cookie-btn.save:hover {
    background: var(--orange);
}

.cookie-settings {
    display: none;
    margin-top: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.cookie-settings.show {
    display: block;
}

.cookie-setting {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-setting:last-child {
    margin-bottom: 0;
}

.cookie-setting input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-setting label {
    font-size: 0.9rem;
    color: var(--dark);
    cursor: pointer;
}

.cookie-setting input[type="checkbox"]:disabled + label {
    opacity: 0.7;
}

/* Mobile responsive dla cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 8px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .cookie-text h4 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    
    .cookie-text p {
        font-size: 0.75rem;
    }
    
    .cookie-actions {
        justify-content: center;
        gap: 6px;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 80px;
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cookie-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}