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

:root {
    --bg-main: #fcfdfe;
    --bg-secondary: #ffffff;
    --navy-950: #0f172a;
    --navy-900: #1e293b;
    --navy-700: #334155;
    --navy-500: #64748b;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --gold: #fbbf24;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--navy-900);
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange-500);
}

/* Premium Light Effects */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.glass-card:hover {
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.text-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.glow-orange {
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Multi-step Form Box Buttons */
.option-btn {
    @apply w-full p-5 mb-4 rounded-xl border-2 border-slate-100 bg-white text-left transition-all hover:border-orange-200 hover:bg-orange-50/30 flex items-center justify-between shadow-sm;
}

.option-btn.selected {
    @apply border-orange-500 bg-orange-50 ring-2 ring-orange-500/20;
}

.option-btn .check-circle {
    @apply w-6 h-6 rounded-full border-2 border-slate-200 flex items-center justify-center transition-all;
}

.option-btn.selected .check-circle {
    @apply border-orange-500 bg-orange-500 text-white;
}

/* Step Content */
.step-content {
    display: none;
}
.step-content.active {
    display: block;
    animation: fadeInSlideUp 0.5s ease forwards;
}

@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loader */
#main-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(249, 115, 22, 0.1);
    border-top: 3px solid var(--orange-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Video Testimonial */
.video-card {
    position: relative;
    aspect-ratio: 9/16; /* Reel-style portrait ratio */
    width: 100%;
    max-width: 450px; /* Increased for better visibility */
    margin: 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    background: #000;
    border: 6px solid #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .video-card {
        max-width: 350px;
    }
}


/* Multi-step Form Box Buttons */
.option-btn {
    @apply w-full p-6 mb-4 rounded-lg border-2 border-slate-200 bg-white text-left transition-all hover:border-brand-orange hover:bg-orange-50/20 flex items-center justify-between shadow-sm;
}

.option-btn.selected {
    @apply border-brand-orange bg-orange-50 ring-4 ring-orange-500/10;
}

.option-btn span {
    @apply text-lg;
}

/* Stats Section Light */
.stats-card-light {
    @apply bg-white rounded-[3rem] p-12 border border-slate-100 shadow-2xl;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover .play-btn {
    background: var(--orange-500);
    border-color: var(--orange-500);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4);
}

/* Sticky Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.sticky-cta.show {
    transform: translateY(0);
}

