/* Innovation Tools Styles */

/* Hero Section */
.innovation-tools-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 60%, #f5576c 80%, #4facfe 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.innovation-tools-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="innovation-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="4" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="30" cy="10" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="10" cy="30" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.06)"/><path d="M 20 5 L 25 15 L 35 15 L 27 23 L 30 33 L 20 27 L 10 33 L 13 23 L 5 15 L 15 15 Z" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23innovation-pattern)"/></svg>');
    opacity: 0.8;
}

.innovation-tools-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 12px;
}

.innovation-tools-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.innovation-tools-highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innovation-tools-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.6;
}

.innovation-tools-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.innovation-tools-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.innovation-tools-stat-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

/* Innovation Tools Section */
.innovation-tools-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Tools Selector */
.tools-selector {
    margin-bottom: 60px;
}

.selector-header {
    text-align: center;
    margin-bottom: 40px;
}

.selector-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.selector-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.innovation-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
    text-align: center;
}

.tab-btn:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.tab-btn i {
    font-size: 1rem;
}

/* Innovation Content */
.innovation-content {
    display: none;
}

.innovation-content.active {
    display: block;
}

.innovation-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.card-header h3 i {
    color: #667eea;
}

.card-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
}

/* Input Grid */
.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.input-section {
    background: #f7fafc;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.input-section:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #a0aec0;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Idea Management */
.idea-management-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.idea-input-section,
.idea-metrics-section {
    background: #f7fafc;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.idea-input-section:hover,
.idea-metrics-section:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.idea-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.add-idea-btn {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    justify-content: center;
    margin-top: 10px;
}

.add-idea-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(72, 187, 120, 0.3);
}

/* Ideas List */
.ideas-list {
    margin-bottom: 30px;
}

.idea-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.idea-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.idea-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.idea-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.idea-category {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.idea-category.product { background: #bee3f8; color: #2b6cb0; }
.idea-category.process { background: #c6f6d5; color: #276749; }
.idea-category.service { background: #fbd38d; color: #b7791f; }
.idea-category.business-model { background: #d6f5d6; color: #38a169; }
.idea-category.technology { background: #e9d8fd; color: #6b46c1; }
.idea-category.marketing { background: #fed7d7; color: #c53030; }

.idea-description {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.5;
}

.idea-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.idea-metric {
    text-align: center;
    padding: 10px;
    background: #f7fafc;
    border-radius: 8px;
}

.idea-metric-label {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 5px;
}

.idea-metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.idea-priority {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.idea-priority.high { background: #fed7d7; color: #c53030; }
.idea-priority.medium { background: #fbd38d; color: #b7791f; }
.idea-priority.low { background: #c6f6d5; color: #276749; }

/* Creativity Tools */
.creativity-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.creativity-technique {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.creativity-technique:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.creativity-technique h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.creativity-technique h4 i {
    color: #667eea;
}

.technique-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.technique-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.creativity-metrics {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.creativity-metrics h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

/* Brainstorming Output */
.brainstorm-output,
.mindmap-output,
.scamper-output,
.hats-output {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    min-height: 100px;
    display: none;
}

.brainstorm-output.active,
.mindmap-output.active,
.scamper-output.active,
.hats-output.active {
    display: block;
}

.brainstorm-timer {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

.brainstorm-prompt {
    background: #ebf8ff;
    border: 1px solid #90cdf4;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c5282;
}

.scamper-questions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scamper-question {
    background: #f7fafc;
    border-left: 4px solid #667eea;
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

.scamper-letter {
    font-weight: bold;
    color: #667eea;
    font-size: 1.1rem;
}

.six-hats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.thinking-hat {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: 600;
}

.hat-white { background: #4a5568; }
.hat-red { background: #e53e3e; }
.hat-black { background: #1a202c; }
.hat-yellow { background: #d69e2e; }
.hat-green { background: #38a169; }
.hat-blue { background: #3182ce; }

.hat-description {
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.9;
}

/* Roadmap Planning */
.roadmap-planning-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.roadmap-input-section,
.roadmap-metrics-section {
    background: #f7fafc;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.roadmap-input-section:hover,
.roadmap-metrics-section:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roadmap-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.add-roadmap-btn {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    justify-content: center;
    margin-top: 10px;
}

.add-roadmap-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(72, 187, 120, 0.3);
}

/* Roadmap List */
.roadmap-list {
    margin-bottom: 30px;
}

.roadmap-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.roadmap-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.roadmap-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.roadmap-timeframe {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.roadmap-timeframe.short { background: #fed7d7; color: #c53030; }
.roadmap-timeframe.medium { background: #fbd38d; color: #b7791f; }
.roadmap-timeframe.long { background: #bee3f8; color: #2b6cb0; }

.roadmap-description {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.5;
}

.roadmap-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.roadmap-metric {
    text-align: center;
    padding: 10px;
    background: #f7fafc;
    border-radius: 8px;
}

.roadmap-metric-label {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 5px;
}

.roadmap-metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.roadmap-priority {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.roadmap-priority.critical { background: #fed7d7; color: #c53030; }
.roadmap-priority.high { background: #fbd38d; color: #b7791f; }
.roadmap-priority.medium { background: #bee3f8; color: #2b6cb0; }
.roadmap-priority.low { background: #c6f6d5; color: #276749; }

/* Button Groups */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.calculate-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.clear-btn {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.clear-btn:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* Results Section */
.results-section {
    display: none;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.results-section.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
}

.results-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.innovation-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.innovation-metric-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.innovation-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.innovation-metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.innovation-metric-card:hover::before {
    transform: scaleX(1);
}

.metric-label {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 8px;
    font-weight: 500;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.metric-value.excellent {
    color: #38a169;
}

.metric-value.good {
    color: #3182ce;
}

.metric-value.warning {
    color: #ed8936;
}

.metric-value.critical {
    color: #e53e3e;
}

.metric-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    display: inline-block;
}

.metric-status.excellent {
    background: #c6f6d5;
    color: #38a169;
}

.metric-status.good {
    background: #bee3f8;
    color: #3182ce;
}

.metric-status.warning {
    background: #fbd38d;
    color: #ed8936;
}

.metric-status.critical {
    background: #feb2b2;
    color: #e53e3e;
}

.innovation-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.innovation-summary h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.innovation-summary p {
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.innovation-summary ul {
    margin: 15px 0;
    padding-left: 20px;
}

.innovation-summary li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Innovation Process Funnel */
.process-funnel {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    margin: 20px 0;
}

.process-funnel h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.funnel-stages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.funnel-stage {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f7fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.funnel-stage:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.stage-name {
    flex: 1;
    font-weight: 600;
    color: #2d3748;
}

.stage-count {
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 15px;
}

.stage-percentage {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Market Opportunity Matrix */
.opportunity-matrix {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    margin: 20px 0;
}

.opportunity-matrix h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.matrix-quadrant {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.matrix-quadrant:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quadrant-high-high {
    background: #c6f6d5;
    border-color: #38a169;
}

.quadrant-high-low {
    background: #fbd38d;
    border-color: #ed8936;
}

.quadrant-low-high {
    background: #bee3f8;
    border-color: #3182ce;
}

.quadrant-low-low {
    background: #fed7d7;
    border-color: #e53e3e;
}

.quadrant-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.quadrant-description {
    font-size: 0.9rem;
    color: #4a5568;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.action-btn {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.action-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

/* Related Tools */
.related-tools {
    padding: 80px 0;
    background: white;
}

.related-tools .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-tools .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.related-tools .section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.related-tools .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-tools .tool-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.related-tools .tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.related-tools .tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.related-tools .tool-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.related-tools .tool-card p {
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
}

.related-tools .tool-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.related-tools .tool-link:hover {
    gap: 12px;
}

/* Optimization Recommendations */
.optimization-recommendations {
    background: linear-gradient(135deg, #ebf8ff 0%, #e6fffa 100%);
    border: 1px solid #90cdf4;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.optimization-recommendations h5 {
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.optimization-recommendations ul {
    list-style: none;
    padding: 0;
}

.optimization-recommendations li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(49, 130, 206, 0.1);
}

.optimization-recommendations li:last-child {
    border-bottom: none;
}

.optimization-recommendations li::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovation-tools-hero {
        padding: 100px 0 60px;
    }
    
    .innovation-tools-hero-title {
        font-size: 2.5rem;
    }
    
    .innovation-tools-hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .innovation-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        min-width: 200px;
    }
    
    .input-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .idea-management-grid {
        grid-template-columns: 1fr;
    }
    
    .creativity-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-planning-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-card {
        padding: 30px 20px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .innovation-metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .input-row {
        grid-template-columns: 1fr;
    }
    
    .idea-metrics {
        grid-template-columns: 1fr;
    }
    
    .roadmap-metrics {
        grid-template-columns: 1fr;
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .innovation-tools-hero-title {
        font-size: 2rem;
    }
    
    .innovation-tools-hero-stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tab-btn {
        min-width: 100%;
        font-size: 0.8rem;
        padding: 14px 16px;
    }
    
    .calculate-btn,
    .clear-btn,
    .action-btn {
        min-width: 100%;
    }
    
    .input-section {
        padding: 20px 15px;
    }
    
    .creativity-technique {
        padding: 20px 15px;
    }
    
    .innovation-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .six-hats-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.message.success {
    background: #f0fff4;
    color: #38a169;
    border: 1px solid #9ae6b4;
}

.message.error {
    background: #fed7d7;
    color: #e53e3e;
    border: 1px solid #feb2b2;
}

/* Tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #2d3748;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
