/* ─── Framework Section ─────────────────────────────────────── */
.sec-framework {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    background: #07091f;
}

.sec-framework::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 85% 30%, rgba(58, 141, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.sec-framework::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.fw-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

.fw-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.fw-eyebrow-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.fw-eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fw-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 72px;
}

.fw-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.fw-headline .hl-gold {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fw-headline .hl-risk {
    color: #ff6b6b;
    -webkit-text-fill-color: #ff6b6b;
}

.fw-header-right {
    padding-top: 8px;
}

.fw-risk-card {
    background: rgba(255, 107, 107, 0.06);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-left: 3px solid #ff6b6b;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.fw-risk-card::before {
    content: '⚠';
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 28px;
    opacity: 0.12;
}

.fw-risk-card p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

.fw-risk-card p strong {
    color: #ff9f9f;
    font-style: normal;
}

.fw-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.58);
}

.fw-intro-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

.fw-label-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.04));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 28px 36px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.fw-label-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.fw-label-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.fw-label-content {
    flex: 1;
}

.fw-label-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.fw-label-title span {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fw-label-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.fw-label-badge {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 5-Step Framework Grid */
.fw-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 64px;
    position: relative;
}

.fw-steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3) 20%, rgba(201, 168, 76, 0.3) 80%, transparent);
    z-index: 0;
}

.fw-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.fw-step:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

.fw-step.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(201, 168, 76, 0.15);
}

.step-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.fw-step:hover .step-num,
.fw-step.active .step-num {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.step-icon {
    font-size: 22px;
    line-height: 1;
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.step-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.6;
}

/* Step detail panel */
.fw-step-detail {
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 18px;
    padding: 32px 36px;
    margin-bottom: 64px;
    display: none;
    animation: fadeInPanel 0.3s ease;
}

.fw-step-detail.visible {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.06));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 80px;
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.detail-body {
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.detail-tag {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 30px;
    padding: 4px 14px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

/* Notice */
.fw-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(58, 141, 255, 0.06);
    border: 1px solid rgba(58, 141, 255, 0.18);
    border-radius: 14px;
    padding: 20px 28px;
    margin-bottom: 64px;
}

.fw-notice-icon {
    width: 42px;
    height: 42px;
    background: rgba(58, 141, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fw-notice-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

.fw-notice-text strong {
    color: #8dc4ff;
    font-weight: 700;
}

/* CTA Row */
.fw-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.07), rgba(201, 168, 76, 0.03));
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 20px;
    padding: 36px 44px;
    position: relative;
    overflow: hidden;
}

.fw-cta-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(201, 168, 76, 0.06), transparent);
}

.fw-cta-left {
    position: relative;
    z-index: 1;
}

.fw-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.fw-cta-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.fw-cta-right {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.btn-fw-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
}

.btn-fw-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}

.btn-fw-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
}

.btn-fw-ghost:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-2px);
}