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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Scroll offset for anchor links to account for fixed navbar */
#customer-value,
#delivery-quality,
#planning-alignment,
#talent-growth,
#vision-engagement {
    scroll-margin-top: 150px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.quick-link {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.quick-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background-color: var(--bg-light);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* About Section */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-card h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.focus-list {
    list-style: none;
    padding-left: 0;
}

.focus-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.focus-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Journey Section */
.journey-section {
    margin-bottom: 3rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: visible;
}

.journey-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.journey-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.journey-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Mindsets & Behaviors Enhanced Styles */
.mb-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: visible;
}

.mb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.mb-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.mb-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.mb-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

.mb-icon {
    width: 40px;
    height: 40px;
}

.mb-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 0.5rem;
}

.mb-tool-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

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

.mb-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.mb-tool-card:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mb-tool-card.active {
    box-shadow: var(--shadow-lg);
}

.mb-tool-card.active::before {
    opacity: 1;
}

.mb-tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.mb-tool-toggle {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    margin-bottom: 0;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.mb-tool-toggle:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: var(--primary-color);
}

.mb-tool-card.active .mb-tool-toggle {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: var(--primary-color);
    border-bottom: none;
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.mb-tool-card.active .toggle-icon {
    transform: rotate(180deg);
}

.mb-tool-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease-out;
    padding: 0 1.5rem;
    opacity: 0;
}

.mb-tool-card.active .mb-tool-content {
    max-height: 5000px;
    padding: 1.5rem;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: white;
    opacity: 1;
}

.tool-purpose {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.tool-icon {
    font-size: 2.5rem;
    line-height: 1;
    transition: transform 0.3s;
}

.mb-tool-toggle:hover .tool-icon {
    transform: scale(1.1);
}

.mb-tool-header h4 {
    flex: 1;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.tool-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-purpose {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* HARP Matrix */
.harp-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.harp-quadrant {
    padding: 1.5rem;
    border-radius: 8px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.harp-quadrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.harp-quadrant:hover::before {
    opacity: 1;
}

.harp-quadrant:hover {
    transform: scale(1.05);
}

.harp-hinderers {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.harp-attractors {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.harp-repulsors {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.harp-propellors {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.harp-label {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.harp-label small {
    font-size: 0.85rem;
    opacity: 0.9;
}

.harp-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.harp-tag {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.step-content strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.tool-outputs {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.tool-outputs h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tool-outputs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-outputs li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* Vision Flow */
.vision-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.vision-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

.vision-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.vision-step h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.vision-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.vision-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Interview Guide */
.interview-guide {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #f59e0b;
}

.interview-guide h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.question-list {
    display: grid;
    gap: 0.75rem;
}

.question-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.question-item:hover {
    transform: translateX(5px);
}

/* Mirror Visual */
.mirror-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 10px;
    flex-wrap: wrap;
}

.mirror-side {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mirror-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.mirror-side h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mirror-side p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.mirror-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
}

.mirror-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.mirror-divider span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Story Framework */
.story-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.story-question {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #8b5cf6;
    transition: transform 0.3s;
}

.story-question:hover {
    transform: translateY(-5px);
}

.story-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.story-question h5 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
}

/* Timeline */
.interview-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.interview-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
}

.timeline-dot {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    border: 3px solid white;
}

.timeline-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
}

.timeline-content strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Survey Pillars */
.survey-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.pillar-item {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s;
}

.pillar-item:hover {
    transform: scale(1.05);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pillar-item h5 {
    color: var(--primary-color);
    margin: 0;
    font-size: 0.95rem;
}

/* MB Summary */
.mb-summary {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    position: relative;
    overflow: visible;
}

.mb-summary h4 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.outputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    overflow: visible;
}

.output-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #10b981;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.output-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

a.output-card {
    text-decoration: none;
    color: inherit;
}

a.output-card:hover {
    text-decoration: none;
    color: inherit;
}

.output-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.output-card h5 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
}

/* Kano Analysis Hover Preview */
.kano-card-preview {
    position: relative;
}

.kano-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 380px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #10b981;
}

.kano-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.kano-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #10b981;
    border-bottom: none;
}

.kano-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.kano-card-preview:hover .kano-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

.kano-card-preview:hover .kano-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.kano-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.kano-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.kano-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.kano-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.kano-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
}

.kano-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.kano-stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.kano-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.kano-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
        transform: scale(1.02);
    }
}

/* Arrow pointing up */
.kano-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #10b981;
}

