/* ==========================================================================
   HOME PAGE STYLES - Modern, professional SaaS landing page
   Compatible with existing CSS architecture and components
   ========================================================================== */

/* =========================
     Trust Badge
=========================== */
.trust-badge {
    display: inline-block;
    background: rgba(74, 93, 249, 0.1);
    color: var(--blue_1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-large);
    border: 1px solid rgba(74, 93, 249, 0.2);
}

.dark-mode .trust-badge {
    background: rgba(107, 124, 250, 0.15);
    border-color: rgba(107, 124, 250, 0.3);
}

/* =========================
     Hero Title Enhancements
=========================== */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-large);
    color: var(--text_color);
}

.hero-title-gradient {
    /* Simplified - no gradient, just blue color */
    color: var(--blue-primary);
}

.hero-description {
    font-size: var(--font-marketing-subtitle);
    line-height: var(--leading-relaxed);
    color: var(--text_color);
    opacity: 0.9;
    margin-bottom: var(--spacing-xlarge);
    max-width: 90%;
}

/* =========================
     Hero Statistics Grid
=========================== */
.hero-stats-grid {
    display: flex;
    gap: var(--spacing-medium);
    margin-bottom: var(--spacing-xlarge);
    flex-wrap: wrap;
}

.hero-stats-grid .stat-item {
    padding: 16px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    background: var(--card-bg, var(--fg_color));
    text-align: center;
    min-width: 140px;
}

.hero-stats-grid .stat-item:hover {
    border-color: var(--border-default);
}

.hero-stats-grid .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue_1);
    margin-bottom: 0.25rem;
}

.hero-stats-grid .stat-label {
    font-size: 0.85rem;
    color: var(--text_color_shiny);
    font-weight: 600;
}

/* =========================
     Hero Actions
=========================== */
.hero-actions {
    margin-top: var(--spacing-large);
}

/* Button styles moved to buttons.css */

/* =========================
     Signup Card
=========================== */
.signup-card {
    padding: 16px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    background: var(--card-bg, var(--fg_color));
    box-shadow: var(--shadow-subtle);
    max-width: 420px;
}

.dark-mode .signup-card {
    box-shadow: var(--shadow-subtle);
}

.signup-header {
    margin-bottom: var(--spacing-large);
}

.signup-title {
    font-size: var(--font-subheader-size);
    font-weight: var(--font-subheader-weight);
    color: var(--text_color);
    margin-bottom: var(--spacing-small);
}

.signup-subtitle {
    color: var(--text_color_shiny);
    font-size: var(--font-body-size);
    line-height: 1.5;
}

/* =========================
     Signup Form
=========================== */
.signup-form .form-group {
    margin-bottom: var(--spacing-medium);
}

.signup-form .form-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: var(--spacing-medium);
    border: var(--border);
    border-radius: var(--border_radius_button);
    background: var(--bg_color);
    color: var(--text_color);
    font-size: var(--font-body-size);
    margin-bottom: var(--spacing-small);
    /* transition: all 0.3s ease; */
}

.signup-form .form-input:focus {
    outline: none;
    border-color: var(--blue_1);
    box-shadow: 0 0 0 3px rgba(74, 93, 249, 0.1);
}

.signup-form .btn-primary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* =========================
     Signup Benefits
=========================== */
.signup-benefits {
    margin: var(--spacing-medium) 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-small);
    margin-bottom: var(--spacing-small);
    font-size: 0.9rem;
    color: var(--text_color);
}

.benefit-item i {
    color: #22c55e;
    font-size: 0.8rem;
}

.signup-disclaimer {
    font-size: 0.85rem;
    color: var(--text_color_shiny);
    line-height: 1.4;
    margin-top: var(--spacing-medium);
}

.link-explore {
    color: var(--blue_1);
    text-decoration: none;
}

.link-explore:hover {
    text-decoration: underline;
}

/* =========================
     Section Headers
=========================== */
.section-badge {
    display: inline-block;
    background: rgba(74, 93, 249, 0.1);
    color: var(--blue_1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-medium);
    border: 1px solid rgba(74, 93, 249, 0.2);
}

.dark-mode .section-badge {
    background: rgba(107, 124, 250, 0.15);
    border-color: rgba(107, 124, 250, 0.3);
}

