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

:root {
    --primary: #00D9A3;
    --primary-dark: #00B887;
    --accent: #9ACD32;
    --accent-warm: #FFB84D;
    --dark: #0A0E1A;
    --dark-light: #1A1F35;
    --text: #E8F0F2;
    --text-muted: #8B95A8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 217, 163, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(154, 205, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 184, 77, 0.05) 0%, transparent 40%);
    animation: bgRotate 30s linear infinite;
}

@keyframes bgRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 217, 163, 0.3);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo .ai {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5% 2rem;
    position: relative;
    background-image: url('images/baner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.7) 50%, rgba(10, 14, 26, 0.3) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text .subheadline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.offer-box {
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.2) 0%, rgba(154, 205, 50, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s both, pulse 2s ease-in-out infinite;
}

.offer-box h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.offer-box .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.offer-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 217, 163, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 217, 163, 0);
    }
}

.cta-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 217, 163, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 217, 163, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.4s both;
    display: none;
}

.ai-avatar-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.1) 0%, rgba(154, 205, 50, 0.1) 100%);
    border: 2px solid var(--glass-border);
}

.ai-avatar-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ai-avatar-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.ai-avatar-placeholder svg {
    width: 150px;
    height: 150px;
    opacity: 0.6;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Section Styles */
section {
    padding: 6rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* What is Targowisko */
.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 217, 163, 0.3);
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 26, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.feature-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 217, 163, 0.1) 0%, rgba(10, 14, 26, 0.7) 100%);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 163, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary);
    padding: 1.5rem 1.5rem 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    transform: translateX(5px);
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease 0.1s;
}

.feature-card:hover p {
    color: var(--text);
    transform: translateX(5px);
}

/* How it Works */
.process-flow {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 163, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 217, 163, 0.3);
}

.step-number {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.2) 0%, rgba(154, 205, 50, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 217, 163, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 217, 163, 0.4);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 217, 163, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.step-icon {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1;
    color: var(--primary);
}

/* Step 1 - Form Animation */
.svg-element-1 {
    animation: drawIn 2s ease-in-out infinite;
}

.svg-element-2 {
    animation: drawIn 2s ease-in-out 0.2s infinite;
}

.svg-element-3 {
    animation: drawIn 2s ease-in-out 0.4s infinite;
}

.svg-element-4 {
    animation: drawIn 2s ease-in-out 0.6s infinite;
}

.svg-checkmark {
    animation: scaleIn 2s ease-in-out 1s infinite;
}

.svg-check {
    animation: drawCheck 2s ease-in-out 1.2s infinite;
}

@keyframes drawIn {
    0%, 100% {
        opacity: 0.3;
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    50% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes scaleIn {
    0%, 60%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    70%, 90% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drawCheck {
    0%, 70%, 100% {
        stroke-dasharray: 20;
        stroke-dashoffset: 20;
    }
    80%, 95% {
        stroke-dashoffset: 0;
    }
}

/* Step 2 - Avatar AI Animation */
.svg-pulse {
    animation: pulse-grow 2s ease-in-out infinite;
}

.svg-scan-1,
.svg-scan-2 {
    animation: scanMove 2s ease-in-out infinite;
}

@keyframes pulse-grow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

@keyframes scanMove {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    25%, 75% {
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
    }
}

/* Step 3 - Integration Animation */
.svg-core {
    animation: coreGlow 2s ease-in-out infinite;
}

.svg-connection-1 {
    animation: flowIn 2s ease-in-out 0s infinite;
}

.svg-connection-2 {
    animation: flowIn 2s ease-in-out 0.2s infinite;
}

.svg-connection-3 {
    animation: flowIn 2s ease-in-out 0.4s infinite;
}

.svg-connection-4 {
    animation: flowIn 2s ease-in-out 0.6s infinite;
}

@keyframes coreGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px var(--primary));
    }
    50% {
        filter: drop-shadow(0 0 8px var(--primary));
    }
}

@keyframes flowIn {
    0%, 100% {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
        opacity: 0.2;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Step 4 - Map Animation */
.svg-map {
    animation: mapPulse 3s ease-in-out infinite;
}

.svg-location {
    animation: locationAppear 3s ease-in-out infinite;
}

.svg-loc-1 {
    animation-delay: 0s;
}

.svg-loc-2 {
    animation-delay: 0.3s;
}

.svg-loc-3 {
    animation-delay: 0.6s;
}

.svg-loc-4 {
    animation-delay: 0.9s;
}

.svg-loc-5 {
    animation-delay: 1.2s;
}

.svg-loc-6 {
    animation-delay: 1.5s;
}

@keyframes mapPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes locationAppear {
    0%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    10%, 90% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
    }
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.process-step:hover h3 {
    color: var(--text);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Clients Section - Carousel Style */
.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding: 2rem 0;
}

.clients-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 5%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.clients-grid::-webkit-scrollbar {
    display: none;
}

.client-card {
    flex: 0 0 auto;
    width: 380px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
}

.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.05) 0%, rgba(154, 205, 50, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-card:hover::before {
    opacity: 1;
}

.client-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 217, 163, 0.3);
    transform: translateY(-10px);
}

