/**
 * Ollin Membresía Médica – Styles v3.0
 * Brand colors: Amarillo #F5B222 | Azul Petróleo #2E6080 | Azul Ceniza #6B7F9E
 * Text #3A3A3A | BG #F2F4F7
 */

/* === RESET / BASE === */
.ollin-medica-wrapper *,
.ollin-medica-wrapper *::before,
.ollin-medica-wrapper *::after,
.ollin-prequal *,
.ollin-prequal *::before,
.ollin-prequal *::after {
    box-sizing: border-box;
}

.ollin-medica-wrapper {
    font-family: inherit;
    color: #3A3A3A;
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.ollin-prequal {
    font-family: inherit;
    color: #3A3A3A;
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    transition: max-width .3s;
}

.ollin-prequal--wide {
    max-width: 880px;
}

/* === STEPPER === */
.ollin-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 28px;
    padding: 0 8px;
    gap: 0;
}

.ollin-stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 56px;
}

.ollin-stepper__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid #ddd;
    color: #bbb;
    background: #fff;
    transition: all 0.3s;
    flex-shrink: 0;
}

.ollin-stepper__label {
    font-size: 0.68rem;
    color: #bbb;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
}

.ollin-stepper__connector {
    flex: 1;
    height: 2px;
    background: #ddd;
    margin: 0 4px;
    margin-top: 15px;
    min-width: 20px;
    transition: background 0.3s;
}

.ollin-stepper__step--active .ollin-stepper__circle {
    background: #F5B222;
    border-color: #F5B222;
    color: #fff;
}

.ollin-stepper__step--active .ollin-stepper__label {
    color: #F5B222;
    font-weight: 600;
}

.ollin-stepper__step--done .ollin-stepper__circle {
    background: #2E6080;
    border-color: #2E6080;
    color: #fff;
}

.ollin-stepper__step--done .ollin-stepper__label {
    color: #2E6080;
}

.ollin-stepper__connector--done {
    background: #2E6080;
}

@media (max-width: 480px) {
    .ollin-stepper__step { min-width: 44px; }
    .ollin-stepper__label { font-size: 0.6rem; }
    .ollin-stepper__circle { width: 28px; height: 28px; font-size: 0.68rem; }
    .ollin-stepper__connector { margin-top: 13px; min-width: 12px; }
}

/* === CARD === */
.ollin-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.2rem 2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    position: relative;
    border: none;
}

.ollin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #F5B222;
    border-radius: 0 0 4px 4px;
}

.ollin-card__icon {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    width: 64px;
    height: 64px;
    background: rgba(245,178,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.ollin-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
    text-align: center;
}

.ollin-card__subtitle {
    font-size: 0.88rem;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    text-align: center;
}

.ollin-card--warning {
    border-left: 4px solid #F5B222;
}

.ollin-card--warning::before {
    background: #F5B222;
}

.ollin-card--success::before {
    background: #27ae60;
}

/* === FIELDS === */
.ollin-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .ollin-fields-grid {
        grid-template-columns: 1fr;
    }
}

.ollin-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ollin-field--full {
    grid-column: 1 / -1;
}

.ollin-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #3A3A3A;
}

.ollin-field-hint {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #6B7F9E;
    margin-top: 2px;
}

.ollin-field input[type="text"],
.ollin-field input[type="email"],
.ollin-field input[type="tel"],
.ollin-field input[type="date"],
.ollin-field input[type="number"],
.ollin-field select,
.ollin-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #3A3A3A;
    background: #fff;
    transition: border-color .3s;
    font-family: inherit;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.ollin-field input:focus,
.ollin-field select:focus,
.ollin-field textarea:focus {
    border-color: #F5B222;
    box-shadow: none;
}

.ollin-field input::placeholder,
.ollin-field textarea::placeholder {
    color: #bbb;
}

.ollin-field input.ollin-input-error,
.ollin-field select.ollin-input-error {
    border-color: #e74c3c;
}

.ollin-field textarea {
    resize: vertical;
    min-height: 80px;
}

.ollin-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7F9E' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.req {
    color: #F5B222;
    margin-left: 1px;
}

/* === RADIO GROUP === */
.ollin-radio-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

label.ollin-radio,
.ollin-radio-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #3A3A3A;
    padding: 0.6rem 1.2rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    transition: all .3s;
}

