/* ===== M&A Page Specific Styles ===== */

/* Hero Section */
.ma-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb span:last-child {
    color: var(--primary-light);
}

.product-logo {
    margin-bottom: 2rem;
}

.product-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.ma-hero .hero-title {
    font-size: 3.5rem;
    text-align: center;
}

.ma-hero .hero-subtitle {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.ma-hero .hero-buttons {
    justify-content: center;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.metric-card {
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 150px;
    animation: float 6s ease-in-out infinite;
}

.metric-card:nth-child(2) { animation-delay: -2s; }
.metric-card:nth-child(3) { animation-delay: -4s; }

.metric-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Overview Section */
.overview {
    padding: 80px 0;
}

.overview-content {
    max-width: 800px;
}

.overview-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

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

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    border-top: 1px solid var(--border-color);
}

.feature-list li::before {
    content: '→';
    color: var(--accent);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-content {
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.05));
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ma-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .product-logo img {
        height: 45px;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .metric-card {
        min-width: auto;
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .ma-hero {
        padding: 100px 0 40px;
    }
    
    .ma-hero .hero-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-number {
        font-size: 3rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

/* ===== Dark Mode Particle Override ===== */
.ma-hero + .gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, transparent 70%);
}

/* ===== Timeline Animation ===== */
@keyframes timeline-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