.kano-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

/* Enhanced hover effect for the card itself */
.kano-card-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3), var(--shadow-lg);
    border-color: #059669;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .kano-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .kano-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .kano-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Demand Analysis Hover Preview */
.demand-analysis-preview {
    position: relative;
}

.demand-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #3b82f6;
}

.demand-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.demand-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #3b82f6;
    border-bottom: none;
}

.demand-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.demand-analysis-preview:hover .demand-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

.demand-analysis-preview:hover .demand-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.demand-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.demand-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.demand-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.demand-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.demand-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
}

.demand-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.demand-stat-value {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.demand-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.demand-preview-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
}

.demand-output-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

.demand-output-icon {
    font-size: 1.2rem;
}

.demand-output-text {
    color: var(--text-dark);
    font-weight: 500;
}

.demand-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse-blue 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

@keyframes pulse-blue {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
        transform: scale(1.02);
    }
}

/* Arrow pointing up */
.demand-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #3b82f6;
}

.demand-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

/* Enhanced hover effect for the card itself */
.demand-analysis-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3), var(--shadow-lg);
    border-color: #2563eb;
}

/* Mobile responsiveness for Demand Analysis */
@media (max-width: 768px) {
    .demand-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .demand-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .demand-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Skills Mapping Hover Preview */
.skills-mapping-preview {
    position: relative;
}

.skills-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #10b981;
}

.skills-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.skills-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #10b981;
    border-bottom: none;
}

.skills-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.skills-mapping-preview:hover .skills-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

.skills-mapping-preview:hover .skills-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.skills-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.skills-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.skills-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.skills-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.skills-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
}

.skills-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.skills-stat-value {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.skills-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.skills-preview-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
}

.skills-output-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

.skills-output-icon {
    font-size: 1.2rem;
}

.skills-output-text {
    color: var(--text-dark);
    font-weight: 500;
}

.skills-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse-green 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
        transform: scale(1.02);
    }
}

/* Arrow pointing up */
.skills-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #10b981;
}

.skills-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

/* Enhanced hover effect for the card itself */
.skills-mapping-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3), var(--shadow-lg);
    border-color: #059669;
}

/* Mobile responsiveness for Skills Mapping */
@media (max-width: 768px) {
    .skills-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .skills-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .skills-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Capacity Management Hover Preview */
.capacity-management-preview {
    position: relative;
}

.capacity-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #8b5cf6;
}

.capacity-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.capacity-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #8b5cf6;
    border-bottom: none;
}

.capacity-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.capacity-management-preview:hover .capacity-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

.capacity-management-preview:hover .capacity-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.capacity-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.capacity-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.capacity-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.capacity-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.capacity-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 8px;
}

.capacity-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.capacity-stat-value {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.capacity-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.capacity-preview-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
}

.capacity-output-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

.capacity-output-icon {
    font-size: 1.2rem;
}

.capacity-output-text {
    color: var(--text-dark);
    font-weight: 500;
}

.capacity-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse-purple 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

@keyframes pulse-purple {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
        transform: scale(1.02);
    }
}

/* Arrow pointing up */
.capacity-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #8b5cf6;
}

.capacity-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

/* Enhanced hover effect for the card itself */
.capacity-management-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3), var(--shadow-lg);
    border-color: #7c3aed;
}

/* Mobile responsiveness for Capacity Management */
@media (max-width: 768px) {
    .capacity-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .capacity-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .capacity-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Client Surveys & Interviews Hover Preview */
.client-surveys-preview {
    position: relative;
}

.client-surveys-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #f59e0b;
}

.client-surveys-preview:hover .client-surveys-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.client-surveys-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.client-surveys-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.client-surveys-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.client-surveys-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.client-surveys-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
}

.client-surveys-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.client-surveys-stat-value {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.client-surveys-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.client-surveys-preview-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
}

.client-surveys-output-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

.client-surveys-output-icon {
    font-size: 1.2rem;
}

.client-surveys-output-text {
    color: var(--text-dark);
    font-weight: 500;
}

.client-surveys-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse-orange 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