label.ollin-radio:hover,
.ollin-radio-option:hover {
    border-color: #F5B222;
}

label.ollin-radio input[type="radio"],
.ollin-radio-option input[type="radio"] {
    accent-color: #F5B222;
    width: 16px;
    height: 16px;
    margin: 0;
}

/* === QUESTIONS LIST (Pre-qualification) === */
.ollin-questions {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.ollin-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    gap: 1rem;
    background: #fff;
    transition: background .15s;
}

.ollin-question:last-child {
    border-bottom: none;
}

.ollin-question:hover {
    background: #fafbfc;
}

.ollin-q-row {
    display: flex;
    align-items: flex-start;
    flex: 1;
}

.ollin-q-row .ollin-q-text {
    flex: 1;
    margin: 0;
}

.ollin-q-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #2E6080;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

.ollin-q-text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #3A3A3A;
    flex: 1;
}

/* === YES/NO BUTTONS === */
.ollin-yn-group {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.ollin-yn-btn {
    padding: 0.45rem 1rem;
    border: none;
    border-radius: 6px;
    background: #eee;
    color: #999;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.ollin-yn-btn:hover {
    background: #e0e0e0;
}

.ollin-yn-btn.active[data-value="si"] {
    background: #F5B222 !important;
    color: #fff !important;
    border-color: #F5B222 !important;
    box-shadow: none;
    transform: none;
}

.ollin-yn-btn.active[data-value="no"] {
    background: #27ae60 !important;
    color: #fff !important;
    border-color: #27ae60 !important;
    box-shadow: none;
    transform: none;
}

.ollin-question--hidden {
    display: none !important;
}

@media (max-width: 600px) {
    .ollin-question {
        flex-direction: column;
        align-items: flex-start;
    }
    .ollin-yn-group {
        align-self: flex-end;
    }
}

/* === BUTTONS === */
.ollin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .3s;
    font-family: inherit;
    text-decoration: none;
    line-height: 1;
}

.ollin-btn-primary,
.ollin-btn--primary {
    background: #F5B222;
    color: #fff;
    border: none;
}

.ollin-btn-primary:hover:not(:disabled),
.ollin-btn--primary:hover:not(:disabled) {
    background: #dda01e;
    color: #fff;
}

.ollin-btn-primary:disabled,
.ollin-btn--primary:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.ollin-btn-secondary,
.ollin-btn--ghost {
    background: transparent;
    color: #6B7F9E;
    border: 1.5px solid #e0e0e0;
}

.ollin-btn-secondary:hover,
.ollin-btn--ghost:hover {
    background: #F2F4F7;
    border-color: #6B7F9E;
}

.ollin-btn--lg {
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

.ollin-btn-eval,
.ollin-btn-evaluate {
    background: #F5B222;
    color: #fff;
    border: none;
}

.ollin-btn-eval:hover:not(:disabled),
.ollin-btn-evaluate:hover:not(:disabled) {
    background: #dda01e;
    color: #fff;
}

.ollin-btn-outline {
    background: #fff;
    color: #2E6080;
    border: 1.5px solid #2E6080;
    width: 100%;
    justify-content: center;
}

.ollin-btn-outline:hover {
    background: #F2F4F7;
    color: #2E6080;
}

.ollin-btn-link {
    display: block;
    text-align: center;
    color: #6B7F9E;
    font-size: 0.82rem;
    text-decoration: none;
    margin-top: 0.8rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.ollin-btn-link:hover {
    color: #2E6080;
    text-decoration: underline;
}

/* === ACTIONS === */
.ollin-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.ollin-actions--center {
    justify-content: center;
}

.ollin-actions--end {
    justify-content: flex-end;
}

/* === RESULT BADGES === */
.ollin-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ollin-result-badge--success {
    background: rgba(39,174,96,0.1);
    color: #27ae60;
}

.ollin-result-badge--warning {
    background: rgba(245,178,34,0.1);
    color: #c8920e;
}

/* === PLAN BADGE (selected plan) === */
.ollin-plan-badge-sel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46,96,128,0.08);
    border: 1px solid rgba(46,96,128,0.15);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.ollin-plan-badge-sel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2E6080;
}

.ollin-plan-badge-sel__name {
    font-size: 0.82rem;
    color: #2E6080;
    font-weight: 600;
}

.ollin-plan-badge-sel__price {
    font-size: 0.82rem;
    color: #6B7F9E;
}

