/* Urgency Section - Time to Get Organized */
.urgency-section {
    background: linear-gradient(135deg, #1a0f1f 0%, #2a1a3a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(239, 68, 68, 0.1),
        transparent,
        rgba(34, 197, 94, 0.1),
        transparent
    );
    animation: urgencyWave 20s linear infinite;
}

@keyframes urgencyWave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.urgency-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Main Title */
.urgency-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.urgency-title .highlight {
    background: linear-gradient(90deg, #ff4444 0%, #ff6666 50%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

/* Two Column Layout */
.urgency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Column Cards */
.urgency-column {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Wait Column - Red Theme */
.urgency-column.wait {
    border: 2px solid rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
}

.urgency-column.wait::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ef4444, transparent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.urgency-column.wait:hover::before {
    opacity: 0.2;
}

/* Organize Column - Green Theme */
.urgency-column.organize {
    border: 2px solid rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
}

.urgency-column.organize::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #22c55e, transparent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.urgency-column.organize:hover::before {
    opacity: 0.2;
}

/* Column Headers */
.column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.column-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.wait .column-icon {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.organize .column-icon {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.wait .column-title {
    color: #ff6666;
}

.organize .column-title {
    color: #4ade80;
}

/* List Items */
.urgency-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.urgency-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.urgency-list li:nth-child(1) { animation-delay: 0.1s; }
.urgency-list li:nth-child(2) { animation-delay: 0.2s; }
.urgency-list li:nth-child(3) { animation-delay: 0.3s; }
.urgency-list li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* List Bullets */
.urgency-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.wait .urgency-list li::before {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.organize .urgency-list li::before {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Bottom CTA */
.urgency-cta {
    text-align: center;
}

.urgency-cta-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Animated Arrow */
.urgency-arrow {
    display: block;
    width: 60px;
    height: 60px;
    margin: 2rem auto;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

.urgency-arrow svg {
    width: 100%;
    height: 100%;
    stroke: #3543F0;
    stroke-width: 3;
    fill: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .urgency-section {
        padding: 60px 20px;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .urgency-column {
        padding: 2rem;
    }
    
    .urgency-list li {
        font-size: 1rem;
    }
    
    .urgency-cta-text {
        font-size: 1.25rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 25px 60px;
}