
/* Shared styles across all pages */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

#hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Pricing page styles */
.toggle-btn {
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #667eea;
    color: white;
}

.price span:first-child {
    color: #1a202c;
}

/* Active link styling */
a.active-link {
    font-weight: 600;
    position: relative;
}

a.active-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
}

/* Custom button animation */
.btn-hover-animation {
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hover-animation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}