/* === INFO GRID === */
.ollin-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin: 1.5rem 0;
}

.ollin-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.8rem;
    background: #F2F4F7;
    border-radius: 10px;
}

.ollin-info-item__icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.ollin-info-item__text {
    font-size: 0.78rem;
    color: #3A3A3A;
    line-height: 1.35;
}

.ollin-info-item__text strong {
    color: #2E6080;
}

@media (max-width: 500px) {
    .ollin-info-grid {
        grid-template-columns: 1fr;
    }
}

/* === TIME BADGE === */
.ollin-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245,178,34,0.1);
    color: #F5B222;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* === PLAN SELECTION CARDS === */
.ollin-plan-selection {
    margin-top: 24px;
}

.ollin-plan-selection__header {
    text-align: center;
    margin-bottom: 20px;
}

.ollin-plan-selection__header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.ollin-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 680px) {
    .ollin-plans-grid {
        grid-template-columns: 1fr;
    }
}

.ollin-plan-card {
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    background: #fff;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all .3s;
    cursor: pointer;
    position: relative;
}

.ollin-plan-card:hover {
    border-color: #6B7F9E;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.ollin-plan-card--selected {
    border-color: #F5B222 !important;
    background: rgba(245,178,34,0.03);
    box-shadow: 0 0 0 1px #F5B222;
}

.ollin-plan-card__header {
    margin-bottom: 6px;
    width: 100%;
}

.ollin-plan-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #3A3A3A;
    margin: 0;
    line-height: 1.3;
}

.ollin-plan-tag {
    display: inline-block;
    background: #F5B222;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.2rem 0.8rem;
    border-radius: 10px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.ollin-plan-tag--premium {
    background: #2E6080;
}

.ollin-plan-card__price {
    margin-bottom: 8px;
}

.ollin-plan-card__amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E6080;
    line-height: 1.2;
    min-height: 30px;
}

.ollin-plan-card__period {
    display: block;
    font-size: 0.75rem;
    color: #6B7F9E;
    font-weight: 400;
    margin-top: 2px;
}

.ollin-plan-card__desc {
    font-size: 0.7rem;
    color: #6B7F9E;
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.ollin-plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    text-align: left;
    width: 100%;
    flex: 1;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.8rem;
}

.ollin-plan-card__features li {
    position: relative;
    padding: 3px 0 3px 18px;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
}

.ollin-plan-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 0.7rem;
}

/* === PLAN NOTE === */
.ollin-plan-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #F2F4F7;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: #666;
    line-height: 1.5;
}

.ollin-plan-note__icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* === SPINNER === */
.ollin-spinner-sm {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid #e0e0e0;
    border-top-color: #2E6080;
    border-radius: 50%;
    animation: ollinSpin .7s linear infinite;
    vertical-align: middle;
}

.ollin-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 16px;
    color: #2E6080;
    font-size: 14px;
}

.ollin-spinner,
.ollin-loading__spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #e0e0e0;
    border-top-color: #2E6080;
    border-radius: 50%;
    animation: ollinSpin .7s linear infinite;
}

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

/* === NOTICES === */
.ollin-notice {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin: 12px 0;
    line-height: 1.5;
}

.ollin-notice--error {
    background: #fdf0f0;
    border: 1px solid #e0b4b4;
    color: #8b1a1a;
}

.ollin-notice--success {
    background: #f0f9f2;
    border: 1px solid #a3d9b1;
    color: #1a6b2e;
    font-size: 15px;
}

/* === PANE (step content containers) === */
.ollin-pane {
    animation: ollinFadeIn 0.3s ease;
}

@keyframes ollinFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === STEP ERROR === */
.ollin-step1-error {
    background: rgba(231,76,60,0.08);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    line-height: 1.4;
}

/* === GNP FORM (embedded & standalone) === */
.ollin-gnp-wrapper {
    max-width: 760px;
}

.ollin-gnp-intro {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #F2F4F7;
    border-left: 4px solid #2E6080;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 28px;
}

.ollin-gnp-intro__icon {
    color: #2E6080;
    flex-shrink: 0;
    margin-top: 2px;
}

.ollin-gnp-intro h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2E6080;
    margin: 0 0 6px;
}

