/* ============================================================
   quick-onboarding.css
   Styles for the 4-step Quick Onboarding overlay - Premium Shifted Layout
   ============================================================ */

/* ── Overlay backdrop ── */
#onboardingOverlay {
    position: fixed;
    inset: 0;
    display: block;
    z-index: 10000;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
    background: #0a0a0a;
}

/* ── Split Layout ── */
.qo-split-layout {
    position: absolute;
    inset: 0;
    display: flex;
    margin: 0;
    transition: all 0.5s ease;
}

.qo-left-panel {
    flex: 0 0 40%;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 40%;
    transition: all 0.5s ease;
}

.qo-right-panel {
    flex: 1;
    background: #ffffff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin: 0;
    position: relative;
    transition: all 0.5s ease;
}

/* Modifier: full width for pricing screen */
.qo-split-layout.is-pricing .qo-left-panel {
    max-width: 100%;
    flex: 1;
}
.qo-split-layout.is-pricing .qo-right-panel {
    display: none;
    max-width: 0;
}

/* Logo centering on pricing screen */
.qo-split-layout.is-pricing .qo-topbar {
    justify-content: center;
}
.qo-split-layout.is-pricing .qo-topbar-time {
    display: none;
}

/* Modifier: completion screen — no flicker, CSS-only layout */
.qo-split-layout.is-completing .qo-right-panel {
    display: none;
}
.qo-split-layout.is-completing .qo-left-panel {
    max-width: 100%;
    flex: 1;
}
.qo-split-layout.is-completing .qo-topbar,
.qo-split-layout.is-completing .qo-dots-wrap,
.qo-split-layout.is-completing .qo-nav,
.qo-split-layout.is-completing .qo-global-back,
.qo-split-layout.is-completing .qo-global-close {
    display: none;
}
.qo-split-layout.is-completing .qo-left-inner {
    justify-content: center;
}

@media (max-width: 900px) {
    .qo-split-layout {
        flex-direction: column;
    }
    .qo-left-panel, .qo-right-panel {
        max-width: 100%;
        flex: none;
        height: 50vh;
    }
    .qo-right-panel {
        display: none;
    }
    .qo-left-panel {
        height: 100vh;
    }
}

/* ── Left Panel Inner Layout ── */
.qo-left-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    padding: 48px 40px;
    justify-content: space-between;
    transition: max-width 0.5s ease;
}

.qo-split-layout.is-pricing .qo-left-inner {
    max-width: 1000px; /* Wider for dual cards */
}

/* ── Top bar (logo) ── */
.qo-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}

/* ── Global Back Arrow ── */
.qo-global-back {
    position: absolute;
    top: 32px;
    right: 40px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 8px;
    z-index: 100;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qo-global-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.qo-global-back:disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.qo-split-layout.is-pricing .qo-global-back {
    right: auto;
    left: 40px;
}

.qo-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.qo-logo svg {
    width: 24px;
    height: 24px;
}

/* ── Global Close (Skip) 'X' ── */
.qo-global-close {
    position: absolute;
    top: 32px;
    right: 40px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qo-global-close:hover {
    background: rgba(0,0,0,0.05);
    color: #111;
}

.qo-split-layout.is-pricing .qo-global-close {
    color: rgba(255, 255, 255, 0.4);
}
.qo-split-layout.is-pricing .qo-global-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .qo-global-close {
        color: #999;
        right: 24px;
        top: 24px;
    }
    .qo-global-close:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }
    .qo-global-back {
        right: 24px;
        top: 24px;
    }
    .qo-split-layout.is-pricing .qo-global-back {
        right: auto;
        left: 24px;
    }
}

/* ── Step dots ── */
.qo-dots-wrap {
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
}
.qo-split-layout.is-pricing .qo-dots-wrap {
    display: none;
}
/* ── Progress Bar (Advanced) ── */
.qo-progress-track {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}
.qo-progress-fill {
    height: 100%;
    background: #fff;
    transition: width 0.3s ease;
}
.qo-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}
.qo-dot {
    flex: 1;
    max-width: 48px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}
.qo-dot.active, .qo-dot.filled {
    background: #fff;
}
.qo-dot.skipped {
    background: rgba(255, 255, 255, 0.15);
}

/* ── Main Content Container ── */
.qo-content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: qo-fade-in 0.4s ease both;
}
.qo-content-container.qo-animate {
    animation: qo-fade-in 0.5s ease both;
}

@keyframes qo-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Question text ── */
.qo-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.qo-question {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.qo-split-layout.is-pricing .qo-question {
    text-align: center;
    font-size: 2.5rem;
}

.qo-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 48px;
    line-height: 1.5;
    font-weight: 400;
}

.qo-split-layout.is-pricing .qo-subtitle {
    text-align: center;
}

/* ── Option grid ── */
.qo-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

/* ── Option button ── */
.qo-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.qo-option:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.qo-option.selected {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.qo-option-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: transparent;
}

.qo-option.selected .qo-option-check {
    border-color: #000;
    background: #000;
}

.qo-option.selected .qo-option-check::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

/* ── Registration / Input Step ── */
.qo-input-wrap {
    position: relative;
    margin-bottom: 48px;
}

.qo-input {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.qo-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.qo-input:focus {
    border-color: #fff;
}

/* Consent Checkbox Layout */
.qo-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    cursor: pointer;
}

.qo-checkbox-box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.qo-checkbox-wrap:hover .qo-checkbox-box {
    border-color: rgba(255, 255, 255, 0.6);
}

.qo-checkbox-box.checked {
    background: #fff;
    border-color: #fff;
}

.qo-checkbox-box.checked::after {
    content: '';
    width: 5px;
    height: 9px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg) translateY(-2px);
}

