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

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

.hero-section {
    height: 85vh;
    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.6);
    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 5%, rgba(96, 165, 250, 0.15) 30%, transparent 60%);
}

.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 Scheme: Blue --- */
.gradient-text-blue {
    background: linear-gradient(to right, #60A5FA, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.accent-blue { color: #60A5FA; }
.btn-blue { background-color: #60A5FA; color: #111827; transition: background-color 0.3s ease, transform 0.2s ease; }
.btn-blue:hover { background-color: #3B82F6; transform: scale(1.05); }

/* Form Inputs */
.form-input {
    background-color: #1f2937;
    border: 1px solid #374151;
    color: #e5e7eb;
}
.form-input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}

/* FAQ Accordion */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary .plus-icon {
    transform: rotate(45deg);
}
.video-card {
    background-color: #111827;
}
.video-card-play button {
    transition: transform 0.3s ease, background-color 0.3s ease;
}
    .video-card:hover .video-card-play button {
    transform: scale(1.1);
    background-color: rgba(96, 165, 250, 1);
}
.pricing-card {
    background-color: #111827;
    border: 1px solid #1f2937;
}