:root{
    --text-color:#ffffffb3;
    --border-color:#ffffff33;
    --border-hover:#ffffff66;
    --white-color:#fff;
    --light-color:#F8F7F3;
    --dark-color: #0A0F0D;
    --bg-color: #ffffff0d;

    --primary-color:#D8A94A;
    --primary-50: color-mix(rgb(216, 169, 74) 50%, transparent);
    --primary-40: color-mix(rgb(216, 169, 74) 40%, transparent);
    --primary-30: color-mix(rgb(216, 169, 74) 30%, transparent);
    --primary-20: color-mix(rgb(216, 169, 74) 20%, transparent);
    --primary-10: color-mix(rgb(216, 169, 74) 10%, transparent);

    --secondary-color:#0B3D2E;
    --primary-hover:#d8a94ae6;
    --secondary-hover:#ffffff0d;
    --primary-font:"Manrope", sans-serif;

    --white-55:#ffffff8c;
    --white-50:#ffffff80;
    --white-8:#ffffff14;
    --white-5:#ffffff0d;
    --white-3:#ffffff08;

    --dark-50:#0a0f0d80;
    --dark-45:#0a0f0d73;
    --dark-30:#0a0f0d4d;
    --dark-20:#0b3d2e2d;
    --dark-5:#0b3d2e0d;
    --dark-4:#0a0f0d0a;
}

body{
    font-family: var(--primary-font) !important;
    background-color: var(--dark-color) !important;
    color: var(--text-color) !important;
    font-size: 18px !important;
    width: 100%;
    overflow-x: hidden;
}
main{
    width: 100%;
    overflow-x: hidden;
}
header{
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background-color 0.3s ease;
}

header.scrolled{
    background: rgba(10, 15, 13, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.navbar-brand img{
    width: 250px;
}
.navbar-light .navbar-nav .nav-link{
    color: var(--text-color) !important;
    padding: 8px 16px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: .5s;
    margin-right: 8px !important;
}
.navbar-light .navbar-nav .nav-link.active{
    color: var(--primary-color) !important;
    background-color: var(--bg-color) !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
}
.navbar-light .navbar-nav .nav-link:hover{
    color: var(--white-color) !important;
    background-color: var(--bg-color) !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
}
.btn{
    border-radius: 20px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}
.btn.btn-primary{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--dark-color) !important;
    transition: .5s;
}
.btn.btn-primary:hover{
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important; 
}
.btn.btn-primary i{
    transition: .5s;
}
.btn.btn-primary:hover i{
    margin-left:14px !important;
}
.btn.btn-secondary{
    background-color: transparent !important;
    border-color: var(--border-color) !important;
    color: var(--white-color) !important;
    transition: .5s;
}
.btn.btn-secondary:hover{
    background-color: var(--secondary-hover) !important;
    border-color: var(--border-hover) !important;
}

.banner-section{
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -99px;
    background-color: var(--dark-color);
    padding-top: 80px;
    background-image: url('../images/banner.webp');
    background-position: bottom;
    position: relative;
    overflow: hidden;
}
.banner-section::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.85) 25%,
        rgba(0,0,0,0.65) 55%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 1;
}

.banner-section > *{
    position: relative;
    z-index: 2;
}
.banner-section h6{
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px 6px 26px;
    border: 1px solid;
    background-color: color-mix(rgb(216, 169, 74) 8%, transparent);
    border-color: color-mix(rgb(216, 169, 74) 30%, transparent);
    border-radius: 16px;
    position: relative; 
    margin-bottom: 16px;
    display: inline-block;
}
.banner-section h6::before{
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}
.banner-section h1{
    color: var(--white-color);
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 24px;
}
.banner-section h1 span{
    color: var(--primary-color);
}
.banner-section p{
    font-size: 18px;
    color: var(--white-55);
    margin-bottom: 24px;
}
.banner-btns{
    display: flex;
    gap: 16px;
}

.default-padding{
    padding: 60px 0;
}

.counter-section{
    background-color: var(--secondary-color);
}
.counter-section .main-item{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
}
.counter-section .item{
    text-align: center;
}
.counter-section .item h3{
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px !important;
}
.counter-section .item p{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: var(--white-50);
    margin-bottom: 0;
}
 
.section-title{
    margin-bottom: 32px;
}
.section-title h6{
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
}
.section-title h2{
    text-transform: capitalize;
    color: var(--white-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-title h2 span{
    color: var(--primary-color);
}
.section-title p{
    color: var(--white-50);
}

.problem-section .box{
    padding: 24px;
    background-color: var(--white-3);
    border: 1px solid var(--white-8);
    border-radius: 20px;
}
.problem-section .box h4{
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.problem-section .box p{
    font-size: 14px;
    color: var(--white-50);
    margin-bottom: 0px;
}
.problem-section .item{
    padding: 24px;
    background-color: var(--white-3);
    border: 1px solid var(--white-8);
    border-radius: 20px;
    height: 100%;
}
.problem-section .item i{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: var(--primary-color);
    border: 1px solid var(--primary-20);
    margin-bottom: 16px;
}
.problem-section .item h5{
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.problem-section .item h6{
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 12px;
}
.problem-section .item p{
    font-size: 14px; 
    margin-bottom: 0px;
    color: var(--white-55);
}
.about-img{
    position: relative;
    overflow: hidden;
}
.about-img::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.infrastructure-section{
    background-color: var(--light-color);
}

.section-title2{
    margin-bottom: 32px; 
    display: flex;
    flex-direction: column; 
}
.section-title2 h6{
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.section-title2 h2{
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    text-transform: capitalize;
}
.section-title2 h2 span{
    color: var(--secondary-color);
}
.section-title2 p{
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-50);
    margin-bottom: 0px;
    max-width: 600px;
}

.infrastructure-section .item{
    text-align: center;
    display: flex;
    flex-direction: column; 
    align-items: center;
    position: relative;
}
 
.infrastructure-section .item::after{
    content: "\2192";
    position: absolute;
    right: -30px;
    top: 29%;
    transform: translateY(-50%);
    font-size: 36px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
} 
.infrastructure-section .row > div:nth-child(3) .item::after{
    display: none;
}
.infrastructure-section .row > div:nth-child(6) .item::after{
    display: none;
}

.infrastructure-section .item span{
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-30);
    margin-bottom: 12px;
}
.infrastructure-section .item i{
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-radius: 16px;
    margin-bottom: 16px;
}
.infrastructure-section .item h4{
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
}
.infrastructure-section .item p{
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-50);
    margin-bottom: 0px;
}

.how-ufm-works .nav-pills{
    display: flex;
    gap: 16px;
}
.how-ufm-works .nav-pills .nav-link{
    display: flex !important;
    align-items: center !important;
    gap: 16px;
    padding: 12px 16px !important;
    transition: .5s;
}
.how-ufm-works .nav-pills .nav-link.active{
    padding: 12px 16px !important;
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--primary-20) !important;
    border-radius: 36px !important;
}
.how-ufm-works .nav-pills .nav-link:hover{
    background-color: var(--white-5);
    border-radius: 36px !important;
}
.how-ufm-works .nav-pills .nav-link i{
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 16px;
    border-radius: 50%;
}
.how-ufm-works .nav-pills .nav-link .head{
    text-align: left;
}
.how-ufm-works .nav-pills .nav-link .head h6{
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0px;
}
.how-ufm-works .nav-pills .nav-link .head span{
    font-size: 12px;
    font-weight: 400;
    color: var(--white-50);
    margin-bottom: 0px;
}

.how-ufm-works .tab-content img{
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 20px;
}
.how-ufm-works .tab-content .item span{
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.how-ufm-works .tab-content .item h3{
    font-size: 30px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 16px;
    margin-top: 8px;
}
.how-ufm-works .tab-content .item p{
    font-size: 16px;
    font-weight: 400;
    color: var(--white-55);
    margin-bottom: 30px;
}
.how-ufm-works .tab-content .box{
    background-color: var(--white-5);
    border-radius: 20px;
    border: 1px solid var(--primary-20);
    padding: 16px;
}
.how-ufm-works .tab-content h5{
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.how-ufm-works .tab-content p{
    font-size: 14px;
    font-weight: 400;
    color: var(--white-50);
    margin-bottom: 0px;
}

.technology-section .item{
    border-radius: 20px;
    background-color: var(--dark-20);
    border: 1px solid var(--white-8);
    height: 100%;
}
.technology-section .item h6{
    position: absolute;
    margin-left: 20px;
    margin-top: 20px; 
    border: 1px solid var(--white-8);
    border-radius: 16px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    z-index: 99;
    letter-spacing: 1px;
}
.technology-section .item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
 
.technology-section .item .image{
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
 
.technology-section .item .image::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.technology-section .item .content{
    padding: 32px;
}
.technology-section .item .content i{
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    border: 1px solid var(--primary-20);
    border-radius: 20px;
    background-color: var(--primary-10);
    margin-bottom: 16px;
}
.technology-section .item .content h3{
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 12px;
}
.technology-section .item .content p{
    font-size: 15px;
    font-weight: 400;
    color: var(--white-50);
    margin-bottom: 16px;
}
.technology-section .item .content span{
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0px;
    position: relative; 
    padding-left: 16px;
}
.technology-section .item .content span::after{
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.market-opportunity{
    background-color: var(--light-color);
}
.market-opportunity .main-box{
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0px 0px 15px -3px rgba(0,0,0,0.1);
}
.market-opportunity .main-box .nav-tabs{
    background-color: var(--white-color);
    border-radius: 20px 20px 0 0 !important; 
    overflow: hidden;
    border: none !important;
    display: flex;
    justify-content: space-between;
}
.market-opportunity .main-box .nav-tabs .nav-link{
    background-color: var(--white-color) !important;
    border-radius: 0px !important; 
    color: var(--dark-45) !important;
    padding: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: .5s;
}
.market-opportunity .main-box .nav-tabs .nav-link.active{
    color: var(--dark-color) !important;
    background-color: var(--dark-5) !important;
    border-radius: 0px !important; 
}
.market-opportunity .main-box .nav-tabs .nav-link:hover{
    color: var(--dark-color) !important; 
    border-radius: 0px !important;  
    border-color: var(--white-color) !important;
}

.market-opportunity .tab-content .content{
    padding: 32px;
}
.market-opportunity .tab-content .content h6{
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}
.market-opportunity .tab-content .content h3{
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 24px;
} 
.market-opportunity .tab-content .state-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.market-opportunity .tab-content .content .box{
    padding: 16px;
    border-radius: 20px;
    background-color: var(--dark-4); 
} 
.market-opportunity .tab-content .content .box h4{
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
} 
.market-opportunity .tab-content .content .box p{
    font-size: 12px;
    font-weight: 400;
    color: var(--dark-45);
    margin-top: 2px;
    margin-bottom: 0; 
} 


.progress-item{
    width: 100%;
    max-width: 520px;
    margin-bottom: 20px;
}

.progress-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #8d8d8d;
}

.progress-head span:last-child{
    color: #8d8d8d;
    font-weight: 500;
}

.custom-progress{
    width: 100%;
    height: 8px;
    background: var(--dark-5);
    border-radius: 999px;
    overflow: hidden;
}

.custom-progress-bar{
    height: 100%;
    background: var(--primary-color);
    border-radius: 999px;
}
.key-crops h4{
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}
.key-crops .key-crops-content{
    display: flex;
    gap: 12px;
}
.key-crops span{
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    background-color: var(--dark-5);
    border-radius: 16px;
    color: var(--dark-color);
}

.cta-section{
    background-color: var(--secondary-color);
}
.cta-section .content{
    text-align: center;
    display: flex; 
    flex-direction: column;
    align-items: center;
}
.cta-section .content h6{
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px 6px 26px;
    border: 1px solid;
    background-color: color-mix(rgb(216, 169, 74) 8%, transparent);
    border-color: color-mix(rgb(216, 169, 74) 30%, transparent);
    border-radius: 16px;
    position: relative; 
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 1.1px;
}
.cta-section .content h6::after{
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%); 
}
.cta-section .content h2{
    font-size: 68px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 24px;
}
.cta-section .content p{
    max-width: 700px;
}
.cta-section .content h2 span{
    color: var(--primary-color);
}

footer{
    padding: 60px 0 0 0;
}
footer .footer-content p{
    color: var(--white-55);
    font-size: 15px;
    margin-bottom: 16px;
}
footer .social{
    display: flex;
    gap: 20px;
    list-style: none;
    padding-left: 0;
}
footer .social li a{
    text-decoration: none;
    color: var(--primary-color);
    transition: .5s;
}
footer .social li a:hover{
    text-decoration: none;
    color: var(--primary-50);
}
footer .social li a:hover i{
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-30);
}
footer .social li a i{
    width: 32px;
    height: 32px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-30);
    border-radius: 50%;
    transition: .5s;
}
footer .item h3{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white-color);
}
footer .item ul{
    list-style: none;
    padding-left: 0;
}
footer .item ul li{
    margin-bottom: 6px;
}
footer .item ul li a{
    font-size: 16px;
    font-weight: 400;
    color: var(--white-50);
    text-decoration: none;
}
footer .item .contact{
    display: flex;
    gap: 12px;
}
footer .item .contact i{
    position: relative;
    top: 2px;
    color: var(--primary-color);
}
footer .item .contact p{
    font-size: 16px;
    color: var(--white-50);
}
footer .item .contact p a{
    font-size: 16px;
    color: var(--white-50);
    text-decoration: none;
}
footer .copyright{
    padding: 16px;
    border-top: 1px solid var(--white-8);
}
footer .copyright p{
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.8px;
    margin-bottom: 0;
}
footer .copyright a{
    color: var(--white-color);
    text-decoration: none;
}


