/* Source: resources/views/test/netshow_iq1/netshow_ai_launcher.blade.php (block 1) */
/* ============================================
   NETSHOW DARK TECH DESIGN TOKENS
============================================ */
: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-ring: 0 0 0 2px #3B82F6, 0 0 0 6px rgba(59,130,246,.24);
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 100px;
}

/* ============================================
   LAYOUT
============================================ */
.main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px;
}

@media (min-width: 768px) {
    .main-container { padding: 40px 24px; }
}

/* ============================================
   HEADER - NETSHOW.AI BRAND
============================================ */
.page-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 48px 24px 40px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Ambient amber glow from top */
.page-header::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(251,191,36,.4) 0%, rgba(249,115,22,.25) 30%, rgba(244,63,94,.1) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.page-header > * {
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20,20,24,.9);
    color: #FBBF24;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(251,191,36,.4);
    backdrop-filter: blur(8px);
}

.header-badge i {
    color: #FBBF24;
    font-size: 14px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.logo-diamond {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #f43f5e 100%);
    transform: rotate(45deg);
    border-radius: 7px;
    flex-shrink: 0;
    box-shadow: 0 4px 24px rgba(249,115,22,.5);
}

@media (min-width: 768px) {
    .page-title { font-size: 36px; }
    .logo-diamond {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
}

.page-subtitle {
    font-size: 15px;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FOOTER - NETSHOW.AI PREMIUM WARM GRADIENTS
============================================ */
.form-footer {
    position: relative;
    text-align: center;
    padding: 48px 24px 32px;
    margin-top: 16px;
    background: linear-gradient(180deg, var(--surface) 0%, rgba(251,191,36,.03) 40%, rgba(249,115,22,.04) 70%, rgba(244,63,94,.03) 100%);
    border-top: 1px solid rgba(251,191,36,.15);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(251,191,36,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251,191,36,.25) 0%, rgba(249,115,22,.15) 40%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.footer-logo .logo-icon {
    font-size: 32px;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(249,115,22,.4));
    animation: iconShimmer 3s ease-in-out infinite;
}

@keyframes iconShimmer {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(249,115,22,.3)) brightness(1); }
    50% { filter: drop-shadow(0 0 30px rgba(251,191,36,.5)) brightness(1.1); }
}

.footer-logo .logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: -0.5px;
}

.footer-logo .logo-ai {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 28px;
    line-height: 1.5;
}

.footer-tagline .highlight {
    font-weight: 600;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Capabilities Grid */
.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(251,191,36,.08) 0%, rgba(249,115,22,.06) 100%);
    border: 1px solid rgba(251,191,36,.15);
    border-radius: 20px;
    transition: all 0.25s ease;
}

.capability-item:hover {
    background: linear-gradient(135deg, rgba(251,191,36,.15) 0%, rgba(249,115,22,.12) 100%);
    border-color: rgba(249,115,22,.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(249,115,22,.15);
}

.capability-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #f43f5e 100%);
    border-radius: 6px;
    font-size: 12px;
    color: white;
    box-shadow: 0 2px 8px rgba(249,115,22,.3);
}

.capability-label {
    font-size: 13px;
    font-weight: 500;
    color: #e2e8f0;
}

/* Tech Line */
.tech-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 13px;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(251,191,36,.7) 0%, rgba(249,115,22,.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-text {
    color: #94a3b8;
    letter-spacing: 1px;
}

/* Stats */
.footer-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 28px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(251,191,36,.06) 0%, rgba(249,115,22,.04) 50%, rgba(244,63,94,.03) 100%);
    border: 1px solid rgba(251,191,36,.12);
    border-radius: 12px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 24px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.03);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(249,115,22,.2));
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(251,191,36,.3) 50%, transparent 100%);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.footer-link:hover {
    background: linear-gradient(135deg, rgba(251,191,36,.1) 0%, rgba(249,115,22,.08) 100%);
    border-color: rgba(251,191,36,.2);
    color: #fbbf24;
}

