/*
============================================================
ALIANA CORTÉS ODONTOLOGÍA
FORMULARIO MULTI-STEP PREMIUM
============================================================

Este CSS NO crea fondo, borde exterior ni sombra para el formulario.
El contenedor de Elementor es quien controla esos elementos.

La tipografía se hereda del sitio.
============================================================
*/


/* =========================================================
   1. BASE
   ========================================================= */

.aliana-form,
.aliana-form *,
.aliana-form *::before,
.aliana-form *::after {
    box-sizing: border-box;
}

.aliana-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: #292622;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
}

.aliana-form button,
.aliana-form input,
.aliana-form textarea {
    font: inherit;
}

.aliana-form button {
    cursor: pointer;
}

.aliana-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.aliana-form legend {
    padding: 0;
}

.aliana-form p,
.aliana-form h2 {
    margin-top: 0;
}


/* =========================================================
   2. FORMULARIO
   ========================================================= */

.appointment-form {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}


/* =========================================================
   3. INDICADOR SUPERIOR DE PASOS
   ========================================================= */

.form-progress {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin-bottom: 54px;
}

.progress-step {
    position: relative;
    min-width: 0;
}

.progress-line {
    display: block;
    width: 100%;
    height: 6px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #e8e0d5;
    overflow: hidden;
}

.progress-line::after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #b59a76;
    transition: width 0.55s cubic-bezier(.22, 1, .36, 1);
}

.progress-step.is-active .progress-line::after,
.progress-step.is-complete .progress-line::after {
    width: 100%;
}