@keyframes pulse-orange {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
        transform: scale(1.02);
    }
}

/* Arrow pointing up */
.client-surveys-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f59e0b;
}

.client-surveys-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

.client-surveys-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.client-surveys-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #f59e0b;
    border-bottom: none;
}

.client-surveys-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.client-surveys-preview:hover .client-surveys-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Enhanced hover effect for the card itself */
.client-surveys-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3), var(--shadow-lg);
    border-color: #d97706;
}

/* Mobile responsiveness for Client Surveys */
@media (max-width: 768px) {
    .client-surveys-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .client-surveys-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .client-surveys-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Field Observations Hover Preview */
.field-observations-preview {
    position: relative;
}

.field-observations-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #ef4444;
}

.field-observations-preview:hover .field-observations-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.field-observations-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.field-observations-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.field-observations-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.field-observations-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.field-observations-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 8px;
}

.field-observations-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.field-observations-stat-value {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.field-observations-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.field-observations-preview-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
}

.field-observations-output-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

.field-observations-output-icon {
    font-size: 1.2rem;
}

.field-observations-output-text {
    color: var(--text-dark);
    font-weight: 500;
}

.field-observations-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse-red 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
        transform: scale(1.02);
    }
}

/* Arrow pointing up */
.field-observations-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ef4444;
}

.field-observations-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

.field-observations-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.field-observations-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #ef4444;
    border-bottom: none;
}

.field-observations-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.field-observations-preview:hover .field-observations-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Enhanced hover effect for the card itself */
.field-observations-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.3), var(--shadow-lg);
    border-color: #dc2626;
}

/* Mobile responsiveness for Field Observations */
@media (max-width: 768px) {
    .field-observations-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .field-observations-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .field-observations-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Backlog and Delivery Analysis Hover Preview */
.backlog-analysis-preview {
    position: relative;
}

.backlog-analysis-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #3b82f6;
}

.backlog-analysis-preview:hover .backlog-analysis-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.backlog-analysis-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.backlog-analysis-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.backlog-analysis-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.backlog-analysis-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.backlog-analysis-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
}

.backlog-analysis-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.backlog-analysis-stat-value {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.backlog-analysis-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.backlog-analysis-preview-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
}

.backlog-analysis-output-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

.backlog-analysis-output-icon {
    font-size: 1.2rem;
}

.backlog-analysis-output-text {
    color: var(--text-dark);
    font-weight: 500;
}

.backlog-analysis-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse-blue 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

@keyframes pulse-blue {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
        transform: scale(1.02);
    }
}

/* Arrow pointing up */
.backlog-analysis-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #3b82f6;
}

.backlog-analysis-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

.backlog-analysis-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.backlog-analysis-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #3b82f6;
    border-bottom: none;
}

.backlog-analysis-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.backlog-analysis-preview:hover .backlog-analysis-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Enhanced hover effect for the card itself */
.backlog-analysis-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3), var(--shadow-lg);
    border-color: #2563eb;
}

/* Mobile responsiveness for Backlog Analysis */
@media (max-width: 768px) {
    .backlog-analysis-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .backlog-analysis-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .backlog-analysis-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Skills Gaps Indicator Hover Preview */
.skills-gaps-preview {
    position: relative;
}

.skills-gaps-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #10b981;
}

.skills-gaps-preview:hover .skills-gaps-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.skills-gaps-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.skills-gaps-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.skills-gaps-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.skills-gaps-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.skills-gaps-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
}

.skills-gaps-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.skills-gaps-stat-value {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.skills-gaps-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.skills-gaps-preview-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
}

.skills-gaps-output-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

.skills-gaps-output-icon {
    font-size: 1.2rem;
}

.skills-gaps-output-text {
    color: var(--text-dark);
    font-weight: 500;
}

.skills-gaps-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse-green 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Arrow pointing up */
.skills-gaps-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #10b981;
}

.skills-gaps-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

.skills-gaps-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.skills-gaps-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #10b981;
    border-bottom: none;
}

.skills-gaps-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.skills-gaps-preview:hover .skills-gaps-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Enhanced hover effect for the card itself */
.skills-gaps-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3), var(--shadow-lg);
    border-color: #059669;
}

