.price-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 77% 18%, rgba(213,154,82,.11), transparent 24%),
        radial-gradient(circle at 12% 80%, rgba(166,77,56,.08), transparent 22%),
        var(--bg);
}

.price-header {
    min-height: 68px;
}

.price-main {
    min-height: calc(100svh - 68px);
    display: flex;
}

.price-shell {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: clamp(2.2rem, 4vw, 4.2rem) var(--pad) 2rem;
}

.price-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(300px, .76fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.price-intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -1rem;
}

.price-intro h1 {
    max-width: none;
    margin: 0;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(3rem, 4.45vw, 4.8rem);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.055em;
}

.price-title__line {
    display: block;
    white-space: nowrap;
}

.price-title__accent {
    color: var(--amber-soft);
    text-shadow: 0 0 26px rgba(213,154,82,.14);
}

.price-intro > p:last-child {
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(340px, .78fr);
    border: 1px solid rgba(213,154,82,.18);
    background: linear-gradient(145deg, rgba(24,20,16,.95), rgba(15,13,11,.94));
    box-shadow: 0 28px 90px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.025);
}

.price-form {
    padding: clamp(1.45rem, 2.7vw, 2.2rem);
    border-right: 1px solid rgba(213,154,82,.12);
    background: linear-gradient(180deg, rgba(19,17,15,.92), rgba(12,11,10,.96));
}

.price-form__vehicle {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 1.14fr) minmax(0, .92fr);
    gap: .85rem;
}

.price-form__second-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-top: .85rem;
}

.price-field {
    display: grid;
    gap: .45rem;
}

.price-field label {
    color: var(--amber-soft);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.price-field select,
.price-field input {
    width: 100%;
    min-height: 54px;
    padding: .85rem 2.4rem .85rem .98rem;
    border: 1px solid rgba(213,154,82,.16);
    border-radius: 0;
    background: rgba(14,13,12,.92);
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    outline: none;
}

.price-field select {
    text-overflow: ellipsis;
}

.price-field select:focus,
.price-field input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(213,154,82,.10);
    background: rgba(17,15,13,.98);
}

.price-field select:disabled {
    color: #7f776e;
    cursor: not-allowed;
}

.price-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.price-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.4rem;
    align-items: center;
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(213,154,82,.12);
}

.price-actions p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.price-submit {
    min-height: 48px;
    border: 0;
    cursor: pointer;
}

.price-submit:disabled {
    opacity: .6;
    cursor: wait;
}

.price-result {
    min-height: 330px;
    display: flex;
    align-items: stretch;
    background:
        radial-gradient(circle at 80% 10%, rgba(213,154,82,.18), transparent 28%),
        linear-gradient(145deg, rgba(213,154,82,.11), rgba(166,77,56,.06) 55%, rgba(12,10,9,.18));
}

.price-result__idle,
.price-result__message,
.price-result__success {
    width: 100%;
    padding: clamp(1.5rem, 2.8vw, 2.25rem);
}

.price-result__idle {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .85rem 1rem;
    align-content: center;
}

.price-result__idle span,
.price-result__message > span,
.price-result__success > span {
    color: var(--amber-soft);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
}

