/* ==========================================================
   Dealer Landing Page (/dealer)
   Prefix: .dl-*
   ========================================================== */

.dealer-landing {
    color: #1f2937;
    line-height: 1.65;
}

/* ---------- Hero ---------- */
.dl-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #4c1d95 100%);
    color: #fff;
    padding: 80px 20px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}
.dl-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.dl-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ede9fe;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.dl-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}
.dl-highlight {
    background: linear-gradient(120deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.dl-hero-sub {
    font-size: 18px;
    color: #e2e8f0;
    margin: 0 0 36px;
    line-height: 1.7;
}
.dl-hero-sub strong {
    color: #fde68a;
    font-weight: 600;
}
.dl-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.dl-hero-note {
    font-size: 13px;
    color: #cbd5e1;
    margin-top: 12px;
}

/* ---------- Buttons ---------- */
.dl-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 2px solid transparent;
}
.dl-btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}
.dl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(234, 88, 12, 0.5);
    color: #fff;
}
.dl-btn-ghost {
    background: transparent;
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.3);
}
.dl-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.dl-btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

/* ---------- Sections ---------- */
.dl-section {
    padding: 80px 20px;
    background: #fff;
}
.dl-section-alt {
    background: #f8fafc;
}
.dl-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.dl-section-inner.dl-narrow {
    max-width: 780px;
}
.dl-section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 16px;
    color: #111827;
    letter-spacing: -0.01em;
}
.dl-section-sub {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin: 0 0 48px;
}

/* ---------- Target Cards ---------- */
.dl-target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.dl-target-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.dl-target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: #c7d2fe;
}
.dl-target-icon {
    font-size: 40px;
    margin-bottom: 14px;
    line-height: 1;
}
.dl-target-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111827;
}
.dl-target-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ---------- Benefit Cards ---------- */
.dl-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.dl-benefit-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.2s;
}
.dl-benefit-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.dl-benefit-num {
    font-size: 13px;
    font-weight: 700;
    color: #f59e0b;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.dl-benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #111827;
    letter-spacing: -0.01em;
}
.dl-benefit-card p {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
}
.dl-benefit-card p strong {
    color: #ea580c;
    font-weight: 700;
}

/* ---------- Steps ---------- */
.dl-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.dl-step {
    flex: 1;
    min-width: 180px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.dl-step:hover {
    border-color: #f59e0b;
    transform: translateY(-3px);
}
.dl-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}
.dl-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111827;
}
.dl-step p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}
.dl-step-arrow {
    align-self: center;
    font-size: 24px;
    color: #d1d5db;
    font-weight: 300;
    flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.dl-faq {
    margin-top: 40px;
}
.dl-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 0;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.dl-faq-item[open] {
    border-color: #c7d2fe;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.dl-faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}
.dl-faq-item summary::-webkit-details-marker {
    display: none;
}
.dl-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #9ca3af;
    font-weight: 400;
    transition: transform 0.2s;
}
.dl-faq-item[open] summary::after {
    content: '−';
    color: #6366f1;
}
.dl-faq-item p {
    padding: 0 24px 22px;
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
}
.dl-faq-item p strong {
    color: #111827;
    font-weight: 600;
}

/* ---------- Final CTA ---------- */
.dl-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 60%, #dc2626 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.dl-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}
.dl-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.dl-cta p {
    font-size: 17px;
    color: #fef3c7;
    margin: 0 0 30px;
}
.dl-cta .dl-btn-primary {
    background: #fff;
    color: #ea580c;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.dl-cta .dl-btn-primary:hover {
    background: #fffbeb;
    color: #c2410c;
}
.dl-cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: #fef3c7;
}
.dl-cta-note a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .dl-hero-title { font-size: 36px; }
    .dl-hero-sub { font-size: 16px; }
    .dl-section-title { font-size: 26px; }
    .dl-target-grid { grid-template-columns: repeat(2, 1fr); }
    .dl-benefit-grid { grid-template-columns: 1fr; }
    .dl-steps { flex-direction: column; }
    .dl-step-arrow { transform: rotate(90deg); }
    .dl-cta h2 { font-size: 28px; }
}
@media (max-width: 500px) {
    .dl-hero { padding: 60px 16px 70px; }
    .dl-hero-title { font-size: 30px; }
    .dl-section { padding: 60px 16px; }
    .dl-target-grid { grid-template-columns: 1fr; }
    .dl-faq-item summary { font-size: 15px; padding: 18px 20px; padding-right: 44px; }
    .dl-btn-lg { padding: 16px 28px; font-size: 15px; }
}