.section-title {
    font-size: var(--font-header-size);
    font-weight: var(--font-header-weight);
    color: var(--text_color);
    margin-bottom: var(--spacing-medium);
    line-height: 1.2;
}

.problem-section .section-title {
    text-align: center;
}

.section-description {
    font-size: var(--font-subheader-small-size);
    color: var(--text_color_shiny);
    line-height: 1.6;
    margin-bottom: var(--spacing-xlarge);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xlarge);
}

/* =========================
     Problems Grid
=========================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-large);
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    padding: 16px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    background: var(--fg_color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dark-mode .problem-card {
    background: #2a2a2a;
}

.problem-card:hover {
    border-color: var(--border-default);
}

.dark-mode .problem-card:hover {
    border-color: var(--border-default);
}

.problem-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-medium);
    margin-bottom: var(--spacing-medium);
}

.problem-icon {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.problem-title {
    font-size: var(--font-subheader-small-size);
    font-weight: var(--font-subheader-small-weight);
    color: var(--text_color);
    margin: 0;
    line-height: 1.3;
}

.problem-description {
    color: var(--text_color_shiny);
    line-height: 1.6;
    margin-bottom: var(--spacing-large);
}

.solution-badge {
    background: var(--blue_1);
    color: white;
    padding: var(--spacing-medium);
    border-radius: var(--border_radius_button);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-small);
    margin-top: auto;
}

.solution-badge i {
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.solution-text strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.solution-text span {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* =========================
     Demo Grid
=========================== */
.demo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xlarge);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.primary-demo {
    padding: 16px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    background: var(--fg_color);
    box-shadow: var(--shadow-subtle);
}

.dark-mode .primary-demo {
    background: #2a2a2a;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-medium);
    margin-bottom: var(--spacing-large);
}

.demo-icon {
    color: var(--blue_1);
    font-size: 2rem;
}

.demo-title {
    font-size: var(--font-subheader-size);
    font-weight: var(--font-subheader-weight);
    color: var(--text_color);
    margin: 0;
}

.demo-tagline {
    color: var(--text_color_shiny);
    font-size: 0.9rem;
    margin: 0;
}

/* =========================
     Demo Example
=========================== */
.demo-example {
    margin-bottom: var(--spacing-large);
}

.demo-input,
.demo-output {
    background: var(--primary_2);
    border-radius: var(--border_radius_button);
    padding: var(--spacing-medium);
    margin-bottom: var(--spacing-medium);
}

.input-label,
.output-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text_color_shiny);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.input-text {
    color: var(--text_color);
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.demo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-small);
    color: var(--blue_1);
    font-weight: 600;
    margin: var(--spacing-small) 0;
}

.salary-result {
    color: var(--text_color);
}

.salary-main {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-small);
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.salary-label {
    font-weight: 600;
}

.salary-range {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue_1);
}

.salary-median {
    color: var(--text_color_shiny);
}

.salary-details {
    font-size: 0.85rem;
    color: var(--text_color_shiny);
}

.demo-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-small);
    background: var(--blue_1);
    color: white;
    padding: var(--spacing-medium) var(--spacing-large);
    border-radius: var(--border_radius_button);
    text-decoration: none;
    font-weight: 600;
    /* transition: all 0.3s ease; */
}

.demo-cta:hover {
    background: var(--blue_2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 93, 249, 0.3);
}

/* =========================
     Demo Features
=========================== */
.demo-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
}

.feature-card {
    padding: 16px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    background: var(--card-bg, var(--fg_color));
}

.feature-card:hover {
    border-color: var(--border-default);
}

.feature-icon {
    color: var(--blue_1);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-medium);
}

.feature-title {
    font-size: var(--font-card-title-size);
    font-weight: var(--font-card-title-weight);
    color: var(--text_color);
    margin-bottom: var(--spacing-medium);
}

.location-examples,
.report-examples {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
}

.location-item,
.report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-small) 0;
    border-bottom: 1px solid var(--line_color);
}

.location-item:last-child,
.report-item:last-child {
    border-bottom: none;
}

.location-salary,
.report-value {
    font-weight: 600;
    color: var(--blue_1);
}

.location-name,
.report-metric {
    color: var(--text_color_shiny);
    font-size: 0.9rem;
}

