.cta {
    background: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.cta__container {
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.cta__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.cta__image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: -8rem auto 0;
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border-top: 8px solid rgba(var(--glass-border-rgb), 0.5);
    border-left: 8px solid rgba(var(--glass-border-rgb), 0.35);
    border-right: 8px solid rgba(var(--glass-border-rgb), 0.35);
    border-bottom: none;
    background: var(--white);
}

.cta__image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(var(--white-rgb), 0) 0%, var(--white) 100%);
    pointer-events: none;
    z-index: 1;
}

.cta__preview-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.cta__title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.cta__subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta__btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.cta__primary-btn {
    background: var(--secondary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    animation: cta-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--secondary-green-rgb), 0.4); }
    50% { box-shadow: 0 0 20px 6px rgba(var(--secondary-green-rgb), 0.25); }
}

.cta__primary-btn:hover {
    background: var(--secondary-green-hover);
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 6px 20px rgba(var(--secondary-green-rgb), 0.3);
}

.cta__secondary-btn {
    background: var(--white) !important;
    color: var(--text-primary) !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    font-size: 1.125rem !important;
    font-weight: var(--font-weight-regular) !important;
    text-decoration: none !important;
    border: 1px solid var(--grey-03) !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    display: inline-block;
}

.cta__secondary-btn:hover {
    background: var(--grey-08) !important;
    border-color: var(--grey-09) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 1024px) {
    .cta { padding-top: 9rem; }
    .cta__title { font-size: 3rem; }
    .cta__subtitle { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .cta { padding-top: 8rem; padding-left: 0; padding-right: 0; }
    .cta__btn-group { width: 100%; max-width: 500px; margin: 0 auto 4rem; gap: 0.75rem; }
    .cta__primary-btn, .cta__secondary-btn { padding: 0.875rem 1.5rem !important; }
}

@media (max-width: 480px) {
    .cta { padding-top: 4rem; padding-bottom: 4rem; }
    .cta__title { font-size: 2.5rem; }
    .cta__subtitle { font-size: 1.25rem; margin-bottom: 3rem; }
    .cta__btn-group {
        flex-direction: column-reverse;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 4rem;
        gap: 1.5rem;
        display: flex;
        align-items: stretch;
    }
    .cta__primary-btn, .cta__secondary-btn {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        padding: 1rem 1.5rem !important;
        box-sizing: border-box !important;
    }
    .cta__image-wrapper { margin-top: 0; border: none; }
}
