@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;500;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #f59e0b;
    --primary-light: #fbbf24;
    --secondary: #fb923c;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
}

.results-bg {
    background: radial-gradient(circle at top right, #fffbeb, transparent),
        radial-gradient(circle at bottom left, #fff7ed, transparent);
}

.glass-nav {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.btn-premium {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 50% 0 0 50%;
    opacity: 0.95;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
    mask-image: linear-gradient(to right, transparent, black 15%);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.price-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.05);
}

.price-card.active {
    background: #0f172a;
    border: 2px solid #f97316;
    transform: scale(1.05);
    position: relative;
    z-index: 10;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
    color: white;
}

.price-card.active h3,
.price-card.active .text-slate-800 {
    color: white !important;
}

.price-card.active .text-slate-600,
.price-card.active .text-slate-200 {
    color: #cbd5e1 !important;
    /* text-slate-300 */
}

.price-card.active .bg-white {
    background-color: transparent !important;
    border-color: #f97316 !important;
    color: white !important;
}

.price-card.active .bg-white:hover {
    background-color: #f97316 !important;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

::selection {
    background: #fdba74;
    color: #9a3412;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-bg-image {
        width: 100%;
        border-radius: 0;
        opacity: 0.15;
        -webkit-mask-image: none;
        mask-image: none;
    }

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

    .hero-section .max-w-2xl {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-section .flex-wrap {
        justify-content: center;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}