/* =========================
     Customer Logos
=========================== */
.customer-logos {
    text-align: center;
    margin-bottom: var(--spacing-xlarge);
}

.logos-caption {
    color: var(--text_color_shiny);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-medium);
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-large);
    flex-wrap: wrap;
}

.logo-item {
    color: var(--text_color_shiny);
    font-weight: 600;
    padding: var(--spacing-small) var(--spacing-medium);
    background: var(--primary_2);
    border-radius: var(--border_radius_button);
    opacity: 0.7;
    /* transition: opacity 0.2s ease; */
}

.logo-item:hover {
    opacity: 1;
}

/* =========================
     Stats Showcase
=========================== */
.stats-showcase {
    margin-bottom: var(--spacing-xlarge);
}

.primary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-large);
    margin-bottom: var(--spacing-large);
}

.primary-stat {
    padding: 16px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    background: var(--card-bg, var(--fg_color));
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3);
}

.primary-stat:hover {
    border-color: var(--border-default);
}

.stat-icon {
    color: var(--blue_1);
    font-size: 3rem;
}

.stat-content {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue_1);
    display: block;
    margin-bottom: var(--spacing-small);
}

.stat-title {
    font-size: var(--font-subheader-small-size);
    font-weight: var(--font-subheader-small-weight);
    color: var(--text_color);
    margin-bottom: var(--spacing-small);
}

.stat-description {
    color: var(--text_color_shiny);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* =========================
     Secondary Stats
=========================== */
.secondary-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-large);
    flex-wrap: wrap;
}

.secondary-stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-small);
    color: var(--text_color_shiny);
    font-size: 0.9rem;
    font-weight: 500;
}

.secondary-stat i {
    color: var(--blue_1);
}

/* =========================
     Testimonials
=========================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-large);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 16px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    background: var(--card-bg, var(--fg_color));
}

.testimonial-card:hover {
    border-color: var(--border-default);
}

.testimonial-quote {
    margin-bottom: var(--spacing-large);
}

.quote-icon {
    color: var(--blue_1);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-medium);
    opacity: 0.3;
}

.testimonial-quote p {
    color: var(--text_color);
    font-size: var(--font-body-size);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author strong {
    color: var(--text_color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text_color_shiny);
    font-size: 0.9rem;
    margin-left: var(--spacing-small);
}

/* =========================
     Final CTA Section
=========================== */
.final-cta-section {
    text-align: center;
}

.cta-title {
    font-size: var(--font-header-size);
    font-weight: var(--font-header-weight);
    color: var(--text_color);
    margin-bottom: var(--spacing-medium);
}

.cta-description {
    font-size: var(--font-subheader-small-size);
    color: var(--text_color_shiny);
    line-height: 1.6;
    margin-bottom: var(--spacing-xlarge);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-large);
    align-items: center;
    margin-bottom: var(--spacing-xlarge);
    flex-wrap: wrap;
}

.primary-cta {
    text-align: center;
}

/* Button styles moved to buttons.css */

.cta-details {
    font-size: 0.85rem;
    color: var(--text_color_shiny);
    margin: 0;
}

/* =========================
     Final Trust Indicators
=========================== */
.final-trust-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xlarge);
    flex-wrap: wrap;
    align-items: center;
}

.trust-stats {
    display: flex;
    gap: var(--spacing-large);
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue_1);
    display: block;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text_color_shiny);
    font-weight: 600;
}

.security-badges {
    display: flex;
    gap: var(--spacing-medium);
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-small);
    background: var(--primary_2);
    padding: var(--spacing-small) var(--spacing-medium);
    border-radius: var(--border_radius_button);
    font-size: 0.85rem;
    color: var(--text_color);
    font-weight: 500;
}

.security-badge i {
    color: var(--blue_1);
}

/* =========================
     Responsive Design
=========================== */
@media (max-width: 1024px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-large);
    }
    
    .hero-stats-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .primary-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .final-trust-indicators {
        flex-direction: column;
        gap: var(--spacing-large);
    }
    
    .trust-stats {
        justify-content: center;
    }
    
    .security-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-grid .stat-item {
        width: 100%;
        max-width: 200px;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: var(--spacing-medium);
    }
}

/* =========================
     New Centered Hero Layout
=========================== */
.hero-container-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    transform: translateY(var(--nav-height-buffer));
}

