/* =====================================================
   GETCLOUD v3.0
   Resource Center
===================================================== */

/* =====================================================
   Breadcrumb
===================================================== */

.breadcrumb{
    margin-top:80px;
    padding:18px 0;
    background:#f8fbff;
    border-bottom:1px solid #edf2f7;
}

.breadcrumb .container{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#64748b;
}

.breadcrumb a{
    color:var(--primary);
    font-weight:600;
}

/* =====================================================
   Hero
===================================================== */

.datasource-hero{
    padding:100px 0;
    background:
    linear-gradient(
        180deg,
        #f7fbff 0%,
        #ffffff 100%
    );
}

.datasource-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(37,99,235,.08);
    color:var(--primary);
    font-weight:600;
    margin-bottom:20px;
}

.datasource-content h1{
    font-size:64px;
    color:#102a5c;
    margin-bottom:12px;
}

.datasource-content h2{
    font-size:30px;
    margin-bottom:25px;

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #10b981,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.datasource-content p{
    font-size:20px;
    line-height:1.9;
    color:var(--text-light);
    margin-bottom:35px;
}

.datasource-image img{
    width:100%;
    max-width:720px;
    display:block;
    margin:auto;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

/* =====================================================
   Knowledge Articles
===================================================== */

.knowledge-section{
    padding:100px 0;
    background:#fff;
}

.knowledge-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.knowledge-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:.3s;
    position:relative;
}

.knowledge-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.knowledge-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    background:
    rgba(37,99,235,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:36px;
}

.knowledge-card h3{
    color:#102a5c;
    font-size:22px;
    margin-bottom:15px;
}

.knowledge-card p{
    color:var(--text-light);
    line-height:1.8;
    margin-bottom:20px;
}

.knowledge-card a{
    color:var(--primary);
    font-weight:700;
}

/* =====================================================
   FAQ
===================================================== */

.faq-section{
    padding:100px 0;
    background:#f8fbff;
}

.faq-wrapper{
    max-width:1000px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:var(--shadow-md);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;

    padding:24px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:18px;
    font-weight:700;

    color:#102a5c;

    cursor:pointer;
}

.faq-question span{
    font-size:28px;
    color:var(--primary);
}

.faq-answer{
    display:none;
    padding:0 30px 25px;
}

.faq-answer p{
    color:#475569;
    line-height:1.9;
}

.faq-item.active .faq-answer{
    display:block;
}

/* =====================================================
   Download Center
===================================================== */

.download-section{
    padding:100px 0;
    background:#fff;
}

.download-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.download-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:.3s;
}

.download-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.download-icon{
    font-size:42px;
    margin-bottom:20px;
}

.download-card h3{
    color:#102a5c;
    margin-bottom:15px;
}

.download-card p{
    color:var(--text-light);
    margin-bottom:20px;
    line-height:1.8;
}

.download-card a{
    color:var(--primary);
    font-weight:700;
}

/* =====================================================
   News
===================================================== */

.news-section{
    padding:100px 0;
    background:#f8fbff;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.news-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:var(--shadow-md);
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-date{
    display:inline-block;
    padding:6px 12px;
    border-radius:999px;

    background:#eef5ff;
    color:var(--primary);

    font-size:13px;
    font-weight:600;

    margin-bottom:15px;
}

.news-card h3{
    color:#102a5c;
    margin-bottom:15px;
    font-size:20px;
}

.news-card p{
    color:var(--text-light);
    line-height:1.8;
}

/* =====================================================
   CTA
===================================================== */

.cta{
    padding:100px 0;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #10b981,
        #8b5cf6
    );

    color:#fff;
}

.cta-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.cta-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* =====================================================
   Footer
===================================================== */

.footer-logo{
    max-width:220px;
    margin-bottom:20px;
}

/* =====================================================
   Scroll Animation
===================================================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =====================================================
   Responsive
===================================================== */

@media (max-width:1200px){

    .knowledge-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .download-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:992px){

    .datasource-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .datasource-content h1{
        font-size:52px;
    }

    .hero-buttons{
        justify-content:center;
    }

}

@media (max-width:768px){

    .knowledge-grid,
    .download-grid,
    .news-grid{
        grid-template-columns:1fr;
    }

    .datasource-content h1{
        font-size:42px;
    }

    .datasource-content h2{
        font-size:28px;
    }

    .faq-question{
        font-size:16px;
        text-align:left;
    }

    .cta-content h2{
        font-size:34px;
    }

}

@media (max-width:576px){

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
    }

    .datasource-content h1{
        font-size:34px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-content p{
        font-size:18px;
    }

}