/* Corporate Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #F093B0;
    --secondary-color: #D8567F;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --bg-light: #ffffff;
}

/* Three.js Background - Only in Hero */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

/* Hero Section */
.corporate-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 245, 247, 0.95) 0%, rgba(255, 228, 233, 0.95) 100%);
    overflow: hidden;
    padding: 30px 20px;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(240, 147, 176, 0.15);
    border: 2px solid #D8567F;
    color: #AD1457;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-title .gradient-text {
    color: #D8567F;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* Demo Audio Player */
.demo-audio-container {
    margin: 20px auto 25px;
    max-width: 500px;
    width: 100%;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 147, 176, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(216, 86, 127, 0.5);
    color: #AD1457;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(240, 147, 176, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.audio-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(240, 147, 176, 0.3);
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F093B0, #D8567F);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(240, 147, 176, 0.4);
    position: relative;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(240, 147, 176, 0.9);
    animation: none;
    pointer-events: none;
}

.play-btn.playing::before {
    animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        width: 160%;
        height: 160%;
        opacity: 0;
    }
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(240, 147, 176, 0.6);
}

.play-btn:active {
    transform: scale(0.95);
}

.play-btn i {
    margin-left: 3px;
}

.play-btn.playing i::before {
    content: "\f04c";
    margin-left: 0;
}

.audio-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.audio-progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    min-width: 100px;
}

.audio-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.audio-time {
    display: flex;
    gap: 4px;
    color: #4b5563;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #F093B0 0%, #D8567F 100%);
    color: #ffffff;
    box-shadow: none;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 147, 176, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(240, 147, 176, 0.4);
    color: #F093B0;
    font-weight: 800;
}

.btn-secondary:hover {
    background: rgba(240, 147, 176, 0.15);
    border-color: rgba(240, 147, 176, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 176, 0.2);
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(240, 147, 176, 0.15);
}

.problem-card.active {
    background: linear-gradient(135deg, rgba(255, 228, 233, 0.3), rgba(255, 214, 220, 0.3)) !important;
    border: 2px solid rgba(236, 64, 122, 0.5) !important;
    transform: scale(1.02) translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.problem-card.active .problem-icon {
    background: linear-gradient(135deg, rgba(240, 147, 176, 0.3), rgba(216, 86, 127, 0.35)) !important;
    border-color: rgba(236, 64, 122, 0.7) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 228, 233, 0.8) 0%, rgba(252, 228, 236, 0.8) 100%);
    border-radius: 50%;
    border: 2px solid rgba(240, 147, 176, 0.3);
    box-shadow: 0 4px 12px rgba(240, 147, 176, 0.15);
}

.problem-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.problem-text {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* Solution Section */
.solution-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 245, 247, 0.95) 0%, rgba(255, 228, 233, 0.95) 100%);
    color: #1f2937;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-card.active {
    background: linear-gradient(135deg, rgba(240, 147, 176, 0.15), rgba(216, 86, 127, 0.15)) !important;
    border: 2px solid rgba(240, 147, 176, 0.5) !important;
    transform: scale(1.02) translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.feature-card.active .feature-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(240, 147, 176, 0.5) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F093B0 0%, #D8567F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(240, 147, 176, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-text {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 60px;
    background: #ffffff;
}

.steps-container {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    align-items: center;
    background: #ffffff;
    padding: 35px 25px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(240, 147, 176, 0.15);
}

.step.active {
    background: linear-gradient(135deg, rgba(240, 147, 176, 0.15), rgba(216, 86, 127, 0.15)) !important;
    border: 2px solid rgba(240, 147, 176, 0.5) !important;
    transform: scale(1.02) translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s ease !important;
}

.step.active .step-icon {
    background: linear-gradient(135deg, rgba(240, 147, 176, 0.35), rgba(216, 86, 127, 0.4)) !important;
    border-color: rgba(240, 147, 176, 0.7) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.step-icon {
    font-size: 3.5rem;
    line-height: 1;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 228, 233, 0.9) 0%, rgba(252, 228, 236, 0.9) 100%);
    border-radius: 50%;
    border: 3px solid rgba(240, 147, 176, 0.4);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(240, 147, 176, 0.2);
}

.step-number {
    display: none;
}

.step-content {
    width: 100%;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.benefit-card {
    background: #ffffff;
    padding: 20px 15px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 228, 233, 0.7) 0%, rgba(252, 228, 236, 0.7) 100%);
    border-radius: 50%;
    border: 2px solid rgba(240, 147, 176, 0.25);
    box-shadow: 0 3px 10px rgba(240, 147, 176, 0.15);
}

.benefit-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F093B0 0%, #D8567F 100%);
    text-align: center;
    color: #ffffff;
}

.final-cta .section-title {
    color: #ffffff;
}

.final-cta .section-subtitle {
    color: #ffffff;
    opacity: 0.95;
}

.transform-text {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 40px;
}

.highlight-text {
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .corporate-hero {
        min-height: 85vh;
        padding: 35px 15px 25px;
        margin-top: 0;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 9px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .demo-audio-container {
        margin: 15px auto 20px;
        padding: 15px !important;
    }
    
    .demo-badge {
        font-size: 0.6rem;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    
    .audio-player {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .audio-time {
        font-size: 0.7rem;
    }
    
    .demo-badge {
        font-size: 0.65rem;
        padding: 6px 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
        width: 90%;
        max-width: 320px;
        justify-content: center;
        margin: 0;
    }

    .problem-section,
    .solution-section,
    .how-it-works,
    .benefits-section,
    .final-cta {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 30px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .problem-card {
        padding: 18px 12px;
    }

    .problem-icon {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .problem-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .problem-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .solution-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }

    .feature-text {
        font-size: 0.875rem;
    }

    .steps-container {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step {
        flex-direction: column !important;
        text-align: center;
        gap: 15px;
        margin-bottom: 0;
        padding: 25px 15px 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .step-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .step-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    }

    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }

    .benefit-card {
        padding: 15px 10px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .benefit-title {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .transform-text {
        font-size: 1.25rem;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .corporate-hero {
        min-height: 70vh;
        padding: 30px 10px 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .problem-card {
        padding: 15px 10px;
    }
    
    .problem-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .problem-title {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .problem-text {
        font-size: 0.75rem;
        line-height: 1.25;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .step {
        padding: 20px 12px 18px;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        margin-bottom: 10px;
    }
    
    .step-title {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .step-description {
        font-size: 0.75rem;
        line-height: 1.25;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .benefit-card {
        padding: 12px 8px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .benefit-title {
        font-size: 0.75rem;
    }
}