.hero-container-centered .trust-badge {
    margin-left: auto;
    margin-right: auto;
}

.hero-container-centered .marketing-title {
    font-size: var(--font-marketing-hero);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--spacing-large);
    color: var(--text_color);
}

.hero-container-centered .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-container-centered .hero-stats-grid {
    justify-content: center;
}

.hero-container-centered .hero-actions {
    display: flex;
    gap: var(--spacing-medium);
    justify-content: center;
    flex-wrap: wrap;
}

/* Large button styles moved to buttons.css */

/* =========================
     Story Section
=========================== */
.story-section {
    min-height: auto;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text_color);
    margin-bottom: var(--spacing-large);
}

.story-text:last-child {
    margin-bottom: 0;
}

/* =========================
     Colored Problem Cards
=========================== */
.problems-section {
    min-height: auto;
}

.problem-card-purple {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.05) 0%, rgba(124, 77, 255, 0.02) 100%);
    border-left: 4px solid #7C4DFF;
}

.problem-card-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    border-left: 4px solid #22C55E;
}

.problem-card-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(236, 72, 153, 0.02) 100%);
    border-left: 4px solid #EC4899;
}

.dark-mode .problem-card-purple {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(124, 77, 255, 0.03) 100%);
}

.dark-mode .problem-card-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.03) 100%);
}

.dark-mode .problem-card-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.03) 100%);
}

/* =========================
     Simplified CTA Section
=========================== */
.final-cta-section {
    min-height: auto;
    text-align: center;
}

.final-cta-section .section-title {
    margin-bottom: var(--spacing-medium);
}

.final-cta-section .cta-description {
    max-width: 700px;
    margin: 0 auto var(--spacing-xlarge);
    font-size: var(--font-marketing-subtitle);
    line-height: var(--leading-relaxed);
    color: var(--text_color_shiny);
}

.final-cta-section .cta-actions {
    display: flex;
    gap: var(--spacing-medium);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-medium);
}

/* Large CTA button styles moved to buttons.css */

.cta-note {
    color: var(--text_color_shiny);
    font-size: 0.9rem;
    margin-top: var(--spacing-small);
}

/* Viewport-based panels for About page */
.hero.panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xlarge) 0;
}

.problem-section.panel {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xlarge) 0;
}

.what-section.panel {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xlarge) 0;
}

/* Other sections keep auto height */
.story-section.panel,
.problems-section.panel,
.demo-section.panel,
.trust-section.panel,
.final-cta-section.panel {
    min-height: auto;
    padding: var(--spacing-xlarge) 0;
}

/* =========================
     Section Subtitle
=========================== */
.section-subtitle {
    text-align: center;
    font-size: var(--font-marketing-subtitle);
    color: var(--text_color_shiny);
    max-width: 700px;
    margin: var(--spacing-medium) auto var(--spacing-xlarge);
    line-height: var(--leading-relaxed);
}

/* =========================
     Simplified Problem Cards
=========================== */
.problems-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xlarge);
    margin-bottom: var(--spacing-xlarge);
}

.problem-card-simple {
    text-align: center;
}

.problem-card-simple h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text_color);
    margin-bottom: var(--spacing-small);
}

.problem-card-simple p {
    font-size: 1rem;
    color: var(--text_color_shiny);
    line-height: 1.6;
}

/* =========================
     Expanded Problem Cards (New Emotional Design)
=========================== */
.problems-grid-expanded {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xlarge);
    margin: var(--spacing-xlarge) 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card-expanded {
    padding: var(--spacing-xlarge);
    border-left: 4px solid var(--blue_1);
    background: var(--fg_color);
    border-radius: var(--border_radius_button);
    /* transition: all 0.3s ease; */
}

.problem-card-expanded:hover {
    transform: translateX(8px);
    box-shadow: -8px 0 0 0 var(--blue_1);
}

.dark-mode .problem-card-expanded {
    background: #2a2a2a;
}

.problem-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue_1);
    margin-bottom: var(--spacing-medium);
    letter-spacing: 0.1em;
}

.problem-card-expanded h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--text_color);
    margin-bottom: var(--spacing-medium);
    line-height: var(--leading-snug);
}

