.scribe-hero {
    min-height: 50vh;
    background: linear-gradient(rgba(70, 62, 63, 0.7), rgba(70, 62, 63, 0.7)), url('/import/photo-1559027615-cd4628902d4a.jpg');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.impact-image-container {
    position: relative;
    border-radius: 40px;
    padding: 10px;
    background: linear-gradient(135deg, #fff 0%, #fdfaf7 100%);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.impact-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 35px;
    filter: sepia(0.15) saturate(1.2) contrast(1.05); /* Warm, positive tone */
    transition: transform 0.5s ease;
}

.impact-image-container:hover .impact-img {
    transform: scale(1.02);
}

.impact-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 800;
    color: var(--primary-bg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-sm {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bg-light-warning {
    background-color: rgba(255, 193, 7, 0.1);
}

.scribe-form-container {
    background: white;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    margin-top: -100px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.02);
}

.form-step-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-bg);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-step-title i {
    color: var(--gold);
}

.scribe-input {
    background: #fdfaf7;
    border: 2px solid #f1f1f1;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.scribe-input:focus {
    background: white;
    border-color: var(--gold);
    box-shadow: none;
    outline: none;
}

.info-note {
    background: #fdfaf7;
    border-radius: 20px;
    padding: 30px;
    border-left: 5px solid var(--gold);
    margin: 40px 0;
}

.btn-request {
    background: var(--primary-bg);
    color: var(--gold) !important;
    padding: 20px 50px;
    border-radius: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    width: 100%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-request:hover {
    background: var(--secondary-bg);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(70, 62, 63, 0.2);
}

.step-box {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    border: 1px solid #eee;
}

@media (max-width: 991px) {
    .scribe-form-container { padding: 40px 20px; margin-top: -50px; }
}