.footer-divider {
    color: #64748b;
    opacity: 0.3;
}

.footer-copyright {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.code-comment {
    background: linear-gradient(135deg, rgba(34,197,94,.7) 0%, rgba(16,185,129,.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-pulse {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(249,115,22,.12) 0%, rgba(244,63,94,.08) 40%, transparent 70%);
    pointer-events: none;
    animation: footerPulse 4s ease-in-out infinite;
}

@keyframes footerPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.15); }
}

@media (max-width: 576px) {
    .form-footer {
        padding: 36px 16px 24px;
    }

    .footer-tagline {
        font-size: 16px;
    }

    .capabilities-grid {
        gap: 8px;
    }

    .capability-item {
        padding: 6px 10px;
    }

    .capability-label {
        font-size: 12px;
    }

    .tech-line {
        flex-direction: column;
        gap: 4px;
        font-size: 11px;
    }

    .footer-stats {
        gap: 16px;
        padding: 16px;
    }

    .stat-value {
        font-size: 20px;
    }

    .footer-cta {
        flex-direction: column;
        gap: 8px;
    }

    .footer-divider {
        display: none;
    }
}

/* ============================================
   FORM CARDS - DISTINCT SECTIONS
============================================ */
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    position: relative;
}

@media (min-width: 768px) {
    .form-card { padding: 28px; }
}

/* Section 1: AI Model - Blue accent */
.form-card.section-ai {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(59,130,246,.03) 100%);
    border-left: 3px solid rgba(59,130,246,.25);
}

/* Section 2: Your Information - Purple accent */
.form-card.section-info {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(139,92,246,.03) 100%);
    border-left: 3px solid rgba(139,92,246,.25);
}

/* Section 3: Domain & Website - Teal accent */
.form-card.section-domain {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(20,184,166,.03) 100%);
    border-left: 3px solid rgba(20,184,166,.25);
}

/* Section 4: Social Media - Pink accent */
.form-card.section-social {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(236,72,153,.03) 100%);
    border-left: 3px solid rgba(236,72,153,.25);
}

/* Section 5: Choose Your Path - Green accent */
.form-card.section-path {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(34,197,94,.03) 100%);
    border-left: 3px solid rgba(34,197,94,.25);
}

/* Section 6: Save Progress - Cyan accent */
.form-card.save-section {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(6,182,212,.04) 100%);
    border-left: 3px solid rgba(6,182,212,.25);
}

/* Sub-section dividers inside cards */
.sub-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--separator);
    position: relative;
}

.sub-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

/* Address sub-section - warm accent */
.sub-section.sub-address::before {
    background: linear-gradient(90deg, #f59e0b 0%, transparent 100%);
}

/* Domain sub-section - teal accent */
.sub-section.sub-domain::before {
    background: linear-gradient(90deg, #14b8a6 0%, transparent 100%);
}

/* Social sub-section - pink accent */
.sub-section.sub-social::before {
    background: linear-gradient(90deg, #ec4899 0%, transparent 100%);
}

/* Webhook sub-section - purple accent */
.sub-section.sub-webhook::before {
    background: linear-gradient(90deg, #8b5cf6 0%, transparent 100%);
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--separator);
}

.section-icon {
    font-size: 18px;
    margin-right: 10px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .section-title { font-size: 18px; }
}

.section-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Section title with help link */
.section-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.section-help-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    text-decoration: none;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.section-help-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(59,130,246,.1);
}

.section-help-link i {
    font-size: 11px;
}

.section-help-link.help-domain:hover {
    color: #14b8a6;
    border-color: #14b8a6;
    background: rgba(20,184,166,.1);
}

.section-help-link.help-social:hover {
    color: #ec4899;
    border-color: #ec4899;
    background: rgba(236,72,153,.1);
}

/* ============================================
   HELP POPUPS
============================================ */
.help-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.18s ease;
    flex-shrink: 0;
}

.help-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.help-popup {
    position: relative;
}

.help-content {
    display: none;
    position: absolute;
    z-index: 100;
    width: 300px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    top: calc(100% + 8px);
    right: 0;
}

.help-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: var(--card);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
}

