/* CTA Section */
.cta {
    padding: 6rem 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.cta-feature i {
    color: #10B981;
    font-size: 0.875rem;
}

.cta-actions {
    text-align: center;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-note i {
    color: var(--primary-color);
}

.cta-timer {
    margin-top: 1.5rem;
    text-align: center;
}

.cta-timer span {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 60px;
}

.time-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.time-label {
    font-size: 0.75rem;
    opacity: 0.9;
}