.qo-checkbox-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    user-select: none;
}

/* ── Autocomplete styling ── */
.qo-autocomplete-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    display: none;
}

.qo-autocomplete-item {
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qo-autocomplete-item:last-child {
    border-bottom: none;
}

.qo-autocomplete-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.qo-autocomplete-region {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: auto;
}

.qo-loader {
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Navigation ── */
.qo-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto; /* Fix skákania tlačidla: uchytí panel s tlačidlami stabilne dole, aj keď sa content zväčší o Iné input */
    margin-bottom: 24px;
}

.qo-split-layout.is-pricing .qo-nav {
    display: none; /* Hidden on pricing */
}

.qo-btn-next {
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.qo-btn-next:hover:not(:disabled) {
    transform: scale(1.02);
}

.qo-btn-next:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    transform: none;
}

/* ── Skip link ── */
.qo-skip-step {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
    font-weight: 600;
}

.qo-skip-step:hover {
    color: #fff;
}

/* ── Pricing Screen Grid ── */
.qo-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
    margin-top: 16px;
}

.qo-pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
}

.qo-pricing-card.premium {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.qo-pricing-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.qo-pricing-card:not(.premium) .qo-pricing-name {
    color: #fff;
}

.qo-pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.qo-pricing-price span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.6;
}

.qo-pricing-desc {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 32px;
    line-height: 1.5;
}

.qo-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex: 1;
}

.qo-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.qo-pricing-card:not(.premium) .qo-pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}

.qo-pricing-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qo-pricing-card.premium .qo-pricing-check {
    background: #111;
    color: #fff;
}

.qo-pricing-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: inherit;
}

.qo-pricing-card:not(.premium) .qo-pricing-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qo-pricing-card.premium .qo-pricing-btn {
    background: #000;
    color: #fff;
    border-color: #000;
}

.qo-pricing-card.premium .qo-pricing-btn:hover {
    opacity: 0.85;
}

@media (max-width: 900px) {
    .qo-pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ── Completion screen ── */
.qo-complete {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qo-complete-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: #fff;
    animation: qo-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes qo-pop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ── Right Panel Preview Layout (Premium SaaS Widget) ── */
.qo-preview-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 24px 64px -8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    animation: qo-fade-up 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes qo-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.qo-preview-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 32px 0;
}

.qo-preview-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.qo-preview-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-weight: 800;
    font-size: 1.2rem;
}

.qo-preview-avatar svg {
    opacity: 0.8;
}

.qo-preview-user {
    display: flex;
    flex-direction: column;
}

.qo-preview-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.qo-preview-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
}

.qo-preview-body {
    padding: 0 32px 32px;
}

.qo-preview-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
}

.qo-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qo-preview-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.qo-preview-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.qo-skeleton-block {
    height: 18px;
    border-radius: 4px;
    background: #f4f5f7;
    width: 60px;
}

/* ── Advanced Inputs ── */
.qo-slider-wrap {
    margin-bottom: 24px;
}
.qo-slider-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}
.qo-slider-val {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.qo-slider-suf {
    font-size: 1rem;
    opacity: 0.5;
    font-weight: 600;
}
.qo-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}
.qo-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 2px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: transform 0.1s;
}
.qo-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 2px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.qo-slider::-webkit-slider-thumb:active {
    transform: scale(1.1);
}
.qo-slider-ends {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.85rem;
    opacity: 0.5;
    font-weight: 600;
}

.qo-number-field {
    position: relative;
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
}
.qo-number-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: inherit;
    width: 100%;
    padding: 8px 0;
    outline: none;
    transition: all 0.3s ease;
}
.qo-number-input:focus {
    border-color: #fff;
}
.qo-number-unit {
    position: absolute;
    right: 0;
    bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.5;
}

.qo-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.qo-dual-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.7;
}

.qo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.qo-chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.qo-chip:hover {
    background: rgba(255,255,255,0.1);
}
.qo-chip.selected {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.qo-links-section {
    margin-top: 32px;
}
.qo-links-heading {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── "Skoro hotovo" trial modal ── */
.qo-trial-modal {
    position: absolute;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: qo-fade-in 0.25s ease both;
}

.qo-trial-box {
    background: #111;
    border-radius: 18px;
    padding: 36px 28px 28px;
    width: 100%;
    max-width: 400px;
    position: relative;
    color: #fff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qo-trial-close {
    position: absolute;
    top: 14px;
    left: 14px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.15s;
}
.qo-trial-close:hover { color: #fff; }

.qo-trial-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.qo-trial-heading {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    text-align: center;
}

.qo-trial-sub {
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
    margin: -8px 0 0;
}

.qo-trial-user-card {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qo-trial-user-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #888;
}

.qo-trial-user-label {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: #666;
    font-weight: 600;
}

.qo-trial-user-email {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
}

.qo-trial-check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: #bbb;
    line-height: 1.5;
    cursor: pointer;
}

.qo-trial-check-row input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    accent-color: #fff;
    cursor: pointer;
}

.qo-trial-check-row a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.qo-trial-cta {
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    font-family: inherit;
}

.qo-trial-cta:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.qo-trial-cta:not(:disabled):hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.qo-trial-footer {
    font-size: 0.72rem;
    color: #666;
    text-align: center;
    margin: -4px 0 0;
    line-height: 1.6;
}

.qo-trial-error {
    font-size: 0.8rem;
    color: #f66;
    text-align: center;
    margin: 0;
}

/* ── Mobile adjustments ── */
@media (max-width: 640px) {
    .qo-left-inner {
        padding: 24px;
    }
    .qo-question {
        font-size: 1.8rem;
    }
    .qo-dual-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