.help-popup.open .help-content {
    display: block;
}

@media (max-width: 576px) {
    .help-content {
        width: 260px;
        right: -60px;
    }
}

/* ============================================
   FORM CONTROLS
============================================ */
.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-label .emoji {
    font-size: 14px;
}

.form-control, .form-select {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 12px 14px;
    font-size: 14px;
    height: 48px;
    transition: all 0.18s ease;
}

.form-control:focus, .form-select:focus {
    background: var(--card);
    border-color: var(--primary);
    box-shadow: var(--focus-ring);
    color: var(--text);
}

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

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23A9B2BF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 12px;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--card);
    color: var(--text);
    padding: 8px;
}

.form-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

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

/* Input Group */
.input-group-text {
    background: var(--card);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text-muted);
    padding: 12px 14px;
    font-size: 14px;
}

.input-group .form-control {
    border-left: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

/* Password Toggle */
.password-wrap {
    position: relative;
}

.password-wrap .form-control {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
}

.password-toggle:hover {
    color: var(--primary);
}

/* ============================================
   LLM PROVIDER SELECTION
============================================ */
.llm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .llm-grid { grid-template-columns: 1fr; }
}

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

.llm-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    transition: all 0.18s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.llm-card:hover {
    border-color: var(--primary);
    background: rgba(59,130,246,.05);
}

.llm-option input:checked + .llm-card {
    border-color: var(--primary);
    background: rgba(59,130,246,.1);
    box-shadow: var(--focus-ring);
}

.llm-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
}

.llm-icon.anthropic { background: linear-gradient(135deg, #d4a574, #b8845a); }
.llm-icon.openai { background: linear-gradient(135deg, #10a37f, #0b7d5e); }
.llm-icon.gemini { background: linear-gradient(135deg, #4285f4, #7b68ee); }

.llm-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.llm-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Model Select */
.model-select-wrap {
    margin-top: 16px;
}

/* ============================================
   ACTION PATH SELECTION
============================================ */
.action-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .action-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .action-grid .action-option-wrap {
        flex: 1;
        min-width: 0;
        transition: flex 0.3s ease;
    }

    .action-grid .action-option-wrap.expanded {
        flex: 2.5;
    }

    .action-grid .action-option-wrap.collapsed {
        flex: 0.75;
    }

    .action-grid .action-option-wrap.collapsed .action-card {
        padding: 16px;
    }

    .action-grid .action-option-wrap.collapsed .action-desc {
        display: none;
    }

    .action-grid .action-option-wrap.collapsed .action-badge {
        display: none;
    }
}

.action-option-wrap {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.action-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: all 0.18s ease;
    height: 100%;
}

.action-card:hover {
    border-color: var(--primary);
    background: rgba(59,130,246,.05);
}

.action-option input:checked + .action-card {
    border-color: var(--primary);
    background: rgba(59,130,246,.1);
    box-shadow: var(--focus-ring);
}

.action-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.action-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

.action-option input:checked + .action-card .action-num {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.action-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.action-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: all 0.2s ease;
}

.action-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.action-badge.brainstorm {
    background: rgba(34,197,94,.15);
    color: var(--success);
}

.action-badge.validate {
    background: rgba(245,158,11,.15);
    color: var(--warning);
}

.action-badge.create {
    background: rgba(59,130,246,.15);
    color: var(--primary);
}

/* Business Idea Textarea (shown when option 3 selected) */
.idea-input-wrap {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--separator);
}

.idea-input-wrap.show {
    display: block;
}

/* ============================================
   EXPANDED ACTION FORMS
============================================ */
.action-option-wrap {
    display: flex;
    flex-direction: column;
}

.action-expanded {
    display: none;
    margin-top: 12px;
    animation: slideDown 0.25s ease-out;
}

.action-expanded.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expanded-inner {
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(59,130,246,.15);
}

.expanded-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--separator);
}

.expanded-header i {
    font-size: 18px;
}

.expanded-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--separator);
    align-items: stretch;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--surface);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    justify-content: center;
}

