.cf-wrap {
    width: 100%;
}

/* ── TITLE ── */
.cf-title {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    font-style: italic;
    font-family: Georgia, serif;
    margin: 0 0 40px;
}

/* ── FORM ── */
.cf-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cf-row {
    display: grid;
    gap: 16px;
}

.cf-row--2 {
    grid-template-columns: 1fr 1fr;
}

/* ── FIELD ── */
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

/* ── INPUT — același stil ca newsletter ── */
.cf-input {
    background: #8DA39920;
    border: 1px solid #8DA399 !important;
    border-radius: 16px !important;
    padding: 12px 24px !important;
    font-size: 15px;
    color: #1a1a1a !important;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    width: 100%;
    font-family: inherit;
}

.cf-input::placeholder {
    color: #888;
}

.cf-input:focus {
    border-color: #4E635A !important;
    background: #8DA39930;
}

/* ── TEXTAREA ── */
.cf-textarea {
    resize: vertical;
    min-height: 140px;
    border-radius: 16px !important;
    line-height: 1.7;
}

/* ── BUTTON ── */
.cf-btn {
    background: linear-gradient(to right, #4E635A, #8DA399);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(78, 99, 90, 0.3);
    margin-top: 8px;
}

.cf-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #8DA399, #4E635A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cf-btn:hover::after {
    opacity: 1;
}

.cf-btn-text,
.cf-btn-loading {
    position: relative;
    z-index: 1;
}

.cf-btn:hover {
    box-shadow: 0 8px 25px rgba(78, 99, 90, 0.45);
    transform: translateY(-2px);
}

.cf-btn:disabled {
    cursor: default;
    transform: none;
}

.cf-btn--success {
    background: #4E635A;
    opacity: 1 !important;
    pointer-events: none;
}

/* ── MESSAGES ── */
.cf-message {
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.cf-message--error {
    color: #E84855;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .cf-row--2 {
        grid-template-columns: 1fr;
    }

    .cf-btn {
        width: 100%;
        text-align: center;
    }
}

.cf-subtitle {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: -24px 0 32px;
}