/**
 * CLEAN LANDING PAGE CSS COMPONENTS
 * 
 * This file contains a standardized component system for landing pages.
 * Follow these guidelines when creating new macro sections and components.
 * 
 * ===== MACRO SECTION SYSTEM =====
 * 
 * There are only TWO macro sections with h1 titles:
 * 
 * 1. "Who is this course for?" (macro-section--alternate)
 * 2. "What will you gain" (macro-section--default)
 * 
 * MACRO SECTION STRUCTURE:
 * <div class="macro-section macro-section--[modifier]">
 *     <div class="container">
 *         <h1 class="macro-section-title">Macro Section Title</h1>
 *         
 *         <section>
 *             <div class="section-header">
 *                 <h2 class="section-title">Section Title</h2>
 *                 <p class="section-subtitle">Section description</p>
 *             </div>
 *             
 *             <!-- Section content -->
 *         </section>
 *         
 *         <section>
 *             <!-- Additional sections within the macro section -->
 *             <div class="section-header">
 *                 <h2 class="section-title">Another Section Title</h2>
 *                 <p class="section-subtitle">Another section description</p>
 *             </div>
 *             
 *             <!-- More content -->
 *         </section>
 *     </div>
 * </div>
 * 
 * SECTIONS WITHIN "What will you gain" MACRO SECTION:
 * - What You'll Be Able to Do (h2)
 * - Projects you'll complete (h2)
 * - Questions You'll Be Ready to Answer (h2)
 * - What Does the Course Look Like? (h2)
 * - How Learning Works (h2)
 * - Optional 1-on-1 Consultation Pack (h2)
 * - Ready to Start? (h2)
 * 
 * MACRO SECTION MODIFIERS:
 * - macro-section--default: transparent background
 * - macro-section--alternate: gray background #f1f5f9
 * 
 * HEADER HIERARCHY:
 * - h1: macro-section-title (5rem font-size, center aligned) - ONLY for macro sections
 * - h2: section-title (2.5rem font-size, left aligned) - For regular sections
 * - h3: Used for cards/components within sections
 * 
 * SPACING RULES:
 * - 5rem spacing between the two macro sections (3rem on mobile)
 * - Macro section titles have 0 margin-top, 5rem margin-bottom
 * - Regular section headers have standardized margins within macro sections
 * - Section elements are transparent containers that don't affect spacing
 * 
 * When adding new content:
 * 1. Determine if it's a new macro section (h1) or regular section (h2)
 * 2. Most content should be regular sections within "What will you gain"
 * 3. Use existing component classes for consistency
 * 4. Follow the h1 > section > h2 > h3 hierarchy strictly
 * 5. Wrap each logical content area in a <section> element
 */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
    padding: 2rem;
    padding-top: 4rem;
}

body:has(.macro-section--hero-enhanced) {
    padding: 0;
}

.macro-section:not(.macro-section--hero-enhanced) {
    margin: 0;
}

/* Layout Components */
.container {
    max-width: 1863px; /* 10% wider than 1694px */
    margin: 0 auto;
    padding: 0 1rem;
}

/* Macro sections need proper container padding */
.macro-section .container {
    padding: 0 3rem;
}