.client-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.client-card:hover .client-image {
    transform: scale(1.1);
}

.client-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.client-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 217, 163, 0.15);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.client-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.2;
}

.client-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.client-result {
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.15) 0%, rgba(154, 205, 50, 0.1) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.client-result::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 217, 163, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.result-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.result-label {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: var(--primary);
    opacity: 0.7;
}

/* Comparison Section - Visual Battle Style */
#comparison {
    position: relative;
    overflow: hidden;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.comparison-side {
    position: relative;
    padding: 3rem;
}

/* Traditional Side - Red Theme */
.comparison-traditional {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.05) 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.comparison-traditional:hover {
    transform: scale(0.98);
    border-color: rgba(255, 107, 107, 0.5);
}

/* Targowisko Side - Green Theme */
.comparison-targowisko {
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.2) 0%, rgba(154, 205, 50, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 217, 163, 0.2);
}

.comparison-targowisko:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 217, 163, 0.4);
}

.comparison-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.comparison-traditional .comparison-badge {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.comparison-targowisko .comparison-badge {
    background: rgba(0, 217, 163, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.comparison-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.comparison-traditional .comparison-title {
    color: #FF6B6B;
}

.comparison-targowisko .comparison-title {
    color: var(--primary);
}

.comparison-cost {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.comparison-traditional .comparison-cost {
    color: #FF6B6B;
}

.comparison-targowisko .comparison-cost {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-period {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

.comparison-items {
    list-style: none;
}

.comparison-items li {
    padding: 0.8rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.comparison-items li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.comparison-traditional .comparison-items li::before {
    background: #FF6B6B;
}

.comparison-targowisko .comparison-items li::before {
    background: var(--primary);
}

/* VS Divider */
.comparison-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.vs-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    box-shadow: 0 20px 60px rgba(0, 217, 163, 0.4);
    animation: pulseVS 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulseVS {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(0, 217, 163, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 70px rgba(0, 217, 163, 0.6);
    }
}

.vs-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 217, 163, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.vs-savings {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 217, 163, 0.1);
    border-radius: 16px;
    border: 1px solid var(--primary);
}

.savings-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.savings-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CTA Section */
.comparison-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.15) 0%, rgba(154, 205, 50, 0.1) 100%);
    border-radius: 24px;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.comparison-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 163, 0.2) 0%, transparent 70%);
    animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.comparison-cta-content {
    position: relative;
    z-index: 1;
}

.comparison-cta h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.comparison-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-mega {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--dark);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 217, 163, 0.4);
    animation: btnFloat 3s ease-in-out infinite;
}

.btn-mega:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 217, 163, 0.6);
}

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

/* Pricing Section - Airminal Screen Style */
.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card.active .screen-frame {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 217, 163, 0.3);
    transform: scale(1.05);
}

.pricing-card.active .screen-top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.pricing-card.inactive {
    opacity: 0.7;
}

.pricing-card.inactive .screen-content {
    opacity: 0.8;
}

