/* ======================== ECOSYSTEM PAGE STYLES ======================== */

/* --- Page Load Animation --- */
body {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

body.page-loaded {
    opacity: 1;
}

/* --- Ecosystem Hero Section --- */
.ecosystem-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000000;
    overflow: hidden;
    padding: 8rem 0;
}

.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left-content {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.ecosystem-hero::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 300%;
    height: 150%;
    bottom: -75%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(
        ellipse at bottom,
        rgba(100, 149, 237, 0.15) 0%,
        rgba(65, 105, 225, 0.25) 15%,
        rgba(255, 255, 255, 0) 60%
    );
    filter: blur(60px);
    pointer-events: none;
}

#ecosystem-starfield-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.ecosystem-hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    background-image: linear-gradient(180deg, #FFFFFF 20%, #BDBDBD 60%, #555 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    text-align: left;
}

.ecosystem-hero-subtitle {
    font-size: 1.15rem;
    color: #b3b3b3;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 2rem;
    text-align: left;
}

/* --- Cardlar (Nav Cards) --- */
.hero-right-cards {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: absolute;
    width: 200px;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform-origin: bottom center; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
}

.hero-card-img {
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.hero-card-img i {
    font-size: 3.5rem;
    color: #888;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-card:hover .hero-card-img i {
    color: #fff;
    transform: scale(1.1);
}

.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-info h3 {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.hero-card-info span {
    color: #999;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Cardlar ve Konumları --- */
.card-1 {
    z-index: 1;
    transform: translateX(-100px) translateY(32px) rotate(-15deg);
}

.card-1:hover {
    z-index: 100;
    transform: translateX(-100px) translateY(12px) rotate(-15deg) scale(1.1);
    background: rgba(30, 30, 30, 1);
    border-color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,1);
}

.card-2 {
    z-index: 2;
    transform: translateY(0px) rotate(0deg);
}

.card-2:hover {
    z-index: 100;
    transform: translateY(-20px) rotate(0deg) scale(1.1);
    background: rgba(30, 30, 30, 1);
    border-color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,1);
}

.card-3 {
    z-index: 3;
    transform: translateX(100px) translateY(32px) rotate(15deg);
}

.card-3:hover {
    z-index: 100;
    transform: translateX(100px) translateY(12px) rotate(15deg) scale(1.1);
    background: rgba(30, 30, 30, 1);
    border-color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,1);
}

.hero-right-cards:hover .hero-card:not(:hover) {
    opacity: 1;
    filter: blur(2px);
}