/* Section Elements - Transparent Containers */
section {
    /* Section elements are semantic containers that don't affect styling */
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

/* Macro Section System */
.macro-section {
    padding: 5rem 0; /* Remove horizontal padding for full width */
    margin: 0;
    border-radius: 0; /* Remove rounded corners */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.macro-section--hero-enhanced,
.macro-section--about-testing,
.macro-section--alternate,
.macro-section--default,
.macro-section--premium,
.macro-section--pricing {
    background: #f8fafc;
}

/* 
 * ===== SYSTEMATIC SPACING ARCHITECTURE =====
 * 
 * MACRO SECTION LEVEL (5rem units):
 * - Macro sections: 5rem internal padding (top/bottom)
 * - Between macro sections: 5rem gap
 * - Macro section titles: 0 top margin, 5rem bottom margin
 * 
 * SECTION LEVEL (3rem units):
 * - Content grids: 3rem top margin
 * - Section headers: 3rem bottom margin  
 * - Between sections: 12rem top margin (semantic spacing)
 * - Course features: 3rem vertical margins
 * - Video containers: 3rem vertical margins
 * 
 * CONTENT LEVEL (1-2rem units):
 * - Card internal spacing: 1-2rem
 * - List items: 1rem spacing
 * - Small elements: 0.5-1rem
 * 
 * NO CONFLICTING MARGINS:
 * All elements use explicit margins (not just top or bottom)
 * Adjacent element spacing is controlled through + selectors
 * Section elements are transparent and don't interfere with spacing
 */

/* Macro Section Spacing Rules */
.macro-section + .macro-section {
    margin-top: 0;
}

.macro-section:last-child {
    margin-bottom: 0;
}

/* Global header font weight override */
h1, h2, h3, h4, h5, h6,
.hero-title-enhanced,
.content-card__title,
.journey-step__title,
.step-number {
    font-weight: 500 !important;
}

/* Typography Components */
.macro-section-title {
    font-size: 5rem;
    font-weight: 500;
    color: #111827;
    margin: 0 0 5rem 0;
    text-align: center;
}

/* Section spacing within macro sections */
.section-header {
    text-align: left;
    margin: 0 0 3rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #111827;
    margin: 0 0 1rem 0;
    position: relative;
    display: inline-block;
}



/* Center alignment for specific sections */
.section-header--center {
    text-align: center;
}

/* First section header after macro title gets reduced top margin */
.macro-section-title + section .section-header {
    margin-top: 0;
}

/* Spacing between sections - more semantic approach */
section + section {
    margin-top: 11rem;
}

/* Course features spacing within sections */
section .course-feature:first-child {
    margin-top: 3rem;
}

section .course-feature:last-child {
    margin-bottom: 3rem;
}

/* Video container spacing within sections */
section .video-container {
    margin: 3rem 0;
}

/* CTA section spacing within sections */
section .cta-section {
    margin: 3rem 0;
}

/* Company logos spacing within sections */
section .company-logos {
    margin: 3rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin: 0;
    width: 100%;
}

/* Expandable Card Styles */
.expandable-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.expandable-card:hover {
    transform: scale(1.01);
}

.expandable-card.expanded {
    border-color: #adb5bd;
    transform: scale(1.02);
    z-index: 10;
}

.expandable-card {
    margin: 0 0 2rem 0;
}

.expandable-card:last-child {
    margin-bottom: 0;
}

.expandable-card + .expandable-card {
    margin-top: 2rem;
}

/* Card Main Content */
.card-main {
    padding: 2.5rem 2.5rem 1rem 2.5rem;
    position: relative;
    display: flex;
    align-items: flex-start;
}

/* ===== EXPANDABLE CARD SPACING ===== */
/* Balanced spacing for expandable cards */

.expandable-card .card-main {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
}

.expandable-card .collapsible-content.expanded {
    margin-top: 0.5rem;
}

.card-content {
    flex: 1;
    padding-right: 4rem;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    color: #4f46e5;
    font-size: 1.5rem;
}

.card-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Fix expand button positioning */
.expand-button {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #6b7280;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Removed expand button shimmer effect */

/* Removed all content card shimmer effects */

/* Scroll-triggered Animations */
@keyframes slideInView {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    animation: slideInView 0.6s ease-out;
}

.content-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.content-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
    .macro-section .container {
        padding: 0 1.5rem;
    }
    
    .macro-section--about-testing::before,
    .macro-section--premium::before,
    .macro-section--pricing::before {
        opacity: 0.5;
    }
    
    .content-card::after,
    .content-grid::before {
        display: none;
    }
    
    .content-card:hover {
        transform: scale(1.01);
    }
}

.expand-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.collapsible-content.expanded {
    max-height: 2000px;
}

.content-sections {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin: 0 0 1.5rem 0;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title-h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.section-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.section-list-item {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1rem;
}

.section-list-item:last-child {
    margin-bottom: 0;
}

/* Removed circular expand button backgrounds */

.expand-button.expanded .expand-icon {
    transform: rotate(180deg);
}

/* FAQ title smaller size */
.card-title--faq {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 1rem 0 1rem 0 !important;
    padding: 0 !important;
}

/* FAQ card adjustments - less padding */
#faq-card-1 .card-main,
#faq-card-2 .card-main,
#faq-card-3 .card-main,
#faq-card-4 .card-main,
#faq-card-5 .card-main {
    padding: 1rem 2rem 1rem 2rem;
}

/* FAQ expanded content - minimal spacing */
#faq-card-1 .collapsible-content,
#faq-card-2 .collapsible-content,
#faq-card-3 .collapsible-content,
#faq-card-4 .collapsible-content,
#faq-card-5 .collapsible-content {
    padding: 0 2rem 1rem 2rem !important;
    margin: 0 !important;
}

/* FAQ list items - no bullets, just text */
#faq-card-1 .content-card__list-item,
#faq-card-2 .content-card__list-item,
#faq-card-3 .content-card__list-item,
#faq-card-4 .content-card__list-item,
#faq-card-5 .content-card__list-item {
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    border: none;
    background: none;
}

#faq-card-1 .content-card__list,
#faq-card-2 .content-card__list,
#faq-card-3 .content-card__list,
#faq-card-4 .content-card__list,
#faq-card-5 .content-card__list {
    padding: 0;
    margin: 0;
}