.problem-card-expanded p {
    font-size: var(--font-marketing-body);
    color: var(--text_color_shiny);
    line-height: var(--leading-loose);
    margin-bottom: var(--spacing-medium);
}

.problem-outcome {
    font-size: 1rem;
    color: var(--blue_1);
    font-weight: 600;
    margin-bottom: 0;
    padding-top: var(--spacing-small);
    border-top: 1px solid var(--line_color);
}

.solution-summary {
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-xlarge) auto 0;
    padding: var(--spacing-xlarge);
    background: linear-gradient(135deg, rgba(74, 93, 249, 0.05) 0%, rgba(74, 93, 249, 0.02) 100%);
    border-radius: var(--border_radius_button);
    border: 1px solid rgba(74, 93, 249, 0.2);
}

.dark-mode .solution-summary {
    background: linear-gradient(135deg, rgba(107, 124, 250, 0.1) 0%, rgba(107, 124, 250, 0.03) 100%);
    border-color: rgba(107, 124, 250, 0.3);
}

.solution-headline {
    font-size: var(--font-marketing-emphasis);
    font-weight: var(--font-bold);
    color: var(--text_color);
    margin-bottom: var(--spacing-medium);
    line-height: var(--leading-snug);
}

.solution-details {
    font-size: var(--font-marketing-subtitle);
    color: var(--text_color);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

.btn-text-link {
    color: var(--blue_1);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    /* transition: all 0.2s ease; */
    display: inline-block;
}

.btn-text-link:hover {
    color: var(--blue_2);
}

/* =========================
     What We Do Section
=========================== */
.what-section {
    background: var(--bg_color);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xlarge);
    margin-top: var(--spacing-xlarge);
}

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

.what-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text_color);
    margin-bottom: var(--spacing-small);
}

.what-item p {
    font-size: 1rem;
    color: var(--text_color_shiny);
    margin-bottom: var(--spacing-medium);
    line-height: 1.6;
}

.what-link {
    color: var(--blue_1);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    /* transition: all 0.2s ease; */
    display: inline-block;
}

.what-link:hover {
    color: var(--blue_2);
}

/* =========================
     Expanded What We Do Section
=========================== */
.what-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xlarge);
    margin-top: var(--spacing-xlarge);
}

.what-item-expanded {
    padding: var(--spacing-xlarge);
    background: var(--fg_color);
    border-radius: var(--border_radius_button);
    border: 1px solid var(--line_color);
    /* transition: all 0.3s ease; */
    display: flex;
    flex-direction: column;
}

.what-item-expanded:hover {
    border-color: var(--blue_1);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.dark-mode .what-item-expanded {
    background: #2a2a2a;
}

.dark-mode .what-item-expanded:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.what-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-medium);
}

.what-item-expanded h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--text_color);
    margin-bottom: var(--spacing-medium);
    line-height: var(--leading-snug);
}

.what-description {
    font-size: var(--font-marketing-body);
    color: var(--text_color_shiny);
    line-height: var(--leading-loose);
    margin-bottom: var(--spacing-medium);
    flex-grow: 1;
}

.what-outcome {
    font-size: 0.95rem;
    color: var(--text_color);
    font-weight: 600;
    font-style: italic;
    margin-bottom: var(--spacing-large);
    padding: var(--spacing-medium);
    background: rgba(74, 93, 249, 0.05);
    border-radius: var(--border_radius_button);
    border-left: 3px solid var(--blue_1);
}

.dark-mode .what-outcome {
    background: rgba(107, 124, 250, 0.1);
}

.what-link-large {
    color: var(--blue_1);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    /* transition: all 0.2s ease; */
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-small);
}

.what-link-large:hover {
    color: var(--blue_2);
    transform: translateX(4px);
}

/* Mobile responsive for simplified sections */
@media (max-width: 768px) {
    .problems-grid-simple {
        grid-template-columns: 1fr;
        gap: var(--spacing-large);
    }

    .what-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-large);
    }

    .what-grid-expanded {
        grid-template-columns: 1fr;
        gap: var(--spacing-large);
    }

    .problem-card-expanded {
        padding: var(--spacing-large);
    }

    .problem-card-expanded:hover {
        transform: none;
        box-shadow: none;
    }

    .what-item-expanded:hover {
        transform: none;
    }

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

    .solution-headline {
        font-size: 1.5rem;
    }
}