/* Index */
.index-header {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.03em;
}

.index-subheader {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.index-button {
    margin-top: 1rem;
    padding: 0.8rem 4rem;
    font-weight: 600;
    border-radius: 12px;
}

.index-hero {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.06));
}

.index-hero-one {
    max-height: 650px;
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.index-hero-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 650px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover */
.index-hero:hover .index-hero-two {
    opacity: 1;
}

.index-hero:hover .index-hero-one {
    opacity: 0;
}

@media (min-width: 992px) {
    .index-hero-one, .index-hero-two {
        transform: scale(1.05);
    }
}

.index-qr img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 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(--primary-100);
    height: 100%;
    left: calc(57px / 2);
}