/* ======================== RESPONSIVE HERO FIXES ======================== */

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .ecosystem-hero-title {
        font-size: 3rem; /* Başlığı biraz küçült */
    }

    .hero-split-layout {
        gap: 0; /* Aradaki boşluğu daralt */
    }

    /* Kartları biraz daha sıkıştır */
    .hero-right-cards {
        transform: scale(0.9); /* Genel alanı biraz küçült */
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    
    /* Hero Section Yüksekliği */
    .ecosystem-hero {
        padding: 6rem 0 4rem 0; /* Üstten header payı, alttan boşluk */
        overflow: hidden; /* Kartlar taşarsa gizle */
    }

    /* Grid Yapısını Bozup Alt Alta Dizme */
    .hero-split-layout {
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    /* Sol Taraf (Metinler) */
    .hero-left-content {
        padding-right: 0;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .ecosystem-hero-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .ecosystem-hero-subtitle {
        text-align: center;
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    /* Sağ Taraf (Kartlar) */
    .hero-right-cards {
        width: 100%;
        height: 320px; /* Kartlar için sabit yükseklik alanı ayır */
        transform: scale(1); /* Tablet scale'ini sıfırla */

    }

    /* Kartların Mobildeki Genel Boyutu */
    .hero-card {
        width: 160px; /* Kart genişliğini düşür (Orj: 200px) */
        padding: 10px;
    }

    .hero-card-img {
        height: 110px; /* Resim yüksekliğini düşür */
    }

    .hero-card-info h3 {
        font-size: 0.9rem;
    }

    /* --- Kart Pozisyonlarını Mobilde Sıkıştırma --- */
    /* Mobilde kartları daha birbirine yakın ve ortalı tutuyoruz */

    /* Kart 1 (Sol) */
    .card-1 {
        /* X eksenini daralt (-100px'den -70px'e), açıyı koru */
        transform: translateX(-70px) translateY(20px) rotate(-10deg);
    }
    .card-1:hover {
        /* Eski: translateY(-10px) -> Yeni: translateY(10px) */
        transform: translateX(-70px) translateY(10px) rotate(-10deg) scale(1.05);
    }

    /* Kart 2 (Orta) */
    .card-2 {
        transform: translateY(-10px) rotate(0deg);
        z-index: 10; /* Ortadaki kart öne çıksın */
    }
    .card-2:hover {
        /* Eski: translateY(-30px) -> Yeni: translateY(-20px) */
        transform: translateY(-20px) rotate(0deg) scale(1.05);
    }

    /* Kart 3 (Sağ) */
    .card-3 {
        /* X eksenini daralt (100px'den 70px'e) */
        transform: translateX(70px) translateY(20px) rotate(10deg);
    }
    .card-3:hover {
        /* Eski: translateY(-10px) -> Yeni: translateY(10px) */
        transform: translateX(70px) translateY(10px) rotate(10deg) scale(1.05);
    }
}

/* --- Small Mobile (max-width: 380px) --- */
/* Çok dar ekranlar (iPhone SE vb.) için ekstra küçültme */
@media (max-width: 380px) {
    .hero-right-cards {
        transform: scale(0.85); /* Kart grubunu komple %15 küçült */
    }
    
    .ecosystem-hero-title {
        font-size: 2rem;
    }
}

/* --- Modern Liquid / Glass Tech Button --- */
.scroll-indicator {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    
    /* Temel Yapı */
    background: rgba(255, 255, 255, 0.03); /* Çok şeffaf gri */
    border: 1px solid rgba(255, 255, 255, 0.1); /* İncecik sınır */
    border-radius: 100px; /* Tam yuvarlak */
    
    /* Glassmorphism (Buzlu Cam) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* Geçişler */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden; /* Işık taşmasın */
    box-shadow: 0 0 0px rgba(255, 255, 255, 0); /* Başlangıç gölgesi yok */
}

/* --- Metin ve İkon Stilleri --- */
.scroll-text {
    font-size: 0.85rem;
    color: #a0a0a0;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 2; /* Işığın önünde kalsın */
    transition: color 0.3s ease;
}

.scroll-arrow-icon {
    font-size: 1.2rem;
    color: #a0a0a0;
    z-index: 2;
    transition: transform 0.4s ease, color 0.3s ease;
}

/* --- HOVER EFEKTLERİ --- */

/* 1. Kutu Parlaması */
.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.08); /* Biraz daha belirginleşir */
    border-color: rgba(255, 255, 255, 0.3); /* Sınır parlar */
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); /* Dışa hafif beyaz glow */
    transform: translateY(0);
}

/* 2. Metin Parlaması */
.scroll-indicator:hover .scroll-text,
.scroll-indicator:hover .scroll-arrow-icon {
    color: #ffffff; /* Tam beyaz */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Yazı hafif ışıldar */
}

/* 3. İkon Hareketi */
.scroll-indicator:hover .scroll-arrow-icon {
    transform: translateY(0);
}

/* --- LIQUID SHEEN (Işık Akışı) EFEKTİ --- */
/* Butonun üzerinden geçen hayalet ışık */
.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Soldan başla */
    width: 100%;
    height: 100%;
    
    /* Işık gradyanı: Ortası parlak, kenarlar şeffaf */
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    
    /* Eğim ver ki daha dinamik dursun */
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 1;
}

/* Hover olunca ışık soldan sağa kayar */
.scroll-indicator:hover::before {
    left: 100%;
    transition: left 0.7s ease; /* Yavaşça akıp gider */
}