/* Screen Frame - Monitor/Airminal Look */
.screen-frame {
    background: linear-gradient(135deg, rgba(30, 35, 50, 0.95) 0%, rgba(20, 25, 40, 0.95) 100%);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.screen-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card:hover .screen-frame {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* Top Bar with Logo */
.screen-top-bar {
    background: linear-gradient(135deg, rgba(40, 45, 60, 1) 0%, rgba(30, 35, 50, 1) 100%);
    padding: 1.2rem 1.5rem;
    border-bottom: 2px solid rgba(0, 217, 163, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.screen-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.screen-logo .ai-dot {
    color: var(--primary);
    font-weight: 900;
}

/* Screen Content Area */
.screen-content {
    background: linear-gradient(135deg, rgba(15, 20, 35, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 217, 163, 0.4);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.availability-badge {
    display: inline-block;
    background: rgba(255, 184, 77, 0.2);
    color: var(--accent-warm);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Vision Section - Animated World Map */
#vision {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 163, 0.08) 0%, rgba(10, 14, 26, 0) 70%);
    padding: 6rem 5% 4rem;
}

.world-map-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-image: url('images/mapa11.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.world-map-wrapper svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 217, 163, 0.15));
}

/* World Continents - Hidden (using real map image) */
.world-continents {
    display: none;
}

/* Expansion Phases */
.expansion-phase {
    opacity: 0;
}

/* Phase 1: Poland - appears first */
.phase-1 {
    animation: phaseAppear 1.5s ease-out 0.5s forwards;
}

/* Phase 2: Europe - appears second */
.phase-2 {
    animation: phaseAppear 1.5s ease-out 3s forwards;
}

/* Phase 3: USA - appears last */
.phase-3 {
    animation: phaseAppear 1.5s ease-out 5.5s forwards;
}

@keyframes phaseAppear {
    to {
        opacity: 1;
    }
}

/* City Markers */
.city-marker {
    opacity: 0;
    animation: cityPop 0.6s ease-out forwards;
    filter: drop-shadow(0 0 6px currentColor);
    transition: all 0.3s ease;
}

.city-marker:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 0 12px currentColor);
}

/* Stagger city marker animations */
.phase-1 .city-marker:nth-child(1) { animation-delay: 1s; }
.phase-1 .city-marker:nth-child(2) { animation-delay: 1.2s; }
.phase-1 .city-marker:nth-child(3) { animation-delay: 1.4s; }
.phase-1 .city-marker:nth-child(4) { animation-delay: 1.6s; }
.phase-1 .city-marker:nth-child(5) { animation-delay: 1.8s; }
.phase-1 .city-marker:nth-child(6) { animation-delay: 2s; }

.phase-2 .city-marker:nth-child(1) { animation-delay: 3.5s; }
.phase-2 .city-marker:nth-child(2) { animation-delay: 3.7s; }
.phase-2 .city-marker:nth-child(3) { animation-delay: 3.9s; }
.phase-2 .city-marker:nth-child(4) { animation-delay: 4.1s; }
.phase-2 .city-marker:nth-child(5) { animation-delay: 4.3s; }
.phase-2 .city-marker:nth-child(6) { animation-delay: 4.5s; }
.phase-2 .city-marker:nth-child(7) { animation-delay: 4.7s; }
.phase-2 .city-marker:nth-child(8) { animation-delay: 4.9s; }

.phase-3 .city-marker:nth-child(1) { animation-delay: 6s; }
.phase-3 .city-marker:nth-child(2) { animation-delay: 6.2s; }
.phase-3 .city-marker:nth-child(3) { animation-delay: 6.4s; }
.phase-3 .city-marker:nth-child(4) { animation-delay: 6.6s; }
.phase-3 .city-marker:nth-child(5) { animation-delay: 6.8s; }
.phase-3 .city-marker:nth-child(6) { animation-delay: 7s; }
.phase-3 .city-marker:nth-child(7) { animation-delay: 7.2s; }

@keyframes cityPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Main hub markers (larger cities) */
.main-hub {
    filter: drop-shadow(0 0 10px currentColor);
}

/* Pulse Rings */
.pulse-ring {
    opacity: 0;
    animation: ringPulse 3s ease-out infinite;
}

.ring-1 {
    animation-delay: 2.5s;
}

.ring-2 {
    animation-delay: 2.7s;
}

.phase-3 .ring-1 {
    animation-delay: 7.5s;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Connection Lines */
.connection-line {
    opacity: 0;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.phase-2 .connection-line {
    animation: drawConnection 1.5s ease-out 4.5s forwards;
}

.global-line {
    animation: drawConnection 2s ease-out 7s forwards;
}

@keyframes drawConnection {
    to {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
}

/* Labels */
.region-label {
    font-family: 'Outfit', sans-serif;
    opacity: 0;
    animation: labelFade 0.8s ease-out forwards;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    opacity: 0;
    animation: labelFade 0.8s ease-out forwards;
}

.phase-1 .region-label,
.phase-1 .stat-label {
    animation-delay: 2.2s;
}

.phase-2 .region-label,
.phase-2 .stat-label {
    animation-delay: 5s;
}

.phase-3 .region-label,
.phase-3 .stat-label {
    animation-delay: 7.5s;
}

@keyframes labelFade {
    to {
        opacity: 1;
    }
}

/* Final CTA */
.final-cta {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.1) 0%, rgba(154, 205, 50, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 4rem 3rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--dark-light);
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

/* AI Chat Widget */
.ai-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 217, 163, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button svg {
    width: 35px;
    height: 35px;
    fill: var(--dark);
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-card {
        width: 340px;
    }

    .client-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 180px;
    }

    .feature-card::before {
        height: 180px;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 120px;
        height: 120px;
    }

    .step-icon {
        font-size: 3rem;
    }

    .hero {
        background-position: right center;
    }

    .hero::after {
        background: linear-gradient(to right, rgba(10, 14, 26, 0.98) 0%, rgba(10, 14, 26, 0.85) 100%);
    }

    .hero-content {
        text-align: center;
        justify-content: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .nav-links {
        display: none;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        padding: 0 2%;
    }

    .client-card {
        width: 300px;
    }

    .client-image-wrapper {
        height: 180px;
    }

    .client-content {
        padding: 1.5rem;
    }

    .client-name {
        font-size: 1.4rem;
    }

    .result-value {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        justify-content: center;
    }
}