/* ───────────────────────────────────── COMMON ───────── */
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 1rem;
      display: block;
    }
 
    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
 
    .section-title h2 span {
      color: var(--primary-color);
    }
 
    .section-title p {
      color: var(--text-color);
      font-size: 1rem;
      max-width: 600px;
      line-height: 1.75;
    }
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 1 – HERO / ABOUT INTRO  (dark bg, full-bleed)
    ═══════════════════════════════════════════════════════════════ */
     #about-hero {
      position: relative;
      background-color: var(--dark-color);
      background-image: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1800&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center 60%;
      background-repeat: no-repeat;
      overflow: hidden;
      padding: 140px 0 120px;
      min-height: 540px;
    }
 
    /* dark base overlay + green tint + gold bottom fade */
    #about-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(10,15,13,0.92) 0%, rgba(10,15,13,0.70) 55%, rgba(10,15,13,0.30) 100%),
        linear-gradient(to top,   rgba(10,15,13,0.60) 0%, transparent 40%),
        radial-gradient(ellipse 55% 70% at 75% 50%, rgba(11, 61, 46, 0.35) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
 
    /* subtle grain texture for depth */
    #about-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }
 
    #about-hero .container {
      position: relative;
      z-index: 1;
    }
 
    #about-hero .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 1.25rem;
    }
 
    #about-hero h1 {
      font-size: 52px;
      font-weight: 700;
      color: var(--white-color);
      line-height: 1.08;
      margin-bottom: 1.5rem;
    }
 
    #about-hero h1 span {
      color: var(--primary-color);
    }
 
    #about-hero p {
      color: var(--text-color);
      font-size: 1.05rem;
      max-width: 520px;
      line-height: 1.8;
    }
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 2 – MISSION & VISION  (light bg)
    ═══════════════════════════════════════════════════════════════ */
    #mission-vision {
      background-color: var(--light-color);
      padding: 90px 0;
    }
 
    .mission-card {
      background-color: var(--secondary-color);
      border-radius: 16px;
      padding: 40px 36px;
      height: 100%;
    }
 
    .mission-card .card-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 1.25rem;
      display: block;
    }
 
    .mission-card h3 {
      font-size: clamp(1.35rem, 2.5vw, 1.75rem);
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.3;
      margin-bottom: 1.25rem;
    }
 
    .mission-card p {
      font-size: 0.95rem;
      color: var(--text-color);
      line-height: 1.75;
      margin: 0;
    }
 
    .vision-card {
      background-color: var(--white-color);
      border-radius: 16px;
      padding: 40px 36px;
      height: 100%;
      border: 1px solid #e5e2d9;
    }
 
    .vision-card .card-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--secondary-color);
      margin-bottom: 1.25rem;
      display: block;
    }
 
    .vision-card h3 {
      font-size: clamp(1.35rem, 2.5vw, 1.75rem);
      font-weight: 800;
      color: #0A0F0D;
      line-height: 1.3;
      margin-bottom: 1.25rem;
    }
 
    .vision-card p {
      font-size: 0.95rem;
      color: #4a4a4a;
      line-height: 1.75;
      margin: 0;
    }
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 3 – VALUES  (dark bg)
    ═══════════════════════════════════════════════════════════════ */
    #values {
      background-color: var(--dark-color);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
 
    #values::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(11, 61, 46, 0.35) 0%, transparent 70%);
      pointer-events: none;
    }
 
    #values .section-title {
      margin-bottom: 3rem;
    }
 
    .value-card {
      background-color: var(--white-5);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 30px 26px;
      height: 100%;
      transition: border-color 0.25s, background-color 0.25s, transform 0.25s;
    }
 
    .value-card:hover {
      border-color: var(--border-hover);
      background-color: var(--white-8);
      transform: translateY(-3px);
    }
 
    .value-icon {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background-color: var(--primary-10);
      border: 1px solid var(--primary-20);
      margin-bottom: 1.1rem;
      color: var(--primary-color);
      font-size: 1.15rem;
    }
 
    .value-card h5 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--white-color);
      margin-bottom: 0.6rem;
    }
 
    .value-card p {
      font-size: 0.875rem;
      color: var(--text-color);
      line-height: 1.7;
      margin: 0;
    }
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 4 – LEADERSHIP / TEAM  (light bg)
    ═══════════════════════════════════════════════════════════════ */
    #leadership {
      background-color: var(--light-color);
      padding: 90px 0;
    }
 
    #leadership .section-title h2 {
      color: #0A0F0D;
    }
 
    #leadership .section-title h6 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--secondary-color);
    }
 
    .team-card {
      background-color: var(--white-color);
      border: 1px solid #e5e2d9;
      border-radius: 14px;
      padding: 28px 24px;
      height: 100%;
      transition: box-shadow 0.25s, transform 0.25s;
    }
 
    .team-card:hover {
      box-shadow: 0 12px 40px rgba(10, 15, 13, 0.1);
      transform: translateY(-3px);
    }
 
    .team-avatar {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background-color: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--white-color);
      letter-spacing: 0.05em;
      margin-bottom: 1.1rem;
      flex-shrink: 0;
    }
 
    .team-card .team-dept {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 0.3rem;
    }
 
    .team-card h5 {
      font-size: 1.05rem;
      font-weight: 800;
      color: #0A0F0D;
      margin-bottom: 0.3rem;
    }
 
    .team-card .team-note {
      font-size: 0.82rem;
      color: #6b6b6b;
      margin: 0;
    }


     
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 1 – INFRASTRUCTURE HERO
    ═══════════════════════════════════════════════════════════════ */
    #infra-hero {
      position: relative;
      background-color: var(--secondary-color);
      background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1800&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center 40%;
      background-repeat: no-repeat;
      overflow: hidden;
      padding: 140px 0 120px;
      min-height: 480px;
    }
 
    /* dark + green layered overlays */
    #infra-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(10,15,13,0.94) 0%, rgba(10,15,13,0.75) 50%, rgba(10,15,13,0.35) 100%),
        linear-gradient(to top,   rgba(10,15,13,0.65) 0%, transparent 45%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(11,61,46,0.50) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
 
    /* grain texture */
    #infra-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }
 
    #infra-hero .container {
      position: relative;
      z-index: 1;
    }
 
    #infra-hero .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 1.25rem;
    }

    #infra-hero h1 {
      font-size: 52px;
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
 
    #infra-hero h1 span {
      color: var(--primary-color);
    }
 
    #infra-hero p {
      color: var(--text-color);
      font-size: 1.05rem;
      max-width: 500px;
      line-height: 1.8;
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 2 – INFRASTRUCTURE CARDS  (light bg)
    ═══════════════════════════════════════════════════════════════ */
    #infra-cards {
      background-color: var(--light-color);
      padding: 90px 0 80px;
    }
 
    .infra-card {
      background-color: var(--white-color);
      border: 1px solid #e5e2d9;
      border-radius: 16px;
      padding: 30px 28px 32px;
      height: 100%;
      transition: box-shadow 0.25s, transform 0.25s;
    }
 
    .infra-card:hover {
      box-shadow: 0 16px 48px rgba(10, 15, 13, 0.10);
      transform: translateY(-4px);
    }
 
    /* top row: icon left, badge right */
    .infra-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 1.1rem;
    }
 
    .infra-icon {
      width: 50px;
      height: 50px;
      border-radius: 13px;
      background-color: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.25rem;
      flex-shrink: 0;
    }
 
    .infra-badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: #4a4a4a;
      background-color: #f0ede6;
      border: 1px solid #dedad2;
      border-radius: 20px;
      padding: 4px 12px;
      white-space: nowrap;
    }
 
    .infra-card h5 {
      font-size: 1.1rem;
      font-weight: 800;
      color: #0A0F0D;
      margin-bottom: 0.55rem;
    }
 
    .infra-card .infra-desc {
      font-size: 0.875rem;
      color: #5a5a5a;
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }
 
    /* feature bullet list */
    .infra-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
 
    .infra-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.825rem;
      color: #444;
      line-height: 1.5;
      margin-bottom: 0.45rem;
    }
 
    .infra-features li:last-child {
      margin-bottom: 0;
    }
 
    .infra-features li::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: var(--primary-color);
      flex-shrink: 0;
      margin-top: 5px;
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION 1 – SOLUTIONS HERO
    ═══════════════════════════════════════════════════════════════ */
    #solutions-hero {
      position: relative;
      background-color: var(--dark-color);
      background-image: url('https://images.pexels.com/photos/2132250/pexels-photo-2132250.jpeg?auto=compress&cs=tinysrgb&w=1800');
      background-size: cover;
      background-position: center 55%;
      background-repeat: no-repeat;
      overflow: hidden;
      padding: 140px 0 120px;
      min-height: 420px;
    }
 
    #solutions-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(10,15,13,0.96) 0%, rgba(10,15,13,0.80) 50%, rgba(10,15,13,0.40) 100%),
        linear-gradient(to top, rgba(10,15,13,0.60) 0%, transparent 45%),
        radial-gradient(ellipse 55% 70% at 80% 50%, rgba(11,61,46,0.40) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
 
    #solutions-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }
 
    #solutions-hero .container {
      position: relative;
      z-index: 1;
    }
 
    #solutions-hero .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 1.25rem;
    }
 
    #solutions-hero h1 {
      font-size: 52px;
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
 
    #solutions-hero h1 span {
      color: var(--primary-color);
    }
 
    #solutions-hero p {
      color: var(--text-color);
      font-size: 1.05rem;
      max-width: 480px;
      line-height: 1.8;
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 2 – SOLUTION CARDS  (light bg, 3-col grid)
    ═══════════════════════════════════════════════════════════════ */
    #solutions-cards {
      background-color: var(--light-color);
      padding: 90px 0 80px;
    }
 
    .solution-card {
      background-color: var(--white-color);
      border: 1px solid #e5e2d9;
      border-radius: 16px;
      padding: 32px 28px 34px;
      height: 100%;
      transition: box-shadow 0.25s, transform 0.25s;
    }
 
    .solution-card:hover {
      box-shadow: 0 16px 48px rgba(10, 15, 13, 0.09);
      transform: translateY(-4px);
    }
 
    /* icon row */
    .solution-card-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 1.25rem;
    }
 
    .solution-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
 
    /* green icon for Farmers & Food Processors */
    .solution-icon.green {
      background-color: var(--secondary-color);
      color: var(--primary-color);
    }
 
    /* gold icon for Buyers & Exporters */
    .solution-icon.gold {
      background-color: var(--primary-10);
      border: 1px solid var(--primary-20);
      color: var(--primary-color);
    }
 
    .solution-card-top .audience-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #7a7a6e;
    }
 
    .solution-card h5 {
      font-size: 1.15rem;
      font-weight: 800;
      color: #0A0F0D;
      margin-bottom: 0.55rem;
    }
 
    .solution-card .sol-desc {
      font-size: 0.875rem;
      color: #5a5a5a;
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }
 
    /* divider + key benefits */
    .sol-benefits-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #9a9a8e;
      margin-bottom: 0.7rem;
    }
 
    .sol-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
 
    .sol-features li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 0.835rem;
      color: #3a3a3a;
      line-height: 1.5;
      margin-bottom: 0.45rem;
    }
 
    .sol-features li:last-child { margin-bottom: 0; }
 
    .sol-features li::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: var(--primary-color);
      flex-shrink: 0;
      margin-top: 5px;
    }
 
    /* Exporters bullet — gold outline dot */
    .sol-features.gold-dot li::before {
      background-color: transparent;
      border: 2px solid var(--primary-color);
    }


     /* ═══════════════════════════════════════════════════════════════
       SECTION 1 – MARKET HERO
    ═══════════════════════════════════════════════════════════════ */
    #market-hero {
      position: relative;
      background-color: var(--dark-color);
      background-image: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1800&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center 45%;
      background-repeat: no-repeat;
      overflow: hidden;
      padding: 130px 0 80px;
    }
 
    /* very heavy dark overlay matching the near-black screenshot */
    #market-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10,15,13,0.92) 0%, rgba(10,15,13,0.88) 100%),
        radial-gradient(ellipse 65% 55% at 65% 40%, rgba(11,61,46,0.28) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
 
    /* grain */
    #market-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }
 
    #market-hero .container {
      position: relative;
      z-index: 1;
    }
 
    #market-hero .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 1.4rem;
    }
 
    #market-hero h1 {
      font-size: 52px;
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.08;
      margin-bottom: 1.5rem;
    }
 
    #market-hero h1 span { color: var(--primary-color); }
 
    #market-hero .hero-desc {
      font-size: 1rem;
      color: var(--text-color);
      max-width: 560px;
      line-height: 1.8;
      margin-bottom: 3rem;
    }
 
    /* ── stat cards row ── */
    .stat-card {
      background-color: var(--white-5);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px 26px;
      transition: border-color 0.25s, background-color 0.25s;
    }
 
    .stat-card:hover {
      border-color: var(--border-hover);
      background-color: var(--white-8);
    }
 
    .stat-card .stat-value {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--primary-color);
      line-height: 1;
      margin-bottom: 8px;
    }
 
    .stat-card .stat-label {
      font-size: 0.82rem;
      color: var(--white-50);
      font-weight: 500;
      line-height: 1.4;
      margin: 0;
    }


    /* ═══════════════════════════════════════════════════════════════
       SECTION 1 – INVESTORS HERO  (dark bg image + CTA buttons)
    ═══════════════════════════════════════════════════════════════ */
    #investors-hero {
      position: relative;
      background-color: var(--dark-color);
      background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1800&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center 40%;
      background-repeat: no-repeat;
      overflow: hidden;
      padding: 130px 0 90px;
    }
 
    #investors-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(10,15,13,0.95) 0%, rgba(10,15,13,0.85) 55%, rgba(10,15,13,0.45) 100%),
        linear-gradient(to top, rgba(10,15,13,0.70) 0%, transparent 50%),
        radial-gradient(ellipse 55% 65% at 75% 45%, rgba(11,61,46,0.32) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
 
    #investors-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }
 
    #investors-hero .container {
      position: relative;
      z-index: 1;
    }
 
    #investors-hero .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 1.4rem;
    }
 
    #investors-hero h1 {
      font-size: 52px;
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.08;
      margin-bottom: 1.4rem;
    }
 
    #investors-hero h1 span { color: var(--primary-color); }
 
    #investors-hero .hero-desc {
      font-size: 1rem;
      color: var(--text-color);
      max-width: 480px;
      line-height: 1.8;
      margin-bottom: 2.2rem;
    }
 
    /* CTA buttons */
    .btn-primary-ufm {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: var(--primary-color);
      color: var(--dark-color);
      font-size: 0.9rem;
      font-weight: 700;
      padding: 13px 24px;
      border-radius: 50px;
      border: none;
      text-decoration: none;
      transition: background-color 0.2s, transform 0.2s;
      font-family: var(--primary-font);
    }
 
    .btn-primary-ufm:hover {
      background-color: var(--primary-hover);
      color: var(--dark-color);
      transform: translateY(-1px);
    }
 
    .btn-outline-ufm {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: transparent;
      color: var(--white-color);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 50px;
      border: 1px solid var(--border-color);
      text-decoration: none;
      transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
      font-family: var(--primary-font);
    }
 
    .btn-outline-ufm:hover {
      border-color: var(--border-hover);
      background-color: var(--white-5);
      color: var(--white-color);
      transform: translateY(-1px);
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 2 – INVESTMENT HIGHLIGHTS  (light bg, 2×2 cards)
    ═══════════════════════════════════════════════════════════════ */
    #investment-highlights {
      background-color: var(--light-color);
      padding: 90px 0 80px;
    }
 
    #investment-highlights .section-title {
      margin-bottom: 3rem;
    }
 
    #investment-highlights .section-title .section-label {
      color: var(--primary-color);
    }
 
    #investment-highlights .section-title h2 {
      color: #0A0F0D;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }
 
    .highlight-card {
      background-color: var(--white-color);
      border: 1px solid #e5e2d9;
      border-radius: 16px;
      padding: 32px 30px;
      height: 100%;
      transition: box-shadow 0.25s, transform 0.25s;
    }
 
    .highlight-card:hover {
      box-shadow: 0 14px 44px rgba(10,15,13,0.09);
      transform: translateY(-3px);
    }
 
    .highlight-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background-color: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.2rem;
      margin-bottom: 1.1rem;
    }
 
    .highlight-card h5 {
      font-size: 1.05rem;
      font-weight: 800;
      color: #0A0F0D;
      margin-bottom: 0.6rem;
    }
 
    .highlight-card p {
      font-size: 0.875rem;
      color: #5a5a5a;
      line-height: 1.75;
      margin: 0;
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 3 – INVESTMENT SNAPSHOT  (dark green bg, metric cards)
    ═══════════════════════════════════════════════════════════════ */
    #investment-snapshot {
      background-color: var(--secondary-color);
      padding: 80px 0 90px;
      position: relative;
      overflow: hidden;
    }
 
    /* subtle texture overlay */
    #investment-snapshot::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 80% 20%, rgba(216,169,74,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(10,15,13,0.40) 0%, transparent 60%);
      pointer-events: none;
    }
 
    #investment-snapshot .container {
      position: relative;
      z-index: 1;
    }
 
    #investment-snapshot .section-label {
      color: var(--primary-color);
    }
 
    #investment-snapshot .section-title h2 {
      color: var(--white-color);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }
 
    .snapshot-card {
      background-color: rgba(10,15,13,0.30);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 26px 28px;
      height: 100%;
      transition: background-color 0.25s, border-color 0.25s;
    }
 
    .snapshot-card:hover {
      background-color: rgba(10,15,13,0.45);
      border-color: rgba(255,255,255,0.22);
    }
 
    .snapshot-card .snap-value {
      font-size: clamp(1.15rem, 2vw, 1.4rem);
      font-weight: 800;
      color: var(--primary-color);
      line-height: 1.2;
      margin-bottom: 6px;
    }
 
    .snapshot-card .snap-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
      margin: 0;
    }


    /* ═══════════════════════════════════════════════════════════════
       SECTION 1 – CONTACT HERO BANNER  (dark green bg)
    ═══════════════════════════════════════════════════════════════ */
    #contact-hero {
      background-color: var(--secondary-color);
      background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center 40%;
      background-repeat: no-repeat;
      padding: 80px 0 70px;
      position: relative;
      overflow: hidden;
    }
 
    #contact-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(11,61,46,0.96) 0%, rgba(11,61,46,0.85) 50%, rgba(11,61,46,0.60) 100%),
        linear-gradient(to top, rgba(10,15,13,0.50) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }
 
    #contact-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }
 
    #contact-hero .container { position: relative; z-index: 1; }
 
    #contact-hero h1 {
      font-size: 52px;
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
 
    #contact-hero p {
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      max-width: 500px;
      line-height: 1.8;
      margin: 0;
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 2 – CONTACT INFO + FORM  (light bg)
    ═══════════════════════════════════════════════════════════════ */
    #contact-main {
      background-color: var(--white-color);
      padding: 80px 0 70px;
    }
 
    /* ── Left: contact info ── */
    .contact-info-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 1.8rem;
    }
 
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 1.4rem;
    }
 
    .contact-info-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background-color: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1rem;
      flex-shrink: 0;
    }
 
    .contact-info-item .info-label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 3px;
    }
 
    .contact-info-item .info-value {
      font-size: 0.875rem;
      color: #5a5a5a;
      line-height: 1.6;
      margin: 0;
    }
 
    .office-hours-card {
      background-color: var(--light-color);
      border-radius: 12px;
      padding: 22px 24px;
      margin-top: 0.5rem;
    }
 
    .office-hours-card h6 {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 0.7rem;
    }
 
    .office-hours-card p {
      font-size: 0.845rem;
      color: #5a5a5a;
      line-height: 1.7;
      margin: 0;
    }
 
    /* ── Right: form ── */
    .form-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 1.8rem;
    }
 
    .ufm-label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 6px;
    }
 
    .ufm-label span { color: #e05050; }
 
    .ufm-input {
      width: 100%;
      background-color: var(--white-color);
      border: 1px solid #dedad2;
      border-radius: 8px;
      padding: 11px 14px;
      font-size: 0.9rem;
      font-family: var(--primary-font);
      color: var(--dark-color);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
 
    .ufm-input:focus {
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 3px rgba(11,61,46,0.10);
    }
 
    .ufm-input::placeholder { color: #b0aba3; }
 
    select.ufm-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }
 
    textarea.ufm-input { resize: vertical; min-height: 120px; }
 
    .btn-send {
      width: 100%;
      background-color: var(--secondary-color);
      color: var(--white-color);
      font-size: 0.92rem;
      font-weight: 700;
      font-family: var(--primary-font);
      padding: 14px 24px;
      border-radius: 8px;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: background-color 0.2s, transform 0.2s;
    }
 
    .btn-send:hover {
      background-color: #0d4f3a;
      transform: translateY(-1px);
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 3 – MAP  (light bg)
    ═══════════════════════════════════════════════════════════════ */
    #contact-map {
      background-color: var(--light-color);
      padding: 80px 0 70px;
    }
 
    #contact-map .map-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
 
    #contact-map .map-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 0.4rem;
    }
 
    #contact-map .map-header p {
      font-size: 0.9rem;
      color: #6b6b6b;
      margin: 0;
    }
 
    .map-placeholder {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #e5e2d9;
    }
 
    .map-placeholder iframe {
      width: 100%;
      height: 420px;
      border: none;
      display: block;
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 4 – LOOKING FOR SOMETHING SPECIFIC  (white bg)
    ═══════════════════════════════════════════════════════════════ */
    #contact-links {
      background-color: var(--white-color);
      padding: 80px 0 90px;
    }
 
    #contact-links .links-header {
      text-align: center;
      margin-bottom: 3rem;
    }
 
    #contact-links .links-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 0;
    }
 
    .link-card {
      background-color: var(--light-color);
      border: 1px solid #e5e2d9;
      border-radius: 14px;
      padding: 28px 26px;
      height: 100%;
      text-decoration: none;
      display: block;
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    }
 
    .link-card:hover {
      box-shadow: 0 10px 36px rgba(10,15,13,0.08);
      transform: translateY(-3px);
      border-color: #d0cdc5;
    }
 
    .link-card h5 {
      font-size: 1rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 0.45rem;
    }
 
    .link-card p {
      font-size: 0.845rem;
      color: #6b6b6b;
      line-height: 1.65;
      margin: 0;
    }


    /* ─────────────────── MODAL OVERRIDES ─────────────────── */
    .modal-backdrop {
      background-color: rgba(10, 15, 13, 0.75) !important;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
 
    .partner-modal .modal-dialog {
      max-width: 780px;
      z-index: 9999999;
    }
 
    .partner-modal .modal-content {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      background: transparent;
      box-shadow: 0 32px 80px rgba(0,0,0,0.45);
    }
 
    /* ── two-column layout inside modal ── */
    .modal-left {
      background-color: var(--secondary-color);
      padding: 44px 36px !important;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
 
    /* decorative circle blur */
    .modal-left::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216,169,74,0.18) 0%, transparent 70%);
      bottom: -60px;
      right: -60px;
      pointer-events: none;
    }
 
    .modal-left::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10,15,13,0.35) 0%, transparent 70%);
      top: -40px;
      left: -40px;
      pointer-events: none;
    }
 
    .modal-left-content { position: relative; z-index: 1; }
 
    .modal-left .modal-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
 
    .modal-left h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
 
    .modal-left h3 span { color: var(--primary-color); }
 
    .modal-left .modal-left-desc {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      margin-bottom: 2rem;
    }
 
    /* perks list */
    .modal-perks {
      list-style: none;
      padding: 0;
      margin: 0;
    }
 
    .modal-perks li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.835rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 0.7rem;
      line-height: 1.5;
    }
 
    .modal-perks li:last-child { margin-bottom: 0; }
 
    .modal-perks li .perk-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background-color: var(--primary-10);
      border: 1px solid var(--primary-30);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
 
    .modal-perks li .perk-dot i {
      font-size: 0.55rem;
      color: var(--primary-color);
    }
 
    /* badge row at bottom of left panel */
    .modal-left-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2rem;
    }
 
    .modal-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      background-color: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 5px 12px;
    }
 
    /* ── Right panel: form ── */
    .modal-right {
      background-color: var(--white-color);
      padding: 40px 36px 36px !important;
    }
 
    .modal-right .modal-close-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background-color: #f0ede6;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b6b6b;
      font-size: 0.85rem;
      cursor: pointer;
      transition: background-color 0.2s;
      z-index: 10;
    }
 
    .modal-right .modal-close-btn:hover { background-color: #e5e2d9; }
 
    .modal-right h4 {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 0.3rem;
    }
 
    .modal-right .form-subtitle {
      font-size: 0.82rem;
      color: #7a7a6e;
      margin-bottom: 1.6rem;
    }
 
    /* form inputs */
    .ufm-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 5px;
      display: block;
    }
 
    .ufm-label span { color: #e05050; }
 
    .ufm-input {
      width: 100%;
      background-color: var(--light-color);
      border: 1px solid #e0ddd6;
      border-radius: 8px;
      padding: 10px 13px;
      font-size: 0.875rem;
      font-family: var(--primary-font);
      color: var(--dark-color);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
 
    .ufm-input:focus {
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 3px rgba(11,61,46,0.10);
      background-color: var(--white-color);
    }
 
    .ufm-input::placeholder { color: #b5b0a8; }
 
    select.ufm-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 13px center;
      padding-right: 34px;
      cursor: pointer;
    }
 
    textarea.ufm-input { resize: vertical; min-height: 90px; }
 
    .btn-submit-partner {
      width: 100%;
      background-color: var(--primary-color);
      color: var(--dark-color);
      font-size: 0.9rem;
      font-weight: 700;
      font-family: var(--primary-font);
      padding: 13px 24px;
      border-radius: 8px;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: background-color 0.2s, transform 0.15s;
      margin-top: 4px;
    }
 
    .btn-submit-partner:hover {
      background-color: var(--primary-hover);
      transform: translateY(-1px);
    }
 
    .form-note {
      font-size: 0.75rem;
      color: #9a9a8e;
      text-align: center;
      margin-top: 10px;
      margin-bottom: 0;
    }
 
    /* ── success state ── */
    .success-state {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 0;
      height: 100%;
    }
 
    .success-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background-color: var(--primary-10);
      border: 2px solid var(--primary-20);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--primary-color);
      margin: 0 auto 1.2rem;
    }
 
    .success-state h4 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 0.5rem;
    }
 
    .success-state p {
      font-size: 0.875rem;
      color: #6b6b6b;
      line-height: 1.7;
      max-width: 280px;
      margin: 0 auto;
    }
 
    /* responsive: stack on mobile */
    @media (max-width: 575px) {
      .modal-left { padding: 32px 24px 28px; }
      .modal-right { padding: 32px 24px 28px; }
      .partner-modal .modal-dialog { margin: 12px; }
    }


    /* ═══════════════════════════════════════════════════════════════
       SECTION 1 – HERO  (dark bg + bg image)
    ═══════════════════════════════════════════════════════════════ */
    #bm-hero {
      position: relative;
      background-color: var(--secondary-color);
      background-image: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?w=1800&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center 50%;
      background-repeat: no-repeat;
      overflow: hidden;
      padding: 110px 0 90px;
    }
 
    #bm-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(10,15,13,0.95) 0%, rgba(10,15,13,0.82) 55%, rgba(10,15,13,0.45) 100%),
        linear-gradient(to top, rgba(10,15,13,0.65) 0%, transparent 50%),
        radial-gradient(ellipse 55% 65% at 78% 45%, rgba(11,61,46,0.38) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
 
    #bm-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }
 
    #bm-hero .container { position: relative; z-index: 1; }
 
    #bm-hero h1 {
      font-size: 52px;
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.1;
      margin-bottom: 1.1rem;
    }
 
    #bm-hero h1 span { color: var(--primary-color); }
 
    #bm-hero p {
      font-size: 1rem;
      color: var(--text-color);
      max-width: 460px;
      line-height: 1.8;
      margin: 0;
    }

    /* ─── COMMON ─── */
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 0.75rem;
      display: block;
    }
 
    /* centered heading used across light sections */
    .section-heading {
      text-align: center;
      margin-bottom: 3rem;
    }
 
    .section-heading h2 {
      font-size: clamp(1.7rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: var(--dark-color);
      line-height: 1.15;
      margin-bottom: 0.6rem;
    }
 
    .section-heading h2.white { color: var(--white-color); }
 
    .section-heading p {
      font-size: 0.95rem;
      color: #6b6b6b;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.75;
    }
 
    .section-heading p.light-p { color: var(--text-color); }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 2 – TEHSIL INFRASTRUCTURE  (light bg)
    ═══════════════════════════════════════════════════════════════ */
    #tehsil-infra {
      background-color: var(--light-color);
      padding: 90px 0 80px;
    }
 
    .tehsil-card {
      background-color: var(--white-color);
      border: 1px solid #e5e2d9;
      border-radius: 14px;
      padding: 26px 22px 28px;
      height: 100%;
      transition: box-shadow 0.25s, transform 0.25s;
    }
 
    .tehsil-card:hover {
      box-shadow: 0 14px 40px rgba(10,15,13,0.08);
      transform: translateY(-3px);
    }
 
    .tehsil-icon {
      width: 46px;
      height: 46px;
      border-radius: 11px;
      background-color: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.15rem;
      margin-bottom: 1rem;
    }
 
    .tehsil-card h5 {
      font-size: 1rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 0.5rem;
    }
 
    .tehsil-card p {
      font-size: 0.845rem;
      color: #5a5a5a;
      line-height: 1.7;
      margin-bottom: 0.8rem;
    }
 
    .tehsil-card .tehsil-spec {
      font-size: 0.775rem;
      font-weight: 600;
      color: var(--primary-color);
      margin: 0;
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 3 – FARMER PAYMENT MODEL  (dark bg)
    ═══════════════════════════════════════════════════════════════ */
    #farmer-payment {
      background-color: var(--dark-color);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
 
    #farmer-payment::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(11,61,46,0.3) 0%, transparent 70%);
      pointer-events: none;
    }
 
    #farmer-payment .container { position: relative; z-index: 1; }
 
    /* payment split card */
    .payment-split {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      margin-bottom: 1.5rem;
    }
 
    .payment-split-row {
      display: flex;
      flex-wrap: wrap;
    }
 
    /* 75% immediate – dark green */
    .split-immediate {
      flex: 0 0 55%;
      background-color: var(--secondary-color);
      padding: 32px 30px;
      position: relative;
      overflow: hidden;
    }
 
    .split-immediate::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10,15,13,0.35) 0%, transparent 70%);
      bottom: -50px;
      right: -50px;
      pointer-events: none;
    }
 
    /* 25%+ profit – gold */
    .split-profit {
      flex: 0 0 45%;
      background-color: var(--primary-color);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
    }
 
    .split-profit::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
      top: -40px;
      right: -40px;
      pointer-events: none;
    }
 
    .split-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }
 
    .split-immediate .split-label { color: var(--primary-color); }
    .split-profit .split-label    { color: rgba(10,15,13,0.6); }
 
    .split-immediate h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white-color);
      margin-bottom: 0.4rem;
    }
 
    .split-profit h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 0.4rem;
    }
 
    .split-immediate .split-pct {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      color: var(--white-color);
      line-height: 1;
      margin-bottom: 0.6rem;
    }
 
    .split-profit .split-pct {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      color: var(--dark-color);
      line-height: 1;
      margin-bottom: 0.6rem;
    }
 
    .split-immediate .split-desc {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.65;
      margin: 0;
    }
 
    .split-profit .split-desc {
      font-size: 0.8rem;
      color: rgba(10,15,13,0.65);
      line-height: 1.65;
      margin: 0;
    }
 
    /* key benefits row below split */
    .payment-benefits {
      background-color: var(--white-5);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 20px 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px 32px;
      align-items: center;
    }
 
    .payment-benefits .benefit-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-color);
      width: 100%;
      margin-bottom: 4px;
    }
 
    .payment-benefits .benefit-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.835rem;
      color: var(--white-color);
    }
 
    .payment-benefits .benefit-item::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--primary-color);
      flex-shrink: 0;
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 4 – REVENUE STREAMS  (light bg)
    ═══════════════════════════════════════════════════════════════ */
    #revenue-streams {
      background-color: var(--light-color);
      padding: 90px 0 80px;
    }
 
    .revenue-card {
      background-color: var(--white-color);
      border: 1px solid #e5e2d9;
      border-radius: 12px;
      padding: 22px 22px 24px;
      height: 100%;
      transition: box-shadow 0.2s, transform 0.2s;
    }
 
    .revenue-card:hover {
      box-shadow: 0 10px 32px rgba(10,15,13,0.07);
      transform: translateY(-3px);
    }
 
    .revenue-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }
 
    .revenue-card h5 {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--dark-color);
      margin: 0;
    }
 
    .revenue-pct {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--secondary-color);
      line-height: 1;
    }
 
    .revenue-card p {
      font-size: 0.82rem;
      color: #6b6b6b;
      line-height: 1.65;
      margin: 0;
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 5 – UNIT ECONOMICS  (dark bg)
    ═══════════════════════════════════════════════════════════════ */
    #unit-economics {
      background-color: var(--dark-color);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
 
    #unit-economics::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(11,61,46,0.28) 0%, transparent 65%);
      pointer-events: none;
    }
 
    #unit-economics .container { position: relative; z-index: 1; }
 
    .economics-table {
      background-color: var(--white-5);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      max-width: 680px;
      margin: 0 auto;
    }
 
    .econ-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 28px;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.2s;
    }
 
    .econ-row:last-child { border-bottom: none; }
 
    .econ-row:hover { background-color: var(--white-8); }
 
    .econ-row .econ-label {
      font-size: 0.9rem;
      color: var(--text-color);
      font-weight: 500;
    }
 
    .econ-row .econ-value {
      font-size: 1rem;
      font-weight: 800;
      color: var(--white-color);
    }
 
    .econ-row.highlight .econ-value {
      color: var(--primary-color);
    }
 
 
    /* ═══════════════════════════════════════════════════════════════
       SECTION 6 – SCALABILITY MODEL  (light bg)
    ═══════════════════════════════════════════════════════════════ */
    #scalability {
      background-color: var(--light-color);
      padding: 90px 0 100px;
    }
 
    .phase-card {
      border-radius: 16px;
      padding: 32px 28px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }
 
    .phase-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(10,15,13,0.18);
    }
 
    /* Phase 1 – dark green */
    .phase-card.phase-1 { background-color: var(--secondary-color); }
 
    /* Phase 2 – medium green tint */
    .phase-card.phase-2 { background-color: #0d4f3a; }
 
    /* Phase 3 – deep green */
    .phase-card.phase-3 { background-color: #082e22; }
 
    .phase-card::before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216,169,74,0.12) 0%, transparent 70%);
      bottom: -50px;
      right: -50px;
      pointer-events: none;
    }
 
    .phase-card .phase-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 0.7rem;
    }
 
    .phase-card h3 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }
 
    .phase-card .phase-timeline {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0.3rem;
    }
 
    .phase-card .phase-region {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      margin: 0;
    }

  .opacity-0{
    opacity:0 !important;
  }
  :root {
      --green-dark:   #1f4d0e;
      --green-mid:    #3b6d11;
      --green-soft:   #639922;
      --green-light:  #c0dd97;
      --green-pale:   #eaf3de;
      --amber:        #ba7517;
      --amber-pale:   #faeeda;
      --blue-mid:     #185fa5;
      --blue-pale:    #e6f1fb;
      --teal-mid:     #0f6e56;
      --teal-pale:    #e1f5ee;
      --ink:          #12200a;
      --muted:        #5a6b4e;
      --border:       rgba(63, 100, 30, 0.15);
    }

    
 
    /* ---------- HERO ---------- */
    .scs-hero {
      text-align: center;
      margin-bottom: 3rem;
    }
 
    .scs-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-pale);
      color: var(--green-mid);
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 99px;
      border: 1px solid rgba(99, 153, 34, 0.25);
      margin-bottom: 1.25rem;
    }
 
    .scs-badge .badge-pulse {
      width: 8px;
      height: 8px;
      background: var(--green-soft);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
 
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .5; transform: scale(1.35); }
    }
 
    .scs-hero h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.75rem, 4vw, 2.6rem);
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
 
    .scs-hero h2 span {
      color: var(--green-soft);
    }
 
    .scs-hero p {
      font-size: 1rem;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.75;
    }
 
    
    .stat-card .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--green-mid);
      margin-bottom: 4px;
    }
 
    .stat-card .stat-lbl {
      font-size: 12.5px;
      color: var(--muted);
      margin: 0;
    }
 
    /* ---------- PILLAR CARDS ---------- */
    .pillar-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem 1.25rem;
      height: 100%;
      transition: transform .2s, box-shadow .2s;
    }
 
    .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(63,100,30,.1);
    }
 
    .pillar-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 1rem;
    }
 
    .icon-green  { background: var(--green-pale); color: var(--green-mid); }
    .icon-amber  { background: var(--amber-pale); color: var(--amber);     }
    .icon-blue   { background: var(--blue-pale);  color: var(--blue-mid);  }
    .icon-teal   { background: var(--teal-pale);  color: var(--teal-mid);  }
 
    .pillar-card h6 {
      font-family: 'Syne', sans-serif;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: .4rem;
    }
 
    .pillar-card p {
      font-size: 13px;
      color: var(--muted);
      margin: 0;
      line-height: 1.6;
    }
 
    /* ---------- DIVIDER ---------- */
    .scs-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 2.5rem 0;
    }
 
    /* ---------- BENEFITS ---------- */
    .section-eyebrow {
      font-size: 11px;
      font-weight: 500;
      color: var(--green-soft);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
 
    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: .65rem;
    }
 
    .benefit-dot {
      width: 8px;
      height: 8px;
      min-width: 8px;
      border-radius: 50%;
      background: var(--green-soft);
      margin-top: 5px;
    }
 
    /* ---------- AUDIENCE TAGS ---------- */
    .audience-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 2rem;
    }
 
    .aud-tag {
      background: var(--green-pale);
      color: var(--green-mid);
      border: 1px solid rgba(99,153,34,.2);
      border-radius: 99px;
      font-size: 12.5px;
      padding: 5px 14px;
      font-weight: 500;
    }
 
    /* ---------- CTA ---------- */
    .btn-scs-primary {
      background: var(--green-mid);
      color: var(--green-light);
      border: none;
      border-radius: 10px;
      padding: 12px 28px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      transition: background .2s, transform .15s;
      text-decoration: none;
      display: inline-block;
    }
 
    .btn-scs-primary:hover {
      background: var(--green-dark);
      color: var(--green-light);
      transform: translateY(-1px);
    }
 
    .btn-scs-outline {
      background: transparent;
      color: var(--green-mid);
      border: 1.5px solid var(--green-mid);
      border-radius: 10px;
      padding: 12px 28px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      transition: background .2s, color .2s;
      text-decoration: none;
      display: inline-block;
    }
 
    .btn-scs-outline:hover {
      background: var(--green-pale);
      color: var(--green-dark);
    }
 
    /* ---------- SOLAR STRIP (decorative) ---------- */
    .solar-strip {
      background: var(--secondary-color);
      border-radius: 16px;
      padding: 1.6rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2.5rem;
    }
 
    .solar-strip p {
      margin: 0;
      color: var(--primary-color) !important;
      font-size: 14px;
      line-height: 1.6;
    }
 
    .solar-strip p strong {
      font-family: 'Syne', sans-serif;
      font-size: 16px;
      color: #fff;
      display: block;
      margin-bottom: 3px;
    }
 
    .solar-strip .solar-icon {
      font-size: 2.8rem;
      color: var(--primary-color) !important;
      opacity: .9;
    }


    /* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 120px 0 100px;
}

.privacy-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-1 {
    width: 280px;
    height: 280px;
    background: #fff;
    top: -80px;
    right: -80px;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: #38bdf8;
    bottom: -50px;
    left: -50px;
}

/* Sidebar */
.privacy-sidebar {
    background: #fff;
    top: 100px;
}