/* --- Section Nav --- */
.section-nav {
    position: sticky;
    top: 0;
    background-color: #000000;
    padding: 0.55rem 0;
    z-index: 99;
    border-bottom: 1px solid #303030;
    transition: top 0.3s ease-in-out;
}

.main-header.scrolled ~ main .section-nav {
    top: 56px;
}

.section-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.section-nav-link {
    background: transparent;
    color: #b3b3b3;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 2rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    border: 1px solid transparent;
    font-weight: 600;
    text-align: center;
}

.section-nav-link:hover {
    color: #ffffff;
    border-color: #444;
}

.section-nav-link.active {
    color: #000000;
    background-color: #ffffff;
}

/* --- Ecosystem Sections --- */
.ecosystem-section {
    padding: 4rem 2rem;
    background-color: #000000;
    border-bottom: 1px solid #303030;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.ecosystem-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); /* <-- Bu şekilde güncelle */
    gap: 4rem;
    align-items: start;
}

.ecosystem-grid.reverse {
    direction: rtl;
}

.ecosystem-grid.reverse > * {
    direction: ltr;
}

.ecosystem-visual {
    position: sticky;
    top: 140px;
}

.ecosystem-image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;

    /* YENİ EKLENEN SATIRLAR */
    /* Viewport yüksekliğine göre maksimum boyutu ayarla */
    max-height: calc(100vh - 140px - 10rem); 
    max-width: calc(100vh - 140px - 10rem);
    /* YENİ SATIRLARIN SONU */
}

.ecosystem-section:hover .ecosystem-image-container {
    border-color: #fff;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.ecosystem-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ecosystem-image-container:hover img {
    transform: scale(1.05);
}

.ecosystem-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ecosystem-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid #333;
    border-radius: 2rem;
    width: fit-content;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ccc;
}

.ecosystem-badge i {
    font-size: 1.25rem;
}

.section-title-ecosystem {
    font-size: 42px;
    font-weight: 450;
    letter-spacing: -0.84px;
    line-height: 43.68px;
    color: #F1F3F4;
}

.ecosystem-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #888;
}

/* --- Capability Cards (Personal AI) --- */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.capability-card {
    padding: 2rem;
    background: transparent;
    border: 1px solid #222;
    border-radius: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: #fff;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
}

.capability-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.capability-icon i {
    font-size: 2rem;
    color: #ccc;
}

.capability-card:hover .capability-icon i {
    color: #fff;
}

.capability-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F1F3F4;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.capability-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #888;
    margin-bottom: 1rem;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 1rem;
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
}

/* --- Tech Stack Section --- */
.tech-stack-section h3 {
    font-size: 1.5rem;
    color: #F1F3F4;
    margin-bottom: 1.5rem;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-pill {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid #333;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
    transition: all 0.2s ease;
    cursor: default;
}

.tech-pill:hover {
    border-color: #fff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* --- Use Cases Section --- */
.use-cases-section h3 {
    font-size: 1.5rem;
    color: #F1F3F4;
    margin-bottom: 1.5rem;
    text-align: left;
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: transparent;
    border: 1px solid #222;
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.use-case-item:hover {
    border-color: #444;
}

.use-case-item i {
    font-size: 1.5rem;
    color: #A0A0A0;
    flex-shrink: 0;
}

.use-case-item span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b3b3b3;
}

/* --- Agent Architecture (Agentic Systems) --- */
.agent-architecture h3 {
    font-size: 1.5rem;
    color: #F1F3F4;
    margin-bottom: 2rem;
    text-align: left;
}

.architecture-diagram {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.arch-layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.arch-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: 1px solid #333;
    border-radius: 12px;
    width: 100%;

    transition: all 0.3s ease;
    cursor: default;
}

.arch-box:hover {
    border-color: #fff;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.arch-box i {
    font-size: 2.5rem;
    color: #ccc;
}

.arch-box:hover i {
    color: #fff;
}

.arch-box span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F1F3F4;
}

.arch-layer p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
    max-width: 400px;
}

.arch-arrow {
    font-size: 2rem;
    color: #444;
    margin: 1rem 0;
    text-align: center;
}

