/* Source: resources/views/test/netshow_iq1/pm_product_manager.blade.php (block 1) */
:root {
    --bg: #0F1216;
    --surface: #171B21;
    --card: #21262E;
    --border: #2A313A;
    --separator: #2F3640;
    --text: #E7ECF2;
    --text-secondary: #A9B2BF;
    --text-muted: #7D8896;
    --primary: #3B82F6;
    --primary-hover: #2563EB;
    --primary-pressed: #1D4ED8;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #06B6D4;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow: 0 8px 24px rgba(0, 0, 0, .25);
    --focus: 0 0 0 2px #3B82F6, 0 0 0 6px rgba(59, 130, 246, .24);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 24px 16px;
}

.container-custom {
    max-width: 1280px;
    margin: 0 auto;
}

.hero-header {
    background: linear-gradient(180deg, var(--surface) 0%, #1C2128 100%);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .05);
    text-align: center;
}

.hero-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.form-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--separator);
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    flex: 1;
}

.help-icon {
    width: 24px;
    height: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 180ms ease;
    color: var(--text-muted);
    font-size: 14px;
}

.help-icon:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary);
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.01em;
}

.form-control, .form-select, textarea.form-control {
    background: #1C2128;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 14px;
    height: 48px;
    transition: all 180ms ease;
}

textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.form-control:focus, .form-select:focus {
    background: #1C2128;
    border-color: var(--primary);
    color: var(--text);
    box-shadow: var(--focus);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.helper-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
    letter-spacing: 0.02em;
}

.form-check {
    margin-bottom: 12px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    background-color: #1C2128;
    border: 1px solid var(--border);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: var(--focus);
}

.form-check-label {
    color: var(--text);
    font-size: 14px;
    margin-left: 8px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 180ms ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, .2);
    width: 100%;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, .3);
}

.btn-primary:active {
    background: var(--primary-pressed);
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 180ms ease;
    width: 100%;
}

.btn-secondary:hover {
    background: #252B34;
    border-color: var(--text-muted);
}

.stage-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.stage-pill {
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 180ms ease;
    font-weight: 500;
}

.stage-pill:hover {
    background: #262C35;
    border-color: var(--primary);
}

.stage-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.radio-card {
    flex: 1;
    min-width: 160px;
    padding: 16px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 180ms ease;
    text-align: center;
}

.radio-card:hover {
    border-color: var(--primary);
    background: #262C35;
}

.radio-card.selected {
    border-color: var(--primary);
    background: rgba(59, 130, 246, .1);
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

.radio-card-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.toast-custom {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow);
    z-index: 9999;
    max-width: 400px;
    display: none;
}

.toast-custom.show {
    display: block;
    animation: slideIn 300ms ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.file-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 180ms ease;
    background: var(--card);
}

.file-upload:hover {
    border-color: var(--primary);
    background: #262C35;
}

.file-upload i {
    font-size: 32px;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.priority-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.priority-item {
    padding: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    text-align: center;
    font-weight: 500;
}

.priority-item.high { border-left: 4px solid var(--danger); }
.priority-item.medium { border-left: 4px solid var(--warning); }
.priority-item.low { border-left: 4px solid var(--success); }

@media (max-width: 768px) {
    body {
        padding: 16px 12px;
    }

    .hero-header {
        padding: 32px 20px;
    }

    .hero-header h1 {
        font-size: 24px;
    }

    .form-card {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 16px;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-card {
        min-width: 100%;
    }
}

.progress-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    padding: 0 32px;
}

.progress-step {
    flex: 1;
    height: 4px;
    background: var(--card);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-step.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    animation: fillProgress 300ms ease;
}

@keyframes fillProgress {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.info-box {
    background: rgba(6, 182, 212, .1);
    border: 1px solid rgba(6, 182, 212, .3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--info);
}

.info-box i {
    margin-right: 8px;
}

.section-number-emoji {
    font-size: 20px;
}

.priority-matrix-title {
    font-size: 16px;
    margin-bottom: 16px;
}

.priority-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.priority-label-danger {
    color: var(--danger);
}

.priority-label-warning {
    color: var(--warning);
}

.priority-label-success {
    color: var(--success);
}

.priority-label-muted {
    color: var(--text-muted);
}

.priority-caption {
    font-size: 11px;
    color: var(--text-muted);
}

.priority-item-avoid {
    border-left: 4px solid var(--text-muted);
}

.toast-content-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-success-icon {
    color: var(--success);
    font-size: 20px;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.toast-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.prompt-output-textarea {
    font-family: monospace;
}
