﻿.ac-hero {
    background: #ffffff;
    text-align: center;
}

.ac-hero-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.06;
}

.ac-hero-sub {
    max-width: 52rem;
    margin: 0.75rem auto 0;
}

/* surface */
.ac-surface {
    border-radius: 24px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 22px 50px rgba(0,0,0,0.09);
    backdrop-filter: blur(12px);
}

/* mini cards */
.ac-mini-card {
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 0.95rem 1rem;
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
    backdrop-filter: blur(10px);
    display: grid;
    gap: 0.35rem;
    align-content: start;
    transition: transform 180ms ease, box-shadow 180ms ease;
    will-change: transform;
}

    .ac-mini-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 44px rgba(0,0,0,0.10);
    }

.ac-mini-title {
    font-weight: 750;
    letter-spacing: -0.01em;
}

.ac-mini-text {
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.35;
}

/* info + stats cards */
.ac-info-card {
    border-radius: 20px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 42px rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
}

.ac-stat-card {
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
    backdrop-filter: blur(10px);
}

/* CTA */
.ac-cta-card {
    border-radius: 24px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 22px 50px rgba(0,0,0,0.09);
    backdrop-filter: blur(12px);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .ac-cta-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 70px rgba(0,0,0,0.12);
    }


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .ac-mini-card,
    .vc-benefits-pop .vc-benefits-list-item,
    .vc-benefits-pop .benefits-float-card,
    .vc-benefits-pop .benefits-proof,
    .ac-cta-card {
        transition: none;
    }
}
