/* Inline styles to handle site header */
body.has-fixed-header .bloom-assessments {
    padding-top: 80px;
}

body.has-fixed-header .assessment-nav-sticky {
    top: 80px;
}

@media (max-width: 768px) {
    body.has-fixed-header .bloom-assessments {
        padding-top: 60px;
    }
    
    body.has-fixed-header .assessment-nav-sticky {
        top: 60px;
    }
}

.assessment-nav-sticky {
    padding: 0 0.75rem;
}

.assessment-nav-sticky.scrolled {
    padding: 0 0.75rem;
}

.pill-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.assessment-nav-sticky.scrolled .pill-icon {
    font-size: 0.9em;
}    

.assessment-nav-sticky.scrolled {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}    

.assessment-nav-sticky.scrolled .nav-container {
    padding: 0.375rem 0;
}

.assessment-nav-sticky.scrolled {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}    

.assessment-nav-sticky.scrolled .nav-title {
    opacity: 0;
    transform: translateY(-10px);
    margin-bottom: 0;
    position: absolute;
    pointer-events: none;
    height: 0;
}

.assessment-nav-sticky.scrolled .nav-container {
    padding: 0.375rem 0;
}

:root {
    --primary: #299b8e;
    --primary-dark: #237a70;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;
    --danger: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--gray-50);
    padding: 0;
    margin: 0;
}

.bloom-assessments {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p { margin: 0 0 1rem 0; color: var(--gray-500); }

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(41, 155, 142, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e6b61 100%);
    box-shadow: 0 6px 20px rgba(41, 155, 142, 0.35);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border-color: var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    margin-bottom: 2rem;
    overflow: visible;
}

.hero-bento {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Assessment Explorer */
.assessment-explorer {
    margin-bottom: 4rem;
    position: relative;
    overflow: visible;
}

/* Static Assessment Navigation - No Sticky Behavior */
.assessment-nav-sticky {
    position: static !important;
    top: auto !important;
    z-index: auto;
    background-color: white;
    border: 2px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    border-radius: 24px;
    padding: 1rem;
    max-width: calc(1400px - 2rem);
    transition: none !important;
}

/* Prevent any "scrolled" state overrides */
.assessment-nav-sticky.scrolled {
    position: static !important;
    top: auto !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    background-color: white !important;
    border: 2px solid var(--gray-100) !important;
    padding: 1rem !important;
    margin: 2rem auto !important;
    border-radius: 24px !important;
    transition: none !important;
    width: auto !important;
    max-width: calc(1400px - 2rem) !important;
}

.nav-container {
    position: relative;
    padding: 0.5rem;
    text-align: center;
    transition: none !important;
}

.assessment-nav-sticky.scrolled .nav-container {
    padding: 0.5rem !important;
    transition: none !important;
}

.nav-title-wrapper {
    height: auto !important;
    overflow: visible !important;
    transition: none !important;
}

.assessment-nav-sticky.scrolled .nav-title-wrapper {
    height: auto !important;
    margin: auto !important;
    overflow: visible !important;
}

/* Ensure title is always visible and normal */
.nav-title,
.assessment-nav-sticky .nav-title,
.assessment-nav-sticky.scrolled .nav-title {
    color: var(--gray-800) !important;
    margin-bottom: 1rem !important;
    font-size: 1.25rem !important;
    opacity: 1 !important;
    transform: none !important;
    height: auto !important;
    overflow: visible !important;
    transition: none !important;
}

.assessment-pills {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--gray-50);
    padding: 0.375rem;
    border-radius: 20px;
    max-width: fit-content;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.assessment-nav-sticky.scrolled .assessment-pills {
    gap: 0.5rem;
    padding: 0.25rem;
}

.assessment-pill {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    position: relative;
    min-width: fit-content;
}

.assessment-nav-sticky.scrolled .assessment-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.875rem;
    gap: 0.25rem;
}

.pill-icon {
    transition: all 0.3s ease;
}

.assessment-nav-sticky.scrolled .pill-icon {
    display: none;
}

.pill-badge {
    font-size: 0.7rem;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.assessment-nav-sticky.scrolled .pill-badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.3rem;
}

.pill-badge.free {
    background: #dcfce7;
    color: #166534;
}

.pill-badge.premium {
    background: #fef3c7;
    color: #92400e;
}

.assessment-pill.active .pill-badge.free,
.assessment-pill.active .pill-badge.premium {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.assessment-pill:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.assessment-pill.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(41, 155, 142, 0.3);
    transform: translateY(-2px);
}

