/* Global styles */
:root {
    --primary-blue: #3B82F6;
    --primary-blue-dark: #2563EB;
    --primary-purple: #7C3AED;
    --dark-gray: #1E293B;
    --light-bg: #F8FAFC;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Logo and header styles */
.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button styles */
.primary-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.35);
}

.primary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.45);
}

.secondary-button {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: var(--primary-blue);
    color: white;
}

/* Hero section */
.hero-gradient {
    background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 50%, #FDF2F8 100%);
}

/* Feature list styles */
.feature-check {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    margin-right: 8px;
    flex-shrink: 0;
}

/* Card styles */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    background: white;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(59, 130, 246, 0.15);
    border-color: var(--primary-blue);
}

.feature-card .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Pricing section */
.pricing-card {
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    background: white;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(59, 130, 246, 0.15);
}

/* Step cards */
.step-card {
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}

/* Showcase tabs */
.showcase-tab {
    background: white;
    color: #64748B;
    border: 1px solid #E2E8F0;
}

.showcase-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.showcase-tab.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.showcase-panel img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }
