/**
 * Services DNA Style - Inspired by Innovation DNA
 * Vertical layout for richer content presentation
 */

/* ============================================
   SERVICES DNA SECTION
   ============================================ */

.services-dna-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #151932 100%);
    position: relative;
    overflow: hidden;
}

.services-dna-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-dna-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */

.services-dna-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-dna-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.services-dna-badge i {
    margin-right: 8px;
}

.services-dna-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.services-dna-title .gradient-text {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-dna-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   SERVICE CARDS - VERTICAL LAYOUT
   ============================================ */

.services-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-vertical {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-vertical:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.service-card-vertical:hover::before {
    opacity: 1;
}

/* Service Card Header */
.service-card-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.service-card-vertical:hover .service-icon-large {
    transform: scale(1.05) rotate(5deg);
}

.service-icon-large i {
    font-size: 56px;
    color: #fff;
}

.service-header-text {
    flex: 1;
}

.service-number {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-name-large {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Service Card Content */
.service-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-feature-item-large {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-feature-item-large:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(5px);
}

.service-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature-icon i {
    font-size: 18px;
    color: #8b5cf6;
}

.service-feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.service-feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Service Card Actions */
.service-card-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.service-stats-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
}

.service-stats-badge-large i {
    font-size: 16px;
}

.service-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.service-learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.service-learn-more-btn i {
    transition: transform 0.3s ease;
}

.service-learn-more-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   OTHER CAPABILITIES - SIMPLIFIED
   ============================================ */

.other-capabilities-dna {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.capabilities-header {
    text-align: center;
    margin-bottom: 60px;
}

.capabilities-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.capabilities-description {
    font-size: 17px; /* Increased from 16px */
    color: rgba(255, 255, 255, 0.85); /* Increased from 0.6 to 0.85 */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.capabilities-grid-compact {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.capability-item-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.capability-item-compact:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.capability-item-compact i {
    font-size: 28px;
    color: #8b5cf6;
}

.capability-item-compact span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .services-dna-title {
        font-size: 2.5rem;
    }
    
    .service-card-vertical {
        padding: 40px 30px;
    }
    
    .service-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .service-icon-large i {
        font-size: 48px;
    }
    
    .service-name-large {
        font-size: 28px;
    }
    
    .service-card-content {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-dna-section {
        padding: 60px 0;
    }
    
    .services-dna-header {
        margin-bottom: 50px;
    }
    
    .services-dna-title {
        font-size: 2rem;
    }
    
    .services-dna-subtitle {
        font-size: 1.1rem;
    }
    
    .services-cards-vertical {
        gap: 40px;
    }
    
    .service-card-vertical {
        padding: 30px 20px;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 36px;
    }
    
    .service-name-large {
        font-size: 24px;
    }
    
    .service-card-actions {
        flex-direction: column;
    }
    
    .service-stats-badge-large,
    .service-learn-more-btn {
        width: 100%;
        justify-content: center;
    }
    
    .capabilities-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-capabilities-dna {
        padding: 60px 0;
    }
}

/* ============================================
   COLLABORATION PROCESS SECTION
   ============================================ */

/* ============================================
   SCENARIO-BASED SERVICE CARDS
   ============================================ */

/* Scenario Image */
.service-scenario-image {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.service-scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-vertical:hover .service-scenario-image img {
    transform: scale(1.05);
}

.service-scenario-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.7) 100%);
    pointer-events: none;
}

/* Story Quote */
.service-story-quote {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b5cf6;
    font-style: italic;
    margin-top: 10px;
}

/* Story Content */
.service-story-content {
    padding: 30px 0;
}

.story-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.story-text.highlight {
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    padding: 20px;
    border-left: 3px solid #8b5cf6;
    border-radius: 8px;
    margin-top: 20px;
}

/* Story Benefits Grid */
.story-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-text strong {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.benefit-text span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Responsive for Scenario Cards */
@media (max-width: 768px) {
    .service-scenario-image {
        height: 250px;
    }
    
    .service-story-quote {
        font-size: 1rem;
    }
    
    .story-heading {
        font-size: 1.2rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .story-text.highlight {
        padding: 15px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .benefit-text strong {
        font-size: 1rem;
    }
    
    .benefit-text span {
        font-size: 0.9rem;
    }
}

/* ============================================
   STANDARD SERVICES OVERVIEW CARD
   ============================================ */

.standard-services-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.standard-services-overview-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 30px;
    padding: 50px;
    margin-top: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.standard-services-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #00e5ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.standard-services-card-link:hover .standard-services-overview-card::before {
    transform: scaleX(1);
}

.standard-services-card-link:hover .standard-services-overview-card {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.3);
}

.standard-services-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.standard-services-card-link:hover .standard-services-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
}

.standard-services-icon i {
    font-size: 50px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.standard-services-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.standard-services-card-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9); /* Increased from 0.7 to 0.9 for better contrast */
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.capabilities-preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.capability-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.standard-services-card-link:hover .capability-preview-item {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(139, 92, 246, 0.2);
}

.capability-preview-item i {
    font-size: 24px;
    color: #8b5cf6;
}

.capability-preview-item span {
    font-size: 13px; /* Increased from 12px */
    color: rgba(255, 255, 255, 0.85); /* Increased from 0.6 to 0.85 */
    font-weight: 600; /* Increased from 500 to 600 */
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 auto;
    width: fit-content;
    transition: all 0.3s ease;
}

.standard-services-card-link:hover .card-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
}

.card-cta i {
    transition: transform 0.3s ease;
}

.standard-services-card-link:hover .card-cta i {
    transform: translateX(5px);
}

/* Responsive for Standard Services Card */
@media (max-width: 992px) {
    .capabilities-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .standard-services-overview-card {
        padding: 40px 30px;
    }
    
    .standard-services-card-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .capabilities-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .standard-services-overview-card {
        padding: 30px 20px;
    }
    
    .standard-services-icon {
        width: 80px;
        height: 80px;
    }
    
    .standard-services-icon i {
        font-size: 40px;
    }
    
    .standard-services-card-title {
        font-size: 24px;
    }
    
    .standard-services-card-description {
        font-size: 14px;
    }
    
    .capability-preview-item {
        padding: 15px 10px;
    }
    
    .capability-preview-item i {
        font-size: 20px;
    }
    
    .capability-preview-item span {
        font-size: 11px;
    }
}

.collaboration-process {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #0f0f2d 50%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.collaboration-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #fff !important; /* Force white color */
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .gradient-text {
    background: none; /* Remove gradient */
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff; /* Use white instead */
    background-clip: unset;
    color: #fff;
}

/* Override for white background sections */
.bg-white .section-header h2,
.bg-white .section-title {
    color: #1a1a1a !important;
}

.bg-white .section-header p {
    color: #666 !important;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(100% + 0px);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.1);
}

.step-number i {
    font-size: 40px;
    color: #8b5cf6;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.process-timeline {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}

.timeline-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.timeline-duration {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Section */
.services-cta {
    padding: 100px 0;
    background: #0a0a1a;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
}

/* Responsive for Process Section */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .collaboration-process {
        padding: 80px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }
}

/* ============================================
   CRITICAL FIX: White Background Section Titles
   Force dark text on white backgrounds
   ============================================ */
section.bg-white .section-header h2,
section.bg-white h2 {
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
}

section.bg-white .section-header p,
section.bg-white p {
    color: #666 !important;
}

