.cta-form {
    position: relative;
    background-size: cover;
    background-position: center right;
    background-color: #f5f2ee;
    border-radius: 28px;
    overflow: hidden;
    color: var(--color-dark-950);
}

.cta-form__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 35%, rgba(255,255,255,0.3) 60%, rgba(255,255,255,0) 75%);
}

.cta-form__container {
    position: relative;
    z-index: 1;
    padding: 56px var(--section-padding-x);
    max-width: none;
}

.cta-form__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.cta-form__label {
    color: var(--color-gold-600);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.cta-form__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.2;
    margin: 0 0 18px;
    max-width: 520px;
}

.cta-form__description {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #5b6270;
    max-width: 480px;
    margin: 0 0 32px;
}

/* ===== Форма CF7 ===== */

.cta-form__form {
    max-width: 480px;
    margin-bottom: 20px;
}

.cta-form__form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 16px;
}

.cta-form__form input[type="text"],
.cta-form__form input[type="tel"],
.cta-form__form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e4e6ea;
    border-radius: 14px;
    background: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}
.cta-form__form input:focus {
    border-color: var(--color-gold-500);
}

.cta-form__form input[type="submit"] {
    width: 100%;
    padding: 16px 24px;
    background: var(--color-gold-500);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}
.cta-form__form input[type="submit"]:hover {
    box-shadow: var(--shadow-glow);
}

.cta-form__form .wpcf7-response-output {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
}

.cta-form__form-placeholder {
    padding: 20px;
    border: 1px dashed #d8dbe0;
    border-radius: 14px;
    color: #a2a7b3;
    font-family: var(--font-sans);
    font-size: 14px;
}

/* ===== Строки доверия ===== */

.cta-form__trust-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.cta-form__trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #5b6270;
}
.cta-form__trust-note svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold-600);
    flex-shrink: 0;
}

/* ===== Карточка эксперта ===== */

.cta-form__expert {
    position: relative;
    background: rgba(255, 253, 249, 0.85) !important;
    border: 1px solid rgba(229, 168, 83, 0.2) !important;
    border-radius: 20px;
    padding: 28px;
    color: var(--color-dark-950);
    box-shadow: 0 20px 50px rgba(17, 22, 34, 0.12);
}

.cta-form__expert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-gold-500);
    color: #fff;
    margin-bottom: 16px;
}
.cta-form__expert-badge svg { width: 20px; height: 20px; }

.cta-form__expert-name {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 4px;
}
.cta-form__expert-role {
    color: var(--color-gold-600);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px;
}
.cta-form__expert-subtitle {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #8a90a0;
    margin: 0 0 18px;
}

.cta-form__expert-facts {
    list-style: none;
    margin: 0 0 20px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(17, 22, 34, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-form__expert-facts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #3a3f4a;
    line-height: 1.4;
}
.cta-form__expert-fact-icon {
    width: 17px;
    height: 17px;
    color: var(--color-gold-600);
    flex-shrink: 0;
    margin-top: 1px;
}
.cta-form__expert-fact-icon svg { width: 100%; height: 100%; }

.cta-form__expert-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 22, 34, 0.08);
}
.cta-form__expert-footer-icon {
    width: 22px;
    height: 22px;
    color: var(--color-gold-600);
    flex-shrink: 0;
}
.cta-form__expert-footer-icon svg { width: 100%; height: 100%; }
.cta-form__expert-footer-text { display: flex; flex-direction: column; }
.cta-form__expert-footer-title {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gold-600);
}
.cta-form__expert-footer-desc {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #8a90a0;
}

/* ===== Нижняя плашка ===== */

.cta-form__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(17, 22, 34, 0.08);
}
.cta-form__bottom-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 220px;
}
.cta-form__bottom-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(229, 168, 83, 0.3);
    color: var(--color-gold-600);
    flex-shrink: 0;
}
.cta-form__bottom-feature-icon svg { width: 20px; height: 20px; }
.cta-form__bottom-feature-text { display: flex; flex-direction: column; gap: 2px; }
.cta-form__bottom-feature-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
}
.cta-form__bottom-feature-desc {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #8a90a0;
    line-height: 1.4;
}

/* ===== Адаптив ===== */

@media (max-width: 1199px) {
    .cta-form__top { grid-template-columns: 1fr; }
    .cta-form__overlay { background: linear-gradient(180deg, rgba(255,255,255,0.97) 60%, rgba(255,255,255,0.85)); }
}

@media (max-width: 640px) {
    .cta-form__container { padding: 40px 20px; }
    .cta-form__bottom { flex-direction: column; }
}