.cta-section {
    background-color: var(--bg-tertiary);
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.cta-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.cta-title-part1,
.cta-title-part3 {
    color: var(--text-primary);
}

.cta-title-part2 {
    color: var(--accent-color);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.email-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.email-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.email-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-family: 'Rubik', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.email-input:focus {
    border-color: var(--accent-color);
}

.email-input::placeholder {
    color: var(--text-tertiary);
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #f5a962;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #e0954a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 169, 98, 0.3);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.cta-trust-text {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-title {
        font-size: 2.25rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-form {
        flex-direction: column;
        width: 100%;
    }

    .email-input-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.875rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }
}
