.elementor-3703 .elementor-element.elementor-element-be3ae7c{--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-57c823a *//* --- 容器與全域設定 --- */
.fd-agile-article {
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang TC", "Microsoft JhengHei", sans-serif;
    line-height: 1.7;
    color: #334155;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

/* --- 標題通用 --- */
.fd-agile-article h1,
.fd-agile-article h2,
.fd-agile-article h3,
.fd-agile-article h4 {
    color: #0f172a;
    font-weight: 700;
    line-height: 1.35;
}

/* --- Hero Section --- */
.fd-hero-agile {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, #eff6ff 0%, #fff 80%); /* 極淡藍漸層 */
    margin-bottom: 60px;
    border-bottom: 4px solid #2563eb;
}

.fd-badge-sprint {
    display: inline-block;
    background: #2563eb; /* 衝刺藍 */
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    transform: skew(-10deg); /* 傾斜代表速度 */
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0 rgba(37, 99, 235, 0.2);
}

.fd-title {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #1e3a8a;
}

.fd-intro {
    font-size: 1.15rem;
    color: #475569;
    max-width: 750px;
    margin: 0 auto;
}

.fd-intro strong {
    color: #2563eb;
    font-weight: 700;
    border-bottom: 2px solid #93c5fd;
}

/* --- Static Trap Section (Pain Points) --- */
.fd-static-section {
    padding: 20px 0 80px 0;
}

.fd-section-header {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.fd-sub-desc {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.fd-trap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.fd-trap-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.fd-trap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #2563eb;
}

.fd-icon-freeze {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    opacity: 0.8;
}

.fd-trap-card h3 { font-size: 1.25rem; margin-bottom: 15px; color: #334155; }
.fd-trap-card p { font-size: 0.95rem; color: #64748b; margin: 0; }

/* --- Loop Section (Solution) --- */
.fd-loop-section {
    padding-bottom: 80px;
}

.fd-agile-visual {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

/* Chart CSS */
.fd-chart-container {
    width: 90%;
    max-width: 700px;
    height: 300px;
    border-left: 2px solid #334155;
    border-bottom: 2px solid #334155;
    position: relative;
    margin-bottom: 40px;
    background: linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
}

.fd-chart-label { position: absolute; font-size: 0.8rem; color: #64748b; font-weight: bold; }
.y-axis { top: -25px; left: 0; }
.x-axis { bottom: -25px; right: 0; }

.fd-line { position: absolute; left: 0; border-radius: 5px; }

/* Traditional Line (Flat) */
.fd-line.traditional {
    bottom: 30%;
    width: 90%;
    height: 2px;
    background: #94a3b8;
    border-top: 2px dashed #94a3b8;
}
.fd-line.traditional .fd-line-tag { right: 0; top: -25px; color: #94a3b8; }

/* Agile Line (Steps) */
.fd-line.agile {
    bottom: 30%;
    left: 10%;
    width: 0;
    height: 0;
    border: none;
}

/* CSS Drawing Steps using Pseudo Elements/Shadows is complex, simplifying with keyframe animation blocks */
.fd-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.fd-point::after {
    content: "";
    position: absolute;
    width: 150px; /* Line length connecting points */
    height: 3px;
    background: #10b981;
    left: 100%;
    top: 50%;
    transform-origin: left center;
}

.p1 { bottom: 30px; left: 20px; }
.p1::after { transform: rotate(-30deg); width: 120px; }

.p2 { bottom: 90px; left: 130px; }
.p2::after { transform: rotate(-30deg); width: 120px; }

.p3 { bottom: 150px; left: 240px; }
.p3::after { transform: rotate(-30deg); width: 120px; opacity: 0.5; border-right: none; }

.fd-line-tag {
    position: absolute;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}
.fd-line-tag.highlight {
    color: #10b981;
    top: -180px;
    left: 350px;
    background: #ecfdf5;
    padding: 5px 10px;
    border-radius: 4px;
}

.fd-steps-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.fd-step-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    position: relative;
    border-top: 4px solid #2563eb;
}

.fd-num {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.fd-step-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: #1e3a8a; position: relative; z-index: 1; }
.fd-step-item p { font-size: 0.95rem; color: #64748b; position: relative; z-index: 1; }

/* --- Value Section --- */
.fd-value-growth {
    padding: 40px 20px;
    text-align: center;
}

.fd-growth-box {
    max-width: 700px;
    margin: 0 auto;
    background: #1e3a8a;
    color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    background-image: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.fd-growth-box h3 { color: #fff !important; font-size: 1.8rem; margin-bottom: 25px; }
.fd-growth-box p { font-size: 1.15rem; color: #bfdbfe; line-height: 1.8; }

/* --- CTA Section --- */
.fd-cta-agile {
    text-align: center;
    padding: 60px 20px;
}

.fd-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 60px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.fd-cta-inner h2 { font-size: 2rem; margin-bottom: 15px; color: #0f172a; }
.fd-cta-inner p { color: #64748b; margin-bottom: 40px; font-size: 1.1rem; }

.fd-btn-sprint {
    display: inline-block;
    background-color: #2563eb; /* 衝刺藍 */
    color: #fff;
    padding: 18px 50px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    letter-spacing: 1px;
}

.fd-btn-sprint:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.arrow { margin-left: 10px; transition: transform 0.2s; display: inline-block; }
.fd-btn-sprint:hover .arrow { transform: translateX(5px); }

.fd-note {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* --- Mobile RWD --- */
@media (max-width: 768px) {
    .fd-main-title { font-size: 1.8rem; }
    .fd-chart-container { display: none; /* 手機版太小，隱藏圖表，保留文字 */ }
}/* End custom CSS */