:root {
    --primary: #2a3481;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --border-light: #E5E7EB;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
}

/* ================= HERO ================= */

.early-access-section {
    padding: 110px 0 40px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Layout */
.early-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

/* IZQUIERDA */
.early-content {
    flex: 1;
    text-align: left;
}

/* Avatar */
.avatars {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatars img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texto */
.early-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
}

.early-social-proof {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    color: var(--text-muted);
}

.highlight-number {
    color: #A5C230;
    font-weight: 600;
}

/* Contadores */
.early-countdown {
    margin-top: 32px;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

.time-box {
    background: #cfd2d5;
    padding: 12px 16px;
    border-radius: 14px;
    min-width: 72px;
    text-align: center;
}

.time-box strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.time-box span {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* DERECHA */
.early-mockup-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-blur {
    position: absolute;
    width: 520px;
    height: 260px;
    background: rgba(51, 64, 158, 0.25);
    filter: blur(100px);
    border-radius: 40px;
    z-index: 1;
}

.early-mockup {
    position: relative;
    z-index: 2;
    max-width: 600px;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .early-hero {
        flex-direction: column;
        text-align: center;
    }

    .early-content {
        text-align: center;
    }

    .early-social-proof,
    .early-countdown {
        justify-content: center;
    }

    .early-mockup-wrapper {
        margin-top: 48px;
    }
}

/* ================= FAQ ================= */

.faq-section .container {
    max-width: 820px;
}

.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.early-text {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 56px;
}

/* Accordion */
.accordion-item {
    border: none !important;
    border-bottom: 1px solid var(--border-light) !important;
}

.accordion-button {
    padding: 22px 0 !important;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark) !important;
    background: transparent !important;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:hover {
    color: var(--primary) !important;
}

.accordion-body {
    padding: 0 0 24px 0 !important;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Iconos + / - */
.accordion-button::after {
    background-image: none !important;
    content: "+" !important;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary);
    transform: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: "−" !important;
}
