/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    min-height: 100vh;
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 50%, #f87171 100%);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    overflow: hidden;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-title {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ef4444;
}

.nav-button {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.nav-button:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.5) 0%, rgba(254, 202, 202, 0.4) 50%, rgba(252, 165, 165, 0.5) 100%), url('public/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, transparent 100%);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    text-align: center;
    position: relative;
}

.hero-ca {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 0.875rem;
    font-weight: 600;
    color: #dc2626;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-ca:hover {
    background: white;
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc2626;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.hero-badge svg {
    color: #ef4444;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-dark {
    color: #0f172a;
}

.hero-description {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-button-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.hero-button-primary:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
}

.hero-button-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    color: #dc2626;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-button-secondary:hover {
    background: white;
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
}

/* Features Section */
.features {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.features-title-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-description {
    font-size: 1rem;
    color: #64748b;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.feature-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    transition: transform 0.3s ease;
    padding: 1rem;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #475569;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.pricing-title-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-description {
    font-size: 1.25rem;
    color: #64748b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.pricing-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.pricing-card-featured {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid #ef4444;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.pricing-card-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pricing-card-price {
    font-size: 3rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.pricing-card-period {
    color: #64748b;
    font-weight: 500;
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-feature svg {
    color: #ef4444;
    flex-shrink: 0;
}

.pricing-feature span {
    color: #475569;
    font-weight: 500;
}

.pricing-button-basic {
    width: 100%;
    background: #fef2f2;
    color: #dc2626;
    padding: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button-basic:hover {
    background: #fee2e2;
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.pricing-button-featured {
    width: 100%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.pricing-button-featured:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* CTA Section */
.cta {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 50%, #fca5a5 100%);
}

.cta-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.cta-title-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-button-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    color: #dc2626;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: white;
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    padding: 4rem 1rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    overflow: hidden;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #64748b;
    line-height: 1.6;
}

.footer-column-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    color: #ef4444;
}

.footer-bottom {
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
}

/* Responsive Design */

/* Mobile First - Base styles for mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-content {
        height: 3.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-button {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 3rem 1rem;
        min-height: 70vh;
    }
    
    .hero-ca {
        bottom: 1rem;
        left: 1rem;
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
        max-width: calc(100% - 2rem);
        word-break: break-all;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .hero-button-primary,
    .hero-button-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 280px;
    }
    
    .features,
    .stats,
    .pricing,
    .cta {
        padding: 3rem 1rem;
    }
    
    .features-title,
    .pricing-title,
    .cta-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .features-description,
    .pricing-description,
    .cta-description {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .pricing-card-featured {
        transform: none;
        margin: 1rem 0.5rem;
    }
    
    .pricing-card-title {
        font-size: 1.25rem;
    }
    
    .pricing-card-price {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-description {
        font-size: 0.875rem;
    }
    
    .feather-decoration {
        display: none;
    }
}

/* Small tablets and large phones */
@media (min-width: 481px) and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-ca {
        bottom: 1rem;
        left: 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-card-featured {
        transform: scale(1.02);
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
    }
    
    .nav-links {
        display: flex;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large screens */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .features-title,
    .pricing-title,
    .cta-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .cta-description {
        font-size: 1.375rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
    }
    
    .hero-ca {
        bottom: 1rem;
        left: 1rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo img,
    .footer-logo-icon img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .feather-float,
    .hero-title-gradient,
    .features-title-gradient,
    .pricing-title-gradient,
    .cta-title-gradient {
        animation: none;
    }
    
    .feature-card:hover .feature-icon {
        transform: none;
    }
    
    button:hover,
    .feature-card:hover,
    .pricing-card:hover,
    .stat-item:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .feather-decoration {
        display: none;
    }
    
    .hero-overlay {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .navbar,
    .hero-buttons,
    .cta-buttons,
    .pricing-button-basic,
    .pricing-button-featured {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    animation: float 3s ease-in-out infinite;
}

/* Improved button hover effects */
button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
    transform: translateY(-2px);
}

/* Enhanced card hover effects */
.feature-card,
.pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.pricing-card:hover {
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.15);
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title-gradient,
.features-title-gradient,
.pricing-title-gradient,
.cta-title-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

/* Feather Decorations */
.feather-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.feather-small {
    width: 20px;
    height: 20px;
}

.feather-medium {
    width: 30px;
    height: 30px;
}

.feather-large {
    width: 40px;
    height: 40px;
}

@keyframes float-feather {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.feather-float {
    animation: float-feather 4s ease-in-out infinite;
}

.feather-rotate-1 {
    transform: rotate(15deg);
}

.feather-rotate-2 {
    transform: rotate(-20deg);
}

.feather-rotate-3 {
    transform: rotate(45deg);
}
