/* SMASH Lead-Gen Styles — extracted from templates/leads/base_lead.html */
@font-face { font-family: 'Font Awesome 6 Free'; font-display: swap; }
@font-face { font-family: 'Font Awesome 6 Brands'; font-display: swap; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    color: #333;
}
.lead-hero {
    background: var(--hero-gradient);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}
.lead-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.lead-hero .lead-subtitle { font-size: 1.15rem; max-width: 700px; margin: 0 auto; }
.lead-hero .brand-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 22px;
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-transform: uppercase;
}
.hero-brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}
.hero-brand-header .hero-logo {
    height: 76px;
    width: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.hero-brand-header .hero-brand-name {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    border-left: 3px solid rgba(255,255,255,0.4);
    padding-left: 20px;
    line-height: 1.2;
}
.hero-brand-header .hero-brand-sub {
    font-size: 0.75rem;
    letter-spacing: 3px;
    opacity: 0.7;
    text-transform: uppercase;
    margin-top: 4px;
}
.hero-phone { margin-top: 14px; font-size: 1.08rem; }
.hero-phone a { color: #fff; text-decoration: none; font-weight: 700; transition: opacity 0.2s; }
.hero-phone a:hover { text-decoration: underline; opacity: 0.9; }
.hero-phone i { color: var(--accent, #ffd700); margin-right: 6px; }
.hero-phone .phone-digits { opacity: 0.8; font-size: 0.9rem; }
@media (max-width: 576px) {
    .hero-brand-header { flex-direction: column; gap: 12px; }
    .hero-brand-header .hero-brand-name { font-size: 1.5rem; border-left: none; padding-left: 0; border-top: 2px solid rgba(255,255,255,0.3); padding-top: 12px; text-align: center; }
    .hero-brand-header .hero-logo { height: 64px; }
}
.form-section { max-width: 800px; margin: -30px auto 40px; position: relative; z-index: 10; }
.form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    padding: 40px;
}
.form-card h3 { font-weight: 700; margin-bottom: 5px; color: #1a1a2e; }
.form-card .section-desc { color: #6c757d; font-size: 0.9rem; margin-bottom: 20px; }
.form-card hr { border: none; border-top: 2px solid #f0f0f0; margin: 30px 0; }
.form-label { font-weight: 600; font-size: 0.9rem; color: #444; }
.form-label .required { color: var(--primary); }
.form-control, .form-select { border-radius: 10px; border: 1.5px solid #dee2e6; padding: 10px 14px; font-size: 0.95rem; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(220,53,69,0.15); }
.vin-group { position: relative; }
.vin-group .vin-input { padding-right: 140px; }
.vin-group .vin-actions { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); display: flex; gap: 6px; }
.vin-group .btn-decode, .vin-group .btn-camera { border: none; border-radius: 8px; padding: 10px 14px; font-size: 0.8rem; font-weight: 600; cursor: pointer; min-height: 44px; min-width: 44px; }
.btn-decode { background: var(--primary); color: white; }
.btn-decode:hover { background: var(--primary-dark); }
.btn-camera { background: #e9ecef; color: #495057; }
.btn-camera:hover { background: #dee2e6; }
.vin-status { font-size: 0.8rem; margin-top: 4px; }
.vin-status.success { color: #28a745; }
.vin-status.error { color: #dc3545; }
.vin-status.loading { color: #6c757d; }
.upload-zone {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafbfc;
}
.upload-zone:hover { border-color: var(--primary); background: #fff5f5; }
.upload-zone i { font-size: 2rem; color: #adb5bd; margin-bottom: 10px; }
.upload-zone p { color: #6c757d; margin: 0; font-size: 0.9rem; }
.upload-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.upload-preview .preview-item { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; position: relative; }
.upload-preview .preview-item img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview .preview-item .remove-btn {
    position: absolute; top: 2px; right: 2px;
    background: rgba(220,53,69,0.9);
    color: white; border: none; border-radius: 50%;
    width: 20px; height: 20px; font-size: 0.7rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white; border: none; border-radius: 12px;
    padding: 16px 40px; font-size: 1.1rem; font-weight: 700;
    letter-spacing: 0.5px; width: 100%; cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,53,69,0.4); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.lead-footer { background: #1a1a2e; color: #c8c8c8; padding: 30px 0; text-align: center; font-size: 0.85rem; }
.lead-footer a { color: #dee2e6; text-decoration: underline; }
.trust-badges { display: flex; justify-content: center; gap: 30px; margin-top: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.9); }
.trust-badge i { font-size: 1.1rem; color: var(--accent); }
.content-section { padding: 60px 0; }
.content-section.alt-bg { background: #f0f2f5; }
.content-section h2 { font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 15px; text-align: center; }
.content-section .section-lead { text-align: center; color: #6c757d; max-width: 700px; margin: 0 auto 40px; font-size: 1.05rem; line-height: 1.7; }
.feature-card { background: #fff; border-radius: 14px; padding: 30px 25px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); height: 100%; transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-card .feature-icon { width: 65px; height: 65px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.5rem; }
.feature-card h4 { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; color: #1a1a2e; }
.feature-card p { font-size: 0.9rem; color: #6c757d; line-height: 1.6; margin-bottom: 0; }
.step-row { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.step-number { width: 50px; height: 50px; min-width: 50px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; }
.step-content h4 { font-weight: 700; font-size: 1.05rem; color: #1a1a2e; margin-bottom: 5px; }
.step-content p { font-size: 0.92rem; color: #6c757d; line-height: 1.6; margin-bottom: 0; }
.faq-item { background: #fff; border-radius: 12px; padding: 22px 25px; margin-bottom: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.faq-item h5 { font-weight: 700; font-size: 1rem; color: #1a1a2e; margin-bottom: 8px; }
.faq-item p { font-size: 0.9rem; color: #6c757d; line-height: 1.6; margin-bottom: 0; }
.cta-banner { background: var(--hero-gradient); color: #fff; padding: 50px 0; text-align: center; }
.cta-banner h2 { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; max-width: 600px; margin: 0 auto 25px; font-size: 1.05rem; }
.cta-banner .btn-cta { display: inline-block; padding: 14px 35px; background: #fff; color: var(--primary); border-radius: 30px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: transform 0.2s; }
.cta-banner .btn-cta:hover { transform: scale(1.05); }
.sell-now-btn {
    display: inline-block; padding: 16px 40px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff !important; font-size: 1.3rem; font-weight: 700;
    text-decoration: none; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(220,53,69,0.5);
    transition: all 0.3s ease;
    animation: pulse-sell 2s ease-in-out infinite;
}
.sell-now-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    box-shadow: 0 6px 25px rgba(220,53,69,0.7);
    transform: translateY(-3px);
    color: #fff !important;
}
@keyframes pulse-sell { 0%, 100% { box-shadow: 0 4px 15px rgba(220,53,69,0.5); } 50% { box-shadow: 0 4px 25px rgba(220,53,69,0.8); } }
@media (max-width: 768px) {
    .lead-hero h1 { font-size: 1.8rem; }
    .form-card { padding: 25px 20px; }
    .form-section { margin: -20px 15px 30px; }
    .vin-group .vin-input { padding-right: 12px; }
    .vin-group .vin-actions { position: static; transform: none; margin-top: 8px; justify-content: flex-start; }
    .vin-group { display: flex; flex-direction: column; }
}