.ollin-gnp-intro p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* GNP Sections */
.ollin-gnp-section {
    margin-bottom: 20px;
    border: 1px solid #e0e8ef;
    border-radius: 12px;
    overflow: hidden;
}

.ollin-gnp-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    background: #2E6080;
    margin: 0;
    padding: 0.8rem 1.2rem;
}

.ollin-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.ollin-gnp-section .ollin-fields-grid,
.ollin-gnp-section .ollin-field,
.ollin-gnp-section .ollin-checkboxes-grid,
.ollin-gnp-section .ollin-section-desc,
.ollin-gnp-section .ollin-radio-group,
.ollin-gnp-section .ollin-declaration-box,
.ollin-gnp-section .ollin-checkbox-option {
    padding-left: 20px;
    padding-right: 20px;
}

.ollin-gnp-section .ollin-fields-grid {
    padding-top: 16px;
    padding-bottom: 16px;
}

.ollin-gnp-section .ollin-field {
    padding-top: 0;
    padding-bottom: 12px;
}

.ollin-gnp-section .ollin-section-desc {
    font-size: 0.82rem;
    color: #666;
    padding-top: 12px;
    padding-bottom: 0;
    margin: 0;
}

.ollin-gnp-section .ollin-radio-group {
    padding-top: 8px;
    padding-bottom: 12px;
}

/* Checkboxes grid */
.ollin-checkboxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 4px;
}

@media (max-width: 500px) {
    .ollin-checkboxes-grid { grid-template-columns: 1fr; }
}

.ollin-checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    color: #3A3A3A;
    line-height: 1.4;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.ollin-checkbox-option input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #2E6080;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ollin-checkbox-option--required {
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* Declaration box */
.ollin-declaration-box {
    background: #F2F4F7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 16px !important;
    margin: 12px 20px 0;
    font-size: 0.82rem;
    color: #555;
    line-height: 1.6;
}

.ollin-declaration-box p {
    margin: 0;
}

/* Privacy/legal note */
.ollin-legal-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #F2F4F7;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    color: #666;
    line-height: 1.5;
}

.ollin-legal-note__icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Error highlight */
.ollin-checkbox-option.ollin-error span {
    color: #e74c3c;
}

/* === OLD BADGE (kept for compat) === */
.ollin-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.ollin-badge--success {
    background: #e8f8ed;
    color: #1a8a3e;
    border: 1px solid #a3d9b1;
}

/* Plan badge (old compat) */
.ollin-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46,96,128,0.08);
    border: 1px solid rgba(46,96,128,0.15);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    color: #2E6080;
    margin-bottom: 16px;
}

/* GNP Success in standalone form */
.ollin-gnp-success {
    text-align: center;
    padding: 2rem;
}

.ollin-gnp-success h3 {
    color: #27ae60;
    font-size: 1.2rem;
}

/* === NEXT STEPS (under review flow) === */
.ollin-next-steps {
    margin: 1.5rem 0;
}

.ollin-next-step {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.ollin-next-step:last-child {
    border-bottom: none;
}

.ollin-next-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #2E6080;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.ollin-next-step__text {
    flex: 1;
}

.ollin-next-step__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3A3A3A;
    margin-bottom: 2px;
}

.ollin-next-step__desc {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.4;
}

/* === CONTACT FOOTER === */
.ollin-contact-footer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #F2F4F7;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: #666;
    line-height: 1.5;
}

.ollin-contact-footer a {
    color: #2E6080;
    text-decoration: none;
    font-weight: 600;
}

.ollin-contact-footer a:hover {
    text-decoration: underline;
}

/* =========================================================
   FIX: Hide <br> and empty <p> injected by WordPress wpautop
   ========================================================= */
.ollin-prequal br,
.ollin-prequal > p:empty,
.ollin-gnp-wrapper br:first-child {
    display: none !important;
}

.ollin-field > br,
.ollin-field label br,
.ollin-fields-grid > br,
.ollin-plans-grid > br,
.ollin-plans-grid > p,
.ollin-questions > br,
.ollin-card > br,
.ollin-actions > br,
.ollin-radio-group > br,
.ollin-plan-card > br,
.ollin-plan-card > p:empty,
.ollin-plan-selection > br,
.ollin-stepper > br,
.ollin-stepper > p:empty,
.ollin-info-grid > br,
.ollin-info-grid > p:empty,
.ollin-gnp-section > br,
.ollin-pane > br {
    display: none !important;
}