.skill-badge i {
    color: var(--primary);
}

.skill-badge strong {
    color: var(--text-secondary);
    font-family: 'SFMono-Regular', Consolas, monospace;
}

.skill-badge .arrow {
    color: var(--text-muted);
    margin: 0 4px;
}

.skill-badge .extra-info {
    color: var(--success);
    font-weight: 500;
}

/* Launch Buttons */
.btn-launch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    width: 100%;
}

.btn-launch:hover {
    transform: translateY(-1px);
}

.btn-launch:active {
    transform: translateY(0);
}

.btn-launch-green {
    background: var(--success);
    color: white;
    box-shadow: 0 4px 12px rgba(34,197,94,.3);
}

.btn-launch-green:hover {
    background: #16a34a;
    box-shadow: 0 6px 16px rgba(34,197,94,.4);
}

.btn-launch-amber {
    background: var(--warning);
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(245,158,11,.3);
}

.btn-launch-amber:hover {
    background: #d97706;
    box-shadow: 0 6px 16px rgba(245,158,11,.4);
}

.btn-launch-blue {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(59,130,246,.3);
}

.btn-launch-blue:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 16px rgba(59,130,246,.4);
}

/* ============================================
   SOCIAL MEDIA INPUTS
============================================ */
.social-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .social-grid { grid-template-columns: repeat(2, 1fr); }
}

/* New Social Media Grid */
.social-grid-new {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .social-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .social-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

.social-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: white;
    transition: all 0.18s ease;
    cursor: default;
}

.social-badge svg {
    flex-shrink: 0;
}

.social-input {
    height: 44px !important;
    font-size: 13px !important;
}

/* Platform-specific colors */
.social-badge.facebook {
    background: #1877F2;
}

.social-badge.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-badge.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
}

.social-badge.tiktok {
    background: #000000;
    border: 1px solid var(--border);
}

.social-badge.twitter {
    background: #000000;
    border: 1px solid var(--border);
}

.social-badge.linkedin {
    background: #0A66C2;
}

.social-badge.pinterest {
    background: #E60023;
}

.social-badge.threads {
    background: #000000;
    border: 1px solid var(--border);
}

.social-badge.bluesky {
    background: #0085FF;
}

.social-badge.github {
    background: #24292e;
    border: 1px solid var(--border);
}

.social-badge.whatsapp {
    background: #25D366;
}

.social-badge.telegram {
    background: #26A5E4;
}

.social-badge.webhook {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
}

/* Webhook wrap full width */
.webhook-wrap {
    max-width: 600px;
}

.webhook-wrap .social-badge {
    width: fit-content;
}

/* ============================================
   DOMAIN REGISTRATION BOX
============================================ */
.domain-register-box {
    margin-top: 20px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.domain-register-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
}

.domain-register-header i {
    font-size: 18px;
    color: var(--primary);
}

.domain-register-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.domain-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.18s ease;
}

.domain-link:hover {
    border-color: var(--primary);
    background: rgba(59,130,246,.1);
    color: var(--primary);
    transform: translateY(-1px);
}

.domain-link svg {
    flex-shrink: 0;
}

.domain-link .bi-box-arrow-up-right {
    font-size: 12px;
    opacity: 0.6;
}

.domain-link.godaddy:hover {
    border-color: #00a63f;
    background: rgba(0,166,63,.1);
    color: #00a63f;
}

.domain-link.namecheap:hover {
    border-color: #de5833;
    background: rgba(222,88,51,.1);
    color: #de5833;
}