/* Scroll-triggered fade-in animations */
.fade-in-target {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Target Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.question-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    padding: 3rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.question-card:hover {
    transform: scale(1.01);
}

.question-card.full-width {
    grid-column: 1 / -1;
}

.question-header {
    margin-bottom: 2rem;
}

.question-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.question-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.question-tag {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.question-tag:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

.question-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.question-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
    flex: 1;
}

.question-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
    color: #374151;
}

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

.question-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.question-column {
    display: flex;
    flex-direction: column;
}

.ability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ability-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    padding: 3rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ability-card:hover {
    transform: scale(1.01);
}

.ability-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.ability-card__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
    flex: 1;
}

.ability-card__list li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    color: #374151;
}

.ability-card__list li:last-child {
    margin-bottom: 0;
}

.ability-card__list strong {
    color: #111827;
}

.learning-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.learning-feature-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.learning-feature-card:hover {
    transform: scale(1.01);
}

.learning-feature-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    min-height: 4.5rem;
    display: flex;
    align-items: flex-start;
}

.learning-feature-card__description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.consultation-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    padding: 3rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.consultation-card:hover {
    transform: scale(1.01);
}

.consultation-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.consultation-card__title i {
    color: #4f46e5;
}

.consultation-card__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
    flex: 1;
}

.consultation-card__list li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    color: #374151;
}

.consultation-card__list li:last-child {
    margin-bottom: 0;
}

.consultation-card__list strong {
    color: #111827;
}

/* Course Look Like Section */
.course-feature {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 3rem 0;
}

.course-feature:first-child {
    margin-top: 3rem;
}

.course-feature:last-child {
    margin-bottom: 3rem;
}

.course-feature--reverse {
    flex-direction: row-reverse;
}

.course-feature__content {
    flex: 1;
}

.course-feature__image {
    flex: 1;
}

.course-feature__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.course-feature__description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.course-feature__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}

.course-feature__list li {
    margin-bottom: 1rem;
}

.course-feature__list li:last-child {
    margin-bottom: 0;
}

.course-feature__image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
}

