body {
    font-family: 'Inter', sans-serif;
    background-color: #0c111c;
    color: #e5e7eb;
}

.font-anton {
    font-family: 'Anton', sans-serif;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(8px) brightness(0.7);
    z-index: 0;
    transform: scale(1.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to top, #0c111c 15%, rgba(251, 191, 36, 0.1) 40%, transparent 70%);
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

/* --- Color Schemes --- */
.gradient-text-gold {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.accent-gold { color: #FBBF24; }
.btn-gold { background-color: #FBBF24; color: #111827; transition: background-color 0.3s ease, transform 0.2s ease; }
.btn-gold:hover { background-color: #F59E0B; transform: scale(1.05); }
.btn-red { background-color: #EF4444; color: #FFFFFF; transition: background-color 0.3s ease, transform 0.2s ease; }
.btn-red:hover { background-color: #DC2626; transform: scale(1.05); }


/* Package-specific colors */
.package-card {
    background-color: #111827;
    border: 1px solid #1f2937;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Purple */
.border-purple-500 { border-color: #8b5cf6; }
.text-purple-400 { color: #a78bfa; }
.bg-purple-600 { background-color: #7c3aed; }
.bg-purple-600:hover { background-color: #6d28d9; }

/* Gold */
.border-yellow-500 { border-color: #f59e0b; }
.text-yellow-400 { color: #fbbf24; }
.bg-yellow-500 { background-color: #f59e0b; }
.bg-yellow-500:hover { background-color: #d97706; }

/* Platinum */
.border-gray-400 { border-color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.bg-gray-400 { background-color: #9ca3af; }
.bg-gray-400:hover { background-color: #6b7280; }

/* Black */
.scale-105 { transform: scale(1.05); }

/* FAQ Accordion */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary .plus-icon {
    transform: rotate(45deg);
}

.success-story-card {
        background-color: #111827;
}

.team-member-card {
    background-color: #111827;
}
.trial-feature-card {
    background-color: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.trial-feature-card:hover {
    transform: translateY(-8px);
    background-color: rgba(39, 39, 42, 0.7);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
}