/* =====================================================================
   PAGE MODULE — en-services-launch-strategy
   Extracted verbatim from inline <style> of: servicios/lanzamiento.html, en/services/launch-strategy.html
   Design unchanged; loaded via `pageCss` front-matter.
   ===================================================================== */

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

/* Why Trust Grid */
.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Comparison Table */
.comparison-table-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.comparison-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.comparison-table-grid > div:nth-child(3),
.comparison-table-row > div:nth-child(3) {
    position: relative;
    overflow: hidden;
}

.comparison-table-grid > div:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 2;
}

.mobile-comparison {
    display: none;
}

/* Audit Grid */
.audit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}


/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: #FAF9F6;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23A61963' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-magenta));
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #FAF9F6, #ffffff);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-family: 'Mirza', serif;
    font-size: 3rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-magenta), var(--secondary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: white;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #FAF9F6;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-teal);
}

.faq-question {
    font-family: 'Mirza', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #333;
}

.faq-answer em {
    font-style: italic;
    color: var(--primary-magenta);
}

/* Industries Section - Ensure images fill card height on mobile */
@media (max-width: 768px) {
    section div[style*="height: 320px"] img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute !important;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-diagonal {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 4.5rem 1.5rem 3rem !important;
    }
    
    .hero-diagonal-content {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-diagonal-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-diagonal-content p {
        font-size: 1.125rem;
    }
    
    .parallax-image {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
        margin-top: 2rem;
    }
    
    .parallax-image img {
        border-radius: 12px;
    }
    
    .why-trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-table-grid,
    .comparison-table-row {
        display: none;
    }
    
    .mobile-comparison {
        display: block;
    }
    
    .audit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