/* Video Container */
.video-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f3f4f6;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.video-placeholder {
    color: #6b7280;
    font-size: 1.2rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: #4f46e5;
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

.cta-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.cta-section__description {
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #4f46e5;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.cta-button:hover {
    background: #f8fafc;
    color: #3730a3;
    transform: scale(1.01);
}

/* Company Logos Component */
.company-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.company-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.company-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive company logos */
@media (max-width: 1024px) {
    .company-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .company-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .company-logo {
        height: 60px;
        padding: 0.5rem;
    }
    
    .company-logo img {
        max-height: 40px;
    }
}

/* Unified Grid System */
.content-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.content-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: transparent;
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Removed content grid glow effect */

.content-grid--single {
    grid-template-columns: 1fr;
}

.content-grid--quad {
    grid-template-columns: repeat(4, 1fr);
}

.content-grid--triple {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.content-grid--pricing {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 
 * ===== UNIFIED CARD SYSTEM =====
 * 
 * This replaces all the old redundant card systems:
 * - question-card, ability-card, learning-feature-card, consultation-card
 * - questions-grid, ability-grid, learning-feature-grid, consultation-grid
 * 
 * Now all cards use the same base structure:
 * - content-card: base card component
 * - content-card__header: header with title and tags
 * - content-card__title: card title
 * - content-card__tags: optional tags container
 * - content-card__tag: individual tag
 * - content-card__content: main content area
 * - content-card__description: text description
 * - content-card__list: list of items
 * - content-card__list-item: individual list item
 * 
 * Modifiers:
 * - content-card--full-width: spans full grid width
 * - content-card--learning: specialized for learning features
 * - content-card--company: specialized for company showcase cards
 * - content-card--pricing: specialized for pricing plans
 * 
 * This approach is:
 * - More maintainable (single source of truth)
 * - More consistent (same look and feel everywhere)
 * - More efficient (less CSS code)
 * - More scalable (easy to add new variations)
 */

/* Unified Card System */
.content-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
    transform: scale(1.01);
}

.content-card--full-width {
    grid-column: 1 / -1;
}

.content-card__header {
    margin-bottom: 2rem;
}

.content-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.content-card__tag {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Removed all tag shining effects completely */

.content-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-card__description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-card__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
    flex: 1;
}

.content-card__list-item {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
    color: #374151;
}

.content-card__list-item:last-child {
    margin-bottom: 0;
}

.content-card__list-item strong {
    color: #111827;
}

/* Special card variations */
.content-card--learning {
    padding: 2.5rem;
}

.content-card--learning .content-card__title {
    min-height: 4.5rem;
    display: flex;
    align-items: flex-start;
}

.content-card--learning .content-card__description {
    margin-bottom: 0;
    flex: 1;
}

/* Company showcase cards */
.content-card--company {
    position: relative;
    padding: 2.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.content-card--company:hover {
    transform: scale(1.01);
    border-color: #cbd5e1;
}

.content-card__company-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-card__company-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    flex-shrink: 0;
    object-fit: contain;
    transition: all 0.3s ease;
}

.content-card--company:hover .content-card__company-icon {
    transform: scale(1.05);
}

.content-card__company-icon--uber {
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.content-card__company-icon--harvard {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.content-card__company-icon--research {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.content-card--company .content-card__title {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

.content-card--company .content-card__tags {
    margin-bottom: 1.5rem;
}

.content-card--company .content-card__tag {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.content-card--company .content-card__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0;
}

.content-card--company .content-card__description strong {
    color: #111827;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Enhanced styling handled in main triple grid definition above */

/* Responsive enhancements for company cards */
@media (max-width: 1024px) {
    .content-grid--triple {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .content-card__company-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .content-grid--triple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-card--company {
        padding: 2rem;
    }
    
    .content-card__company-header {
        gap: 1rem;
    }
    
    .content-card__company-icon {
        width: 48px;
        height: 48px;
    }
    
    .content-card--company .content-card__title {
        font-size: 1.2rem;
    }
}

/* Payment method cards */
.content-card--payment {
    text-align: center;
    justify-content: center;
}

.content-card--payment .content-card__content {
    flex: none;
}

.content-card__icon-container {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Removed content card icon glow effect */

/* Removed content card icon glow effect */

.content-card__icon-container--green {
    background-color: #d1fae5;
    color: #10b981;
}

.content-card__icon-container--blue {
    background-color: #dbeafe;
    color: #3b82f6;
}

.content-card__icon-container--amber {
    background-color: #fef3c7;
    color: #d97706;
}

/* Step numbers for process cards */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #6b7280;
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Horizontal Journey Bar Layout */
.process-journey {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 3rem 0;
    overflow-x: auto;
    padding: 1rem 0;
}

.journey-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-step__icon {
    width: 4rem;
    height: 4rem;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.journey-step:hover .journey-step__icon {
    transform: translateY(-2px);

}

.journey-step__content {
    flex: 1;
}

.journey-step__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.journey-step__description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

.journey-arrow {
    position: absolute;
    right: -1.5rem;
    top: 2rem;
    font-size: 1.5rem;
    color: #d1d5db;
    font-weight: bold;
}

.journey-step--last .journey-arrow {
    display: none;
}

.journey-cta {
    text-align: center;
    margin-top: 2rem;
}

.journey-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.journey-cta__button:hover {
    transform: scale(1.01);
}

/* Mobile responsive design for journey */
@media (max-width: 768px) {
    .process-journey {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        overflow-x: visible;
    }
    
    .journey-step {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .journey-arrow {
        position: static;
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .journey-step--last .journey-arrow {
        display: none;
    }
} 

/* General content card footer */
.content-card__footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Question card specific styles for columns */
.content-card__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.content-card__column {
    display: flex;
    flex-direction: column;
}

/* CTA Section Variations */
.cta-section--career {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Small button variant */
.cta-button--small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-section--final {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

/* CTA Button Variations */
.cta-button--outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button--outline:hover {
    background: white;
    color: #4f46e5;
    border-color: white;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #3b82f6;
}

.faq-item:hover {
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    flex: 1;
}

.faq-icon {
    color: #6b7280;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .course-feature {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .course-feature--reverse {
        flex-direction: column;
    }

    .macro-section {
        margin: 0 -1rem;
        padding: 3rem 1rem;
        border-radius: 1rem;
    }

    .macro-section + .macro-section {
        margin-top: 0;
    }

    .macro-section-title {
        font-size: 3.5rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .macro-section-title:first-child {
        margin-top: 0;
    }

    .macro-section .macro-section-title {
        margin-top: 0;
    }

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

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-grid--quad {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* For slightly larger mobile screens */
    @media (min-width: 640px) and (max-width: 768px) {
        .content-grid--quad {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .content-grid--triple {
        grid-template-columns: 1fr;
    }

    .content-card {
        padding: 2rem;
    }

    .content-card--learning {
        padding: 2.5rem 2rem;
        min-height: 280px;
    }

    .content-card__title {
        font-size: 1.5rem;
    }

    .content-card--learning .content-card__title {
        font-size: 1.4rem;
        min-height: auto;
        margin-bottom: 1rem;
    }

    .content-card__columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .content-card__tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .content-card__company-icon {
        width: 48px;
        height: 48px;
    }

    .card-content {
        padding-right: 3rem;
    }
    
    .expand-button {
        right: 1.5rem;
        width: 2rem;
        height: 2rem;
    }
    
    .expand-icon {
        font-size: 0.875rem;
    }
    
    .collapsible-content {
        padding: 0.5rem 1.5rem 1.5rem;
    }
    
    .expandable-card .card-main {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .content-sections {
        padding: 1rem 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-description {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
} 

/* Classic Company Showcase - Old Landing Page Style (3 rows, 2 columns) */
.classic-company-showcase {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.company-stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.company-stat-card:hover {
    transform: scale(1.01);
}

.company-stat-card__content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.company-stat-card__icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.company-stat-card__icon--uber {
    background: linear-gradient(135deg, #000000, #333333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
}

.company-stat-card__icon--harvard {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    /* box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3); */
}

.company-stat-card__icon--research {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    /* box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3); */
}

.company-stat-card:hover .company-stat-card__icon {
    transform: scale(1.05);
}

.company-stat-card__info {
    flex: 1;
}

.company-stat-card__company {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.company-stat-card__metric {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.company-stat-card__description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.classic-company-showcase__message {
    text-align: center;
    margin-bottom: 2.5rem;
}

.classic-company-showcase__message p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Classic Showcase */
@media (max-width: 1024px) {
    .classic-company-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .classic-company-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .company-stat-card {
        padding: 1.5rem;
    }
    
    .company-stat-card__icon {
        width: 48px;
        height: 48px;
    }
    
    .company-stat-card__icon--uber,
    .company-stat-card__icon--harvard,
    .company-stat-card__icon--research {
        font-size: 1.2rem;
    }
    
    .company-stat-card__metric {
        font-size: 1rem;
    }
    
    .company-stat-card__description {
        font-size: 0.9rem;
    }
    
    .classic-company-showcase__message p {
        font-size: 1.1rem;
    }
}



/* ENHANCED HERO SECTION - IMPROVED VERSION */
.macro-section--hero-enhanced {
    color: #1f2937;
    text-align: left;
    padding: 5rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    /* Prevent layout shift during load */
    contain: layout style;
}

.macro-section--hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.macro-section--hero-enhanced {
    border-radius: 0;
}

.macro-section--hero-enhanced .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem !important;
    position: relative;
    z-index: 10;
}

.macro-section--hero-enhanced .menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: block;
}

/* Explicit hero horizontal positioning
   Shift entire hero content to the right by more than other sections */
.macro-section--hero-enhanced .menu-content .hero-content-wrapper-enhanced {
    margin-left: 0; /* Default: no extra offset */
}

/* Only apply large offset on wide screens */
@media (min-width: 1200px) {
    .macro-section--hero-enhanced .menu-content .hero-content-wrapper-enhanced {
        margin-left: 150px; /* 150px additional offset from left edge on wide screens */
    }
}

/* Particle System */
.hero-particles-system {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.8;
    animation: particleFloat 8s linear infinite;
    /* box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); */
}

.particle--1 { left: 10%; animation-delay: 0s; }
.particle--2 { left: 30%; animation-delay: 2s; }
.particle--3 { left: 50%; animation-delay: 4s; }
.particle--4 { left: 70%; animation-delay: 1s; }
.particle--5 { left: 90%; animation-delay: 3s; }
.particle--6 { left: 20%; animation-delay: 5s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Enhanced Background */
.hero-geometric-bg-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-grid-pattern-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    /* animation: gridMoveEnhanced 30s linear infinite; */
}

/* @keyframes gridMoveEnhanced {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, 40px) rotate(360deg); }
} */

/* Enhanced Floating Shapes */
.hero-floating-shapes-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-shape-enhanced {
    position: absolute;
    border: 2px solid rgba(59, 130, 246, 0.4);
    animation: floatEnhanced 10s ease-in-out infinite;
    /* box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); */
}

.floating-shape-enhanced--1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    border-radius: 50%;
    animation-delay: 0s;
}

.floating-shape-enhanced--2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    border-radius: 30%;
    animation-delay: 3s;
    border-color: rgba(5, 150, 105, 0.5);
    /* box-shadow: 0 0 20px rgba(5, 150, 105, 0.3); */
}

.floating-shape-enhanced--3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 5%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 6s;
    border-color: rgba(220, 38, 38, 0.5);
    /* box-shadow: 0 0 20px rgba(220, 38, 38, 0.3); */
}

@keyframes floatEnhanced {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(20px) rotate(240deg) scale(0.9); }
}

/* Enhanced Gradient Orbs */
.hero-gradient-orb-enhanced {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulseEnhanced 12s ease-in-out infinite;
}

.hero-gradient-orb-enhanced--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 60%);
    top: 20%;
    left: -5%;
    animation-delay: 0s;
}

.hero-gradient-orb-enhanced--2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 60%);
    bottom: 30%;
    right: -2%;
    animation-delay: 4s;
}

.hero-gradient-orb-enhanced--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.3) 0%, transparent 60%);
    top: 70%;
    left: 40%;
    animation-delay: 8s;
}

@keyframes pulseEnhanced {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.5; }
}

/* Content Wrapper Enhanced */
.hero-content-wrapper-enhanced {
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin: 0;
}



/* Enhanced Title with Typing Effect */
.hero-title-enhanced {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 0.85;
    margin-bottom: 2rem;
    color: #1f2937;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero-title-accent-enhanced {
    color: #3b82f6;
    animation: colorShiftEnhanced 6s ease-in-out infinite;
    position: relative;
    margin-top: -2.5rem; /* Reduced space between lines */
    display: block;
}

@keyframes colorShiftEnhanced {
    0%, 100% { color: #3b82f6; }
    33% { color: #059669; }
    66% { color: #dc2626; }
}

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



/* Rotating Text Animation */
.rotating-text {
    display: inline-block;
    position: relative;
    min-width: 280px;
    text-align: left;
    white-space: nowrap;
}

.typing-cursor {
    animation: blink 1s infinite;
    color: #3b82f6;
    margin-left: 2px;
    font-weight: 100;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Enhanced Subtitle */
.hero-subtitle-enhanced {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 1000px;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
}



/* Enhanced Stats Grid */
.hero-stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transform: translateY(0);
}

.stat-card-enhanced {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    width: 100px;
    height: 100px;
}

.stat-card-enhanced:hover {
    transform: scale(0.85) translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.8);
    /* box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3); */
}

.stat-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #3b82f6;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Removed stat card glow effect */

.stat-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.4s ease;
}

.stat-card-enhanced:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
}

.stat-number-enhanced {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.75rem;
    line-height: 1;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    user-select: none;
}

.stat-label-enhanced {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.3;
}

/* Enhanced CTAs */
.hero-cta-enhanced {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    opacity: 1;
    transform: translateY(0);
}

.cta-enhanced {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 3rem;
    border-radius: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 200px;
}

.cta-enhanced--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-enhanced--primary:hover {
    transform: translateY(-5px) scale(1.02);
    /* box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6); */
}

/* Removed CTA glow animation completely */

.cta-enhanced--secondary {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    color: #1f2937;
    border-color: rgba(59, 130, 246, 0.3);
}

.cta-enhanced--secondary:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-5px) scale(1.02);
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.cta-text strong {
    font-size: 1.1rem;
}

.cta-text small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}



/* Responsive Design for Enhanced Version */
@media (max-width: 1024px) {
    .hero-stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .macro-section--hero-enhanced {
        padding: 6rem 0 4rem 0;
        min-height: auto;
    }
    
    .hero-title-enhanced {
        font-size: 3.2rem; /* Reduce from 3.5rem to 3.2rem */
        line-height: 0.85;
        width: 90%; /* Reduce width by 10% as requested */
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title-accent-enhanced {
        margin-top: -1.2rem; /* Reduced space on mobile too */
    }
    
    .hero-subtitle-enhanced {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .stat-card-enhanced {
        padding: 1.5rem 1rem;
    }
    
    .hero-cta-enhanced {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .hero-cta-buttons {
        justify-content: center; /* Center the buttons on mobile */
        flex-wrap: wrap; /* Allow wrapping if needed */
    }
    
    .cta-enhanced {
        width: 100%;
        max-width: 300px;
        padding: 1.25rem 2rem;
    }
    
    .particle {
        display: none;
    }
}

/* Comprehensive Mobile Optimizations (600px and below) */
@media (max-width: 600px) {
    /* 1. Content Cards - Reduce padding and margins by half */
    .content-card {
        padding: 1.5rem; /* Reduced from 3rem */
        margin: 1.5rem 0; /* Reduced margins */
    }
    
    .content-card--learning {
        padding: 1.5rem; /* Reduced from 2rem (current mobile) */
    }
    
    /* 2. CTA Sections - Reduce padding and margins by half */
    .cta-section {
        padding: 2rem 1rem; /* Reduced from 4rem 2rem */
        margin: 1.5rem 0; /* Reduced from 3rem 0 */
    }
    
    .cta-section--career,
    .cta-section--final {
        padding: 2rem 1rem; /* Consistent reduced padding */
        margin: 1.5rem 0;
    }
    
    /* 3. Content Card Tags - Reduce size */
    .content-card__tag {
        font-size: 0.75rem; /* Reduced from 0.875rem */
        padding: 0.3rem 0.6rem; /* Reduced from 0.5rem 1rem */
    }
    
    /* 4. CTA Buttons - Fix vertical layout and text visibility */
    .cta-section-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-section-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        white-space: nowrap; /* Prevent text wrapping */
        flex: none; /* Remove flex growth */
    }
    
    /* 5. Section Header Spacing - Reduce when no macro-section-title before */
    .section-header {
        margin: 0 0 1.5rem 0; /* Reduced from 3rem */
    }
    
    /* Keep normal spacing when macro-section-title exists */
    .macro-section-title + section .section-header {
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    
    /* Reduce spacing between sections */
    section + section {
        margin-top: 5.5rem; /* Reduced from 11rem */
    }
    
    /* REMOVED: Redundant rule - using main mobile styles */
    
    /* Note: 2-column layout handled by separate media query below */
    
    /* Hero section mobile improvements */
    .hero-title-enhanced {
        font-size: 2.8rem; /* Further reduce for very small screens */
        width: 85%; /* Even more narrow to prevent text cutoff */
    }
    
    .hero-cta-buttons {
        flex-direction: column; /* Stack buttons vertically on very small screens */
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-cta-buttons .cta-gradient-alt {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Macro section padding reductions */
    .macro-section {
        padding: 3rem 0; /* Reduced from 6rem+ */
    }
    
    /* Content card headers and spacing */
    .content-card__header {
        margin-bottom: 1rem; /* Reduced from 2rem */
    }
    
    .content-card__title {
        font-size: 1.4rem; /* Slightly smaller than current 1.5rem */
        margin-bottom: 0.75rem; /* Reduced from 1.5rem */
    }
    
    /* Additional CTA button fixes for all similar sections */
    .hero-cta-enhanced,
    .cta-enhanced-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-enhanced,
    .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0;
        white-space: nowrap;
    }
}

/* REMOVED: Conflicting content grid rules - using unified mobile approach */ 

/* ENHANCED MACRO SECTION BACKGROUNDS */

/* About A/B Testing - Modern Light Background */
.macro-section--about-testing {
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.macro-section--about-testing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(220, 38, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.macro-section--about-testing .macro-section-title,
.macro-section--about-testing .section-title {
    color: #1f2937;
}

.macro-section--about-testing .section-subtitle {
    color: #4b5563;
}

/* Alternate - Enhanced Gradient */
.macro-section--alternate {
    position: relative;
    overflow: hidden;
}

.macro-section--alternate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(220, 38, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Default - Enhanced with Subtle Pattern */
.macro-section--default {
    position: relative;
    overflow: hidden;
}

.macro-section--default::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(220, 38, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Why is it worth it - Modern Purple Theme */
.macro-section--premium {
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.macro-section--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(220, 38, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.macro-section--premium .macro-section-title,
.macro-section--premium .section-title {
    color: #1f2937;
}

.macro-section--premium .section-subtitle {
    color: #4b5563;
}

/* Pricing - Modern Green Theme */
.macro-section--pricing {
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.macro-section--pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(220, 38, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.macro-section--pricing .macro-section-title,
.macro-section--pricing .section-title {
    color: #1f2937;
}

.macro-section--pricing .section-subtitle {
    color: #4b5563;
}

/* ENHANCED CONTENT CARDS FOR MODERN BACKGROUNDS */
.macro-section--about-testing .content-card,
.macro-section--premium .content-card,
.macro-section--pricing .content-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.macro-section--about-testing .content-card__title,
.macro-section--premium .content-card__title,
.macro-section--pricing .content-card__title {
    color: #1f2937;
}

.macro-section--about-testing .content-card__description,
.macro-section--premium .content-card__description,
.macro-section--pricing .content-card__description {
    color: #4b5563;
}

/* ENHANCED CONTENT CARDS HOVER EFFECTS */
.content-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
    transform: scale(1.01);
}

.macro-section--about-testing .content-card:hover,
.macro-section--premium .content-card:hover,
.macro-section--pricing .content-card:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.9);
}

/* FLOATING ANIMATION FOR BACKGROUNDS */
@keyframes floatBackground {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.macro-section--alternate::after,
.macro-section--premium::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: floatBackground 8s ease-in-out infinite;
    pointer-events: none;
}

.macro-section--pricing::after {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    animation: floatBackground 10s ease-in-out infinite reverse;
}

/* ENHANCED TYPOGRAPHY */
.macro-section-title {
    background: linear-gradient(135deg, #1f2937 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.macro-section--about-testing .macro-section-title {
    color: #111827;
}

.macro-section--premium .macro-section-title,
.macro-section--pricing .macro-section-title {
    color: #111827;
}

/* SUBTLE GLOW EFFECTS - Removed for light themes */ 

/* Modern Minimalistic Menu */
.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0.75rem 0;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #4f46e5;
}

.menu-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.menu-btn--signin {
    color: #6b7280;
    background: transparent;
}

.menu-btn--signin:hover {
    color: #374151;
    background: #f9fafb;
}

.menu-btn--signup {
    color: white;
    background: #4f46e5;
}

.menu-btn--signup:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

/* Add top padding to body to account for fixed menu */
body {
    padding-top: 4rem;
}

/* CTA Buttons Container */
.hero-cta-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

/* Hero title spacing */
.hero-title-enhanced {
    margin-top: 3rem !important;
}

/* Mobile hero title centering */
@media (max-width: 768px) {
    .hero-title-enhanced {
        text-align: center;
    }
}

/* Fix typing animation centering for very small screens */
@media (max-width: 400px) {
    .hero-title-enhanced {
        font-size: 2.4rem !important; /* Smaller font to prevent cutting */
        line-height: 1.1 !important; /* Better line height for readability */
        margin-bottom: 1.5rem !important;
        padding: 0 10px; /* Add padding to prevent edge cutting */
    }
    
    .hero-title-accent-enhanced {
        display: block;
        width: 100%;
        text-align: center !important; /* Force center alignment */
        /* REMOVED overflow: hidden - this was causing text cutting */
        position: relative;
        min-height: 3rem; /* Ensure enough height for text */
        padding: 0.5rem 0; /* Add vertical padding */
        margin: 0 auto; /* Additional centering */
    }
    
    .rotating-text {
        display: inline-block;
        text-align: center;
        /* REMOVED fixed width and transforms - let text flow naturally */
        white-space: nowrap; /* Prevent text wrapping */
    }
    
    /* Ensure cursor is always visible */
    .typing-cursor {
        display: inline-block;
        animation: blink 1s infinite;
    }
}

/* Ensure rotating text is always visible - prevent loading blanks */
.rotating-text {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block;
}

/* Blinking cursor animation */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* CTA section buttons */
.cta-section-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-section-buttons .cta-button {
    flex: 1;
    max-width: 250px;
}

/* Mobile CTA button improvements */
@media (max-width: 768px) {
    .cta-section-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-section-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        flex: none;
    }
    
    /* Inline button containers need the same treatment */
    div[style*="display: flex"][style*="justify-content: center"] {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    div[style*="display: flex"] .cta-button[style*="flex: 1"] {
        width: 100% !important;
        max-width: 300px !important;
        flex: none !important;
    }
}

/* Content card spacing utilities */
.content-card__tags {
    margin-bottom: 1rem !important;
}

.content-card__header--centered {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.content-card__header--centered .content-card__title {
    margin-bottom: 0;
}

/* List spacing */
.spaced-list {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

/* Interactive Learning Components */
.quiz-preview, .practical-exercise, .case-study {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.quiz-preview:hover, .practical-exercise:hover, .case-study:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

/* Quiz Preview Styles */
.quiz-preview {
    border-left: 4px solid #667eea;
}

.quiz-preview__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.quiz-preview__icon {
    color: #667eea;
    font-size: 1.25rem;
}

.quiz-preview__title {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.quiz-preview__count {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.quiz-preview__description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Practical Exercise Styles */
.practical-exercise {
    border-left: 4px solid #10b981;
}

.practical-exercise__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.practical-exercise__icon {
    color: #10b981;
    font-size: 1.25rem;
}

.practical-exercise__title {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.practical-exercise__time {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.practical-exercise__description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Case Study Styles */
.case-study {
    border-left: 4px solid #f59e0b;
}

.case-study__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.case-study__icon {
    color: #f59e0b;
    font-size: 1.25rem;
}

.case-study__title {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.case-study__company {
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.case-study__description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Content Card Tag Variants */
.content-card__tag--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

/* Learning Outcomes */
.learning-outcomes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.learning-outcome {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.learning-outcome:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.learning-outcome__number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.learning-outcome__content h6 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.learning-outcome__content p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Content Section Summary */
.content-section--summary {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

/* Responsive Design for Learning Components */
@media (max-width: 768px) {
    .quiz-preview, .practical-exercise, .case-study {
        padding: 1rem;
    }
    
    .quiz-preview__header, .practical-exercise__header, .case-study__header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .learning-outcome {
        padding: 1rem;
    }
    
    .learning-outcome__number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* Alternative gradient CTA buttons - fixed styling */
.cta-gradient-alt {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px; /* Maximum circular */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.cta-gradient-alt:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #663399 100%); /* Darker colors */
    transform: scale(1.01); /* Subtle like cta-button */
}

/* Secondary variant - fixed styling */
.cta-gradient-alt--secondary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    border-radius: 50px; /* Maximum circular */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-gradient-alt--secondary:hover {
    background: linear-gradient(135deg, rgba(90, 103, 216, 0.9) 0%, rgba(102, 51, 153, 0.9) 100%); /* Darker */
    transform: scale(1.01); /* Subtle like cta-button */
}

/* Top menu Start Learning button */
.menu-btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.menu-btn--primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-1px);
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    aspect-ratio: 1;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.hero-stat-card:hover {
    transform: scale(1.02);
}

.hero-stat-number {
    font-size: 1.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1;
    color: #3b82f6;
}

.hero-stat-number--medium {
    font-size: 1.625rem;
}

.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.2;
    color: #374151;
}

/* Responsive adjustments for hero stats */
@media (max-width: 768px) {
    .hero-stats-grid {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .hero-stat-card {
        width: 110px;
        height: 110px;
        padding: 0.75rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-number--medium {
        font-size: 1.25rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
}