/* Solutions Shared Styles - Modern Design System */

/* Hero Section */
.hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 1;
}

.hero-banner .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 20px;
    color: white;
}

.hero-banner .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-banner h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-banner .hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 32px;
}

.hero-banner .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.hero-banner .stat-item {
    text-align: center;
}

.hero-banner .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-banner .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* Section Navigation */
.section-nav {
    position: sticky;
    top: 60px;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.section-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.section-nav a {
    display: block;
    padding: 18px 28px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.section-nav a:hover,
.section-nav a.active {
    color: #0071e3;
    border-bottom-color: #0071e3;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: #f8fafc;
}

.content-section.ai-section,
.content-section.ai-section:nth-child(even),
.content-section.ai-section:nth-child(odd) {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers - Professional Horizontal Layout */
.section-header {
    display: grid;
    grid-template-columns: 140px 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    text-align: left;
}

.section-header .section-label {
    display: block;
    color: #0071e3;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-top: 8px;
    line-height: 1.4;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 0;
}

.section-header p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Section Header */
@media (max-width: 992px) {
    .section-header {
        grid-template-columns: 120px 1fr;
        gap: 24px 32px;
    }
    
    .section-header p {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .section-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-header .section-label {
        padding-top: 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

/* Feature Cards Grid */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 113, 227, 0.12);
}

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

.feature-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card .card-icon svg {
    width: 32px;
    height: 32px;
    fill: #0071e3;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-card .card-link {
    color: #0071e3;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.feature-card .card-link:hover {
    gap: 12px;
}

/* Icon Cards - Horizontal Layout */
.icon-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.icon-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.1);
    border-color: #0071e3;
}

.icon-card .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-card .icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.icon-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.icon-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-card .stat-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, #a3d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-suffix {
    font-size: 32px;
}

.stat-card .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Split Content Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.split-content .highlight-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.split-content .highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.split-content .highlight-list li::before {
    content: '';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.split-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Process/Timeline Section */
.process-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 68px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0071e3, #00d4ff);
    border-radius: 2px;
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.process-step .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.3);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* Product Showcase */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 113, 227, 0.1);
}

.product-card .product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
    color: #0071e3;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.product-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-card .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-card .feature-tags span {
    background: #f5f7fa;
    color: #555;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    border-radius: 24px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    margin: 80px 0;
}

.cta-banner h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-banner .cta-button {
    background: white;
    color: #0071e3;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-banner .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* AI Feature Section */
.ai-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.ai-section .section-container {
    position: relative;
    z-index: 1;
}

.ai-section .section-header h2 {
    color: #ffffff !important;
}

.ai-section .section-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.ai-section .section-header .section-label {
    color: #60a5fa !important;
}

.ai-card {
    background: rgba(30, 58, 95, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.ai-card:hover {
    background: rgba(30, 58, 95, 0.95);
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.ai-card h3 {
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ai-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    line-height: 1.7;
}

/* AI Section with features-grid-modern */
.ai-section .features-grid-modern .ai-card {
    background: rgba(30, 58, 95, 0.85);
    border: 1px solid rgba(96, 165, 250, 0.35);
}

.ai-section .features-grid-modern .ai-card:hover {
    background: rgba(30, 58, 95, 0.95);
    border-color: rgba(96, 165, 250, 0.5);
}

.ai-section .features-grid-modern .ai-card::before {
    background: linear-gradient(90deg, #60a5fa, #38bdf8);
}

/* Ensure text is always visible in AI cards */
.ai-section .ai-card,
.ai-section .ai-card * {
    color: #ffffff;
}

.ai-section .ai-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Testimonial/Partner Section */
.partners-highlight {
    text-align: center;
    padding: 80px 0;
    background: #f8fafc;
}

.partners-highlight h3 {
    font-size: 18px;
    font-weight: 500;
    color: #888;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partner-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logos-grid img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icon-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }
}

@media (max-width: 992px) {
    .hero-banner h1 {
        font-size: 42px;
    }
    
    .hero-banner .hero-stats {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .split-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .split-section.reverse {
        direction: ltr;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
    }
    
    .hero-banner h1 {
        font-size: 32px;
    }
    
    .hero-banner .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-banner .stat-number {
        font-size: 36px;
    }
    
    .section-nav ul {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 16px;
    }
    
    .section-nav a {
        padding: 16px 20px;
        white-space: nowrap;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .icon-cards-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-card .stat-number {
        font-size: 42px;
    }
    
    .feature-card {
        padding: 32px;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