/* Mobile responsiveness for Skills Gaps Indicator */
@media (max-width: 768px) {
    .skills-gaps-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .skills-gaps-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .skills-gaps-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Meetings Analysis Hover Preview */
.meetings-analysis-preview {
    position: relative;
}

.meetings-analysis-hover-preview {
    position: fixed;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border: 2px solid #3b82f6;
}

.meetings-analysis-preview:hover .meetings-analysis-hover-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.meetings-analysis-preview-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.meetings-analysis-preview-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: bold;
}

.meetings-analysis-preview-header p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.meetings-analysis-preview-chart {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.meetings-analysis-preview-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
}

.meetings-analysis-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.meetings-analysis-stat-value {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.meetings-analysis-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.meetings-analysis-preview-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
}

.meetings-analysis-output-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.85rem;
}

.meetings-analysis-output-icon {
    font-size: 1.2rem;
}

.meetings-analysis-output-text {
    color: var(--text-dark);
    font-weight: 500;
}

.meetings-analysis-preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse-blue 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Arrow pointing up */
.meetings-analysis-hover-preview::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #3b82f6;
}

.meetings-analysis-hover-preview::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid white;
}

.meetings-analysis-hover-preview.position-above {
    top: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(10px) scale(0.95);
}

.meetings-analysis-hover-preview.position-above::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #3b82f6;
    border-bottom: none;
}

.meetings-analysis-hover-preview.position-above::after {
    top: auto;
    bottom: -8px;
    border-top: 9px solid white;
    border-bottom: none;
}

.meetings-analysis-preview:hover .meetings-analysis-hover-preview.position-above {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Enhanced hover effect for the card itself */
.meetings-analysis-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3), var(--shadow-lg);
    border-color: #2563eb;
}

/* Mobile responsiveness for Meetings Analysis */
@media (max-width: 768px) {
    .meetings-analysis-hover-preview {
        width: calc(100vw - 40px);
        left: 50%;
        right: auto;
    }
    
    .meetings-analysis-preview-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .meetings-analysis-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem;
        background: white;
        border-radius: 5px;
    }
}

/* Accordion */
.accordion {
    margin-top: 1.5rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #e5e7eb;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out, padding 0.6s ease-out;
    padding: 0;
    display: block;
}

.accordion-item.active .accordion-content {
    max-height: 50000px;
    padding: 2rem 0;
    overflow: visible;
    display: block;
}

/* Ensure tool cards inside accordion are fully visible */
.accordion-content .mb-tool-card {
    margin-bottom: 2rem;
    opacity: 1;
    visibility: visible;
    display: block;
    width: 100%;
}

.accordion-content .mb-tool-card:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    padding: 1rem 1.5rem;
    list-style: none;
}

.accordion-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.accordion-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Success Section */
.success-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.success-intro h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.success-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.success-visuals {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* AI Section */
.ai-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-overview,
.ai-use-case-groups,
.ai-tools-section,
.integration-details,
.future-plans {
    margin-bottom: 3rem;
}

/* AI Use Case Groups */
.ai-use-case-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ai-group-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.ai-group-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.ai-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ai-group-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.ai-group-card:nth-child(1) .ai-group-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.ai-group-card:nth-child(2) .ai-group-icon {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.ai-group-card:nth-child(3) .ai-group-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.ai-group-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.ai-group-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.ai-examples-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-example-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.ai-example-item:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    transform: translateX(5px);
}

.ai-example-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ai-example-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
}

.ai-tools-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.ai-tools-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ai-overview h3,
.use-cases h3,
.integration-details h3,
.future-plans h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.use-case-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.use-case-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.integration-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.integration-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.integration-card:nth-child(1) {
    border-top-color: #3b82f6;
}

.integration-card:nth-child(2) {
    border-top-color: #10b981;
}

.integration-card:nth-child(3) {
    border-top-color: #8b5cf6;
}

.integration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.integration-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.integration-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.integration-features {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.integration-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
}

.integration-features li:last-child {
    border-bottom: none;
}

.integration-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.integration-features li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Toolbox Section */
.toolbox-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.toolbox-intro h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.resource-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resource-card ul {
    list-style: none;
    padding-left: 0;
}

