.lc-card {
    --lc-accent: #f05a28;
    --lc-dark: #172238;
    --lc-border: #dfe4ec;
    --lc-muted: #657189;
    --lc-soft: #f3f7fd;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border: 1px solid var(--lc-border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    color: #0c1424;
    box-shadow: 0 12px 38px rgba(15, 23, 42, .08);
    font-family: inherit;
}

.lc-card * { box-sizing: border-box; }

.lc-pricebar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 30px 26px;
    background: var(--lc-dark);
    color: #fff;
}

.lc-eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .1em;
    color: #b9cdf0;
}

.lc-top-price {
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.lc-toggle {
    display: inline-flex;
    padding: 3px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.lc-toggle-btn {
    border: 0;
    border-radius: 999px;
    padding: 8px 13px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.lc-toggle-btn.is-active {
    background: #fff;
    color: #0c1424;
}

.lc-body { padding: 30px; }

.lc-heading {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 750;
    color: #0c1424;
}

.lc-heading-line {
    width: 42px;
    height: 4px;
    margin: 13px 0 26px;
    border-radius: 4px;
    background: var(--lc-accent);
}

.lc-field { margin: 0 0 27px; }

.lc-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 750;
    color: #111827;
}

.lc-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 11px;
}

.lc-label-row label { margin-bottom: 0; }

.lc-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #edf5ff;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.lc-money-input {
    position: relative;
    display: flex;
    align-items: center;
}

.lc-money-input input {
    width: 100%;
    min-height: 56px;
    padding: 13px 54px 13px 15px;
    border: 1px solid #cfd6e1;
    border-radius: 10px;
    background: #fff;
    color: #0c1424;
    font: inherit;
    font-size: 18px;
    font-weight: 750;
    outline: none;
}

.lc-money-input input:focus {
    border-color: var(--lc-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--lc-accent) 16%, transparent);
}

.lc-money-input span {
    position: absolute;
    right: 16px;
    color: var(--lc-muted);
    font-size: 14px;
    font-weight: 700;
}

.lc-card input[type="range"] {
    width: 100%;
    height: 6px;
    margin: 8px 0 0;
    border-radius: 999px;
    accent-color: var(--lc-accent);
    cursor: pointer;
}

.lc-range-ends {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: #8993a5;
    font-size: 11px;
}

.lc-result {
    margin-top: 8px;
    padding: 26px 20px;
    border: 1px solid #cfe2ff;
    border-radius: 14px;
    background: #edf5ff;
    text-align: center;
}

.lc-result-label {
    margin-bottom: 9px;
    color: var(--lc-muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
}

.lc-result-amount {
    color: #07152f;
    font-size: clamp(37px, 8vw, 54px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.04em;
}

.lc-result-amount small {
    font-size: 17px;
    font-weight: 750;
    letter-spacing: 0;
}

.lc-cost-note {
    margin-top: 10px;
    color: #637087;
    font-size: 12px;
}

.lc-breakdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--lc-border);
    border-radius: 12px;
    background: var(--lc-border);
}

.lc-breakdown > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 13px 14px;
    background: #fff;
}

.lc-breakdown span {
    color: var(--lc-muted);
    font-size: 11px;
}

.lc-breakdown strong {
    color: #111827;
    font-size: 14px;
}

.lc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--lc-accent);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    transition: transform .15s ease, filter .15s ease;
}

.lc-cta:hover { filter: brightness(.95); transform: translateY(-1px); }

.lc-disclaimer {
    margin-top: 16px;
    color: #7a8496;
    font-size: 11px;
    line-height: 1.45;
}

@media (max-width: 520px) {
    .lc-pricebar { padding: 22px 20px; }
    .lc-body { padding: 24px 20px; }
    .lc-pricebar { flex-direction: column; }
    .lc-toggle { align-self: flex-start; }
    .lc-breakdown { grid-template-columns: 1fr; }
}

.lc-product-name {
    margin: 0 0 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #69758a;
}
