/* CONVERSION HERO */
.hero-conversion {
    background: linear-gradient(120deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 100px 0;
    min-height: 80vh;
}

.hero-badge {
    background: rgba(247, 164, 30, 0.1);
    color: var(--accent-orange);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* HERO FORM CARD */
.hero-form-card {
    border: none;
    transition: all 0.4s ease;
}

.hero-form-card:hover {
    transform: translateY(-5px);
}

.shadow-2xl {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.15);
}

/* UTILITY */
.ls-2 { letter-spacing: 2px; }
.transition { transition: 0.3s ease; }
.shadow-hover:hover { 
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
    border-color: var(--accent-orange) !important;
}

/* CUSTOM FORM CONTROLS */
.form-control-lg {
    font-size: 1rem;
    padding: 12px 15px;
}

.custom-zoho-select {
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.custom-zoho-select:hover {
    border-color: var(--accent-orange);
}