/* Index */
.index-icon-container {
    background: rgba(var(--primary-rgb), 0.1);
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    color: var(--primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card:hover .index-icon-container {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary);
    color: white;
}

.index-brand-icon-container {
    background: var(--primary-100);
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    border-radius: calc(2 * var(--border-radius));
}

.index-brand-icon-container svg {
    width: 30px;
    height: auto;
    transition: all .3s ease-in-out;
}

.index-container {
    width: 100%;
    padding: 0;
}

@media (min-width: 576px) {
    .index-container {
        width: 100%;
        background: unset;
    }
}

.index-highly-rounded {
    border-radius: 2rem;
}

.index-header {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.index-subheader {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.6;
    font-weight: 400;
}

/* Glassmorphism Cards */
.card.border-gray-50 {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    transition: all .3s ease;
}

.card.border-gray-50:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[data-theme-style="dark"] .card.border-gray-50 {
    background: rgba(var(--gray-900-rgb), 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.index-background-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute !important;
}

.index-background {
    position: absolute;
    top: 2rem;
    width: 100%;
    height: auto;
    animation: index-background 20s ease-in-out alternate infinite;
}

@keyframes index-background {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

@media (min-width: 768px) {
    .index-background {
        top: -.5rem;
    }
}


.index-register-container {
    padding: 6rem 0;
}

/* Index testimonial */
.index-testimonial-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    transform: translateY(-70%);
    border: 4px solid var(--white);
    background: var(--white);
    position: absolute;
    left: 50%;
    margin-left: -52px;
}

.index-testimonial-comment {
    margin-left: 18px;
}

/* Index FAQ */
.index-faq svg {
    transition: all .15s;
    color: var(--primary-800);
}

/* Timeline */
.index-timeline {
    position: relative;
}

.index-timeline::before {
    content: '';
    position: absolute;
    border-left: 2px solid var(--gray-200);
    height: 100%;
    left: calc(57px / 2);
}

/* Index call to action */
.index-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
    color: white !important;
    border: none;
}

.index-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.index-cta a.btn {
    color: var(--primary-900);
    background: white;
    border-color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.index-cta a.btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.hero-floating-animation {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.badge-premium {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
}
