.elementor-3764 .elementor-element.elementor-element-46dff51{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a86f345 *//* --- 全域設定 --- */
.fd-b2b-rescue-article {
    font-family: "Inter", "Helvetica Neue", Arial, "PingFang TC", "Microsoft JhengHei", sans-serif;
    line-height: 1.7;
    color: #334155;
    background-color: #f8fafc; /* 無菌白底 */
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    border-radius: 8px;
}

.fd-b2b-rescue-article h1,
.fd-b2b-rescue-article h2,
.fd-b2b-rescue-article h3,
.fd-b2b-rescue-article h4 {
    color: #1e293b;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* --- Hero Section --- */
.fd-hero-rescue {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.fd-hero-rescue::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, #2563eb, #10b981);
}

.fd-hero-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border: 1px solid #bfdbfe;
}

.fd-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.fd-intro {
    font-size: 1.15rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

.fd-intro strong {
    color: #ef4444; /* 強調痛點，用紅色 */
    font-weight: 700;
    background: #fef2f2;
    padding: 0 4px;
}

/* --- Diagnosis Section --- */
.fd-diagnosis-section {
    padding: 20px 0 80px 0;
}

.fd-section-header {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.fd-sub-desc {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.fd-symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fd-symptom-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fd-symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.05);
    border-color: #ef4444;
}

.fd-status-light {
    position: absolute; top: 20px; right: 20px; width: 12px; height: 12px; border-radius: 50%;
}
.fd-status-light.red { background: #ef4444; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2); animation: pulseRed 2s infinite; }
@keyframes pulseRed { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.fd-icon-pulse {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: #fef2f2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.fd-symptom-card h3 { font-size: 1.25rem; margin-bottom: 15px; color: #1e293b; }
.fd-symptom-card p { font-size: 1rem; color: #64748b; margin: 0; line-height: 1.6; }

/* --- Prescription Section --- */
.fd-prescription-section {
    padding-bottom: 80px;
}

.fd-solution-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.fd-solution-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.fd-solution-row.reverse {
    flex-direction: row-reverse;
}

.fd-solution-visual {
    flex: 1;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    padding: 20px;
    position: relative;
}

/* Visual 1: Radar Screen */
.fd-radar-screen {
    width: 220px; height: 220px; background: #0f172a; border-radius: 50%; position: relative;
    border: 4px solid #334155; overflow: hidden;
    background-image: radial-gradient(#1e293b 1px, transparent 1px); background-size: 40px 40px;
}
.fd-radar-sweep {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 60%, rgba(16, 185, 129, 0.5));
    animation: sweep 3s linear infinite;
}
.fd-blip { position: absolute; width: 8px; height: 8px; background: #64748b; border-radius: 50%; }
.b1 { top: 30%; left: 40%; } .b2 { bottom: 30%; right: 20%; } .b3 { top: 20%; right: 40%; }
.fd-blip.target {
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 12px; height: 12px; background: #10b981; box-shadow: 0 0 10px #10b981; z-index: 2;
}
@keyframes sweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Visual 2: Factory UI */
.fd-factory-ui { width: 90%; display: flex; flex-direction: column; gap: 20px; }
.fd-factory-track {
    display: flex; align-items: center; justify-content: space-between; background: #f1f5f9; padding: 15px; border-radius: 50px;
}
.fd-item {
    background: #fff; padding: 10px 20px; border-radius: 30px; font-size: 0.8rem; font-weight: bold; color: #475569; border: 1px solid #cbd5e1;
}
.fd-item.final { background: #2563eb; color: #fff; border-color: #2563eb; }
.fd-arrow { color: #94a3b8; font-weight: bold; }
.fd-progress-bar { width: 100%; height: 10px; background: #e2e8f0; border-radius: 5px; overflow: hidden; }
.fd-progress-fill {
    width: 100%; height: 100%; background: linear-gradient(90deg, #3b82f6, #60a5fa);
    font-size: 0.6rem; color: #fff; display: flex; align-items: center; justify-content: center;
    animation: loadBar 2s ease-out;
}
@keyframes loadBar { from { width: 0; } }

/* Visual 3: Funnel Card */
.fd-funnel-card { width: 200px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.fd-funnel-layer { width: 100%; text-align: center; color: #fff; font-size: 0.8rem; font-weight: bold; padding: 8px 0; border-radius: 4px; }
.l1 { background: #94a3b8; width: 100%; }
.l2 { background: #64748b; width: 80%; }
.l3 { background: #475569; width: 60%; }
.fd-cta-mock {
    margin-top: 15px; background: #10b981; color: #fff; padding: 10px 30px; border-radius: 4px; font-weight: bold;
    position: relative; animation: pop 2s infinite; cursor: pointer;
}
.fd-cursor { position: absolute; bottom: -15px; right: -10px; font-size: 1.5rem; }
@keyframes pop { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.fd-solution-content {
    flex: 1;
}

.fd-step-cyan {
    display: block;
    color: #0891b2;
    font-family: monospace;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ecfeff;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 4px;
}

.fd-solution-content h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.fd-solution-content p {
    font-size: 1.1rem;
    color: #475569;
}

/* --- Recovery Section --- */
.fd-recovery-section {
    padding: 60px 20px;
    text-align: center;
}

.fd-recovery-box {
    max-width: 800px;
    margin: 0 auto;
    background: #2563eb; /* 診療藍 */
    color: #fff;
    padding: 80px 50px;
    border-radius: 16px;
    background-image: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.4);
    border: 1px solid #1e3a8a;
}

.fd-recovery-box h3 { color: #fff !important; font-size: 2rem; margin-bottom: 30px; }
.fd-recovery-box p { font-size: 1.25rem; color: #bfdbfe; line-height: 1.8; }

/* --- CTA Section --- */
.fd-cta-rescue {
    text-align: center;
    padding: 80px 20px;
}

.fd-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.fd-cta-inner h2 { font-size: 2.2rem; margin-bottom: 20px; color: #0f172a; }
.fd-cta-inner p { color: #64748b; margin-bottom: 40px; font-size: 1.15rem; }

.fd-btn-clinic {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 20px 60px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.fd-btn-clinic:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.arrow { margin-left: 10px; transition: transform 0.2s; display: inline-block; }
.fd-btn-clinic:hover .arrow { transform: translateX(5px); }

.fd-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* --- Mobile RWD --- */
@media (max-width: 768px) {
    .fd-title { font-size: 1.8rem; }
    .fd-solution-row, .fd-solution-row.reverse { flex-direction: column; gap: 40px; }
    .fd-solution-visual { width: 100%; min-height: 250px; }
}/* End custom CSS */