/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* User Navigation Bar */
.user-navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.user-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-greeting {
    color: #555;
    font-size: 14px;
}

.user-role-badge {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.user-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-nav-link {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.user-nav-link:hover {
    color: #d35400;
}

.btn-small {
    padding: 6px 16px;
    font-size: 13px;
}

/* Page Container */
.page {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 0.3s ease-in;
}

.page.active {
    display: block;
}

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

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.back-btn {
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.back-btn:hover {
    background: #e0e0e0;
    transform: translateX(-2px);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.page-icon {
    font-size: 32px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.page-subtitle {
    color: #666;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin: 40px 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Feature Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.card-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #000;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    width: 100%;
}

.btn-secondary:hover {
    background: #f9f9f9;
    border-color: #bbb;
}

.btn-accent {
    background: #d35400;
    color: white;
    width: 100%;
}

.btn-accent:hover {
    background: #e67e22;
}

.btn-outline {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-outline:hover {
    background: #f9f9f9;
}

.btn-primary-large {
    background: #000;
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-primary-large:hover {
    background: #333;
}

.btn-secondary-large {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-secondary-large:hover {
    background: #f9f9f9;
}

.btn-accent-large {
    background: #d35400;
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-accent-large:hover {
    background: #e67e22;
}

.btn-primary-sm {
    background: #000;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-outline-sm {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-success {
    background: #27ae60;
    color: white;
    padding: 12px 24px;
}

.btn-success:hover {
    background: #2ecc71;
}

.btn-primary-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #000;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: 16px;
    z-index: 100;
}

.btn-primary-floating:hover {
    background: #333;
    transform: scale(1.05);
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 40px 0;
    text-align: center;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.dashboard-icon {
    font-size: 28px;
}

.dashboard-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #666;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

/* Tabs */
.tabs-container {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    background: white;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #666;
}

.tab:hover {
    background: #f5f5f5;
    color: #333;
}

.tab.active {
    background: #f0f0f0;
    color: #000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

/* Idea Cards */
.ideas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.idea-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.idea-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.idea-card.featured {
    border: 2px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, white 100%);
}

.idea-header {
    display: flex;
    gap: 20px;
}

.vote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vote-btn {
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.vote-btn:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.vote-count {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.idea-content {
    flex: 1;
}

.idea-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.idea-title-row h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-leader {
    background: #e74c3c;
    color: white;
}

.badge-rising {
    background: #f39c12;
    color: white;
}

.badge-new {
    background: #d35400;
    color: white;
}

.idea-meta {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
}

.idea-description {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.idea-metrics {
    display: flex;
    gap: 40px;
    margin: 20px 0;
}

.metric-item {
    text-align: center;
}

.metric-item .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.metric-item .metric-label {
    font-size: 12px;
    color: #666;
}

.idea-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    margin: 40px auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: #666;
    font-size: 15px;
}

/* Tip Box */
.tip-box {
    display: flex;
    gap: 15px;
    background: #fff8e6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #f39c12;
}

.tip-icon {
    font-size: 24px;
}

.tip-box strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.tip-box p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Forms */
.submit-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.required {
    color: #e74c3c;
    font-size: 12px;
    font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #333;
}

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

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.radio-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: #bbb;
}

.radio-option.selected {
    border-color: #000;
    background: #f9f9f9;
}

.radio-option input {
    margin-right: 8px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.stat-change {
    font-size: 13px;
    color: #27ae60;
}

/* Impact Section */
.impact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.impact-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}

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

.impact-icon {
    font-size: 28px;
}

.impact-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.impact-value {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.impact-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.progress-label {
    font-size: 12px;
    color: #666;
}

/* Top Use Cases */
.top-use-cases {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin: 25px 0;
}

.top-use-cases h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.use-case-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.rank-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.rank-1 { background: #c0392b; }
.rank-2 { background: #8e44ad; }
.rank-3 { background: #16a085; }

.use-case-info {
    flex: 1;
}

.use-case-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.use-case-stats {
    font-size: 13px;
    color: #666;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-deployed {
    background: #d5f4e6;
    color: #27ae60;
}

.status-progress {
    background: #ffeaa7;
    color: #d35400;
}

.status-proposed {
    background: #e8e8e8;
    color: #666;
}

.status-ready {
    background: #d5f4e6;
    color: #27ae60;
}

.status-started {
    background: #dfe6e9;
    color: #2d3436;
}

/* Department Participation */
.department-participation {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin: 25px 0;
}

.department-participation h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.dept-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dept-item {
    display: grid;
    grid-template-columns: 200px 1fr 50px;
    align-items: center;
    gap: 15px;
}

.dept-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.dept-bar {
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.dept-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 12px;
    transition: width 0.5s ease;
}

.dept-count {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-align: right;
}

/* Learning Hub */
.welcome-banner {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin: 25px 0;
}

.welcome-icon {
    font-size: 36px;
}

.welcome-banner h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-banner p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.badge-row {
    display: flex;
    gap: 10px;
}

.info-badge {
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.badge-ai {
    background: #ffeaa7;
    color: #d63031;
}

.badge-code {
    background: #dfe6e9;
    color: #2d3436;
}

/* Lesson Cards */
.lesson-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.lesson-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.lesson-number {
    width: 45px;
    height: 45px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.lesson-content {
    flex: 1;
}

.lesson-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lesson-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.lesson-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.lesson-duration {
    font-size: 13px;
    color: #666;
}

.lesson-type {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.type-interactive {
    background: #e8f5e9;
    color: #27ae60;
}

.type-worksheet {
    background: #fff3e0;
    color: #f39c12;
}

.type-practice {
    background: #e3f2fd;
    color: #2196f3;
}

.type-templates {
    background: #f3e5f5;
    color: #9c27b0;
}

.lesson-progress {
    display: flex;
    align-items: center;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border: 4px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #666;
}

/* Quick Wins Section */
.quick-wins-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.quick-wins-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.target-icon {
    font-size: 28px;
}

.quick-wins-section h3 {
    font-size: 24px;
    font-weight: 700;
}

.quick-wins-section p {
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Video Library */
.video-library {
    margin: 25px 0;
}

.video-library h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tutorial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s;
}

.tutorial-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.tutorial-thumbnail {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    font-size: 48px;
}

.tutorial-card h4 {
    font-size: 18px;
    font-weight: 700;
    padding: 20px 20px 10px;
}

.tutorial-meta {
    display: flex;
    gap: 10px;
    padding: 0 20px 10px;
}

.duration {
    font-size: 13px;
    color: #666;
}

.level {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.level-intermediate {
    background: #fff3e0;
    color: #f39c12;
}

.level-hands-on {
    background: #e8f5e9;
    color: #27ae60;
}

.level-files {
    background: #e3f2fd;
    color: #2196f3;
}

.level-popular {
    background: #fce4ec;
    color: #e91e63;
}

.tutorial-card p {
    padding: 0 20px 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.tutorial-card button {
    margin: 0 20px 20px;
}

/* Best Practices */
.best-practice-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.bp-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.bp-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bp-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.bp-example,
.bp-tip,
.bp-idea {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.bp-example strong,
.bp-tip strong,
.bp-idea strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.bp-metrics {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.bp-metric {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    flex: 1;
}

.bp-metric strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.bp-metric span {
    font-size: 12px;
    color: #666;
}

.bp-checklist {
    margin-top: 15px;
}

.bp-check {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 14px;
}

.download-section {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.download-icon {
    font-size: 48px;
}

.download-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.download-content p {
    opacity: 0.95;
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: #666;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

.still-questions {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.question-icon {
    font-size: 48px;
}

.question-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.question-content p {
    opacity: 0.95;
}

/* Agent Studio */
.studio-banner {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin: 25px 0;
}

.banner-icon {
    font-size: 48px;
}

.banner-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Agent Cards */
.agent-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.agent-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.agent-card.ready {
    border: 2px solid #27ae60;
    background: linear-gradient(135deg, #f0fff4 0%, white 100%);
}

.agent-card.in-progress {
    border: 2px solid #f39c12;
    background: linear-gradient(135deg, #fff8f0 0%, white 100%);
}

.agent-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.agent-icon {
    font-size: 32px;
}

.agent-info {
    flex: 1;
}

.agent-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.agent-meta {
    font-size: 13px;
    color: #666;
}

.agent-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Agent Capabilities */
.agent-capabilities {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.agent-capabilities h4 {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.capability {
    font-size: 14px;
    color: #333;
}

/* Build Progress */
.build-progress {
    margin: 25px 0;
}

.build-progress h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.progress-bar-large {
    width: 100%;
    height: 16px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    border-radius: 8px;
    transition: width 0.5s ease;
}

.progress-fill-large.animated {
    animation: pulse 2s infinite;
}

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

.progress-value {
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: #c0392b;
    margin-top: 8px;
}

.progress-percentage {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #c0392b;
    margin-top: 10px;
}

/* Build Steps */
.build-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.build-step {
    display: flex;
    gap: 15px;
    align-items: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.build-step.complete .step-icon {
    background: #d5f4e6;
    color: #27ae60;
}

.build-step.current .step-icon {
    background: #fff3e0;
}

.step-icon.loading {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.build-step.pending .step-icon {
    background: #f0f0f0;
    color: #999;
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.step-subtitle {
    font-size: 13px;
    color: #666;
}

/* Agent Metrics */
.agent-metrics {
    display: flex;
    gap: 40px;
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.agent-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Deploy Modal */
.deploy-modal {
    max-width: 600px;
}

.deploy-header {
    text-align: center;
    margin-bottom: 30px;
}

.rocket-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
}

.deploy-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.deploy-header p {
    color: #666;
    font-size: 15px;
}

.deploy-progress {
    margin: 30px 0;
}

.deploy-progress h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.deploy-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.deploy-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-checkmark,
.step-spinner,
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.deploy-step.complete .step-checkmark {
    background: #d5f4e6;
    color: #27ae60;
}

.deploy-step.current .step-spinner {
    background: #fff3e0;
}

.deploy-step.pending .step-circle {
    background: #f0f0f0;
    color: #999;
}

.step-text {
    flex: 1;
}

.step-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.step-detail {
    font-size: 13px;
    color: #666;
}

.deploy-estimate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
    margin: 20px 0;
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
}

.clock-icon {
    font-size: 18px;
}

.deploy-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
}

.deploy-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

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

    .dashboard-metrics {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .impact-section {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .dept-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .tutorial-grid {
        grid-template-columns: 1fr;
    }

    .idea-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }

    .agent-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}
