:root{

    --primary:#008D36;
    --secondary:#001B4D;
    --accent:#F4B400;

    --dark:#0F172A;
    --text:#475569;

    --light:#F8FAFC;
    --white:#FFFFFF;

}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--text);

    margin:0;
    padding-top:90px;

    background:#fff;
}

h1,h2,h3,h4,h5,h6{

    font-family:'Poppins',sans-serif;
    color:var(--dark);
    font-weight:700;

}

.section-padding{
    padding:100px 0;
}

.logo{
    height:60px;
}

.smart-navbar{

    padding:15px 0;

    background:#fff !important;

    box-shadow:
    0 2px 15px rgba(0,0,0,.05);

}

.nav-link{

    color:var(--dark) !important;

    font-weight:500;

    margin:0 8px;

}

.nav-link:hover{

    color:var(--primary) !important;

}

.btn-smart{

    background:var(--primary);
    color:#fff;

    border:none;

    padding:12px 28px;

    border-radius:12px;

    font-weight:600;

}

.btn-smart:hover{

    background:#00732d;
    color:#fff;

}

.btn-outline-smart{

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:12px;

    padding:12px 28px;

}

.btn-outline-smart:hover{

    background:var(--primary);

    color:#fff;

}

.shadow-soft{

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

}

.ecosystem-card{

    border:none;

    border-radius:20px;

    transition:.3s ease;

}

.ecosystem-card:hover{

    transform:translateY(-8px);

}

.section-title{

    margin-bottom:15px;

    color:var(--secondary);

}

.section-subtitle{

    max-width:700px;

    margin:auto;

    color:#64748B;

}

.hero-section{

    min-height:90vh;

    display:flex;
    align-items:center;

}

.hero-badge{

    background:rgba(0,141,54,.1);

    color:var(--primary);

    padding:10px 20px;

    border-radius:50px;

    display:inline-block;

    margin-bottom:25px;

}

.hero-title{

    font-size:2.8rem;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-text{

    font-size:1.15rem;

    margin-bottom:30px;

}

/* ==========================
   FOOTER
========================== */

.footer{
    background:#001B4D;
    color:#fff;
}

.footer-newsletter{
    background:#008D36;
    padding:60px 0;
}

.footer-newsletter h3{
    color:#fff;
}

.footer-newsletter p{
    color:rgba(255,255,255,.9);
}

.newsletter-form .form-control{
    height:55px;
    border:none;
}

.newsletter-form .btn{
    padding:0 30px;
    font-weight:600;
}

.footer-main{
    padding:80px 0 50px;
}

.footer-logo{
    height:70px;
}

.footer-text{
    color:rgba(255,255,255,.8);
    line-height:1.8;
}

.footer-contact div{
    margin-bottom:10px;
}

.footer-heading{
    color:#fff;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#F4B400;
    padding-left:5px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:25px 0;
}

.compliance-badge{
    display:inline-block;

    padding:8px 15px;

    border-radius:30px;

    background:rgba(255,255,255,.08);

    margin-left:10px;

    font-size:13px;
}

/* ====================================
ECOSYSTEM SECTION
==================================== */

.ecosystem-section{
    background:#fff;
}

.section-tag{

    display:inline-block;

    background:rgba(0,141,54,.1);

    color:var(--primary);

    padding:10px 20px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;
}

.ecosystem-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    height:100%;

    transition:.4s;

    border:1px solid #E5E7EB;

    box-shadow:
    0 5px 25px rgba(0,0,0,.04);

}

.ecosystem-card:hover{

    transform:translateY(-10px);

    border-color:#008D36;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}

.product-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:rgba(0,141,54,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;
}

.product-icon i{

    font-size:30px;

    color:#008D36;
}

.ecosystem-card h4{

    margin-bottom:15px;

    color:#001B4D;
}

.ecosystem-card p{

    color:#64748B;

    min-height:90px;
}

.product-link{

    text-decoration:none;

    font-weight:600;

    color:#008D36;
}

/* ==============================
STATISTICS
============================== */

.stats-section{

    background:#001B4D;

    color:#fff;
}

.stat-card{

    padding:25px;
}

.stat-card h2{

    color:#F4B400;

    font-size:3rem;

    font-weight:700;

    margin-bottom:10px;
}

.stat-card p{

    color:rgba(255,255,255,.8);

    margin:0;
}

/* ==============================
FEATURES
============================== */

.feature-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    height:100%;

    border:1px solid #E5E7EB;

    transition:.3s;
}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.feature-card i{

    font-size:3rem;

    color:#008D36;

    margin-bottom:20px;

    display:block;
}

.feature-card h4{

    margin-bottom:15px;
}

/* ==============================
TIMELINE
============================== */

.timeline-step{

    position:relative;
}

.timeline-step span{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#008D36;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.4rem;

    font-weight:700;

    margin:auto auto 15px;
}

.timeline-step h6{

    font-weight:600;
}

/* ==========================
TESTIMONIALS
========================== */

