/* ============================================
   Networking Script Builder - Styles
   ============================================ */

/* Tool Navigation */
.net-nav-section {
    position: sticky;
    top: 64px;
    z-index: 50;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.net-tool-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.net-tool-nav::-webkit-scrollbar {
    display: none;
}

.net-tool-nav .category-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Tool Sections */
.net-tool-section {
    display: none;
    padding: 60px 0 40px;
}

.net-tool-section.active {
    display: block;
}

.net-tool-header {
    margin-bottom: 32px;
}

/* Example Card */
.net-example-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 32px;
}

.net-example-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--accent-glow);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.net-example-content {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.net-example-content p {
    margin-bottom: 10px;
}

.net-example-content p:last-child {
    margin-bottom: 0;
}

.net-example-content ul {
    list-style: none;
    padding-left: 20px;
    margin: 8px 0;
}

.net-example-content ul li {
    position: relative;
    padding-left: 8px;
    margin-bottom: 4px;
}

.net-example-content ul li::before {
    content: "\2022";
    position: absolute;
    left: -12px;
    color: var(--accent-light);
}

/* Form Grid */
.net-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.net-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.net-input-group.full-width {
    grid-column: 1 / -1;
}

.net-input-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.net-input-group input,
.net-input-group select,
.net-input-group textarea {
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all var(--transition);
    outline: none;
}

.net-input-group input:focus,
.net-input-group select:focus,
.net-input-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.net-input-group input::placeholder,
.net-input-group textarea::placeholder {
    color: var(--text-muted);
}

.net-input-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0b5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.net-input-group textarea {
    resize: vertical;
    min-height: 60px;
}

/* Generate Button Wrapper */
.net-generate-wrapper {
    text-align: center;
    margin-bottom: 32px;
}

/* Result Card */
.net-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: fadeInUp 0.5s ease;
    margin-bottom: 40px;
}

.net-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
}

.net-result-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.net-result-body {
    padding: 24px 28px;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.8;
    white-space: pre-wrap;
}

.net-result-body p {
    margin-bottom: 12px;
}

.net-result-body p:last-child {
    margin-bottom: 0;
}

/* Coffee Chat Questions Specific */
.cc-question-list {
    list-style: none;
    padding: 0;
    counter-reset: question-counter;
}

.cc-question-item {
    counter-increment: question-counter;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.cc-question-item:last-child {
    margin-bottom: 0;
}

.cc-question-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--accent-glow);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.cc-question-text {
    flex: 1;
}

.cc-question-category {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

/* Free AI Badge (reuse from interview) */
.net-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.net-free-badge svg {
    color: var(--accent-light);
}

/* ============================================
   Coffee Chat Guide Styles
   ============================================ */

/* Guide Card */
.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 20px;
    position: relative;
}

.guide-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent-light);
}

.guide-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.guide-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Callouts */
.guide-callout {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
}

.guide-callout svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.guide-callout-warning {
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: #ff8a8a;
}

.guide-callout-warning svg {
    color: #ff6b6b;
}

.guide-callout-info {
    background: var(--accent-glow);
    border: 1px solid rgba(108, 92, 231, 0.2);
    color: var(--text-secondary);
}

.guide-callout-info svg {
    color: var(--accent-light);
}

/* Benefits Grid */
.guide-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.guide-benefit {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.guide-benefit-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--accent-glow);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.guide-benefit strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.guide-benefit p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Do/Don't Grid */
.guide-do-dont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}

.guide-do,
.guide-dont {
    padding: 18px 20px;
    border-radius: var(--radius-sm);
}

.guide-do {
    background: rgba(0, 210, 160, 0.06);
    border: 1px solid rgba(0, 210, 160, 0.2);
}

.guide-dont {
    background: rgba(255, 107, 107, 0.06);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.guide-label {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.guide-label-do {
    background: rgba(0, 210, 160, 0.15);
    color: #00d2a0;
}

.guide-label-dont {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.guide-do ul,
.guide-dont ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-do ul li,
.guide-dont ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.guide-do ul li:last-child,
.guide-dont ul li:last-child {
    margin-bottom: 0;
}

.guide-do ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #00d2a0;
    font-weight: 700;
}

.guide-dont ul li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
}

/* Steps */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-step {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.guide-step-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--accent-glow);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.guide-step strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.guide-step p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Tips List */
.guide-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-tips-list li {
    position: relative;
    padding: 12px 16px 12px 20px;
    margin-bottom: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.guide-tips-list li:last-child {
    margin-bottom: 0;
}

.guide-tips-list li strong {
    color: var(--text-primary);
}

/* Guide CTA */
.guide-cta-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 8px;
}

.guide-cta-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.guide-cta-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.guide-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.guide-cta-buttons .analyze-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 10px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .net-form-grid {
        grid-template-columns: 1fr;
    }

    .net-example-card {
        padding: 20px;
    }

    .net-result-header {
        padding: 16px 20px;
    }

    .net-result-body {
        padding: 20px;
    }

    .cc-question-item {
        padding: 14px 16px;
    }

    .guide-card {
        padding: 20px 22px;
    }

    .guide-benefits-grid {
        grid-template-columns: 1fr;
    }

    .guide-do-dont {
        grid-template-columns: 1fr;
    }

    .guide-cta-card {
        padding: 24px 20px;
    }

    .guide-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    .net-tool-section {
        padding: 40px 0 30px;
    }
}
