:root {
    --primary-navy: #1a365d;
    --secondary-orange: #ff6b35;
    --accent-gray: #f7fafc;
    --text-charcoal: #2d3748;
    --success-green: #38a169;
    --warning-amber: #d69e2e;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    min-height: 100vh;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--secondary-orange) 0%,
        #ff8c42 100%
    );
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.package-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid var(--secondary-orange);
    transform: scale(1.05);
}

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

.package-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2d5a87 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-orange);
    line-height: 1;
}

.package-features {
    padding: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-orange);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2d5a87 100%);
    color: white;
    padding: 1.5rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.language-switch {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switch:hover {
    transform: scale(1.05);
}

.quiz-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quiz-option {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.quiz-option:hover {
    border-color: var(--secondary-orange);
    background: rgba(255, 107, 53, 0.05);
}

.quiz-option.selected {
    border-color: var(--secondary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--secondary-orange) 0%,
        #ff8c42 100%
    );
    transition: width 0.3s ease;
}
.kimi-brand-container{
    display: none !important;
}
