/* ==========================================================================
   Index Page Specific Styles
   ========================================================================== */

/* Hero Section mit Video Background */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    padding: 100px 0;
    overflow: hidden;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video Overlay für bessere Textlesbarkeit */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: -1;
}

.hero {
    text-align: center;
    position: relative;
    overflow: hidden;
}



@keyframes floatSubtle {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(-20px, -10px);
    }
    66% {
        transform: translate(20px, 10px);
    }
}

/* Data Flow Animation */
.data-flow-animation {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.1;
}

.data-flow-animation::before,
.data-flow-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 3s ease-in-out infinite;
}

.data-flow-animation::before {
    width: 100%;
    height: 100%;
}

.data-flow-animation::after {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Content - Liquid Glass Box */
.hero-content {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: none;
    margin: 0 auto 3rem;
    padding: 4rem;

    /* Liquid Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    /* Glass Box Shadow */
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);

    /* Liquid Animation */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}


/* Text Styling für Glass Box */
.hero-content * {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}


@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'UniNeue Regular', 'UniNeue', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.highlight-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero subtitle - H2 */
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'UniNeue Regular', 'UniNeue', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Hero description - paragraph */
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-benefits {
    display: grid;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    text-align: left;
    transition: all 0.3s ease;
}


.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.services-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.services-section .section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.service-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(183, 148, 246, 0.15);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg,
        rgba(183, 148, 246, 0.05) 0%,
        rgba(159, 122, 234, 0.02) 100%),
        rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 15px;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 400;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


.contact {
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
}

.contact h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* SIMOsphere Section */
.simosphere-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-2xl);
    text-align: center;
}

.simosphere-header {
    margin-bottom: var(--spacing-2xl);
}

.simosphere-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.brand-gradient {
    background: linear-gradient(135deg, #7b2cbf, #5a189a, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.simosphere-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.stat-card {
    padding: var(--spacing-xl);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 400;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-action {
    margin-top: var(--spacing-xl);
}

/* Mission Section */
.mission-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-2xl);
    text-align: center;
}

.mission-section h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.mission-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Preview Section */
.services-preview-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.services-preview-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-preview-header .section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-preview-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.service-preview-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(183, 148, 246, 0.15);
}

.service-preview-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.service-preview-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.4rem 1rem;
    background: var(--primary-gradient);
    color: white;
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 20px;
}

.service-preview-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.service-preview-icon i {
    font-size: 2rem;
    color: white;
}

.service-preview-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-preview-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-preview-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-preview-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.service-preview-features i {
    color: #4CAF50;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* New Highlight Badges */
.service-preview-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 2rem 0;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.highlight-badge i {
    font-size: 0.8rem;
}

.service-preview-card:hover .highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}


.service-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-preview-link:hover {
    gap: 1rem;
}

.service-preview-link i {
    transition: transform 0.3s ease;
}

.service-preview-link:hover i {
    transform: translateX(5px);
}

.services-preview-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-preview-cta .cta-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.services-preview-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-preview-link.featured-link {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-preview-link.featured-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.15);
}



/* CTA Section */
.cta-section {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-2xl);
    text-align: center;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.06) 100%) !important;
    backdrop-filter: blur(20px) saturate(120%) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 20px;
}


