/* =============================================
   SECTION 6 — FINAL CTA / FORM
   ============================================= */

.final-conversion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b0a7d 0%, #34108f 100%);
    position: relative;
    overflow: hidden;
}

.final-conversion-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.05;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

/* Row / two-column layout */
.conversion-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 54px;
}

/* Content side */
.cta-tag {
    display: inline-block;
    padding: 6px 14px;
    background: transparent;
    color: #d89b27;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 0;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta-headline-main {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-accent { color: #d89b27; }

.cta-subtext-main {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    max-width: 470px;
    margin-bottom: 30px;
}

.reassurance-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
}

.bullet-item i {
    color: #d89b27;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.conversion-pulse-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 700;
}

.conversion-pulse-note i {
    color: #d89b27;
}

/* Form box */
.cta-form-box {
    background: white;
    border-radius: 22px;
    padding: 24px 24px 20px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    max-width: 520px;
    margin-left: auto;
}

.form-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.conversion-form .form-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.conversion-form .input-group {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d9d9e2;
    transition: border-color 0.2s;
    background: #fff;
}

.mobile-input-group .country-code {
    min-width: 52px;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
}

.conversion-form .input-group:focus-within {
    border-color: #d89b27;
    box-shadow: 0 0 0 2px rgba(216, 155, 39, 0.15);
}

.input-group-text {
    background: #fff;
    padding: 10px 14px;
    border: none;
    color: #6d6d7a;
    font-size: 0.9rem;
    border-right: 1px solid #e8e8ef;
    display: flex;
    align-items: center;
}

.form-control {
    flex: 1;
    border: none;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    background: white;
    color: #333;
}

.form-control::placeholder { color: #555; }

.form-select-field {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333;
    background: white;
    outline: none;
    cursor: pointer;
}

.form-select-field:focus {
    box-shadow: none;
}

.select-input-group .input-group-text {
    border-right: 1px solid #e8e8ef;
}

.select-input-group {
    border-color: #d89b27;
}

.mb-3 { margin-bottom: 18px; }

.form-submit-btn {
    width: 100%;
    padding: 13px;
    background: #d68d05;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background: #bd7b04;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 141, 5, 0.35);
}

.form-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-status {
    min-height: 18px;
    margin-top: 10px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
}

.form-status.success {
    color: #15803d;
}

.form-status.error {
    color: #dc2626;
}

.form-helper-text {
    text-align: center;
    font-size: 0.86rem;
    color: #333;
    margin-top: 10px;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.72rem;
    color: #7a7a84;
    margin-top: 4px;
}

.form-disclaimer i { color: #7a7a84; margin-right: 4px; }

/* Backup CTA */
.backup-cta {
    display: none;
}

.backup-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-backup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-backup.call {
    background: var(--primary);
    color: white;
}

.btn-backup.call:hover {
    background: #1e0758;
    transform: translateY(-2px);
}

.btn-backup.whatsapp {
    background: #25d366;
    color: white;
}

.btn-backup.whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
}

.last-push {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .conversion-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-form-box {
        max-width: 100%;
        margin-left: 0;
    }

    .cta-form-box {
        padding: 28px 22px;
    }
}