.domain-link.cloudflare:hover {
    border-color: #f38020;
    background: rgba(243,128,32,.1);
    color: #f38020;
}

.domain-link.google:hover {
    border-color: #4285f4;
    background: rgba(66,133,244,.1);
    color: #4285f4;
}

.domain-register-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid var(--separator);
}

.domain-register-note i {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 576px) {
    .domain-register-links {
        flex-direction: column;
    }

    .domain-link {
        justify-content: center;
    }
}

/* ============================================
   SAVE & SUBMIT BUTTONS
============================================ */
.submit-section {
    margin-top: 8px;
}

.save-section {
    background: linear-gradient(180deg, var(--surface) 0%, rgba(59,130,246,.03) 100%);
}

.save-content {
    margin-bottom: 20px;
}

.save-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .save-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }
}

.save-input-group {
    flex: 1;
    min-width: 0;
}

.save-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 28px; /* Align with input field (label height) */
}

@media (max-width: 767px) {
    .save-button-group {
        padding-top: 0;
        width: 100%;
    }

    .save-button-group .btn-save {
        width: 100%;
    }
}

.btn-save {
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-save:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59,130,246,.35);
}

.btn-save:active {
    transform: translateY(0);
}

.btn-save-mobile {
    width: 100%;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.autosave-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.autosave-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-note i {
    font-size: 20px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-note strong {
    color: var(--text);
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59,130,246,.35);
}

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

.submit-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================
   STATUS INDICATORS
============================================ */
.status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
}

.status-dot.active {
    background: var(--success);
}

/* ============================================
   STEP INDICATORS - NETSHOW SUNSET THEME
============================================ */
.steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 24px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1e2028;
    border: 1px solid #3a3f4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.step-item.active .step-num {
    background: linear-gradient(180deg, #fbbf24 0%, #f97316 50%, #ea580c 100%);
    border: none;
    color: white;
    box-shadow: 0 6px 20px rgba(249,115,22,.5);
}

.step-line {
    width: 32px;
    height: 2px;
    background: #3a3f4a;
}

@media (max-width: 768px) {
    .steps-bar { padding: 18px 20px; gap: 6px; }
    .step-num { width: 32px; height: 32px; font-size: 13px; border-radius: 8px; }
    .step-line { width: 20px; }
    .step-item { font-size: 13px; gap: 8px; }
}

@media (max-width: 576px) {
    .step-text { display: none; }
    .step-line { width: 16px; }
    .steps-bar { padding: 14px 16px; }
    .step-num { width: 28px; height: 28px; font-size: 12px; }
}

/* ============================================
   REQUIRED INDICATOR
============================================ */
.required {
    color: var(--danger);
    margin-left: 2px;
}

/* ============================================
   VALIDATION STATES
============================================ */
.form-control.is-invalid {
    border-color: var(--danger);
}

.invalid-feedback {
    color: var(--danger);
    font-size: 12px;
    margin-top: 6px;
}

/* ============================================
   MOBILE STICKY SUBMIT
============================================ */
@media (max-width: 768px) {
    .mobile-submit {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--surface);
        border-top: 1px solid var(--border);
        padding: 16px;
        z-index: 50;
    }

    .mobile-submit .btn-submit {
        margin: 0;
    }

    body {
        padding-bottom: 100px;
    }
}

@media (min-width: 769px) {
    .mobile-submit { display: none; }
}

@media (min-width: 769px) {
    .mobile-submit { display: none; }
}


/* Inline style extraction batch: final medium files (2026-02-10) */
/* Source: resources/views/test/netshow_iq1/netshow_ai_launcher.blade.php */
.test-netshow-iq1-netshow-ai-launcher-text-muted-inline-1 { font-size: 13px; }

/* Extracted inline styles */
.optgroup-hidden {
    display: none;
}

.help-btn-sm {
    width: 22px;
    height: 22px;
    font-size: 11px;
}

.hidden-initial {
    display: none;
}