.cta-section h2,
.cta-section .cta-title {
    color: white !important;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.cta-section p.cta-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    font-weight: 400;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design - Updated from inline styles */
@media (max-width: 768px) {
    .hero-content {
        width: 90%;
        padding: 3rem 2rem;
        margin: 0 auto;
        border-radius: 25px;
    }

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

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

    .hero-description {
        font-size: 1.1rem;
    }

    .hero {
        padding: var(--spacing-xl);
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .benefit-item {
        gap: var(--spacing-sm);
    }

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

    .simosphere-header h2 {
        font-size: 2rem;
    }

    .services-preview-grid,
    .services-grid,
    .challenges-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .service-preview-card.featured {
        transform: scale(1);
    }

    .service-preview-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .team-showcase {
        grid-template-columns: 1fr;
    }

    .platform-metrics {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        border-radius: 20px;
    }

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

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

    .hero-description {
        font-size: 1rem;
        padding: 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }
}
}

/* ==========================================================================
   Team Section
   ========================================================================== */

.team-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.team-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-overlay {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.team-overlay h3 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
    font-weight: 400;
    font-family: 'UniNeue Regular', 'UniNeue', -apple-system, BlinkMacSystemFont, \"Segoe UI\", sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}


/* Responsive team section */
@media (max-width: 768px) {
    .team-overlay {
        padding: 1rem 2rem;
        bottom: 10%;
    }

    .team-overlay h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .team-overlay {
        padding: 0.8rem 1.5rem;
        bottom: 8%;
        border-radius: 30px;
    }

    .team-overlay h3 {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Success Story Teaser
   ========================================================================== */

.success-story-teaser {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.teaser-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.teaser-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

/* Header */
.teaser-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.teaser-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #7b2cbf, #5a189a);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teaser-meta {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Title */
.teaser-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Description */
.teaser-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.teaser-description strong {
    color: var(--primary-color);
    font-weight: 400;
}

/* Facts Chips */
.teaser-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.fact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(183, 148, 246, 0.15);
    border: 1px solid rgba(183, 148, 246, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 400;
}

.fact-chip i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Actions */
.teaser-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Testimonial */
.teaser-testimonial {
    margin: 0;
    padding: 1.5rem;
    background: rgba(183, 148, 246, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
}

.teaser-testimonial blockquote {
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    position: relative;
}

.teaser-testimonial blockquote i {
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.teaser-testimonial figcaption {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: normal;
}


/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--section-bg);
}

.link-values {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.link-values:hover {
    transform: translateX(5px);
}

/* Team showcase layout */
.team-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.team-podcast {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.team-podcast h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-podcast h3::before {
    content: '\f167';
    font-family: 'Font Awesome 6 Brands';
    color: #ff0000;
}

.podcast-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
}

.podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Section */
.video-section {
    padding: 100px 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Platform Features */
.platform-features {
    margin: 3rem 0;
}

.feature-row {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-row:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.problem-solution {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem {
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    border-radius: 8px;
}

.solution {
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    border-radius: 8px;
}

.platform-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    color: var(--text-secondary);
}

.platform-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.challenge-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.challenge-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.journey-cta {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    border: 2px solid var(--primary-color);
}

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

.journey-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Section Overrides */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-title .gradient-text {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Dark Mode Variables */
:root {
    --section-bg: rgba(255, 255, 255, 0.02);
    --hover-bg: rgba(255, 255, 255, 0.05);
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Demo Section */
.demo-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg,
        rgba(183, 148, 246, 0.05) 0%,
        transparent 100%);
}

.demo-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.demo-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.demo-video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg,
        rgba(183, 148, 246, 0.15) 0%,
        rgba(156, 156, 248, 0.15) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-placeholder {
    text-align: center;
    color: var(--primary-color);
}

.demo-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.demo-placeholder p {
    font-size: 1.1rem;
    font-weight: 400;
}

.demo-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.demo-feature-list {
    list-style: none;
    padding: 0;
}

.demo-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.demo-feature-list i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.demo-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}


/* Responsive */
@media (max-width: 768px) {
    .demo-container {
        grid-template-columns: 1fr;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.stories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-header .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stories-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid.premium {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}

/* Story Card - Styles moved to cards-unified.css for consistency */
/* Additional story-card specific adjustments */
.story-card {
    position: relative;
    min-height: 350px;
}

.story-card.premium-card {
    padding: 3rem;
    overflow: hidden;
}

.story-card.featured {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.story-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    background: var(--primary-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.premium-badge {
    position: absolute;
    top: -5px;
    right: 20px;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #7b2cbf, #5a189a);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 15px rgba(183, 148, 246, 0.3);
    z-index: 10;
}

.premium-badge i {
    font-size: 0.8rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.story-meta i {
    color: var(--primary-color);
}

.story-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.story-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.story-metrics.premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    margin: 2rem 0;
    padding: 1.2rem;
    background:
        linear-gradient(135deg,
            rgba(183, 148, 246, 0.03) 0%,
            rgba(156, 156, 248, 0.05) 50%,
            rgba(183, 148, 246, 0.03) 100%);
    border-radius: 15px;
    border: 1px solid rgba(183, 148, 246, 0.08);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.story-metrics.premium .metric-item {
    text-align: center;
    padding: 0.8rem 0.4rem;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(248, 249, 255, 0.95) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(183, 148, 246, 0.05);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    max-width: calc(33.333% - 0.6rem);
}

.story-metrics.premium .metric-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(183, 148, 246, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: rgba(183, 148, 246, 0.2);
}

.story-metrics.premium .metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7b2cbf, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.story-metrics.premium .metric-item:hover::before {
    transform: translateX(100%);
}

.story-metrics.premium .metric-value {
    display: block;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, #7b2cbf, #5a189a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.3rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.story-metrics.premium .metric-label {
    display: block;
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
    color: #666666 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    line-height: 1.2;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

.story-metrics .metric {
    text-align: center;
}

.story-metrics .metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-metrics .metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.story-link.premium {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #7b2cbf, #5a189a);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.story-link.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 148, 246, 0.3);
    gap: 1.2rem;
    background: linear-gradient(135deg, #8a3ccf, #6b1fa9);
}

.story-link.premium i {
    transition: transform 0.3s ease;
}

.story-link.premium:hover i {
    transform: translateX(3px);
}

/* Premium Story Header */
.story-card.premium-card .story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.story-card.premium-card .story-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7b2cbf, #5a189a);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(183, 148, 246, 0.3);
}

.story-card.premium-card .story-icon.premium {
    background: linear-gradient(135deg, #7b2cbf, #5a189a);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.story-card.premium-card .story-icon i {
    font-size: 2rem;
    color: white;
    --fa-primary-color: white;
    --fa-secondary-color: rgba(255, 255, 255, 0.7);
    --fa-secondary-opacity: 0.7;
}


.story-meta {
    flex: 1;
}

.story-meta .story-year {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(183, 148, 246, 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.story-meta h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.story-client {
    font-size: 0.85rem;
    color: #7b2cbf;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(183, 148, 246, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(183, 148, 246, 0.1);
}

.story-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
    hyphens: auto;
}

.story-link:hover {
    gap: 0.8rem;
}

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

.stories-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}


/* Responsive */
@media (max-width: 768px) {
    .teaser-container {
        padding: 2rem;
    }
    
    .teaser-title {
        font-size: 1.8rem;
    }
    
    .teaser-description {
        font-size: 1rem;
    }
    
    .teaser-actions {
        flex-direction: column;
    }
    
    .teaser-actions a {
        width: 100%;
        text-align: center;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .story-metrics {
        justify-content: space-around;
    }

    .story-metrics.premium {
        flex-direction: column;
        gap: 1rem;
    }

    .story-metrics.premium .metric-item {
        max-width: 100%;
        padding: 1rem;
    }

    .story-metrics.premium .metric-value {
        font-size: 1.8rem;
    }

    .story-metrics.premium .metric-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .story-metrics.premium {
        gap: 0.5rem;
        padding: 1rem;
    }

    .story-metrics.premium .metric-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 1rem;
        padding: 0.8rem;
    }

    .story-metrics.premium .metric-value {
        font-size: 1.5rem;
        margin-bottom: 0;
        min-width: 60px;
    }

    .story-metrics.premium .metric-label {
        font-size: 0.65rem;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .success-story-teaser {
        padding: 3rem 1rem;
    }
    
    .teaser-container {
        padding: 1.5rem;
    }
    
    .teaser-title {
        font-size: 1.5rem;
    }
    
    .fact-chip {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}