.resource-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.resource-card li::before {
    content: "📄";
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-form-container,
.newsletter-container {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-container h4,
.newsletter-container h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.community-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.forum-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.forum-link:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-grid,
    .success-grid,
    .use-case-grid,
    .resources-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-use-case-groups {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-group-card {
        padding: 1.5rem;
    }
    
    .ai-group-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .ai-group-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .ai-group-header h3 {
        font-size: 1.25rem;
    }
    
    .ai-example-item {
        padding: 0.625rem;
    }
    
    .ai-example-text {
        font-size: 0.9rem;
    }

    /* MB Section Responsive */
    .mb-header {
        flex-direction: column;
        text-align: center;
    }

    .mb-icon-wrapper {
        margin: 0 auto;
    }

    .harp-matrix {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .vision-flow {
        flex-direction: column;
    }

    .vision-arrow {
        transform: rotate(90deg);
    }

    .mirror-visual {
        flex-direction: column;
    }

    .mirror-divider {
        flex-direction: row;
    }

    .mirror-line {
        width: 60px;
        height: 2px;
    }

    .story-framework {
        grid-template-columns: 1fr;
    }

    .survey-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Process Mapping Tool Page Mobile */
    .process-mapping-section {
        padding-top: 100px !important;
    }

    .process-mapping-header-icon {
        font-size: 3rem !important;
    }

    .process-mapping-title {
        font-size: 1.75rem !important;
    }

    .process-mapping-intro {
        font-size: 1rem !important;
        padding: 0 1rem;
    }

    .process-mapping-card {
        padding: 1.5rem !important;
    }

    .process-mapping-card h2 {
        font-size: 1.5rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .process-mapping-card h2 span {
        font-size: 2rem !important;
    }

    .process-feature-grid,
    .process-step-grid,
    .process-practice-grid,
    .process-output-grid,
    .process-app-grid,
    .process-learning-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .process-feature-card,
    .process-step-card,
    .process-practice-card,
    .process-output-card,
    .process-app-card,
    .process-learning-card {
        padding: 1.25rem !important;
    }

    .process-step-number {
        width: 25px !important;
        height: 25px !important;
        font-size: 0.875rem !important;
    }

    .process-step-card h3 {
        font-size: 1rem !important;
    }

    .process-icon-large {
        font-size: 2rem !important;
    }

    .process-scenario-box {
        padding: 1rem !important;
        font-size: 1rem !important;
    }

    /* Process Map SVG Mobile */
    .process-map-container {
        max-width: 100%;
    }

    .process-map-svg {
        width: 100%;
        min-width: 1100px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .process-map-container {
        padding: 0;
    }

    .process-map-svg {
        min-width: 1100px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .quick-links {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 3rem 0;
    }

    /* MB Section Mobile */
    .mb-tool-card {
        padding: 1.5rem;
    }

    .mb-tool-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .harp-quadrant {
        min-height: 120px;
    }

    .survey-pillars {
        grid-template-columns: 1fr;
    }

    .interview-timeline {
        padding-left: 1.5rem;
    }

    .timeline-dot {
        width: 25px;
        height: 25px;
    }

    /* Process Mapping Tool Page Small Mobile */
    .process-mapping-header-icon {
        font-size: 2.5rem !important;
    }

    .process-mapping-title {
        font-size: 1.5rem !important;
    }

    .process-mapping-intro {
        font-size: 0.9rem !important;
    }

    .process-mapping-card {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .process-mapping-card h2 {
        font-size: 1.25rem !important;
    }

    .process-mapping-card h2 span {
        font-size: 1.75rem !important;
    }

    .process-feature-card,
    .process-step-card,
    .process-practice-card,
    .process-output-card,
    .process-app-card,
    .process-learning-card {
        padding: 1rem !important;
    }

    .process-icon-large {
        font-size: 1.75rem !important;
    }

    .process-step-number {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.75rem !important;
    }

    .container {
        padding: 0 15px;
    }
}

/* Transformation Timeline Styles */
.transformation-timeline {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.transformation-timeline .timeline-item {
    display: block;
    margin-bottom: 0;
    position: relative;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.transformation-timeline .timeline-item:not(:last-child)::before {
    display: none;
}

.timeline-marker {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
    z-index: 1;
    box-sizing: border-box;
}

.transformation-timeline .timeline-content {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    flex: 1;
    border: none;
    box-sizing: border-box;
    min-width: 0;
}

.transformation-timeline .timeline-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.transformation-timeline .timeline-content p {
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Journey Accordion Styles */
.journey-accordion-item {
    position: relative;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.journey-accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.journey-accordion-item.active {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
    border-width: 2px;
}

.journey-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
}

.journey-accordion-header:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
}

.journey-accordion-header:active {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
}

.journey-accordion-header .timeline-marker {
    flex-shrink: 0;
    margin: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.journey-accordion-item.active .timeline-marker {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: scale(1.05);
}

.journey-accordion-header .timeline-content {
    flex: 1;
    border: none;
    padding: 0;
    background: none;
    box-shadow: none;
    min-width: 0;
}

.journey-accordion-header .timeline-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.journey-accordion-item.active .journey-accordion-header .timeline-content h3 {
    color: var(--primary-color);
}

.journey-accordion-header .timeline-content p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.journey-accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-color);
    margin: 0;
    pointer-events: none;
}

.journey-accordion-icon::before {
    content: '+';
    display: block;
}

.journey-accordion-item.active .journey-accordion-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: var(--primary-color);
}

.journey-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, margin 0.4s ease;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.journey-accordion-item.active .journey-accordion-content {
    max-height: 5000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-top: 0;
}

.journey-details {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.journey-details h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.journey-details h4:first-child {
    margin-top: 0;
}

.journey-details ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.journey-details li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .transformation-timeline {
        padding: 1rem 0;
    }

    .transformation-timeline .timeline-item {
        flex-direction: column;
        gap: 1rem;
        padding-left: 0;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .transformation-timeline .timeline-item:not(:last-child)::before {
        left: 1.5rem;
        top: 3rem;
        height: calc(100% + 0.5rem);
    }
    
    .timeline-marker {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
        align-self: flex-start;
        flex-shrink: 0;
    }
    
    .transformation-timeline .timeline-content {
        border-left: none;
        border-top: 4px solid var(--primary-color);
        width: 100%;
        padding: 1.25rem;
        box-sizing: border-box;
    }

    .transformation-timeline .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        padding-right: 2.5rem;
    }

    .transformation-timeline .timeline-content p {
        font-size: 0.95rem;
        padding-right: 2.5rem;
    }

    .journey-accordion-header {
        flex-wrap: nowrap;
        gap: 1rem;
        position: relative;
        padding: 0;
        width: 100%;
        align-items: flex-start;
    }

    .journey-accordion-header .timeline-marker {
        flex-shrink: 0;
        margin: 0;
    }

    .journey-accordion-header .timeline-content {
        flex: 1;
        min-width: 0;
        padding-right: 2.5rem;
    }

    .journey-accordion-icon {
        position: absolute;
        top: 0.5rem;
        right: 0;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
        margin-top: 0;
        flex-shrink: 0;
    }

    .journey-accordion-content {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        margin-top: 0.5rem;
    }

    .journey-accordion-item.active .journey-accordion-content {
        padding: 1rem 0;
    }

    .journey-details {
        padding: 1.25rem;
        margin-top: 0;
        margin-left: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .journey-details h4 {
        font-size: 1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .journey-details h4:first-child {
        margin-top: 0;
    }

    .journey-details ul {
        padding-left: 1.25rem;
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .journey-details li {
        margin-bottom: 0.4rem;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .transformation-timeline {
        padding: 0.5rem 0;
    }

    .transformation-timeline .timeline-item {
        margin-bottom: 1.5rem;
    }

    .transformation-timeline .timeline-item:not(:last-child)::before {
        left: 1.25rem;
        top: 2.5rem;
    }

    .timeline-marker {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .transformation-timeline .timeline-content {
        padding: 1rem;
        padding-right: 2.25rem;
    }

    .transformation-timeline .timeline-content h3 {
        font-size: 1rem;
        padding-right: 0;
    }

    .transformation-timeline .timeline-content p {
        font-size: 0.9rem;
        padding-right: 0;
    }

    .journey-accordion-header {
        gap: 0.75rem;
    }

    .journey-accordion-header .timeline-content {
        padding-right: 2.25rem;
    }

    .journey-accordion-icon {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        top: 0.25rem;
    }

    .journey-accordion-content {
        margin-top: 0.5rem;
    }

    .journey-accordion-item.active .journey-accordion-content {
        padding: 0.75rem 0;
    }

    .journey-details {
        padding: 1rem;
        border-left-width: 3px;
    }

    .journey-details h4 {
        font-size: 0.95rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .journey-details h4:first-child {
        margin-top: 0;
    }

    .journey-details ul {
        padding-left: 1rem;
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    .journey-details li {
        margin-bottom: 0.35rem;
    }
}

/* Quest for Operational Excellence Styles */
.quest-content {
    margin-top: 2rem;
    width: 100%;
}

.quest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.quest-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2563eb;
    width: 100%;
    box-sizing: border-box;
}

.quest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.quest-card h3 {
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.quest-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .quest-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quest-card {
        padding: 1.5rem;
    }
    
    .quest-card h3 {
        font-size: 1.25rem;
    }
}

/* Key Lean Loop Model Levers Styles */
.levers-content {
    margin-top: 2rem;
    width: 100%;
}

.levers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lever-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2563eb;
    width: 100%;
    box-sizing: border-box;
}

.lever-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.lever-card h3 {
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.lever-description {
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.lever-benefits {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #e5e7eb;
}

.lever-benefits strong {
    color: #2563eb;
    font-weight: 600;
}

.lever-analysis-tools,
.lever-ci-practices {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.lever-analysis-tools h4,
.lever-ci-practices h4 {
    color: #2563eb;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lever-analysis-tools h4::before {
    content: "📊";
    font-size: 1.2rem;
}

.lever-ci-practices h4::before {
    content: "🔄";
    font-size: 1.2rem;
}

.lever-analysis-tools ul,
.lever-ci-practices ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.lever-analysis-tools li,
.lever-ci-practices li {
    color: #4b5563;
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.lever-analysis-tools li::before,
.lever-ci-practices li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
}

.lever-analysis-tools li a,
.lever-ci-practices li a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.lever-analysis-tools li a:hover,
.lever-ci-practices li a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .levers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lever-card {
        padding: 1.5rem;
    }
    
    .lever-card h3 {
        font-size: 1.25rem;
    }
}

/* SWOT Matrix */
.swot-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.swot-quadrant {
    padding: 1.5rem;
    border-radius: 8px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.swot-quadrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.swot-quadrant:hover::before {
    opacity: 1;
}

.swot-quadrant:hover {
    transform: scale(1.05);
}

.swot-strengths {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.swot-opportunities {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.swot-weaknesses {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.swot-threats {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.swot-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.swot-label small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.swot-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.swot-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Angles of Analysis Accordion Styles */
.angle-accordion-item {
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s;
}

.angle-accordion-item:hover {
    box-shadow: var(--shadow);
}

.angle-accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s;
}

.angle-accordion-header:hover {
    background-color: var(--bg-light);
}

.angle-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.angle-header-text {
    flex: 1;
}

.mb-intro-short {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.6;
}

.angle-accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
}

.angle-accordion-item.active .angle-accordion-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.angle-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0;
}

.angle-accordion-item.active .angle-accordion-content {
    max-height: 10000px;
    padding: 2rem;
}

.mb-header-full {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mb-header-full .mb-icon-wrapper {
    flex-shrink: 0;
}

.mb-header-full > div:last-child {
    flex: 1;
}

@media (max-width: 768px) {
    .angle-accordion-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .angle-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .angle-header-text {
        width: 100%;
    }

    .angle-accordion-icon {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .angle-accordion-item.active .angle-accordion-content {
        padding: 1.5rem;
    }

    .mb-header-full {
        flex-direction: column;
        text-align: center;
    }

    .mb-header-full .mb-icon-wrapper {
        margin: 0 auto;
    }

    .swot-matrix {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .swot-quadrant {
        min-height: 120px;
        padding: 1rem;
    }

    /* Additional Mobile Improvements */
    .mb-summary {
        padding: 0 1rem;
    }

    .mb-summary h4 {
        font-size: 1.5rem;
    }

    .key-tools-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .levers-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .lever-card {
        padding: 1.5rem;
    }

    .lever-card h3 {
        font-size: 1.25rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .journey-section {
        padding: 1.5rem 0;
    }

    .journey-title {
        font-size: 1.5rem;
    }
}