.privacy-sidebar a {
    color: #1e293b;
    font-weight: 500;
    transition: 0.3s ease;
}

.privacy-sidebar a:hover {
    color: #2563eb;
    padding-left: 6px;
}

/* Content Cards */
.privacy-card {
    background: #fff;
    border: 1px solid #eef2f7;
    transition: 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.privacy-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
}

.privacy-content {
    background: #f8fafc;
}

:root {
      --green-dark:  #1f4d0e;
      --green-mid:   #3b6d11;
      --green-soft:  #639922;
      --green-pale:  #eaf3de;
      --border:      rgba(63, 100, 30, 0.14);
      --ink:         #12200a;
      --muted:       #556347;
    } 
 
    /* ---- BREADCRUMB ---- */
    .pp-breadcrumb {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
 
    .pp-breadcrumb .breadcrumb {
      margin: 0;
      font-size: 13px;
    }
 
    .pp-breadcrumb .breadcrumb-item a {
      color: var(--green-mid);
      text-decoration: none;
    }
 
    .pp-breadcrumb .breadcrumb-item a:hover {
      text-decoration: underline;
    }
 
    .pp-breadcrumb .breadcrumb-item.active {
      color: var(--muted);
    }
 
    .pp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      color: #aab89a;
    }
 
    /* ---- PAGE LAYOUT ---- */
    #privacy-policy {
      padding: 3rem 0 5rem;
    }
 
    .pp-page-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: .3rem;
    }
 
    .pp-meta {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }
 
    /* ---- SIDEBAR TOC ---- */
    .pp-toc {
      position: sticky;
      top: 24px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.25rem 1.25rem 1.4rem;
    }
 
    .pp-toc h6 {
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
      margin-bottom: 1rem;
    }
 
    .pp-toc ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
 
    .pp-toc ul li {
      margin-bottom: 4px;
    }
 
    .pp-toc ul li a {
      font-size: 13px;
      color: var(--ink);
      text-decoration: none;
      display: block;
      padding: 5px 8px;
      border-radius: 7px;
      transition: background .15s, color .15s;
    }
 
    .pp-toc ul li a:hover {
      background: var(--green-pale);
      color: var(--green-mid);
    }
 
    /* ---- CONTENT ---- */
    .pp-content h2 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-top: 2.5rem;
      margin-bottom: .75rem;
      padding-bottom: .4rem;
      border-bottom: 1px solid var(--border);
    }
 
    .pp-content h2:first-of-type {
      margin-top: 0;
    }
 
    .pp-content p {
      font-size: 15px;
      color: #2e3d24;
      line-height: 1.8;
      margin-bottom: 1rem;
    }
 
    .pp-content ul {
      padding-left: 1.2rem;
      margin-bottom: 1rem;
    }
 
    .pp-content ul li {
      font-size: 15px;
      color: #2e3d24;
      line-height: 1.8;
      margin-bottom: .3rem;
    }
 
    .pp-content a {
      color: var(--green-mid);
      text-decoration: underline;
    }
 
    .pp-notice {
      background: var(--green-pale);
      border-left: 3px solid var(--green-soft);
      border-radius: 0 8px 8px 0;
      padding: 1rem 1.2rem;
      font-size: 14px;
      color: var(--green-dark);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    /* ---- BREADCRUMB ---- */
    .tc-breadcrumb {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
 
    .tc-breadcrumb .breadcrumb {
      margin: 0;
      font-size: 13px;
    }
 
    .tc-breadcrumb .breadcrumb-item a {
      color: var(--green-mid);
      text-decoration: none;
    }
 
    .tc-breadcrumb .breadcrumb-item a:hover {
      text-decoration: underline;
    }
 
    .tc-breadcrumb .breadcrumb-item.active {
      color: var(--muted);
    }
 
    .tc-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      color: #aab89a;
    }
 
    /* ---- PAGE LAYOUT ---- */
    #terms-conditions {
      padding: 3rem 0 5rem;
    }
 
    .tc-page-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: .3rem;
    }
 
    .tc-meta {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }
 
    /* ---- SIDEBAR TOC ---- */
    .tc-toc {
      position: sticky;
      top: 24px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.25rem 1.25rem 1.4rem;
    }
 
    .tc-toc h6 {
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
      margin-bottom: 1rem;
    }
 
    .tc-toc ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
 
    .tc-toc ul li {
      margin-bottom: 4px;
    }
 
    .tc-toc ul li a {
      font-size: 13px;
      color: var(--ink);
      text-decoration: none;
      display: block;
      padding: 5px 8px;
      border-radius: 7px;
      transition: background .15s, color .15s;
    }
 
    .tc-toc ul li a:hover {
      background: var(--green-pale);
      color: var(--green-mid);
    }
 
    /* ---- CONTENT ---- */
    .tc-content h2 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-top: 2.5rem;
      margin-bottom: .75rem;
      padding-bottom: .4rem;
      border-bottom: 1px solid var(--border);
    }
 
    .tc-content h2:first-of-type {
      margin-top: 0;
    }
 
    .tc-content p {
      font-size: 15px;
      color: #2e3d24;
      line-height: 1.8;
      margin-bottom: 1rem;
    }
 
    .tc-content ul {
      padding-left: 1.2rem;
      margin-bottom: 1rem;
    }
 
    .tc-content ul li {
      font-size: 15px;
      color: #2e3d24;
      line-height: 1.8;
      margin-bottom: .3rem;
    }
 
    .tc-content a {
      color: var(--green-mid);
      text-decoration: underline;
    }
 
    .tc-notice {
      background: var(--green-pale);
      border-left: 3px solid var(--green-soft);
      border-radius: 0 8px 8px 0;
      padding: 1rem 1.2rem;
      font-size: 14px;
      color: var(--green-dark);
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    
    
    /* ─── PAGE SECTIONS ─── */
    .page-section { display: none; }
    .page-section.active { display: block; }
 
    /* ─── BLOG LIST PAGE ─── */
    .blog-hero {
      position: relative;
      padding: 100px 0 70px;
      overflow: hidden;
    }
    .blog-hero::before {
      content:'';
      position: absolute;
      top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(216,169,74,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .blog-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--primary-color);
      border: 1px solid var(--primary-30);
      background: var(--primary-10);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }
    .blog-hero-eyebrow::before {
      content:'';
      width: 6px; height: 6px;
      background: var(--primary-color);
      border-radius: 50%;
    }
    .blog-hero h1 {
      font-family: var(--display-font);
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }
    .blog-hero h1 em {
      font-style: italic;
      color: var(--primary-color);
    }
    .blog-hero p {
      font-size: 1.1rem;
      color: var(--white-55);
      max-width: 540px;
      line-height: 1.75;
    }
 
    /* Filter Tabs */
    .filter-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      padding: 32px 0 0;
    }
    .filter-tab {
      padding: 7px 20px;
      border-radius: 100px;
      border: 1px solid var(--border-color);
      background: transparent;
      color: var(--white-55);
      font-size: 0.82rem;
      font-weight: 600;
      font-family: var(--primary-font);
      letter-spacing: 0.06em;
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-tab:hover { border-color: var(--border-hover); color: var(--white-color); }
    .filter-tab.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--dark-color);
    }
 
    /* Divider */
    .section-divider {
      height: 1px;
      background: var(--border-color);
      margin: 0;
    }
 
    /* Featured Post */
    .featured-post {
      padding: 60px 0 40px;
    }
    .featured-post-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s;
      cursor: pointer;
    }
    .featured-post-inner:hover { border-color: var(--primary-30); }
    .featured-img-wrap {
      position: relative;
      min-height: 420px;
      background: linear-gradient(135deg, #0B3D2E 0%, #0a1f15 100%);
      overflow: hidden;
    }
    .featured-img-wrap .img-pattern {
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(45deg, rgba(216,169,74,0.04) 0, rgba(216,169,74,0.04) 1px, transparent 0, transparent 50%);
      background-size: 24px 24px;
    }
    .featured-img-wrap .img-icon {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 90px; height: 90px;
      background: var(--primary-10);
      border: 1px solid var(--primary-30);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem;
      color: var(--primary-color);
    }
    .featured-img-wrap .tag-overlay {
      position: absolute;
      top: 24px; left: 24px;
      padding: 6px 14px;
      background: var(--primary-color);
      color: var(--dark-color);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 100px;
    }
    .featured-content {
      padding: 48px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--white-3);
    }
    .featured-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.78rem;
      color: var(--white-50);
      font-weight: 500;
      margin-bottom: 20px;
    }
    .featured-meta .dot { width: 3px; height: 3px; background: var(--white-50); border-radius: 50%; }
    .featured-content h2 {
      font-family: var(--display-font);
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 700;
      color: var(--white-color);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .featured-content p {
      font-size: 0.95rem;
      color: var(--white-55);
      line-height: 1.75;
      margin-bottom: 32px;
    }
    .btn-read {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 1px solid var(--border-color);
      color: var(--white-color);
      font-family: var(--primary-font);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 12px 24px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
      align-self: flex-start;
      text-decoration: none;
    }
    .btn-read:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
    }
    .btn-read .arrow { transition: transform 0.2s; }
    .btn-read:hover .arrow { transform: translateX(4px); }
 
    /* Blog Grid */
    .blog-grid-section { padding: 60px 0; }
    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-label::after {
      content:'';
      flex: 1;
      height: 1px;
      background: var(--border-color);
    }
 
    .blog-card {
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      background: var(--white-3);
      transition: border-color 0.3s, transform 0.3s;
      cursor: pointer;
      height: 100%;
    }
    .blog-card:hover {
      border-color: var(--primary-30);
      transform: translateY(-4px);
    }
    .card-img-wrap {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    .card-img-bg {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      transition: transform 0.4s;
    }
    .blog-card:hover .card-img-bg { transform: scale(1.05); }
    .card-img-bg.green  { background: linear-gradient(135deg, #0B3D2E, #0d2e20); }
    .card-img-bg.amber  { background: linear-gradient(135deg, #3d2a0b, #2a1d06); }
    .card-img-bg.teal   { background: linear-gradient(135deg, #0b2d3d, #061d28); }
    .card-img-bg.olive  { background: linear-gradient(135deg, #1e2d0b, #131d06); }
    .card-img-bg.rust   { background: linear-gradient(135deg, #3d1a0b, #2a1006); }
    .card-img-bg.slate  { background: linear-gradient(135deg, #1a1e2d, #0e1120); }
    .card-tag {
      position: absolute;
      top: 14px; left: 14px;
      padding: 4px 12px;
      border: 1px solid var(--border-color);
      background: rgba(10,15,13,0.7);
      backdrop-filter: blur(8px);
      color: var(--white-55);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 100px;
    }
    .card-body-custom { padding: 24px; }
    .card-meta {
      font-size: 0.75rem;
      color: var(--white-50);
      font-weight: 500;
      margin-bottom: 10px;
      display: flex;
      gap: 10px;
    }
    .card-body-custom h3 {
      font-family: var(--display-font);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white-color);
      line-height: 1.35;
      margin-bottom: 10px;
    }
    .card-body-custom p {
      font-size: 0.85rem;
      color: var(--white-55);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .card-footer-custom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid var(--border-color);
    }
    .author-chip {
      display: flex; align-items: center; gap: 8px;
    }
    .author-avatar {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--secondary-color);
      border: 1px solid var(--primary-30);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--primary-color);
    }
    .author-name {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--white-55);
    }
    .read-more-link {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--primary-color);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .read-more-link:hover { gap: 10px; color: var(--primary-color); }
 
    /* Newsletter Bar */
    .newsletter-bar {
      border: 1px solid var(--border-color);
      border-radius: 16px;
      background: linear-gradient(135deg, var(--white-3) 0%, rgba(11,61,46,0.15) 100%);
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 80px;
    }
    .newsletter-bar h3 {
      font-family: var(--display-font);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white-color);
      margin-bottom: 6px;
    }
    .newsletter-bar p { font-size: 0.9rem; color: var(--white-55); margin: 0; }
    .newsletter-form {
      display: flex; gap: 10px; flex-wrap: wrap;
    }
    .newsletter-input {
      background: var(--white-8);
      border: 1px solid var(--border-color);
      color: var(--white-color);
      font-family: var(--primary-font);
      font-size: 0.9rem;
      padding: 12px 20px;
      border-radius: 6px;
      width: 260px;
      outline: none;
      transition: border-color 0.2s;
    }
    .newsletter-input::placeholder { color: var(--white-50); }
    .newsletter-input:focus { border-color: var(--primary-color); }
    .btn-primary-ufm {
      background: var(--primary-color);
      color: var(--dark-color);
      border: none;
      font-family: var(--primary-font);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 12px 24px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-primary-ufm:hover { background: var(--primary-hover); }
 
    /* ─── BLOG DETAIL PAGE ─── */
    .detail-hero {
      position: relative;
      padding: 80px 0 0;
      overflow: hidden;
    }
    .detail-hero::before {
      content:'';
      position: absolute;
      top: 0; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(11,61,46,0.4) 0%, transparent 70%);
      pointer-events: none;
    }
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white-55);
      text-decoration: none;
      margin-bottom: 40px;
      transition: color 0.2s;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--primary-font);
      padding: 0;
    }
    .back-btn:hover { color: var(--primary-color); }
 
    .detail-category {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.73rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--primary-color);
      border: 1px solid var(--primary-30);
      background: var(--primary-10);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .detail-title {
      font-family: var(--display-font);
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      font-weight: 800;
      color: var(--white-color);
      line-height: 1.15;
      margin-bottom: 28px;
      max-width: 820px;
    }
    .detail-title em { color: var(--primary-color); font-style: italic; }
    .detail-meta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 48px;
    }
    .detail-author {
      display: flex; align-items: center; gap: 12px;
    }
    .detail-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--secondary-color);
      border: 1.5px solid var(--primary-30);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--primary-color);
    }
    .detail-author-name {
      font-size: 0.9rem; font-weight: 700;
      color: var(--white-color);
      line-height: 1.2;
    }
    .detail-author-role {
      font-size: 0.75rem; color: var(--white-50);
    }
    .detail-meta-pills {
      display: flex; gap: 8px; flex-wrap: wrap; margin-left: auto;
    }
    .meta-pill {
      display: flex; align-items: center; gap: 6px;
      padding: 6px 14px;
      border: 1px solid var(--border-color);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--white-55);
    }
    .meta-pill i { font-size: 0.8rem; color: var(--primary-color); }
 
    /* Hero Image Block */
    .detail-hero-img {
      width: 100%;
      height: 420px;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      background: linear-gradient(135deg, #0B3D2E 0%, #0a1a12 100%);
      position: relative;
      overflow: hidden;
      margin-bottom: 60px;
      display: flex; align-items: center; justify-content: center;
    }
    .detail-hero-img .pattern {
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(45deg, rgba(216,169,74,0.04) 0, rgba(216,169,74,0.04) 1px, transparent 0, transparent 50%);
      background-size: 28px 28px;
    }
    .detail-hero-img .center-icon {
      position: relative;
      width: 100px; height: 100px;
      background: var(--primary-10);
      border: 1px solid var(--primary-30);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.8rem;
      color: var(--primary-color);
    }
    .detail-hero-img .caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 20px 32px;
      background: linear-gradient(to top, rgba(10,15,13,0.9) 0%, transparent 100%);
      font-size: 0.82rem;
      color: var(--white-55);
      font-style: italic;
    }
 
    /* Article Body */
    .article-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 60px;
      align-items: start;
      padding-bottom: 80px;
    }
    .article-body { min-width: 0; }
    .article-body .lead-text {
      font-size: 1.15rem;
      color: var(--white-color);
      line-height: 1.85;
      margin-bottom: 36px;
      font-weight: 400;
      border-left: 3px solid var(--primary-color);
      padding-left: 24px;
    }
    .article-body h2 {
      font-family: var(--display-font);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white-color);
      line-height: 1.25;
      margin: 44px 0 20px;
    }
    .article-body h3 {
      font-family: var(--primary-font);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white-color);
      margin: 32px 0 14px;
    }
    .article-body p {
      font-size: 0.97rem;
      color: var(--text-color);
      line-height: 1.85;
      margin-bottom: 22px;
    }
    .article-body strong { color: var(--white-color); }
    .stat-block {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin: 36px 0;
    }
    .stat-item {
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px 20px;
      background: var(--white-3);
      text-align: center;
      transition: border-color 0.2s;
    }
    .stat-item:hover { border-color: var(--primary-30); }
    .stat-number {
      font-family: var(--display-font);
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-color);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 0.78rem;
      color: var(--white-55);
      font-weight: 500;
      line-height: 1.4;
    }
    .pull-quote {
      border: 1px solid var(--primary-30);
      background: linear-gradient(135deg, var(--primary-10) 0%, transparent 100%);
      border-radius: 12px;
      padding: 36px 36px;
      margin: 40px 0;
      position: relative;
    }
    .pull-quote::before {
      content: '\201C';
      font-family: var(--display-font);
      font-size: 6rem;
      color: var(--primary-color);
      opacity: 0.3;
      position: absolute;
      top: -10px; left: 24px;
      line-height: 1;
    }
    .pull-quote p {
      font-family: var(--display-font);
      font-size: 1.3rem;
      font-style: italic;
      color: var(--white-color) !important;
      line-height: 1.6;
      margin: 0 !important;
      position: relative;
    }
    .pull-quote cite {
      display: block;
      font-size: 0.8rem;
      font-style: normal;
      font-weight: 600;
      color: var(--primary-color);
      margin-top: 16px;
      letter-spacing: 0.06em;
    }
    .article-img-block {
      margin: 36px 0;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
    }
    .article-img-block .img-placeholder {
      height: 260px;
      background: linear-gradient(135deg, #0d2e20, #0a1a12);
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
      position: relative;
    }
    .article-img-block .img-placeholder .grid-lines {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(216,169,74,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216,169,74,0.06) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .article-img-block figcaption {
      padding: 14px 20px;
      font-size: 0.78rem;
      color: var(--white-50);
      border-top: 1px solid var(--border-color);
      font-style: italic;
    }
    .key-points {
      margin: 32px 0;
      padding: 0;
      list-style: none;
    }
    .key-points li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.95rem;
      color: var(--text-color);
      line-height: 1.6;
    }
    .key-points li:last-child { border-bottom: none; }
    .key-points li .bullet {
      width: 24px; height: 24px;
      flex-shrink: 0;
      background: var(--primary-10);
      border: 1px solid var(--primary-30);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .key-points li .bullet i { font-size: 0.6rem; color: var(--primary-color); }
 
    /* Tags */
    .article-tags {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      padding: 32px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      margin: 40px 0;
    }
    .tag-label { font-size: 0.78rem; font-weight: 700; color: var(--white-55); text-transform: uppercase; letter-spacing: 0.1em; }
    .article-tag {
      padding: 5px 14px;
      border: 1px solid var(--border-color);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--white-55);
      transition: all 0.2s;
      cursor: pointer;
    }
    .article-tag:hover { border-color: var(--primary-color); color: var(--primary-color); }
 
    /* Share Row */
    .share-row {
      display: flex; align-items: center; gap: 12px; margin-bottom: 40px;
    }
    .share-label { font-size: 0.78rem; font-weight: 700; color: var(--white-55); text-transform: uppercase; letter-spacing: 0.1em; margin-right: 4px; }
    .share-btn {
      width: 38px; height: 38px;
      border: 1px solid var(--border-color);
      border-radius: 50%;
      background: transparent;
      color: var(--white-55);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 0.9rem;
    }
    .share-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
 
    /* Sidebar */
    .article-sidebar { position: sticky; top: 90px; }
    .sidebar-widget {
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 28px;
      background: var(--white-3);
      margin-bottom: 20px;
    }
    .sidebar-widget-title {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-color);
    }
    .toc-list { list-style: none; padding: 0; margin: 0; }
    .toc-list li { margin-bottom: 4px; }
    .toc-list a {
      font-size: 0.82rem;
      color: var(--white-55);
      text-decoration: none;
      padding: 6px 10px;
      display: block;
      border-radius: 6px;
      transition: all 0.2s;
      line-height: 1.4;
      border-left: 2px solid transparent;
    }
    .toc-list a:hover, .toc-list a.active {
      background: var(--white-5);
      color: var(--primary-color);
      border-left-color: var(--primary-color);
    }
    .related-mini-card {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px solid var(--border-color);
      cursor: pointer;
      transition: all 0.2s;
    }
    .related-mini-card:last-child { border-bottom: none; padding-bottom: 0; }
    .related-mini-card:hover .related-mini-title { color: var(--primary-color); }
    .related-thumb {
      width: 52px; height: 52px;
      border-radius: 8px;
      background: var(--secondary-color);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .related-mini-title {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--white-color);
      line-height: 1.4;
      margin-bottom: 4px;
      transition: color 0.2s;
    }
    .related-mini-date { font-size: 0.7rem; color: var(--white-50); }
 
    /* Author Bio */
    .author-bio-card {
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 36px;
      background: var(--white-3);
      display: flex;
      gap: 24px;
      align-items: flex-start;
      margin-bottom: 60px;
    }
    .author-bio-avatar {
      width: 64px; height: 64px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--secondary-color);
      border: 2px solid var(--primary-30);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--primary-color);
    }
    .author-bio-name { font-size: 1rem; font-weight: 700; color: var(--white-color); margin-bottom: 4px; }
    .author-bio-role { font-size: 0.78rem; color: var(--primary-color); font-weight: 600; margin-bottom: 12px; }
    .author-bio-text { font-size: 0.88rem; color: var(--white-55); line-height: 1.7; }
 
    /* More Articles */
    .more-articles { padding: 0 0 80px; }
    .more-articles-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 36px;
    }
    .more-articles-header h2 {
      font-family: var(--display-font);
      font-size: 2rem;
      font-weight: 700;
      color: var(--white-color);
    }
 
    /* Footer */
    .ufm-footer {
      border-top: 1px solid var(--border-color);
      padding: 48px 0 32px;
    }
    .footer-brand {
      font-family: var(--display-font);
      font-size: 1.4rem;
      color: var(--primary-color);
      margin-bottom: 10px;
    }
    .footer-tagline { font-size: 0.82rem; color: var(--white-50); margin-bottom: 24px; }
    .footer-links a {
      font-size: 0.8rem; color: var(--white-55); text-decoration: none;
      margin-right: 24px; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--primary-color); }
    .footer-copy { font-size: 0.75rem; color: var(--white-50); margin-top: 32px; }
 
    /* Responsive */
    @media (max-width: 991px) {
      .featured-post-inner { grid-template-columns: 1fr; }
      .featured-img-wrap { min-height: 240px; }
      .article-layout { grid-template-columns: 1fr; }
      .article-sidebar { display: none; }
      .newsletter-bar { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 767px) {
      .stat-block { grid-template-columns: 1fr 1fr; }
      .detail-meta-pills { margin-left: 0; }
      .featured-content { padding: 32px 24px; }
    }