.assessment-pill.active .pill-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Assessment-specific pill colors */
.assessment-pill[data-assessment="strengths"].active {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.assessment-pill[data-assessment="wellbeing"].active {
    background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.assessment-pill[data-assessment="leadership"].active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.assessment-pill[data-assessment="enterprise"].active {
    background: linear-gradient(135deg, var(--info) 0%, #2563eb 100%);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

/* Assessment Content */
.assessment-content {
    animation: fadeInUp 0.8s ease forwards;
    padding-top: 1rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Assessment Showcase - Changed to single column */
.assessment-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Assessment Info Panel */
.assessment-info-panel {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--gray-100);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.assessment-info-panel.strengths { border-left: 5px solid var(--success); }
.assessment-info-panel.wellbeing { border-left: 5px solid var(--warning); }
.assessment-info-panel.leadership { border-left: 5px solid #8b5cf6; }
.assessment-info-panel.enterprise { border-left: 5px solid var(--info); }

.info-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.assessment-icon {
    font-size: 3.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
}

.assessment-details {
    flex: 1;
}

.assessment-details h2 {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.assessment-details p {
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 1rem;
}

.assessment-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.assessment-meta span {
    font-size: 0.875rem;
    color: var(--gray-500);
    background: var(--gray-50);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.info-description h3 {
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.info-description p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-action {
    display: flex;
    justify-content: flex-start;
}

.secondary-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.signin-note {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    text-align: left;
    line-height: 1.5;
}

.signin-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.25rem;
}

.signin-note a:hover {
    text-decoration: underline;
}

.share-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--gray-200);
    color: var(--gray-500);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.share-link-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0fdf4;
}

/* Chart Container - Simplified */
.chart-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--gray-100);
    position: relative;
    overflow: visible !important;
    transition: all 0.4s ease;
    z-index: 1;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.chart-container.strengths { border-left: 5px solid var(--success); }
.chart-container.wellbeing { border-left: 5px solid var(--warning); }
.chart-container.leadership { border-left: 5px solid #8b5cf6; }
.chart-container.enterprise { border-left: 5px solid var(--info); }

/* Chart Header */
.chart-header {
    margin-bottom: 2rem;
}

.chart-header h3 {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.chart-header p {
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.chart-header .sample-note {
    color: var(--gray-400);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 1rem;
    background: var(--gray-50);
    padding: 0.375rem 0.75rem;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid var(--gray-200);
    font-weight: 500;
}

/* Chart Canvas - Mobile-friendly with horizontal scroll */
.chart-canvas-container {
    flex: 1;
    position: relative;
    overflow-x: auto; /* Horizontal scroll for mobile */
    overflow-y: visible; /* Allow tooltips to show */
    padding: 1rem;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.chart-scroll-wrapper {
    min-width: 100%;
    height: 450px; 
    position: relative;
    overflow: visible;
}

.chart-scroll-wrapper canvas {
    height: 100% !important;
}

/* Set minimum widths for different assessments to ensure readability */
.chart-container.strengths .chart-scroll-wrapper {
    min-width: 800px; /* Ensure all 24 bars are readable */
}

.chart-container.wellbeing .chart-scroll-wrapper {
    min-width: 500px; /* 6 dimensions */
}

.chart-container.leadership .chart-scroll-wrapper {
    min-width: 600px; /* 6 competencies */
}

.chart-container.enterprise .chart-scroll-wrapper {
    min-width: 700px; /* 9 categories */
}

/* Scrollbar styling for better mobile experience */
.chart-canvas-container::-webkit-scrollbar {
    height: 8px;
}

.chart-canvas-container::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

.chart-canvas-container::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

.chart-canvas-container::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}



/* For assessments with many bars, set minimum width */
.chart-container.strengths .chart-scroll-wrapper {
    min-width: 1200px;
}

.chart-container.wellbeing .chart-scroll-wrapper {
    min-width: 600px;
}

.chart-container.leadership .chart-scroll-wrapper {
    min-width: 700px;
}

.chart-container.enterprise .chart-scroll-wrapper {
    min-width: 800px;
}

/* Scrollbar styling */
.chart-canvas-container {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-400) var(--gray-100);
}

.chart-canvas-container::-webkit-scrollbar {
    height: 8px;
}

.chart-canvas-container::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

.chart-canvas-container::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

.chart-canvas-container::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Sample Questions Section */
.sample-questions-section {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--gray-100);
    margin-bottom: 2rem;
}

.sample-questions-section h3 {
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 0.5rem;
}

.questions-explanation {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.question-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.question-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.question-text {
    font-style: italic;
    color: var(--gray-800);
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.question-type {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #bae6fd;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: flex-start;
}

/* Assessment-specific question type colors */
.question-type.strengths {
    background: #f0fdf4;
    color: #047857;
    border-color: #bbf7d0;
}

.question-type.wellbeing {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.question-type.leadership {
    background: #faf5ff;
    color: #7c3aed;
    border-color: #e9d5ff;
}

.question-type.enterprise {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

/* Assessment Details Expandable */
.assessment-details-expandable {
    background: white;
    border-radius: 24px;
    border: 2px solid var(--gray-100);
    overflow: visible;
}

.details-toggle {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: all 0.3s ease;
}

.details-toggle:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.details-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.details-content.expanded {
    max-height: 1000px;
}

.details-inner {
    padding: 0 2rem 2rem;
}

/* Growth Journey Section */
.growth-journey {
    margin-bottom: 4rem;
}

.journey-bento {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 50%, #fefce8 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 2px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Platform Benefits Section */
.platform-benefits {
    margin-bottom: 4rem;
}

.benefits-bento {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f0f9ff 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 2px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Journey Container */
.journey-container {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Journey Steps Grid */
.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Individual Journey Step */
.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Step Marker Container */
.step-marker {
    position: relative;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.step-marker:hover {
    transform: scale(1.1);
}

/* Step Number Circle */
.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(41, 155, 142, 0.3);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    border: 2px solid white;
}

/* Step Content Cards */
.step-content {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(30%);
    transition: all 0.4s ease;
    opacity: 0.8;
    flex-shrink: 0;
}

.step-content:hover .step-icon {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    flex-shrink: 0;
}

.step-content p {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    display: block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.benefit-card {
    background: rgba(255, 255, 255, 1);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 240px;
    position: relative;
    overflow: visible;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(41, 155, 142, 0.5);
    background: rgba(255, 255, 255, 1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0%);
    transition: all 0.4s ease;
    opacity: 1;
}

.benefit-card:hover .benefit-icon {
    filter: grayscale(0%) brightness(1.1);
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
}

.benefit-card h3 {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Final CTA */
.final-cta {
    margin-bottom: 3rem;
}

.cta-bento {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bento h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-bento > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.additional-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.additional-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.additional-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .bloom-assessments {
        padding: 0 0.75rem;
    }
    
    .hero-bento {
        padding: 3rem 2rem;
        border-radius: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-container {
        padding: 1.5rem;
    }
    
    .assessment-nav-sticky.scrolled .nav-container {
        padding: 0.75rem;
    }
    
    .nav-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .assessment-nav-sticky.scrolled .nav-title {
        opacity: 0;
        max-height: 0;
        margin-bottom: 0;
    }
    
    .assessment-pills {
        flex-direction: column;
        align-items: center;
        background: none;
        padding: 0;
        gap: 0.5rem;
    }
    
    .assessment-nav-sticky {
        padding: 0.75rem;
    }
    
    .assessment-pill {
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .assessment-info-panel,
    .chart-container,
    .sample-questions-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .assessment-icon {
        font-size: 3rem;
        align-self: center;
    }

    .assessment-details {
        text-align: center;
    }
    
    .info-actions {
        align-items: center;
    }
    
    .main-action {
        justify-content: center;
    }
    
    .main-action,
    .secondary-actions {
        align-items: center;
        text-align: center;
    }
    
    .questions-grid {
        grid-template-columns: 1fr;
    }

    .question-item {
        align-items: flex-start;
        text-align: left;
    }

    .question-type {
        align-self: flex-start;
    }

    .journey-bento,
    .benefits-bento {
        padding: 2rem 1rem;
        border-radius: 24px;
        margin: 0 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .additional-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-bento {
        padding: 3rem 2rem;
        border-radius: 24px;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .chart-container {
        padding: 1.5rem 1rem;
        min-height: 400px;
    }
    
    .chart-canvas-container {
        padding: 0.5rem;
    }
    
    .chart-scroll-wrapper {
        height: 350px;
    }
    
    /* Reduce minimum widths for mobile but keep readable */
    .chart-container.strengths .chart-scroll-wrapper {
        min-width: 600px; /* Still readable but less wide */
    }
    
    .chart-container.wellbeing .chart-scroll-wrapper {
        min-width: 400px;
    }
    
    .chart-container.leadership .chart-scroll-wrapper {
        min-width: 450px;
    }
    
    .chart-container.enterprise .chart-scroll-wrapper {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    .chart-container {
        padding: 1rem 0.75rem;
        min-height: 350px;
    }
    
    .chart-canvas-container {
        padding: 0.25rem;
    }
    
    .chart-scroll-wrapper {
        height: 300px;
    }
    
    /* Further reduced for very small screens */
    .chart-container.strengths .chart-scroll-wrapper {
        min-width: 500px;
    }
    
    .chart-container.wellbeing .chart-scroll-wrapper {
        min-width: 350px;
    }
    
    .chart-container.leadership .chart-scroll-wrapper {
        min-width: 400px;
    }
    
    .chart-container.enterprise .chart-scroll-wrapper {
        min-width: 450px;
    }

/* Animations */
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}