.real-cost-section {
    color: #fff;
    font-family: "DM Sans", sans-serif;
    position: relative;
    overflow: hidden;
}
.real-cost-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,191,166,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.real-cost-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.real-cost-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
#rcStep3 .real-cost-label {
    margin-bottom: 0;
}
.real-cost-label--section {
    text-align: center;
    margin-bottom: 3rem;
}
.real-cost-label--section span {
    display: inline-block;
    background: rgba(0,191,166,0.1);
    border: 1px solid rgba(0,191,166,0.25);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #00BFA6;
}
.real-cost-compare-row #rcSpentAmount {
    font-family: Syne, sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: rgb(255, 80, 80);
    letter-spacing: -0.02em;
}
.real-cost-heading {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    color: #fff;
    text-align: center;
}
.real-cost-heading em {
    color: #00BFA6;
    font-style: normal;
}
.real-cost-sub {
    color: rgba(255,255,255,0.4);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
}
.real-cost-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    overflow: auto;
}
.real-cost-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.real-cost-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease;
    cursor: default;
}
.real-cost-step-circle--completed {
    border: 2px solid rgba(0,191,166,0.4);
    background: rgba(0,191,166,0.06);
    cursor: pointer;
}
.real-cost-step-circle--completed svg {
    width: 14px;
    height: 14px;
}
.real-cost-step-circle--active {
    border: 2px solid #00BFA6;
    background: rgba(0,191,166,0.12);
    color: #00BFA6;
}
.real-cost-step-circle--pending {
    border: 2px solid rgba(255,255,255,0.12);
    background: transparent;
    color: rgba(255,255,255,0.25);
}
.real-cost-step-label {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    white-space: nowrap;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    transition: color 0.4s ease;
}
.real-cost-step-label--completed { color: rgba(0,191,166,0.5); }
.real-cost-step-label--active { color: #00BFA6; }
.real-cost-step-label--pending { color: rgba(255,255,255,0.2); }
.real-cost-step-connector {
    width: 80px;
    height: 1px;
    margin: 0 0.75rem 1.4rem;
    flex-shrink: 0;
    transition: background 0.4s ease;
}
.real-cost-card {
    background: #111214;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    max-width: 680px;
    margin: 0 auto;
}
.real-cost-card--result {
    border: 1px solid rgba(0,191,166,0.15);
}
.real-cost-step-title {
    font-family: "Syne", sans-serif !important;
    font-weight: 700;
    font-size: clamp(1.3rem, 3vw, 1.9rem) !important;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em !important;
}
.real-cost-step-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem !important;
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}
.real-cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.real-cost-option {
    padding: 1.1rem 1.25rem;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.18s ease;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.real-cost-option:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
}
.real-cost-option--selected {
    border-color: #00BFA6;
    background: rgba(0,191,166,0.1);
    color: #00BFA6;
}
.real-cost-option-check {
    width: 16px;
    height: 16px;
}
.real-cost-slider-group {
    margin-bottom: 2.5rem;
}
.real-cost-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.real-cost-slider-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-family: "DM Sans", sans-serif;
    margin-bottom: 0.2rem;
}
.real-cost-slider-hint {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-family: "DM Sans", sans-serif;
}
.real-cost-slider-value {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.03em;
    color: #fff;
    transition: color 0.2s;
}
.real-cost-slider-value--zero {
    color: rgba(255,255,255,0.2);
}
.real-cost-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
}
.real-cost-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00BFA6;
    cursor: pointer;
    border: 2px solid #0d0d0f;
    box-shadow: 0 0 6px rgba(0,191,166,0.3);
}
.real-cost-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00BFA6;
    cursor: pointer;
    border: 2px solid #0d0d0f;
}
.real-cost-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
    font-family: "DM Sans", sans-serif;
}
.real-cost-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: rgba(255,191,0,0.06);
    border: 1px solid rgba(255,191,0,0.18);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}
.real-cost-warning svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.real-cost-warning-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-family: "DM Sans", sans-serif;
}
.real-cost-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: opacity 0.18s, transform 0.14s, background 0.25s, color 0.25s;
    border: none;
}
.real-cost-btn--primary {
    background: #00BFA6;
    color: #0a0a0a;
}
.real-cost-btn--primary:hover:not(:disabled) {
    color: rgb(10, 10, 10);
    background: rgb(0, 191, 166);
    opacity: 0.88;
    transform: scale(0.985);
}
.real-cost-btn--primary:disabled {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.25);
    cursor: not-allowed;
}
.real-cost-btn--back {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.65rem;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.25);
    font-family: "DM Sans", sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: color 0.2s;
}
.real-cost-btn--back:hover {
    color: rgba(255,255,255,0.5);
    background: transparent;
}
.real-cost-btn.real-cost-btn--primary svg {
    width: 16px;
    height: 16px;
}
.real-cost-hidden {
    display: none;
}
.real-cost-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.real-cost-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0,191,166,0.08);
    border: 1px solid rgba(0,191,166,0.2);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #00BFA6;
    font-family: "DM Sans", sans-serif;
}
.real-cost-result-badge svg {
    width: 12px;
    height: 12px;
}
.real-cost-result-hero {
    text-align: center;
    padding: 2rem 1rem 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 1.75rem;
}
.real-cost-result-hero-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-family: "DM Sans", sans-serif;
    margin-bottom: 0.75rem;
}
.real-cost-result-hero-amount {
    font-family: "Syne", sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 9vw, 5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}
.real-cost-result-equity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    margin-top: 0.5rem;
}
.real-cost-result-equity span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-family: "DM Sans", sans-serif;
}
.real-cost-result-equity strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff5050;
    font-family: "DM Sans", sans-serif;
}
.real-cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.real-cost-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}
.real-cost-breakdown-label {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    font-family: "DM Sans", sans-serif;
}
.real-cost-breakdown-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    font-family: "DM Sans", sans-serif;
}
.real-cost-compare {
    background: rgba(0,191,166,0.06);
    border: 1px solid rgba(0,191,166,0.18);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}
.real-cost-compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.real-cost-compare-row:first-child {
    margin-bottom: 0.75rem;
}
.real-cost-compare-divider {
    height: 1px;
    background: rgba(0,191,166,0.12);
    margin: 0 0 0.75rem;
}
.real-cost-compare-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-family: "DM Sans", sans-serif;
}
.real-cost-compare-price {
    font-size: 1rem;
    font-weight: 700;
    color: #00BFA6;
    font-family: "DM Sans", sans-serif;
}
.real-cost-compare-price small {
    font-weight: 400;
    font-size: 0.78rem;
    color: rgba(0,191,166,0.6);
}
.real-cost-insight {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255,191,0,0.04);
    border: 1px solid rgba(255,191,0,0.12);
    border-radius: 12px;
}
.real-cost-insight svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.real-cost-insight p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}
.real-cost-insight strong {
    color: rgba(255,255,255,0.65);
}
.real-cost-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #00BFA6;
    border-radius: 12px;
    color: #0a0a0a;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: opacity 0.18s, transform 0.14s;
}
.real-cost-cta:hover {
    opacity: 0.88;
    transform: scale(0.985);
    color: #0a0a0a;
}
.real-cost-cta svg {
    width: 16px;
    height: 16px;
}
@media (max-width: 640px) {
    .real-cost-grid {
        grid-template-columns: 1fr;
    }
    .real-cost-step-connector {
        width: 1.3rem;
    }
}

@media (max-width: 576px) {
    .real-cost-steps {
        justify-content: start;
    }
}