.strategy-section {
    background-color: #0d1629;
    padding: 90px 5%;
    color: #ffffff;
    border-bottom: 1px solid rgba(54, 123, 245, 0.2);
}

.strategy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.strategy-left { flex: 1.1; }

.strategy-left .badge {
    display: inline-block;
    background-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.strategy-left h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.strategy-left h2 .highlight { color: #f59e0b; }

.strategy-steps { display: flex; flex-direction: column; gap: 25px; margin-bottom: 30px; }
.step-item { display: flex; align-items: flex-start; gap: 18px; }

.step-num {
    background-color: #121d36;
    color: #f59e0b;
    border: 1px solid #1c2a4d;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-desc h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px 0; color: #ffffff; }
.step-desc p { font-size: 14px; color: #7a8ea6; margin: 0; line-height: 1.5; }

.strategy-safe-box {
    background-color: rgba(2, 177, 40, 0.08);
    border: 1px solid rgba(2, 177, 40, 0.3);
    color: #02b128;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.strategy-action .btn-yellow {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0d1629;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
    transition: filter 0.2s;
}

.strategy-action .btn-yellow:hover { filter: brightness(1.1); }

.strategy-right { flex: 1; }

.simulation-card {
    background-color: #121d36;
    border: 1px solid #1c2a4d;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sim-header-title { font-size: 14px; color: #7a8ea6; font-weight: 600; margin-bottom: 20px; }

.sim-principal-box {
    background-color: #0b1324;
    border: 1px solid #1c2a4d;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.sim-principal-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f59e0b;
}

.principal-label { font-size: 13px; color: #7a8ea6; margin-bottom: 5px; }
.principal-value { font-size: 26px; font-weight: 800; color: #ffffff; margin-bottom: 5px; }
.principal-sub { font-size: 12px; color: #596ee0; }

.sim-returns-grid { display: flex; gap: 10px; margin-bottom: 20px; }
.return-box { flex: 1; background-color: #0b1324; border: 1px solid #1c2a4d; border-radius: 10px; padding: 15px 10px; text-align: center; }
.return-box .period { display: block; font-size: 12px; color: #7a8ea6; margin-bottom: 5px; }
.return-box .profit { display: block; font-size: 16px; font-weight: 800; color: #f59e0b; margin-bottom: 3px; }
.return-box .rate { display: block; font-size: 11px; color: #596ee0; }

.sim-buy-box {
    background-color: rgba(11, 19, 36, 0.7);
    border: 1px solid rgba(54, 123, 245, 0.25);
    border-radius: 12px;
    padding: 20px;
}

.buy-box-title { font-size: 13px; font-weight: 700; color: #02b128; margin-bottom: 15px; }
.buy-list { list-style: none; padding: 0; margin: 0 0 12px 0; display: flex; flex-direction: column; gap: 10px; }
.buy-list li { display: flex; justify-content: space-between; font-size: 13px; color: #c0cce6; border-bottom: 1px dashed rgba(28, 42, 77, 0.8); padding-bottom: 8px; }
.buy-list li:last-child { border-bottom: none; padding-bottom: 0; }
.buy-list .count strong { color: #ffffff; }
.buy-notice { font-size: 11px; color: #7a8ea6; text-align: right; margin: 0; }

@media (max-width: 968px) {
    .strategy-container { flex-direction: column; }
}