:root {
    --bg-light: #FAFBFF;
    --accent: #978EF9;
    --primary: #1036B1;
}

/* ===== Fix Overflow on Mobile ===== */
html, body {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-light);
}

/* Hero Section - Ultra Minimal */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(151, 142, 249, 0.1);
    color: var(--accent);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.hero-title {
    color: var(--primary);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--primary);
    opacity: 0.65;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(151, 142, 249, 0.03);
    border-left: 2px solid var(--accent);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(151, 142, 249, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
}

.feature-text h6 {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.feature-text small {
    color: var(--primary);
    opacity: 0.5;
    font-size: 0.85rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-meta {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 54, 177, 0.06);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    opacity: 0.6;
    font-size: 0.9rem;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 10px 30px rgba(16, 54, 177, 0.08));
}

/* Quote Section - Minimal */
.quote-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(151, 142, 249, 0.1);
    color: var(--accent);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
}

.quote-card {
    background-color: #ffffff;
    border-left: 3px solid var(--accent);
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(16, 54, 177, 0.04);
    transition: all 0.3s ease;
}

.quote-card:hover {
    box-shadow: 0 8px 24px rgba(16, 54, 177, 0.08);
    transform: translateY(-2px);
}

.quote-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(151, 142, 249, 0.1);
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.quote-text {
    color: var(--primary);
    opacity: 0.75;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 54, 177, 0.06);
}

.quote-author h6 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.quote-author small {
    color: var(--primary);
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Steps Section - Clean */
.steps-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.step-card {
    background-color: var(--bg-light);
    padding: 2rem;
    height: 100%;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.step-card:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(16, 54, 177, 0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(151, 142, 249, 0.1);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(151, 142, 249, 0.1);
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.step-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.step-description {
    color: var(--primary);
    opacity: 0.65;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Carousel Custom */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary);
    border-radius: 6px;
    padding: 1.5rem;
}

.carousel-indicators button {
    background-color: var(--accent);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        margin-bottom: 2rem;
        flex-direction: column;
    }

    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .quote-card,
    .step-card {
        padding: 1.5rem;
    }
}
