.elementor-3841 .elementor-element.elementor-element-b486374{--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-4957763 *//* --- 全域設定與隔離 --- */
.fd-penalty-article {
    font-family: "Inter", "Helvetica Neue", Arial, "PingFang TC", "Microsoft JhengHei", sans-serif;
    line-height: 1.8;
    color: #334155;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    -webkit-font-smoothing: antialiased;
}

.fd-penalty-article h1, .fd-penalty-article h2, .fd-penalty-article h3, .fd-penalty-article h4 {
    color: #0f172a;
    font-weight: 700;
}

/* --- Hero Section --- */
.fd-hero-penalty {
    text-align: center;
    padding: 100px 30px;
    background: #0f172a; /* 深海軍藍 */
    color: #ffffff;
    border-radius: 4px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.fd-hero-penalty::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
}

.fd-badge-alert {
    display: inline-block;
    background: #ef4444; /* 警示紅 */
    color: #ffffff;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.fd-hero-penalty .fd-title {
    color: #ffffff;
    font-size: 2.6rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.fd-hero-penalty .fd-intro {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fd-hero-penalty .fd-intro strong {
    color: #f87171;
}

/* --- Symptom Section --- */
.fd-symptom-section {
    padding-bottom: 100px;
}

.fd-section-header {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.fd-sub-desc {
    text-align: center;
    color: #64748b;
    margin-bottom: 60px;
}

.fd-symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fd-symptom-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.fd-symptom-card:hover {
    transform: translateY(-5px);
    border-color: #ef4444;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
}

.fd-icon-box {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.fd-symptom-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.fd-symptom-card p { font-size: 1rem; color: #64748b; }

/* --- Logic Section (Solution) --- */
.fd-logic-section {
    padding-bottom: 120px;
}

.fd-logic-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.fd-logic-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.fd-logic-row.reverse {
    flex-direction: row-reverse;
}

.fd-visual-part {
    flex: 1;
    min-height: 280px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    border: 1px solid #e2e8f0;
}

/* Visual UI Elements */
.fd-filter-ui { text-align: center; width: 100%; }
.fd-raw-data { font-size: 0.7rem; color: #94a3b8; }
.fd-filter-mesh { margin: 15px 0; padding: 10px; border: 2px dashed #0f172a; border-radius: 4px; font-weight: bold; font-size: 0.8rem; }
.fd-trash-bin { color: #ef4444; font-weight: 900; font-size: 1.2rem; }

.fd-eeat-check { display: flex; flex-direction: column; gap: 10px; }
.fd-eeat-item { background: #fff; padding: 10px 20px; border-radius: 4px; border: 1px solid #e2e8f0; color: #94a3b8; font-size: 0.9rem; }

.fd-scanner-ui { width: 100%; height: 100px; position: relative; border: 1px solid #cbd5e1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fd-scan-beam { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: #ef4444; animation: scanDown 3s infinite linear; }
.fd-pattern { font-family: monospace; font-size: 0.6rem; color: #ef4444; }
@keyframes scanDown { 0% { top: 0; } 100% { top: 100%; } }

.fd-text-part { flex: 1; }
.fd-tag-red { display: block; color: #ef4444; font-weight: 800; font-family: monospace; font-size: 1rem; margin-bottom: 20px; letter-spacing: 1px; }
.fd-text-part h4 { font-size: 1.8rem; margin-bottom: 25px; }

/* --- Value Section --- */
.fd-value-recovery {
    padding-bottom: 100px;
}

.fd-value-box {
    max-width: 850px;
    margin: 0 auto;
    background: #0f172a;
    color: #fff;
    padding: 80px 60px;
    text-align: center;
    border-radius: 4px;
    position: relative;
}

.fd-value-box h3 { color: #fff !important; font-size: 2.2rem; margin-bottom: 30px; }
.fd-value-box p { font-size: 1.25rem; color: #94a3b8; line-height: 1.8; }

/* --- CTA Section --- */
.fd-cta-penalty {
    text-align: center;
    padding: 100px 20px;
}

.fd-cta-inner {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 80px 40px;
}

.fd-cta-inner h2 { font-size: 2.4rem; margin-bottom: 25px; }
.fd-cta-inner p { color: #64748b; margin-bottom: 50px; font-size: 1.2rem; }

.fd-btn-recovery {
    display: inline-block;
    background-color: #0f172a;
    color: #fff;
    padding: 22px 60px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.fd-btn-recovery:hover {
    background-color: #ef4444;
    transform: translateY(-3px);
    color: #fff;
}

.arrow { margin-left: 10px; transition: transform 0.2s; display: inline-block; }
.fd-btn-recovery:hover .arrow { transform: translateX(10px); }

.fd-note {
    margin-top: 40px;
    font-size: 0.95rem;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* --- Mobile RWD --- */
@media (max-width: 768px) {
    .fd-hero-penalty .fd-title { font-size: 1.8rem; }
    .fd-logic-row, .fd-logic-row.reverse { flex-direction: column; gap: 40px; }
    .fd-visual-part { width: 100%; min-height: 250px; }
}/* End custom CSS */