.price-result__idle strong {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.price-result__message,
.price-result__success {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-result__message strong {
    margin-top: .8rem;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.price-result__message p,
.price-result__success p {
    margin: .9rem 0 0;
    color: var(--muted-strong);
    font-size: .98rem;
}

.price-result__message .button,
.price-result__success .button {
    align-self: flex-start;
    margin-top: 1.2rem;
}

.price-result__success h2 {
    margin: .8rem 0 1.2rem;
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.price-result__prices {
    display: grid;
    gap: .65rem;
}

.price-result__prices > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: baseline;
    padding: .85rem 0;
    border-top: 1px solid var(--line);
}

.price-result__prices > div:last-child {
    border-bottom: 1px solid var(--line);
}

.price-result__prices strong {
    color: var(--muted-strong);
    font-size: .95rem;
}

.price-result__prices b {
    color: var(--amber-soft);
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
}

.price-result__prices small {
    color: var(--muted);
    font-family: inherit;
    font-size: .76rem;
}

.price-result[data-tone="error"] {
    box-shadow: inset 3px 0 0 #b55a47;
}

.price-result[data-tone="warning"],
.price-result[data-tone="special"] {
    box-shadow: inset 3px 0 0 var(--amber);
}

.price-result[data-tone="success"] {
    box-shadow: inset 3px 0 0 var(--amber-soft);
}

.price-breadcrumb {
    margin: 1rem 0 0;
    font-size: .86rem;
}

@media (max-width: 900px) {
    .price-intro,
    .price-layout {
        grid-template-columns: 1fr;
    }

    .price-form {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .price-form__vehicle {
        grid-template-columns: 1fr 1fr;
    }

    .price-form__vehicle .price-field:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .price-nav {
        display: none;
    }

    .price-shell {
        padding-top: 1.6rem;
    }

    .price-intro {
        gap: 1rem;
    }

    .price-intro .eyebrow {
        margin-bottom: 0;
    }

    .price-intro h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .price-form__vehicle,
    .price-form__second-row,
    .price-actions {
        grid-template-columns: 1fr;
    }

    .price-form__vehicle .price-field:last-child {
        grid-column: auto;
    }

    .price-submit,
    .price-result__message .button,
    .price-result__success .button {
        width: 100%;
    }

    .price-result__prices > div {
        grid-template-columns: 1fr;
        gap: .25rem;
    }
}


@media (max-width: 980px) {
    .price-layout {
        grid-template-columns: 1fr;
    }

    .price-form {
        border-right: 0;
        border-bottom: 1px solid rgba(213,154,82,.12);
    }

    .price-form__vehicle {
        grid-template-columns: 1fr 1fr;
    }

    .price-field:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .price-form__vehicle,
    .price-form__second-row,
    .price-actions {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   UMBRAL v2.2 — secuencia de revelado del precio
   ========================================================= */
.price-thinking {
    width: 100%;
    padding: clamp(1.5rem, 2.8vw, 2.25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-thinking > span {
    color: var(--amber-soft);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .15em;
}

.price-thinking > strong {
    margin-top: .8rem;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
    animation: price-thinking-copy .38s ease-out both;
}

.price-thinking > p {
    margin: .85rem 0 0;
    color: var(--muted-strong);
    font-size: 1rem;
    animation: price-thinking-copy .42s .05s ease-out both;
}

.price-thinking__track {
    position: relative;
    height: 2px;
    margin-top: 1.6rem;
    overflow: hidden;
    background: rgba(244,239,229,.09);
}

.price-thinking__track i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35%;
    width: 34%;
    background: linear-gradient(90deg, transparent, var(--amber-soft), var(--ember), transparent);
    box-shadow: 0 0 16px rgba(213,154,82,.28);
    animation: price-thinking-scan 1.15s ease-in-out infinite;
}

.price-result__reveal {
    animation: price-result-reveal .58s cubic-bezier(.22,.61,.36,1) both;
}

.price-result__reveal .price-result__prices > div {
    opacity: 0;
    transform: translateY(8px);
    animation: price-line-reveal .44s ease-out forwards;
}

.price-result__reveal .price-result__prices > div:nth-child(1) { animation-delay: .16s; }
.price-result__reveal .price-result__prices > div:nth-child(2) { animation-delay: .30s; }
.price-result__reveal .price-result__prices > div:nth-child(3) { animation-delay: .44s; }

.price-result__reveal .button {
    opacity: 0;
    transform: translateY(6px);
    animation: price-line-reveal .42s .52s ease-out forwards;
}

@keyframes price-thinking-copy {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes price-thinking-scan {
    0% { left: -35%; opacity: .25; }
    45% { opacity: 1; }
    100% { left: 105%; opacity: .25; }
}

@keyframes price-result-reveal {
    from { opacity: 0; transform: translateY(10px); filter: blur(2px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes price-line-reveal {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .price-thinking > strong,
    .price-thinking > p,
    .price-thinking__track i,
    .price-result__reveal,
    .price-result__reveal .price-result__prices > div,
    .price-result__reveal .button {
        animation: none !important;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* UMBRAL v2.4 — título armónico del buscador */
@media (max-width: 760px) {
    .price-intro h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 11.5vw, 4rem);
        line-height: .98;
    }
}


/* UMBRAL v2.5 — H1 forzado a dos líneas en escritorio */
@media (max-width: 760px) {
    .price-title__line {
        white-space: normal;
    }
}


/* =========================================================
   UMBRAL v2.6 — frases especiales legibles y robustas
   ========================================================= */
.price-result__special {
    width: 100%;
    padding: clamp(1.45rem, 2.4vw, 2.1rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-wrap: anywhere;
}

.price-result__special > span {
    color: var(--amber-soft);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
}

.price-result__special h2 {
    max-width: 18ch;
    margin: .7rem 0 0;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.25vw, 2.35rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.price-result__special-vehicle {
    margin: .8rem 0 0;
    color: var(--amber-soft);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .025em;
}

.price-result__special-copy {
    max-width: 42ch;
    margin: .72rem 0 0;
    color: var(--muted-strong);
    font-size: clamp(.96rem, 1.15vw, 1.08rem);
    line-height: 1.5;
}

.price-result__special .button {
    align-self: flex-start;
    margin-top: 1.15rem;
}

@media (max-width: 640px) {
    .price-result__special h2 {
        max-width: 100%;
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .price-result__special .button {
        width: 100%;
    }
}
