.elementor-68647 .elementor-element.elementor-element-3ae7346{--display:flex;}.elementor-68647 .elementor-element.elementor-element-6e428e5{width:100%;max-width:100%;}@media(min-width:768px){.elementor-68647 .elementor-element.elementor-element-3ae7346{--content-width:1394px;}}/* Start custom CSS for html, class: .elementor-element-6e428e5 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
    padding: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

/* Header Styles */


/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    min-height: 600px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0 auto;
    border-radius: 2px;
}

/* Executive Summary */
.executive-summary {
    padding: 4rem 3rem;
    background: white;
}

.summary-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.summary-highlight {
    position: sticky;
    top: 2rem;
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.highlight-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #555;
    line-height: 1.6;
}

/* Infographic Sections */
.infographic-section {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.infographic-container {
    text-align: center;
    margin-bottom: 2rem;
}

.infographic-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.infographic-image:hover {
    transform: scale(1.02);
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.infographic-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.infographic-item:hover {
    transform: translateY(-5px);
}

.infographic-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.infographic-item .infographic-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Sectors Navigation */
.sectors-nav {
    padding: 4rem 3rem;
    background: white;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sector-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sector-card:hover::before {
    transform: scaleX(1);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.sector-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.sector-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Projections */
.projections {
    padding: 4rem 3rem;
    background: white;
}

.projection-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.projection-card {
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.projection-card:hover {
    transform: translateY(-5px);
}

.projection-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.projection-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.projection-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Key Insights */
.key-insights {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.insight-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Conclusion */
.conclusion {
    padding: 4rem 3rem;
    background: white;
}

.conclusion-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.conclusion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.conclusion-stats {
    text-align: center;
}

.stat-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-meta p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

/* Sector Detail Styles */
.sector-detail {
    padding: 4rem 3rem;
    background: white;
    border-top: 1px solid #eee;
    display: none;
}

.sector-detail.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.sector-detail h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.sector-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sector-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.sector-text p {
    margin-bottom: 1.5rem;
}

.sector-metrics {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    position: sticky;
    top: 2rem;
}

.sector-metrics h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

.metric-value {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }
    
    .header {
        padding: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero {
        padding: 3rem 1.5rem;
        min-height: 500px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .summary-content,
    .conclusion-content,
    .sector-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sectors-grid,
    .infographic-grid,
    .projection-cards,
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .executive-summary,
    .sectors-nav,
    .projections,
    .infographic-section,
    .key-insights,
    .conclusion {
        padding: 3rem 1.5rem;
    }
    
    .footer {
        padding: 2rem 1.5rem;
    }
    
    .sector-detail {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .insight-number {
        font-size: 2.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Active sector card styles */
.sector-card.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.sector-card.active::before {
    transform: scaleX(1);
    background: rgba(255, 255, 255, 0.3);
}

.sector-card.active .sector-icon {
    filter: brightness(0) invert(1);
}

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
            padding: 2rem 0;
        }

        /* Ana konteyner - özgün class adı */
        .sysart-llm-cta-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* CTA kartı */
        .sysart-cta-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .sysart-cta-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        /* İçerik wrapper */
        .sysart-cta-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 450px;
        }

        /* Görsel bölümü */
        .sysart-cta-image-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .sysart-cta-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .sysart-cta-card:hover .sysart-cta-image {
            transform: scale(1.05);
        }

        /* Overlay efekti */
        .sysart-cta-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sysart-cta-card:hover .sysart-cta-image-overlay {
            opacity: 1;
        }

        /* Metin bölümü */
        .sysart-cta-text-section {
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        /* Başlık */
        .sysart-cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            position: relative;
        }

        .sysart-cta-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        /* Özellik listesi */
        .sysart-cta-features {
            margin-bottom: 2rem;
        }

        .sysart-cta-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .sysart-cta-feature-item:nth-child(1) { animation-delay: 0.1s; }
        .sysart-cta-feature-item:nth-child(2) { animation-delay: 0.2s; }
        .sysart-cta-feature-item:nth-child(3) { animation-delay: 0.3s; }
        .sysart-cta-feature-item:nth-child(4) { animation-delay: 0.4s; }

        .sysart-cta-feature-icon {
            width: 8px;
            height: 8px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 50%;
            margin-right: 1rem;
            margin-top: 0.5rem;
            flex-shrink: 0;
        }

        .sysart-cta-feature-text {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.5;
        }

        .sysart-cta-feature-highlight {
            font-weight: 600;
            color: #2d3748;
        }

        /* CTA butonu */
        .sysart-cta-button-wrapper {
            margin-top: auto;
        }

        .sysart-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .sysart-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .sysart-cta-button:hover::before {
            left: 100%;
        }

        .sysart-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .sysart-cta-button:active {
            transform: translateY(-1px);
        }

        .sysart-cta-button-text {
            position: relative;
            z-index: 1;
        }

        /* Animasyonlar */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive tasarım */
        @media (max-width: 768px) {
            .sysart-cta-content {
                grid-template-columns: 1fr;
            }
            
            .sysart-cta-image-section {
                height: 250px;
            }
            
            .sysart-cta-text-section {
                padding: 2rem 1.5rem;
            }
            
            .sysart-cta-title {
                font-size: 1.6rem;
                text-align: center;
            }
            
            .sysart-cta-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .sysart-cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .sysart-llm-cta-container {
                padding: 0 0.5rem;
            }
            
            .sysart-cta-text-section {
                padding: 1.5rem 1rem;
            }
            
            .sysart-cta-title {
                font-size: 1.4rem;
            }
            
            .sysart-cta-feature-text {
                font-size: 0.9rem;
            }
        }

        /* Performans optimizasyonu */
        .sysart-cta-card {
            will-change: transform;
        }

        .sysart-cta-image {
            will-change: transform;
        }
        
        
       /* ===========================
   Lightbox (matches the JS)
   =========================== */
#img-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;               /* toggled by JS */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#img-lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  border-radius: 12px;
  user-select: none;
}

/* Controls */
#img-lightbox-close,
#img-lightbox-prev,
#img-lightbox-next {
  position: absolute;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  padding: .6rem .8rem;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

#img-lightbox-close { top: 16px; right: 16px; font-size: 1.4rem; }
#img-lightbox-prev  { left: 16px;  top: 50%; transform: translateY(-50%); }
#img-lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }

#img-lightbox-close:hover,
#img-lightbox-prev:hover,
#img-lightbox-next:hover,
#img-lightbox-close:focus-visible,
#img-lightbox-prev:focus-visible,
#img-lightbox-next:focus-visible {
  background: rgba(255,255,255,.25);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}

#img-lightbox-close:focus-visible { transform: none; }

/* Hide nav when one image (set via JS with [data-multi]) */
#img-lightbox-overlay:not([data-multi="true"]) #img-lightbox-prev,
#img-lightbox-overlay:not([data-multi="true"]) #img-lightbox-next {
  display: none;
}

/* Prevent page scroll while open (JS toggles this class on <body>) */
.body--lightbox-open { overflow: hidden; }

/* ===========================
   Clickable image affordances
   Only within flagged sections
   =========================== */
[data-lightbox="enabled"] img {
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: 8px;
}

@media (hover: hover) {
  [data-lightbox="enabled"] img:hover {
    transform: translateZ(0) scale(1.015);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
}

/* Keyboard accessibility */
[data-lightbox="enabled"] img[tabindex="0"]:focus-visible {
  outline: 3px solid rgba(59,130,246,.7); /* accessible focus ring */
  outline-offset: 2px;
}

/* Optional: keep infographic layout tidy if images are very large */
.infographic-section .infographic-image {
  width: 100%;
  height: auto;
  display: block;
}/* End custom CSS */