.testimonial-card{

    max-width:850px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:24px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.stars{

    color:#F4B400;

    font-size:1.5rem;

    margin-bottom:20px;
}

.testimonial-card p{

    font-size:1.2rem;

    line-height:1.8;

    margin-bottom:25px;
}

.partner-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.news-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.news-content{

    padding:25px;
}

.news-date{

    color:#008D36;

    font-size:14px;

    font-weight:600;
}


/* ==========================
FINAL CTA
========================== */

.final-cta{

    padding:100px 0;

    background:#F8FAFC;
}

.cta-box{

    background:
    linear-gradient(
        135deg,
        #001B4D,
        #008D36
    );

    color:#fff;

    padding:80px;

    border-radius:30px;
}

.cta-box h2{

    color:#fff;

    margin-bottom:20px;
}

.cta-box p{

    color:rgba(255,255,255,.9);

    max-width:700px;

    margin:auto;
}

.page-hero{
    padding:140px 0 100px;
    background:linear-gradient(
        135deg,
        #001B4D,
        #008D36
    );
    color:#fff;
}

.page-title{
    font-size:4rem;
    color:#fff;
    margin-bottom:20px;
}

.page-subtitle{
    font-size:1.2rem;
    color:rgba(255,255,255,.9);
}

.purpose-card,
.value-box{
    background:#fff;
    padding:40px;
    border-radius:24px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.values-list{
    padding-left:20px;
}

.ecosystem-flow{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.ecosystem-flow div{
    background:#008D36;
    color:#fff;
    padding:25px;
    border-radius:16px;
    text-align:center;
    font-weight:600;
}

.impact-number{
    color:#008D36;
    font-size:3rem;
    font-weight:700;
}

.ecosystem-map{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    max-width:900px;
    margin:auto;
}

.eco-center,
.eco-item{
    padding:25px;
    border-radius:20px;
    text-align:center;
    font-weight:600;
}

.eco-center{
    background:#001B4D;
    color:#fff;
}

.eco-item{
    background:#fff;
    border:1px solid #E5E7EB;
}

.journey-container{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.journey-step{
    flex:1;
    min-width:150px;
    text-align:center;
}

.journey-step span{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#008D36;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 15px;
    font-weight:700;
}

.solution-block{
    padding:80px 0;
    border-bottom:1px solid #E5E7EB;
}

.solution-category{
    color:#008D36;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.integration-card,
.audience-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.profile-card,
.corporate-card,
.business-card,
.ecosystem-box,
.objective-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    height:100%;

    border:1px solid #E5E7EB;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.compliance-list{
    list-style:none;
    padding:0;
}

.compliance-list li{
    padding:12px 0;
    border-bottom:1px solid #E5E7EB;
}


.investor-card,
.market-box,
.business-model-card,
.strategy-card,
.ecosystem-mini-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    height:100%;

    border:1px solid #E5E7EB;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.3s;
}

.investor-card:hover,
.business-model-card:hover,
.strategy-card:hover{

    transform:translateY(-8px);
}

.ecosystem-mini-card{

    text-align:center;

    font-weight:600;
}

.governance-list{

    list-style:none;
    padding:0;
}

.governance-list li{

    padding:15px 0;

    border-bottom:1px solid #E5E7EB;
}


.partner-type-card,
.benefit-card,
.journey-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    height:100%;

    border:1px solid #E5E7EB;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.3s;
}

.partner-type-card:hover,
.benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.journey-card{

    text-align:center;
}

.journey-card span{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:#008D36;

    color:#fff;

    font-size:24px;
    font-weight:700;
}


.contact-card,
.contact-form-card,
.contact-info-card,
.support-step{

    background:#fff;

    padding:35px;

    border-radius:24px;

    height:100%;

    border:1px solid #E5E7EB;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.contact-card:hover{

    transform:translateY(-8px);

    transition:.3s;
}

.contact-form-card .form-control,
.contact-form-card .form-select{

    height:55px;

    border-radius:12px;
}

.contact-form-card textarea{

    height:auto !important;
}

.support-step{

    text-align:center;
}

.support-step span{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#008D36;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    font-size:24px;
    font-weight:700;
}

.career-card,
.job-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    height:100%;

    border:1px solid #E5E7EB;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}


/* ====================================
FAQS
==================================== */

.faq-accordion .accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:16px !important;

    overflow:hidden;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);
}

.faq-accordion .accordion-button{

    padding:20px 25px;

    font-weight:600;

    background:#fff;
}

.faq-accordion .accordion-button:not(.collapsed){

    background:#008D36;

    color:#fff;
}

.faq-accordion .accordion-body{

    padding:25px;
}


/* ====================================
LEGAL PAGES
==================================== */

.legal-content{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:24px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.legal-content h2{

    margin-top:35px;

    margin-bottom:15px;

    color:#001B4D;
}

.legal-content ul{

    padding-left:20px;
}

.legal-content li{

    margin-bottom:10px;
}


/* ===================================
SUPPORT CENTER
=================================== */

.support-search-card,
.support-card,
.product-support-card,
.ticket-card,
.contact-method{

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid #E5E7EB;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    height:100%;
}

.support-card:hover,
.product-support-card:hover{

    transform:translateY(-8px);

    transition:.3s;
}

.support-search-card{

    max-width:900px;

    margin:auto;
}

.ticket-card{

    padding:50px;
}