/* --- Tools Section (Agentic Systems) --- */
.tools-section h3 {
    font-size: 1.5rem;
    color: #F1F3F4;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.tool-card {
    padding: 1.5rem;
    background: transparent;
    border: 1px solid #222;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: default;
}

.tool-card:hover {
    border-color: #fff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.tool-card i {
    font-size: 2.5rem;
    color: #888;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.tool-card:hover i {
    color: #fff;
}

.tool-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F1F3F4;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.tool-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

/* --- Bot Types Section (Auto Bots) --- */
.bot-types-section h3 {
    font-size: 1.5rem;
    color: #F1F3F4;
    margin-bottom: 2rem;
}

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

.bot-type-card {
    padding: 2rem;
    background: transparent;
    border: 1px solid #222;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.bot-type-card:hover {
    border-color: #fff;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.bot-type-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.bot-type-icon i {
    font-size: 2.5rem;
    color: #ccc;
}

.bot-type-card:hover .bot-type-icon i {
    color: #fff;
}

.bot-type-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F1F3F4;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.bot-type-card > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #888;
    margin-bottom: 1.5rem;
}

.bot-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bot-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #999;
}

.bot-features i {
    font-size: 1rem;
    color: #A0A0A0;
}

/* --- Bot Advantages --- */
.bot-advantages h3 {
    font-size: 1.5rem;
    color: #F1F3F4;
    margin-bottom: 1.5rem;
}

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

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: transparent;
    border: 1px solid #222;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: default;
}

.advantage-item:hover {
    border-color: #fff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.advantage-item > i {
    font-size: 2.5rem;
    color: #888;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.advantage-item:hover > i {
    color: #fff;
}

.advantage-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F1F3F4;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.advantage-item p {
    font-size: 0.85rem;
    color: #888;
}

/* --- CTA Section --- */
.ecosystem-cta-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    background-color: #000000;
    border-bottom: 1px solid #303030;
}

.cta-content-ecosystem {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    border-left: 0.5rem solid #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
}

.cta-text-wrapper h2 {
    font-size: 42px;
    font-weight: 450;
    letter-spacing: -0.84px;
    line-height: 43.68px;
    color: #F1F3F4;
    margin-bottom: 1.5rem;
}

.cta-text-wrapper p {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    border: 1px solid #303030;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.15s ease;
    font-weight: 600;
    font-size: 14px;
    color: #F1F3F4;
}

.cta-button-large:hover {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
    color: #000;
    background-color: #fff;
}

.cta-button-large i {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.cta-button-large:hover i {
    transform: translateX(5px);
}


/* --- Ecosystem Visual Caption --- */
.ecosystem-visual-caption {
    margin-top: 1.5rem;
    text-align: left;

}

.ecosystem-visual-caption h4 {
    font-size: 42px;
    font-weight: 450;
    letter-spacing: -0.84px;
    line-height: 43.68px;
    color: #F1F3F4;
}

.ecosystem-visual-caption p {
    color: #B3B3B3;
    margin-top: 1rem;
    font-size: 1rem;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .ecosystem-grid {
        gap: 4rem;
    }
    
    .capability-grid,
    .tools-grid,
    .bot-types-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-nav {
        top: 49px !important;
    }
    
    .section-nav .container {
        gap: 0.5rem;
        justify-content: space-around;
    }
    
    .section-nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .ecosystem-hero-title {
        font-size: 2.5rem;
    }
    
    .ecosystem-hero-subtitle {
        font-size: 1rem;
    }
    

    
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ecosystem-grid.reverse {
        direction: ltr;
    }
    
    .ecosystem-visual {
        display: none;
    }
    
    .section-title-ecosystem {
        font-size: 2rem;
    }
    
    .ecosystem-intro {
        font-size: 1rem;
    }
    
    .arch-box {
        max-width: 100%;
    }
    
    .cta-content-ecosystem {
        flex-direction: column;
        text-align: left;
        padding: 2rem 1.5rem;
    }
    
    .cta-text-wrapper h2 {
        font-size: 2rem;
    }
    
    .cta-text-wrapper p {
        font-size: 1rem;
    }
}