/**
 * Ntono Step 2 Evaluation Page Styles
 * Translated from Stitch Design
 */

.ntono-step2-main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 6rem);
    margin-top: 6rem;
}

/* Desktop: fixed-height container so each column scrolls independently */
@media (min-width: 768px) {
    .ntono-step2-main {
        flex-direction: row;
        height: calc(100vh - 6rem);
        overflow: hidden;
        /* Prevents page-level scroll — each column handles its own */
    }
}

/* Column 1: Left (Indoctrination) — stays visible/fixed on desktop */
.ntono-step2-col-left {
    width: 100%;
    padding: 0 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(140, 31, 20, 0.08) 0%, transparent 70%);
}

@media (min-width: 768px) {
    .ntono-step2-col-left {
        width: 50%;
        padding: 0 4rem 4rem 4rem;
        flex-shrink: 0;
        height: 100%;
        overflow-y: auto;
        /* Scrollable — never clips content */
        overflow-x: hidden;
    }
}

@media (max-width: 767px) {
    .ntono-step2-col-left {
        text-align: center !important;
        align-items: center !important;
        padding: 0 0 2rem 0 !important;
    }

    .ntono-step2-col-left .max-w-xl {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ntono-step2-desc,
    .ntono-step2-col-left div[style*="justify-content: flex-start"] {
        text-align: center !important;
        justify-content: center !important;
    }

    .ntono-step2-main {
        overflow-x: hidden !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.ntono-step2-col-left .max-w-xl {
    max-width: 36rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

.ntono-step2-title {
    font-family: var(--ntono-font-headline, 'Newsreader', serif);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (min-width: 768px) {
    .ntono-step2-title {
        font-size: 3.75rem;
    }
}

.ntono-step2-title .text-primary {
    color: var(--accent-saffron);
}

.ntono-step2-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(232, 225, 226, 0.7);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Video Wrapper */
.ntono-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(29, 27, 28, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(159, 142, 121, 0.15);
    backdrop-filter: blur(12px);
    margin-bottom: 3rem;
}

.ntono-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: all 0.7s ease;
}

.ntono-video-container:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.ntono-video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ntono-play-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(250, 169, 22, 0.1);
    border: 1px solid rgba(250, 169, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease;
}

.ntono-video-container:hover .ntono-play-icon-wrapper {
    transform: scale(1.1);
}

.ntono-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Shortcode mode: let the plugin control its own aspect ratio */
.ntono-video-container--shortcode {
    cursor: default;
}

.ntono-video-container--shortcode iframe,
.ntono-video-container--shortcode video {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Column 2: Right (Action / Form) — scrolls independently on desktop */
.ntono-step2-col-right {
    width: 100%;
    background: rgba(16, 14, 15, 0.5);
    position: relative;
    border-left: 1px solid rgba(82, 69, 51, 0.1);
    overflow-y: auto;
}

@media (min-width: 768px) {
    .ntono-step2-col-right {
        width: 50%;
        height: 100%;
        /* Fill the fixed-height parent */
        overflow-y: auto;
        /* Only this column scrolls vertically */
        padding: 0 3.5rem;
    }
}

/* Sticky Progress Header */
.ntono-step2-form-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(21, 19, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(82, 69, 51, 0.1);
    padding: 1.5rem 0;
    /* Respect parent horizontal padding */
}

.ntono-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}

.ntono-step-label {
    font-family: inherit;
    font-style: normal;
    color: var(--accent-saffron);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

.ntono-step-name {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(215, 195, 173, 0.6);
    text-transform: uppercase;
}

.ntono-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(55, 52, 53, 1);
    border-radius: 100px;
    overflow: hidden;
}

.ntono-progress-bar {
    height: 100%;
    background: #FAA916;
    transition: width 1s ease-out;
}

/* Form Container */
.ntono-step2-form-wrapper {
    margin: 0 auto;
    padding: 3rem 0 6rem;
    /* Respect parent horizontal padding */
}

/* ─── Scrollbar · Ntono Brand ─────────────────────────────────────────────── */

/* Right column — primary scrollable area */
.ntono-step2-col-right::-webkit-scrollbar {
    width: 3px;
}

.ntono-step2-col-right::-webkit-scrollbar-track {
    background: transparent;
    /* Invisible track — clean */
}

.ntono-step2-col-right::-webkit-scrollbar-thumb {
    background: rgba(250, 169, 22, 0.35);
    /* Saffron translúcido */
    border-radius: 100px;
    transition: background 0.3s ease;
}

.ntono-step2-col-right::-webkit-scrollbar-thumb:hover {
    background: rgba(250, 169, 22, 0.8);
    /* Saffron sólido en hover */
    box-shadow: 0 0 6px rgba(250, 169, 22, 0.4);
    /* Soft glow */
}

/* Left column — only triggers if content overflows */
.ntono-step2-col-left::-webkit-scrollbar {
    width: 3px;
}

.ntono-step2-col-left::-webkit-scrollbar-track {
    background: transparent;
}

.ntono-step2-col-left::-webkit-scrollbar-thumb {
    background: rgba(250, 169, 22, 0.2);
    border-radius: 100px;
}

.ntono-step2-col-left::-webkit-scrollbar-thumb:hover {
    background: rgba(250, 169, 22, 0.5);
}

/* Firefox — minimal scrollbar support */
.ntono-step2-col-right,
.ntono-step2-col-left {
    scrollbar-width: thin;
    scrollbar-color: rgba(250, 169, 22, 0.35) transparent;
}

/* Welcome Message Personalization */
.ntono-welcome-msg {
    color: var(--accent-saffron, #FAA916);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: opacity 0.5s ease;
}

/* Responsive adjustment for welcome message */
@media (max-width: 767px) {
    .ntono-welcome-msg {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Specific spacing based on location */
.ntono-video-container+.ntono-welcome-msg {
    margin-top: -2rem;
    /* Pull up if below video */
    margin-bottom: 2rem;
}

.ntono-progress-track+.ntono-welcome-msg {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Forminator — Button Hierarchy Override (Step 2)
   Previous + Save = secondary row | Submit = hero CTA
   ========================================================================== */

/* Footer layout page 1: simple flex (back btn hidden = page 1) */
.ntono-step2-col-right .forminator-pagination-footer:not(:has(.forminator-button-back:not(.forminator-hidden))) {
    display: flex !important;
    flex-direction: column;
    gap: 0.625rem;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer layout page 2+: CSS Grid — back btn visible = page 2 */
.ntono-step2-col-right .forminator-pagination-footer:has(.forminator-button-back:not(.forminator-hidden)) {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.625rem;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── Primary CTA: Agendar Reunión ─── */
.ntono-step2-col-right .forminator-button-submit {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    padding: 1.125rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    background: var(--accent-saffron, #FAA916) !important;
    color: #000 !important;
    border: 1px solid var(--accent-saffron, #FAA916) !important;
    border-radius: 0.75rem !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(250, 169, 22, 0.25) !important;
    order: 1;
}

.ntono-step2-col-right .forminator-button-submit:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(250, 169, 22, 0.35) !important;
}

/* ─── Página 1: Botón Next ─── */
/* En página 1 el back btn existe pero con forminator-hidden
   Estilizamos Next con la misma identidad saffron del submit CTA */
.ntono-step2-col-right .forminator-pagination-footer:not(:has(.forminator-button-back:not(.forminator-hidden))) .forminator-button-next,
.ntono-step2-col-right .forminator-pagination-footer:not(:has(.forminator-button-back:not(.forminator-hidden))) .forminator-button-submit {
    width: 100% !important;
    padding: 1.125rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    background: var(--accent-saffron, #FAA916) !important;
    color: #000 !important;
    border: 1px solid var(--accent-saffron, #FAA916) !important;
    border-radius: 0.75rem !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(250, 169, 22, 0.25) !important;
}

.ntono-step2-col-right .forminator-pagination-footer:not(:has(.forminator-button-back:not(.forminator-hidden))) .forminator-button-next:hover,
.ntono-step2-col-right .forminator-pagination-footer:not(:has(.forminator-button-back:not(.forminator-hidden))) .forminator-button-submit:hover {
    background: #fff !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(250, 169, 22, 0.35) !important;
}

/* ─── Secondary Row: Previous + Save Draft ─── */
.ntono-step2-col-right .forminator-button-back,
.ntono-step2-col-right .forminator-save-draft-link {
    order: 0;
}

/* Previous button gets first cell of row 2 */
.ntono-step2-col-right .forminator-button-back {
    grid-row: 2;
    grid-column: 1;
    width: auto !important;
    flex: 1;
    padding: 0.625rem 1.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    background: transparent !important;
    color: rgba(224, 225, 221, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0.5rem !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
}

.ntono-step2-col-right .forminator-button-back:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

/* Save Draft Link — second cell of row 2 */
.ntono-step2-col-right .forminator-save-draft-link {
    grid-row: 2;
    grid-column: 2;
    text-align: center;
    padding: 0.625rem 1.25rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.04em !important;
    color: rgba(148, 163, 184, 0.5) !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0.5rem !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.ntono-step2-col-right .forminator-save-draft-link:hover {
    color: rgba(224, 225, 221, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

/* ==========================================================================
   Autocotizador — Dynamic Pricing Calculator (Injected by JS)
   ========================================================================== */

/* Hide Forminator's default "HTML" label inside the autocotizador field */
.ntono-step2-cotizador>.forminator-field>.forminator-label {
    display: none !important;
}

/* ─── Wrapper ─── */
.ntono-autocotizador-wrapper {
    margin-top: 0.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ─── Header (Icon + Title) ─── */
.ntono-cotizador-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ntono-cotizador-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(250, 169, 22, 0.1);
    border: 1px solid rgba(250, 169, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ntono-cotizador-icon .material-icons {
    font-size: 1.25rem;
    color: var(--accent-saffron, #FAA916);
}

.ntono-cotizador-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.125rem 0;
    letter-spacing: -0.01em;
}

.ntono-cotizador-subtitle {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.7);
    margin: 0;
    font-weight: 500;
}

.ntono-cotizador-service-name {
    color: #fff;
    font-weight: 600;
}

/* ─── Base Service Row ─── */
.ntono-cotizador-base-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: rgba(250, 169, 22, 0.04);
    border: 1px solid rgba(250, 169, 22, 0.1);
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
}

.ntono-cotizador-base-row.has-discount {
    background: rgba(250, 169, 22, 0.06);
    border-color: rgba(250, 169, 22, 0.2);
}

.ntono-base-left,
.ntono-base-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ntono-base-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

.ntono-base-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

/* ─── Discount Visuals (Shared) ─── */
.ntono-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 100px;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e74c3c;
    white-space: nowrap;
    animation: ntono-badge-pulse 2s ease-in-out infinite;
}

@keyframes ntono-badge-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.ntono-price-strikethrough {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.5);
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
}

/* Bump pricing container */
.ntono-bump-pricing {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

/* Bump card discount state */
.ntono-bump-card.has-discount {
    border-color: rgba(231, 76, 60, 0.15);
}

.ntono-bump-card.has-discount:hover {
    border-color: rgba(250, 169, 22, 0.3);
}

/* ─── Scope Section (Qué incluye / Qué no incluye) ─── */
.ntono-scope-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 480px) {
    .ntono-scope-section {
        grid-template-columns: 1fr;
    }
}

.ntono-scope-list {
    padding: 0.875rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.ntono-scope-heading {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.7);
    margin: 0 0 0.625rem 0;
}

.ntono-scope-icon-yes {
    font-size: 0.875rem;
    color: #2ecc71;
}

.ntono-scope-icon-no {
    font-size: 0.875rem;
    color: rgba(231, 76, 60, 0.7);
}

.ntono-scope-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ntono-scope-list ul li {
    font-size: 0.75rem;
    color: rgba(224, 225, 221, 0.7);
    line-height: 1.4;
    padding-left: 1rem;
    position: relative;
}

.ntono-scope-included ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.375rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2ecc71;
}

.ntono-scope-excluded ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 0.625rem;
    color: rgba(231, 76, 60, 0.5);
}

/* ─── Order Bumps Section ─── */
.ntono-order-bumps {
    margin-bottom: 1.5rem;
}

.ntono-bumps-heading {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(148, 163, 184, 0.6);
    margin: 0 0 0.75rem 0;
}

/* ─── Individual Bump Card ─── */
.ntono-bump-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.5rem;
    user-select: none;
}

.ntono-bump-card:last-child {
    margin-bottom: 0;
}

.ntono-bump-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(250, 169, 22, 0.2);
    transform: translateY(-1px);
}

/* Active state when checkbox is checked */
.ntono-bump-card:has(.ntono-bump-checkbox:checked) {
    background: rgba(250, 169, 22, 0.06);
    border-color: rgba(250, 169, 22, 0.35);
    box-shadow: 0 0 16px rgba(250, 169, 22, 0.08);
}

.ntono-bump-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ─── Custom Checkbox ─── */
.ntono-bump-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.25rem;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.ntono-bump-checkbox:hover {
    border-color: rgba(250, 169, 22, 0.5);
}

.ntono-bump-checkbox:checked {
    background: var(--accent-saffron, #FAA916);
    border-color: var(--accent-saffron, #FAA916);
}

.ntono-bump-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 5px;
    height: 9px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ntono-bump-checkbox:focus-visible {
    outline: 2px solid rgba(250, 169, 22, 0.5);
    outline-offset: 2px;
}

.ntono-bump-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(224, 225, 221, 0.85);
    transition: color 0.2s ease;
}

.ntono-bump-card:hover .ntono-bump-name {
    color: #fff;
}

.ntono-bump-card:has(.ntono-bump-checkbox:checked) .ntono-bump-name {
    color: #fff;
    font-weight: 600;
}

.ntono-bump-price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent-saffron, #FAA916);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* ─── Total Row ─── */
.ntono-total-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ntono-total-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ntono-total-live {
    font-size: 1.625rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle pulse animation when total changes */
@keyframes ntono-price-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.ntono-total-live.pulse {
    animation: ntono-price-pulse 0.3s ease;
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
    .ntono-autocotizador-wrapper {
        padding: 1.25rem;
        border-radius: 0.75rem;
    }

    .ntono-cotizador-header {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .ntono-cotizador-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .ntono-cotizador-icon .material-icons {
        font-size: 1.125rem;
    }

    .ntono-cotizador-title {
        font-size: 1rem;
    }

    .ntono-total-live {
        font-size: 1.375rem;
    }
}

/* ==========================================================================
   Welcome Name Accent 
   ========================================================================== */

.ntono-welcome-name {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: normal;
}

/* ==========================================================================
   CTA Micro-Reassurance
   ========================================================================== */

.ntono-cta-reassurance {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 0.25rem;
    padding: 0;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.45);
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.4;
}

.ntono-cta-reassurance .material-icons {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.35);
}

/* ==========================================================================
   Social Proof Strip (Left Column)
   ========================================================================== */

.ntono-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    width: 100%;
}

.ntono-proof-stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.ntono-proof-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.ntono-proof-label {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.5);
    white-space: nowrap;
}

.ntono-proof-stars {
    display: flex;
    gap: 0.125rem;
    margin-left: auto;
}

.ntono-proof-stars .material-icons {
    font-size: 0.875rem;
    color: var(--accent-saffron, #FAA916);
}

@media (max-width: 767px) {
    .ntono-social-proof {
        justify-content: center;
    }
}

/* ==========================================================================
   Utility: Hidden Analytics Fields
   ========================================================================== */

.ntono-hidden-total,
.ntono-hidden-bumps {
    display: none !important;
}

/* Collapse spacing on rows that only contain hidden fields */
.ntono-step2-col-right .forminator-row:has(.ntono-hidden-input):not(:has(.forminator-col:not(.ntono-hidden-input))) {
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}