.progress-content {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.progress-number,
.progress-title {
    color: #292622;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.19em;
    line-height: 1.2;
}

.progress-number {
    letter-spacing: 0.15em;
}

.progress-step:not(.is-active):not(.is-complete) .progress-number,
.progress-step:not(.is-active):not(.is-complete) .progress-title {
    opacity: 0.62;
}


/* =========================================================
   4. PASOS
   ========================================================= */

.form-step {
    width: 100%;
    opacity: 1;
    transform: translateY(0);
}

.form-step[hidden] {
    display: none;
}

.form-step.is-entering {
    animation: stepEnter 0.48s cubic-bezier(.22, 1, .36, 1) both;
}

.form-step.is-leaving {
    animation: stepLeave 0.24s ease both;
}

@keyframes stepEnter {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stepLeave {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}


/* =========================================================
   5. ENCABEZADO DEL PASO
   ========================================================= */

.step-heading {
    margin-bottom: 36px;
}

.step-eyebrow {
    display: block;
    margin-bottom: 11px;
    color: #8c7964;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.step-heading h2 {
    margin: 0 0 12px;
    color: #292622;
    font-family: inherit;
    font-size: clamp(26px, 2.2vw, 38px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.step-heading p {
    max-width: 600px;
    margin: 0;
    color: #817a72;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   6. GRUPOS / LABELS
   ========================================================= */

.form-group {
    width: 100%;
    margin-bottom: 31px;
}

.field-label {
    display: block;
    margin: 0 0 13px;
    color: #71695f;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.optional-label {
    opacity: 0.8;
}


/* =========================================================
   7. OPCIONES / TARJETAS
   ========================================================= */

.choice-grid {
    display: grid;
    gap: 10px;
    width: 100%;
}

.choice-grid--motives {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid--schedule,
.choice-grid--visit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
    position: relative;
    display: block;
    min-width: 0;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    opacity: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}

.choice-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
    padding: 16px 18px;
    border: 1px solid #e4d9ca;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.32);
    color: #514b44;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.choice-card__title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.choice-card__description {
    margin-top: 5px;
    color: #9b9288;
    font-size: 11px;
    line-height: 1.4;
}

.choice-card:hover .choice-card__content {
    border-color: #bca486;
    transform: translateY(-1px);
}

.choice-card input:focus-visible + .choice-card__content {
    outline: 2px solid #b59a76;
    outline-offset: 3px;
}

.choice-card input:checked + .choice-card__content {
    border-color: #b59a76;
    background: #b59a76;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(100, 75, 45, 0.10);
    transform: translateY(-1px);
}

.choice-card input:checked + .choice-card__content .choice-card__description {
    color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   8. INPUTS
   ========================================================= */

.input-wrap {
    position: relative;
    width: 100%;
}

.form-input {
    display: block;
    width: 100%;
    min-height: 62px;
    margin: 0;
    padding: 17px 21px;
    border: 1px solid #e4d9ca;
    border-radius: 15px;
    outline: none;
    background: rgba(255, 255, 255, 0.30);
    color: #302c28;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    appearance: none;
    -webkit-appearance: none;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.form-input::placeholder {
    color: #b7b1aa;
    opacity: 1;
}

.form-input:hover {
    border-color: #cdbca5;
}

.form-input:focus {
    border-color: #b59a76;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 3px rgba(181, 154, 118, 0.10);
}

.form-input:focus::placeholder {
    opacity: 0.65;
}

.form-textarea {
    min-height: 145px;
    resize: vertical;
    line-height: 1.6;
}


/* =========================================================
   9. RESUMEN DEL PASO 2
   ========================================================= */

.answer-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    width: 100%;
    min-height: 60px;
    margin: 0 0 34px;
    padding: 16px 21px;
    border-radius: 15px;
    background: #f5f1eb;
    color: #71695f;
}

.summary-item {
    min-width: 0;
}

.summary-value {
    color: #6d665e;
    font-size: 13px;
    line-height: 1.5;
}

.summary-item:first-child .summary-value {
    color: #302c28;
}

.summary-separator {
    color: #b5aa9c;
    font-size: 16px;
    line-height: 1;
}


/* =========================================================
   9B. CAMPOS DEL PASO 2
   ========================================================= */

.form-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 0;
    width: 100%;
}

.form-fields-grid .form-group {
    min-width: 0;
    margin-bottom: 27px;
}

.form-fields-grid .form-group--full {
    grid-column: 1 / -1;
}


/* =========================================================
   9C. AJUSTE DE DENSIDAD PARA EL CONTENEDOR ESTRECHO
   ========================================================= */

@media (max-width: 760px) {

    .form-fields-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .form-fields-grid .form-group--full {
        grid-column: auto;
    }
}

/* =========================================================
   10. ERRORES
   ========================================================= */

.field-error {
    display: block;
    min-height: 0;
    margin: 7px 2px 0;
    color: #a66f61;
    font-size: 11px;
    line-height: 1.4;
}

.field-error:empty {
    display: none;
}

.has-error .form-input {
    border-color: #b98272;
}

.has-error .choice-card__content {
    border-color: #b98272;
}


/* =========================================================
   11. HONEYPOT
   ========================================================= */

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


/* =========================================================
   12. ESTADO DEL FORMULARIO
   ========================================================= */

.form-status {
    min-height: 0;
    margin: 0;
    color: #766d63;
    font-size: 12px;
    line-height: 1.5;
}

.form-status:not(:empty) {
    margin-bottom: 18px;
}

.form-status.is-error {
    color: #a66f61;
}

.form-status.is-success {
    color: #75806c;
}


/* =========================================================
   13. BOTONES
   ========================================================= */

.form-actions {
    display: flex;
    align-items: stretch;
    gap: 13px;
    width: 100%;
    margin-top: 45px;
}

.form-actions--next {
    justify-content: flex-end;
}

.form-actions--submit {
    align-items: stretch;
}

.form-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.20em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.form-button:hover {
    transform: translateY(-1px);
}

.form-button:active {
    transform: translateY(0);
}

.form-button:focus-visible {
    outline: 2px solid #b59a76;
    outline-offset: 4px;
}

.form-button--primary {
    flex: 1 1 auto;
    background: #b59a76;
    border-color: #b59a76;
    color: #ffffff;
}

.form-button--primary:hover {
    background: #a98e69;
    border-color: #a98e69;
    box-shadow: 0 9px 22px rgba(100, 75, 45, 0.13);
}

.form-button--secondary {
    flex: 0 0 auto;
    min-width: 130px;
    background: transparent;
    border-color: #e1d5c6;
    color: #504a43;
}

.form-button--secondary:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: #bca486;
}

.button-arrow {
    margin-left: 14px;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0;
    transition: transform 0.25s ease;
}

.form-button--primary:hover .button-arrow {
    transform: translateX(4px);
}

.button-arrow--back {
    margin-right: 12px;
    margin-left: 0;
}

.form-button--secondary:hover .button-arrow--back {
    transform: translateX(-4px);
}


/* =========================================================
   14. BOTÓN DE ENVÍO
   ========================================================= */

.form-button--submit {
    min-width: 0;
}

.submit-loading {
    display: none;
}

.form-button--submit.is-loading {
    pointer-events: none;
    opacity: 0.82;
}

.form-button--submit.is-loading .submit-label {
    display: none;
}

.form-button--submit.is-loading .submit-loading {
    display: inline;
}

.form-button--submit.is-loading::after {
    content: "";
    width: 13px;
    height: 13px;
    margin-left: 9px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: buttonSpin 0.7s linear infinite;
}

@keyframes buttonSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   15. TABLET
   ========================================================= */

@media (max-width: 900px) {

    .form-progress {
        margin-bottom: 44px;
    }

    .step-heading {
        margin-bottom: 34px;
    }

    .step-heading h2 {
        font-size: 30px;
    }

    .form-actions {
        margin-top: 36px;
    }
}


/* =========================================================
   16. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .aliana-form {
        font-size: 15px;
    }

    .form-progress {
        gap: 12px;
        margin-bottom: 36px;
    }

    .progress-line {
        height: 4px;
        margin-bottom: 11px;
    }

    .progress-content {
        gap: 7px;
    }

    .progress-number,
    .progress-title {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .step-heading {
        margin-bottom: 29px;
    }

    .step-eyebrow {
        margin-bottom: 8px;
        font-size: 9px;
    }

    .step-heading h2 {
        font-size: 26px;
    }

    .step-heading p {
        font-size: 13px;
        line-height: 1.6;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .field-label {
        margin-bottom: 11px;
        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .choice-grid--motives,
    .choice-grid--schedule,
    .choice-grid--visit {
        grid-template-columns: 1fr;
    }

    .choice-card__content {
        min-height: 60px;
        padding: 14px 16px;
        border-radius: 13px;
    }

    .choice-card__title {
        font-size: 13px;
    }

    .choice-card__description {
        font-size: 10px;
    }

    .form-input {
        min-height: 58px;
        padding: 15px 17px;
        border-radius: 13px;
        font-size: 14px;
    }

    .form-textarea {
        min-height: 125px;
    }

    .answer-summary {
        gap: 6px;
        margin-bottom: 31px;
        padding: 14px 16px;
        border-radius: 13px;
    }

    .summary-value {
        font-size: 11px;
    }

    .summary-separator {
        font-size: 14px;
    }

    .form-actions,
    .form-actions--submit {
        gap: 9px;
        margin-top: 31px;
    }

    .form-button {
        min-height: 54px;
        padding: 13px 17px;
        font-size: 9px;
        letter-spacing: 0.15em;
    }

    .form-button--secondary {
        min-width: 102px;
    }

    .button-arrow {
        margin-left: 9px;
    }

    .button-arrow--back {
        margin-right: 8px;
    }
}


/* =========================================================
   17. MOBILE MUY ESTRECHO
   ========================================================= */

@media (max-width: 380px) {

    .form-actions--submit {
        flex-direction: column-reverse;
    }

    .form-button--secondary,
    .form-button--submit {
        width: 100%;
        min-width: 0;
    }

    .form-button--secondary {
        flex: 1 1 auto;
    }
}


/* =========================================================
   18. REDUCIR ANIMACIONES SI EL USUARIO LO PREFIERE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .aliana-form *,
    .aliana-form *::before,
    .aliana-form *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}



/* =========================================================
   FLUID / RESPONSIVE SIZING
   ========================================================= */

.aliana-form {
    width: 100%;
    min-height: 0;
    padding-inline: clamp(0rem, 0.8vw, 0.75rem);
}

.form-progress {
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.progress-line {
    height: clamp(0.2rem, 0.35vw, 0.375rem);
    margin-bottom: clamp(0.55rem, 1.2vh, 0.9rem);
}

.step-heading {
    margin-bottom: clamp(1.75rem, 4vh, 3rem);
}

.step-heading h2 {
    font-size: clamp(1.55rem, 2.35vw, 2.35rem);
}

.step-heading p {
    max-width: 92%;
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.form-group {
    margin-bottom: clamp(1.15rem, 2.4vh, 1.9rem);
}

.field-label {
    margin-bottom: clamp(0.55rem, 1.2vh, 0.8rem);
    font-size: clamp(0.58rem, 0.7vw, 0.72rem);
}

.choice-grid {
    gap: clamp(0.5rem, 1vw, 0.75rem);
}

.choice-card__content {
    min-height: clamp(3.55rem, 6vh, 4.5rem);
    padding: clamp(0.8rem, 1.4vw, 1.1rem);
    border-radius: clamp(0.75rem, 1.2vw, 1rem);
}

.choice-card__title {
    font-size: clamp(0.78rem, 0.9vw, 0.92rem);
}

.choice-card__description {
    font-size: clamp(0.62rem, 0.72vw, 0.72rem);
}

.form-input {
    min-height: clamp(3.25rem, 6vh, 4rem);
    padding: clamp(0.8rem, 1.25vw, 1.1rem) clamp(0.9rem, 1.4vw, 1.35rem);
    border-radius: clamp(0.75rem, 1.1vw, 1rem);
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.form-textarea {
    min-height: clamp(7rem, 13vh, 9rem);
}

.answer-summary {
    margin-bottom: clamp(1.6rem, 3.5vh, 2.5rem);
    padding: clamp(0.75rem, 1.2vw, 1rem) clamp(0.9rem, 1.4vw, 1.35rem);
    border-radius: clamp(0.75rem, 1.1vw, 1rem);
}

.summary-value {
    font-size: clamp(0.7rem, 0.82vw, 0.82rem);
}

.form-fields-grid {
    column-gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.form-fields-grid .form-group {
    margin-bottom: clamp(1rem, 2.1vh, 1.6rem);
}

.form-actions {
    gap: clamp(0.55rem, 1vw, 0.8rem);
    margin-top: clamp(1.6rem, 3.5vh, 2.6rem);
}

.form-button {
    min-height: clamp(3.1rem, 6vh, 3.75rem);
    padding: clamp(0.7rem, 1vw, 0.9rem) clamp(1rem, 1.8vw, 1.5rem);
    font-size: clamp(0.58rem, 0.7vw, 0.72rem);
}

.form-button--secondary {
    min-width: clamp(6.5rem, 11vw, 9rem);
}

@media (max-width: 760px) {
    .aliana-form {
        padding-inline: 0;
    }

    .step-heading p {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .form-progress {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .progress-number,
    .progress-title {
        font-size: 0.58rem;
    }

    .step-heading h2 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .form-input {
        min-height: 3.4rem;
    }

    .form-textarea {
        min-height: 7.5rem;
    }
}



/* =========================================================
   NARROW EMBED / ELEMENTOR 40% CONTAINER
   Premium density without compressing the form.
   ========================================================= */

@media (max-width: 900px) {

    .aliana-form {
        padding-inline: clamp(0.15rem, 1.2vw, 0.65rem);
    }

    .form-progress {
        margin-bottom: clamp(1.9rem, 4vw, 2.75rem);
    }

    .step-heading {
        margin-bottom: clamp(2rem, 5vw, 3rem);
    }

    .step-heading h2 {
        font-size: clamp(1.65rem, 5.2vw, 2.15rem);
        line-height: 1.08;
    }

    .step-heading p {
        margin-top: 0.75rem;
        font-size: clamp(0.82rem, 2.15vw, 0.95rem);
        line-height: 1.55;
    }

    .form-group {
        margin-bottom: clamp(1.35rem, 3.5vw, 2rem);
    }

    .field-label {
        margin-bottom: 0.7rem;
        font-size: clamp(0.59rem, 1.55vw, 0.7rem);
        letter-spacing: 0.19em;
    }

    .choice-grid {
        grid-template-columns: 1fr;
        gap: clamp(0.7rem, 1.8vw, 0.95rem);
    }

    .choice-card__content {
        min-height: clamp(4rem, 10vw, 5rem);
        padding: clamp(0.95rem, 2.4vw, 1.25rem);
    }

    .choice-card__title {
        font-size: clamp(0.82rem, 2vw, 0.94rem);
    }

    .choice-card__description {
        margin-top: 0.35rem;
        font-size: clamp(0.64rem, 1.55vw, 0.72rem);
    }

    .form-input {
        min-height: clamp(3.5rem, 8.5vw, 4.25rem);
        padding: 0.9rem 1rem;
        font-size: clamp(0.82rem, 1.9vw, 0.95rem);
    }

    .form-textarea {
        min-height: clamp(8rem, 20vw, 10rem);
    }

    .answer-summary {
        margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
        padding: 1rem 1.05rem;
    }

    .summary-value {
        font-size: clamp(0.7rem, 1.7vw, 0.82rem);
        line-height: 1.55;
    }

    .form-fields-grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .form-fields-grid .form-group--full {
        grid-column: auto;
    }

    .form-fields-grid .form-group {
        margin-bottom: clamp(1.3rem, 3.4vw, 1.9rem);
    }

    .form-actions {
        margin-top: clamp(1.75rem, 4.5vw, 2.75rem);
    }

    .form-button {
        min-height: clamp(3.5rem, 9vw, 4.25rem);
        font-size: clamp(0.6rem, 1.5vw, 0.72rem);
        letter-spacing: 0.18em;
    }
}


/* Extra breathing room for the actual desktop Elementor 40% column.
   Uses viewport width only as a fluid trigger, never as a fixed height. */

@media (min-width: 901px) and (max-width: 1200px) {

    .choice-grid {
        gap: 0.75rem;
    }

    .choice-card__content {
        min-height: 4rem;
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1.55rem;
    }

    .step-heading {
        margin-bottom: 2.5rem;
    }

    .form-input {
        min-height: 3.65rem;
    }
}



/* =========================================================
   TYPOGRAPHY + SPACING REFINEMENT
   Aliana Cortés · Premium form
   ========================================================= */

/* Question labels */
.field-label {
    font-size: 0.8rem;
    line-height: 1.35;
    letter-spacing: 0.18em;
    font-weight: 500;
    margin-bottom: 0.9rem;
}

/* Question groups need independent breathing room */
.form-group {
    margin-bottom: clamp(1.65rem, 3.2vh, 2.35rem);
}

/* Options */
.choice-grid {
    row-gap: 0.85rem;
    column-gap: 0.75rem;
}

.choice-card__content {
    padding: 1rem 1.1rem;
}

.choice-card__title {
    font-size: 0.9rem;
    line-height: 1.45;
}

.choice-card__description {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 0.3rem;
}

/* Inputs and placeholders */
.form-input,
.form-input::placeholder {
    font-size: 0.9rem;
    line-height: 1.45;
}

.form-input {
    min-height: 3.7rem;
}

.form-textarea {
    min-height: 8rem;
}

/* Summary text */
.summary-value {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Step heading copy */
.step-heading p {
    font-size: 0.9rem;
    line-height: 1.55;
}

/* CONTINUAR: subtle, centered CTA */
.form-actions {
    justify-content: center;
}

.form-button--primary {
    width: 70%;
    min-width: 0;
    margin-inline: auto;
    min-height: 3.55rem;
    padding: 0.75rem 1.5rem;
    border-radius: 35px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.09em;
}

/* Back button remains discreet */
.form-button--secondary {
    min-height: 3.55rem;
    font-size: 0.8rem;
}

/* Narrow embedded form */
@media (max-width: 900px) {
    .field-label {
        font-size: 0.8rem;
        margin-bottom: 0.85rem;
    }

    .form-group {
        margin-bottom: 1.7rem;
    }

    .choice-grid {
        row-gap: 0.8rem;
    }

    .choice-card__content {
        min-height: 4rem;
        padding: 1rem;
    }

    .choice-card__title {
        font-size: 0.9rem;
    }

    .choice-card__description {
        font-size: 0.75rem;
    }

    .form-input,
    .form-input::placeholder {
        font-size: 0.9rem;
    }

    .form-button--primary {
        width: 78%;
    }
}

/* Mobile: preserve touch comfort without making the CTA visually heavy */
@media (max-width: 600px) {
    .form-button--primary {
        width: 100%;
    }

    .form-button--secondary {
        width: 100%;
    }
}
