

/* ============================================================
   ROOT
============================================================ */

:root{
    --green:#fea003;
    --green2:#ffc04d;

    --dark:#241900;
    --dark2:#3a2700;

    --text:#2b2418;
    --muted:#81745f;

    --soft:#fff8ec;
    --line:#f0dfc2;

    --white:#fff;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:auto;
}

body{
    margin:0;
    overflow-x:hidden;
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#f5f5f5;
}

body,
button,
input{
    font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

button{
    cursor:pointer;
}

.site-container{
    width:min(1320px,calc(100% - 50px));
    margin:auto;
}


/* ============================================================
   LOADER
============================================================ */

.loader{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
}

.loader-inner{
    text-align:center;
}

.loader-logo{
    width:210px;
    opacity:0;
    transform:translateY(15px);
}

.loader-line{
    width:200px;
    height:2px;
    margin:25px auto 0;
    overflow:hidden;
    background:#edf0ea;
}

.loader-line span{
    display:block;
    width:0;
    height:100%;
    background:var(--green);
}


/* ============================================================
   HEADER
============================================================ */

.header{
    position:fixed;
    z-index:1000;
    top:0;
    left:0;
    width:100%;
    transition:.35s;
}


.header-inner{
    height:92px;
    display:grid;
    grid-template-columns:210px 1fr auto;
    align-items:center;
}

.logo img{
    width:178px;
    max-height:65px;
    object-fit:contain;
}

.menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:32px;
}

.menu a{
    position:relative;
    color:#394332;
    font-size:10px;
    font-weight:500;
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--green);
    transition:.3s;
}

.menu a:hover::after{
    width:100%;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:8px;
}

.header-btn{
    position:relative;
    width:45px;
    height:45px;
    border:1px solid rgba(0,0,0,.07);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.8);
    color:#26331f;
    font-size:15px;
}

.cart-count{
    position:absolute;
    top:-2px;
    right:-1px;
    min-width:17px;
    height:17px;
    padding:0 4px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #fff;
    border-radius:30px;
    background:var(--green);
    color:#fff;
    font-size:7px;
}

.mobile-menu{
    display:none;
}


/* ============================================================
   HERO
============================================================ */

.hero{
    position:relative;
    height:100vh;
    min-height:720px;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:#f5f8f1;
}

.hero-bg{
    position:absolute;
    inset:0;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.08);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(247,250,244,.98) 0%,
            rgba(247,250,244,.94) 34%,
            rgba(247,250,244,.38) 61%,
            rgba(247,250,244,.05) 100%
        );
}

.hero-glow{
    position:absolute;
    left:-300px;
    bottom:-400px;
    width:800px;
    height:800px;
    border-radius:50%;
    border:130px solid rgba(120,184,42,.06);
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:710px;
    padding-top:60px;
}

.hero-label{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
    color:#587526;
    font-size:9px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-label::before{
    content:"";
    width:28px;
    height:1px;
    background:var(--green);
}

.hero h1{
    margin:0;
    font-size:clamp(55px,6vw,86px);
    line-height:.98;
    letter-spacing:-5px;
    font-weight:500;
}

.hero h1 span{
    display:block;
    color:var(--green);
}

.hero-description{
    max-width:540px;
    margin:25px 0 30px;
    color:#70796a;
    font-size:11px;
    line-height:1.9;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-green{
    height:50px;
    padding:0 22px;
    border:0;
    border-radius:4px;
    display:inline-flex;
    align-items:center;
    gap:13px;
    background:var(--green);
    color:#fff;
    font-size:9px;
    font-weight:600;
    transition:.3s;
}

.btn-green:hover{
    background:var(--dark);
    color:#fff;
}

.btn-light-custom{
    height:50px;
    padding:0 22px;
    border:1px solid #dce2d7;
    border-radius:4px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#36412f;
    font-size:9px;
    font-weight:500;
}

.hero-live{
    position:absolute;
    z-index:6;
    right:6%;
    bottom:60px;
    width:290px;
    padding:20px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:12px;
    background:rgba(22,34,14,.84);
    box-shadow:0 25px 80px rgba(20,30,10,.2);
    backdrop-filter:blur(15px);
    color:#fff;
}

.live-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.live-head span{
    font-size:8px;
    letter-spacing:1px;
    color:rgba(255,255,255,.55);
}

.live-status{
    display:flex;
    align-items:center;
    gap:6px;
    color:#b7e568 !important;
}

.live-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#9ed84d;
    animation:pulse 1.5s infinite;
}

.live-main{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
}

.live-value strong{
    display:block;
    font-size:34px;
    font-weight:400;
    letter-spacing:-2px;
}

.live-value small{
    color:rgba(255,255,255,.4);
    font-size:8px;
}

.sun-circle{
    width:58px;
    height:58px;
    border:1px solid rgba(158,216,77,.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#a8de5b;
    font-size:24px;
    box-shadow:0 0 40px rgba(158,216,77,.12);
}

.live-bars{
    height:55px;
    margin-top:20px;
    display:flex;
    align-items:flex-end;
    gap:5px;
}

.live-bars span{
    flex:1;
    border-radius:2px 2px 0 0;
    background:rgba(158,216,77,.25);
}

.live-bars span:nth-child(1){height:22%}
.live-bars span:nth-child(2){height:35%}
.live-bars span:nth-child(3){height:48%}
.live-bars span:nth-child(4){height:42%}
.live-bars span:nth-child(5){height:65%}
.live-bars span:nth-child(6){height:78%}
.live-bars span:nth-child(7){height:92%;background:#9ed84d}
.live-bars span:nth-child(8){height:73%}
.live-bars span:nth-child(9){height:55%}
.live-bars span:nth-child(10){height:40%}

.scroll-indicator{
    position:absolute;
    z-index:6;
    left:50%;
    bottom:28px;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    color:#78816f;
    font-size:7px;
    letter-spacing:1px;
}

.scroll-line{
    width:1px;
    height:35px;
    overflow:hidden;
    background:#ccd2c7;
}

.scroll-line span{
    display:block;
    width:100%;
    height:40%;
    background:var(--green);
    animation:scrollLine 1.8s infinite;
}


/* ============================================================
   MARQUEE
============================================================ */

.marquee{
    overflow:hidden;
    background:var(--dark);
    color:#fff;
}

.marquee-track{
    width:max-content;
    display:flex;
    align-items:center;
    padding:19px 0;
}

.marquee-item{
    display:flex;
    align-items:center;
    gap:28px;
    padding-right:28px;
    white-space:nowrap;
    color:rgba(255,255,255,.65);
    font-size:9px;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

.marquee-item i{
    color:var(--green2);
}


/* ============================================================
   GENERAL SECTION
============================================================ */

.section{
    position:relative;
    padding:120px 0;
}

.section-label{
    margin-bottom:12px;
    color:var(--green);
    font-size:8px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    margin:0;
    font-size:clamp(38px,4vw,58px);
    line-height:1.08;
    letter-spacing:-3px;
    font-weight:500;
}

.section-text{
    max-width:570px;
    margin:20px 0 0;
    color:var(--muted);
    font-size:10px;
    line-height:1.9;
}


/* ============================================================
   INTRO
============================================================ */

.intro-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:100px;
    align-items:start;
}

.intro-left{
    position:sticky;
    top:150px;
}

.intro-number{
    color:#d9ded5;
    font-size:80px;
    line-height:1;
    font-weight:300;
    letter-spacing:-6px;
}

.intro-right h2{
    max-width:850px;
    margin:0;
    font-size:clamp(38px,4.3vw,63px);
    line-height:1.12;
    letter-spacing:-3.5px;
    font-weight:400;
}

.intro-right h2 span{
    color:var(--green);
}

.intro-text{
    max-width:650px;
    margin:30px 0;
    color:#788170;
    font-size:11px;
    line-height:2;
}

.intro-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    margin-top:50px;
    background:var(--line);
    border:1px solid var(--line);
}

.intro-feature{
    min-height:180px;
    padding:28px;
    background:#fff;
}

.intro-feature i{
    display:block;
    margin-bottom:30px;
    color:var(--green);
    font-size:23px;
}

.intro-feature strong{
    display:block;
    margin-bottom:7px;
    font-size:11px;
    font-weight:600;
}

.intro-feature p{
    margin:0;
    color:#8a9284;
    font-size:8px;
    line-height:1.7;
}


/* ============================================================
   ENERGY FLOW
============================================================ */

.energy-flow-section{
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:var(--dark);
    color:#fff;
}

.energy-head{
    max-width:700px;
    margin-bottom:65px;
}

.energy-head .section-title span{
    color:var(--green2);
}

.energy-head .section-text{
    color:rgba(255,255,255,.45);
}

.energy-system{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:45px;
}

.energy-line{
    position:absolute;
    z-index:0;
    top:69px;
    left:10%;
    width:80%;
    height:2px;
    background:rgba(255,255,255,.08);
}

.energy-line-progress{
    width:0;
    height:100%;
    background:linear-gradient(90deg,#e7ff8a,var(--green));
    box-shadow:0 0 20px rgba(158,216,77,.6);
}

.energy-node{
    position:relative;
    z-index:2;
    text-align:center;
}

.energy-icon{
    position:relative;
    width:140px;
    height:140px;
    margin:0 auto 25px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#192712;
    color:#a7dc59;
    font-size:37px;
}

.energy-icon::after{
    content:"";
    position:absolute;
    inset:8px;
    border:1px dashed rgba(158,216,77,.2);
    border-radius:50%;
    animation:energyRingRotate 10s linear infinite;
}

@keyframes energyRingRotate{
    to{transform:rotate(360deg);}
}

.energy-node small{
    display:block;
    margin-bottom:7px;
    color:#6f8065;
    font-size:7px;
    letter-spacing:1.5px;
}

.energy-node strong{
    display:block;
    font-size:14px;
    font-weight:500;
}

.energy-node p{
    max-width:200px;
    margin:8px auto 0;
    color:rgba(255,255,255,.35);
    font-size:8px;
    line-height:1.6;
}


/* ============================================================
   STORAGE
============================================================ */

.storage-section{
    overflow:hidden;
    
}

.storage-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:90px;
    align-items:center;
}

.storage-copy h2 span{
    color:var(--green);
}

.storage-copy p{
    max-width:520px;
    margin:23px 0 35px;
    color:#747d6d;
    font-size:10px;
    line-height:1.9;
}

.storage-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #dce3d6;
    border-bottom:1px solid #dce3d6;
    margin-bottom:32px;
}

.storage-stat{
    padding:22px 16px;
    border-right:1px solid #dce3d6;
}

.storage-stat:first-child{
    padding-left:0;
}

.storage-stat:last-child{
    border:0;
}

.storage-stat strong{
    display:block;
    color:#344b18;
    font-size:25px;
    font-weight:500;
}

.storage-stat span{
    color:#92998d;
    font-size:7px;
}

.storage-visual{
    position:relative;
    min-height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.storage-orbit{
    position:absolute;
    width:550px;
    height:550px;
    border:1px solid rgba(120,184,42,.12);
    border-radius:50%;
}

.storage-orbit::before{
    content:"";
    position:absolute;
    inset:60px;
    border:1px dashed rgba(120,184,42,.18);
    border-radius:50%;
}

.battery-device{
    position:relative;
    z-index:5;
    width:260px;
    height:500px;
    border-radius:22px;
    background:
        linear-gradient(145deg,#374033,#141b12);
    box-shadow:
        0 60px 100px rgba(31,45,22,.25),
        inset 0 1px rgba(255,255,255,.12);
}

.battery-top{
    position:absolute;
    top:-11px;
    left:50%;
    width:95px;
    height:11px;
    transform:translateX(-50%);
    border-radius:6px 6px 0 0;
    background:#465040;
}

.battery-screen{
    position:absolute;
    top:40px;
    left:25px;
    right:25px;
    padding:20px;
    border-radius:11px;
    background:#0f160d;
}

.battery-screen small{
    display:block;
    color:#63705b;
    font-size:7px;
    letter-spacing:1px;
}

.battery-percentage{
    margin:7px 0;
    color:#a8df56;
    font-size:45px;
    font-weight:300;
    letter-spacing:-2px;
}

.battery-progress{
    height:5px;
    overflow:hidden;
    border-radius:10px;
    background:#263020;
}

.battery-progress span{
    display:block;
    width:0;
    height:100%;
    border-radius:10px;
    background:var(--green2);
    box-shadow:0 0 15px rgba(158,216,77,.5);
}

.battery-info{
    margin-top:10px;
    color:#5e6958;
    font-size:7px;
}

.battery-brand{
    position:absolute;
    left:0;
    bottom:45px;
    width:100%;
    text-align:center;
    color:#8bc73e;
    font-size:22px;
    font-weight:600;
    letter-spacing:2px;
}

.battery-brand small{
    display:block;
    color:#fff;
    font-size:7px;
    letter-spacing:5px;
}

.float-card{
    position:absolute;
    z-index:6;
    width:185px;
    padding:16px;
    border:1px solid rgba(255,255,255,.8);
    border-radius:11px;
    background:rgba(255,255,255,.8);
    box-shadow:0 20px 50px rgba(50,70,35,.1);
    backdrop-filter:blur(12px);
}

.float-card.sun{
    left:0;
    top:120px;
}

.float-card.house{
    right:0;
    bottom:120px;
}

.float-card-head{
    display:flex;
    align-items:center;
    gap:10px;
}

.float-icon{
    width:36px;
    height:36px;
    flex:0 0 auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf5e4;
    color:var(--green);
}

.float-card small{
    display:block;
    color:#929a8b;
    font-size:6px;
    letter-spacing:1px;
}

.float-card strong{
    display:block;
    margin-top:2px;
    font-size:12px;
    font-weight:500;
}

.energy-particle{
    position:absolute;
    z-index:4;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#a6dd51;
    box-shadow:0 0 15px #9bd344;
}


/* ============================================================
   CALCULATOR
============================================================ */



.calculator-box{
    overflow:hidden;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    border:1px solid var(--line);
    background:#fff;
    box-shadow:0 25px 80px rgba(30,50,20,.06);
}

.calculator-copy{
    padding:65px;
    background:var(--dark);
    color:#fff;
}

.calculator-copy h2{
    margin:0;
    font-size:42px;
    line-height:1.15;
    letter-spacing:-2.5px;
    font-weight:500;
}

.calculator-copy h2 span{
    color:var(--green2);
}

.calculator-copy p{
    margin:18px 0 0;
    color:rgba(255,255,255,.45);
    font-size:9px;
    line-height:1.8;
}

.calculator-form{
    padding:65px;
}

.form-label-custom{
    display:block;
    margin-bottom:9px;
    color:#6f7869;
    font-size:8px;
    font-weight:500;
}

.bill-input{
    position:relative;
}

.bill-input input{
    width:100%;
    height:62px;
    padding:0 80px 0 20px;
    border:1px solid #dce2d7;
    outline:none;
    font-size:20px;
    font-weight:500;
}

.bill-input input:focus{
    border-color:var(--green);
}

.bill-input span{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    color:#8b9385;
    font-size:10px;
}

.calc-results{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:25px;
}

.calc-result{
    padding:20px;
    background:#f5f8f1;
}

.calc-result small{
    display:block;
    margin-bottom:6px;
    color:#90988a;
    font-size:7px;
}

.calc-result strong{
    color:#31441d;
    font-size:17px;
    font-weight:500;
}


/* ============================================================
   PRODUCTS
============================================================ */

.products-section{
    background:#f6f8f3;
}

.products-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:45px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.product-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border:1px solid #e4e8df;
    transition:.35s;
    opacity:1;
    visibility:visible;
    transform:none;
}

.product-card:hover{
    transform:translateY(-7px);
    box-shadow:0 25px 60px rgba(34,53,22,.09);
}

.product-image{
    position:relative;
    height:285px;
    overflow:hidden;
    background:#eef2e9;
}

.product-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.07);
    filter:brightness(.92);
}

.product-badge{
    position:absolute;
    z-index:3;
    top:15px;
    left:15px;
    padding:6px 9px;
    border-radius:3px;
    background:var(--green);
    color:#fff;
    font-size:7px;
    font-weight:600;
}

.product-add{
    position:absolute;
    z-index:4;
    left:14px;
    right:14px;
    bottom:14px;
    height:43px;
    border:0;
    border-radius:4px;
    background:var(--dark);
    color:#fff;
    font-size:9px;
    opacity:0;
    transform:translateY(12px);
    transition:.3s;
}

.product-card:hover .product-add{
    opacity:1;
    transform:translateY(0);
}

.product-add:hover{
    background:var(--green);
}

.product-content{
    padding:20px;
}

.product-category{
    color:var(--green);
    font-size:7px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.product-content h3{
    margin:7px 0 15px;
    font-size:14px;
    font-weight:500;
}

.product-spec{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
    border-top:1px solid #edf0e9;
    border-bottom:1px solid #edf0e9;
    color:#858d7f;
    font-size:8px;
}

.product-spec strong{
    color:#384432;
    font-weight:500;
}

.product-price{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    margin-top:16px;
}

.old-price{
    display:block;
    color:#a5aba0;
    font-size:8px;
    text-decoration:line-through;
}

.price{
    display:block;
    margin-top:2px;
    font-size:16px;
    font-weight:600;
}

.stock{
    display:flex;
    align-items:center;
    gap:5px;
    color:#65913f;
    font-size:7px;
}

.stock::before{
    content:"";
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--green);
}


/* ============================================================
   BIG IMAGE / PARALLAX
============================================================ */

.parallax-section{
    position:relative;
    height:80vh;
    min-height:650px;
    overflow:hidden;
    display:flex;
    align-items:center;
    color:#fff;
}

.parallax-bg{
    position:absolute;
    inset:-15%;
}

.parallax-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.parallax-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(17,29,10,.9),
        rgba(17,29,10,.2)
    );
}

.parallax-content{
    position:relative;
    z-index:3;
    max-width:720px;
}

.parallax-content h2{
    margin:0;
    font-size:clamp(45px,5vw,72px);
    line-height:1.03;
    letter-spacing:-4px;
    font-weight:500;
}

.parallax-content h2 span{
    color:#b0e45f;
}

.parallax-content p{
    max-width:500px;
    margin:22px 0 28px;
    color:rgba(255,255,255,.55);
    font-size:10px;
    line-height:1.9;
}


/* ============================================================
   CONTACT
============================================================ */

.contact{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:100px;
}

.contact-details{
    margin-top:40px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 0;
    border-bottom:1px solid var(--line);
}

.contact-icon{
    width:45px;
    height:45px;
    flex:0 0 auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf5e4;
    color:var(--green);
}

.contact-item small{
    display:block;
    margin-bottom:4px;
    color:#959c90;
    font-size:7px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.contact-item strong{
    display:block;
    font-size:10px;
    font-weight:500;
}

.contact-panel{
    padding:50px;
    background:#f5f8f1;
}

.contact-panel h3{
    margin:0 0 25px;
    font-size:25px;
    font-weight:500;
    letter-spacing:-1px;
}

.contact-panel input,
.contact-panel textarea{
    width:100%;
    border:0;
    border-bottom:1px solid #d5dccf;
    outline:none;
    background:transparent;
    font-size:9px;
}

.contact-panel input{
    height:55px;
}

.contact-panel textarea{
    height:100px;
    padding-top:20px;
    resize:none;
}

.contact-panel input:focus,
.contact-panel textarea:focus{
    border-color:var(--green);
}


/* ============================================================
   FOOTER
============================================================ */

.footer{
    padding:70px 0 25px;
    background:var(--dark);
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr .7fr .7fr 1fr;
    gap:60px;
}

.footer-logo{
    width:185px;
   
}

.footer-brand p{
    max-width:340px;
    margin:20px 0;
    color:rgba(255,255,255,.35);
    font-size:9px;
    line-height:1.8;
}

.footer h6{
    margin:0 0 20px;
    color:rgba(255,255,255,.35);
    font-size:7px;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.footer a{
    display:block;
    width:max-content;
    margin:10px 0;
    color:rgba(255,255,255,.65);
    font-size:9px;
}

.footer a:hover{
    color:var(--green2);
}

.footer-contact{
    color:rgba(255,255,255,.6);
    font-size:9px;
    line-height:2;
}

.footer-bottom{
    margin-top:55px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:rgba(255,255,255,.25);
    font-size:7px;
}


/* ============================================================
   CART
============================================================ */

.cart-offcanvas{
    width:min(450px,100%) !important;
}

.cart-header{
    padding:24px;
    border-bottom:1px solid var(--line);
}

.cart-header h5{
    margin:0;
    font-size:15px;
    font-weight:500;
}

.cart-items{
    padding:0 24px;
}

.cart-item{
    display:flex;
    gap:13px;
    padding:18px 0;
    border-bottom:1px solid var(--line);
}

.cart-item > img{
    width:78px;
    height:85px;
    object-fit:cover;
}

.cart-item-content{
    flex:1;
}

.cart-item-head{
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.cart-item-head h6{
    margin:0;
    font-size:10px;
    font-weight:500;
}

.cart-item-head button{
    border:0;
    padding:0;
    background:none;
    color:#aaa;
    font-size:9px;
}

.cart-item-price{
    margin-top:5px;
    color:#90978b;
    font-size:8px;
}

.cart-item-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:12px;
}

.quantity-box{
    height:28px;
    display:flex;
    border:1px solid var(--line);
}

.quantity-box button{
    width:27px;
    border:0;
    background:#fff;
}

.quantity-box span{
    width:27px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:8px;
}

.cart-item-bottom strong{
    font-size:10px;
}

.empty-cart{
    padding:90px 20px;
    text-align:center;
}

.empty-cart-icon{
    width:65px;
    height:65px;
    margin:0 auto 15px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf5e4;
    color:var(--green);
    font-size:22px;
}

.empty-cart h5{
    font-size:12px;
}

.empty-cart p{
    color:#90988b;
    font-size:8px;
}

.cart-footer{
    padding:20px 24px;
    border-top:1px solid var(--line);
}

.cart-total{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.cart-total span{
    font-size:9px;
}

.cart-total strong{
    font-size:17px;
}

.checkout-btn{
    width:100%;
    height:47px;
    border:0;
    border-radius:4px;
    background:var(--green);
    color:#fff;
    font-size:9px;
    font-weight:600;
}


/* ============================================================
   TOAST
============================================================ */

.site-toast{
    position:fixed;
    z-index:9999;
    right:25px;
    bottom:25px;
    padding:14px 18px;
    border-radius:5px;
    display:flex;
    align-items:center;
    gap:9px;
    background:var(--dark);
    color:#fff;
    font-size:9px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
}

.site-toast i{
    color:var(--green2);
}

.site-toast.show{
    opacity:1;
    visibility:visible;
    transform:none;
}


/* ============================================================
   ANIMATIONS
============================================================ */

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(158,216,77,.5)}
    70%{box-shadow:0 0 0 10px rgba(158,216,77,0)}
    100%{box-shadow:0 0 0 0 rgba(158,216,77,0)}
}

@keyframes scrollLine{
    0%{transform:translateY(-100%)}
    100%{transform:translateY(250%)}
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:1100px){

    .menu{
        gap:18px;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .storage-grid{
        gap:30px;
    }
}

@media(max-width:991px){

    .header-inner{
        grid-template-columns:1fr auto;
    }

    .menu{
        display:none;
    }

    .mobile-menu{
        display:flex;
    }

    .hero-live{
        display:none;
    }

    .hero-overlay{
        background:rgba(247,250,244,.88);
    }

    .intro-grid,
    .storage-grid,
    .calculator-box,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .intro-left{
        position:relative;
        top:auto;
    }

    .energy-system{
        grid-template-columns:1fr 1fr;
    }

    .energy-line{
        display:none;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:767px){

    .site-container{
        width:calc(100% - 30px);
    }

    .header-inner{
        height:75px;
    }

    .logo img{
        width:145px;
    }

    .hero{
        min-height:700px;
    }

    .hero h1{
        font-size:49px;
        letter-spacing:-3px;
    }

    .hero-buttons{
        align-items:flex-start;
        flex-direction:column;
    }

    .section{
        padding:80px 0;
    }

    .section-title{
        letter-spacing:-2px;
    }

    .intro-grid{
        gap:30px;
    }

    .intro-features{
        grid-template-columns:1fr;
    }

    .intro-feature{
        min-height:auto;
    }

    .energy-system{
        grid-template-columns:1fr 1fr;
        gap:30px 10px;
    }

    .energy-icon{
        width:100px;
        height:100px;
        font-size:28px;
    }

    .storage-visual{
        min-height:570px;
        transform:scale(.85);
    }

    .storage-stats{
        grid-template-columns:repeat(3,1fr);
    }

    .calculator-copy,
    .calculator-form{
        padding:35px 25px;
    }

    .calculator-copy h2{
        font-size:32px;
    }

    .calc-results{
        grid-template-columns:1fr;
    }

    .products-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .product-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .product-image{
        height:220px;
    }

    .product-add{
        opacity:1;
        transform:none;
    }

    .product-content{
        padding:14px;
    }

    .parallax-section{
        min-height:600px;
    }

    .parallax-content h2{
        font-size:45px;
        letter-spacing:-3px;
    }

    .contact-panel{
        padding:30px 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
        gap:7px;
    }
}

@media(max-width:480px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .product-image{
        height:310px;
    }

    .float-card{
        width:150px;
    }

    .float-card.sun{
        left:-25px;
    }

    .float-card.house{
        right:-25px;
    }
}


/* JS/CDN fallback: site content and products remain usable even if animation libraries fail. */
html.no-gsap .loader{display:none !important;}
html.no-gsap .product-card{opacity:1 !important;visibility:visible !important;transform:none !important;}


/* ============================================================
   TYPOGRAPHY SCALE — READABILITY UPDATE
   Küçük kalan 6–11px metinler okunabilir seviyeye çıkarıldı.
============================================================ */

body{
    font-size:16px;
    line-height:1.65;
}

/* Header */
.menu a{font-size:15px;}
.cart-count{font-size:10px;}

/* Hero */
.hero-label{font-size:13px;}
.hero-description{font-size:16px;line-height:1.75;}
.btn-green,
.btn-light-custom{font-size:14px;}
.live-head span{font-size:12px;}
.live-value small{font-size:12px;}
.scroll-indicator{font-size:11px;}

/* Marquee */
.marquee-item{font-size:13px;}

/* General sections */
.section-label{font-size:12px;}
.section-text{font-size:16px;line-height:1.8;}

/* Intro */
.intro-text{font-size:16px;line-height:1.85;}
.intro-feature strong{font-size:16px;}
.intro-feature p{font-size:14px;line-height:1.7;}

/* Energy flow */
.energy-node small{font-size:12px;}
.energy-node strong{font-size:17px;}
.energy-node p{font-size:14px;line-height:1.7;}

/* Storage */
.storage-copy p{font-size:16px;line-height:1.8;}
.storage-stat span{font-size:12px;}
.battery-screen small{font-size:11px;}
.battery-info{font-size:11px;}
.battery-brand small{font-size:10px;}
.float-card small{font-size:11px;}
.float-card strong{font-size:15px;}

/* Calculator */
.calculator-copy p{font-size:15px;line-height:1.75;}
.form-label-custom{font-size:14px;}
.bill-input span{font-size:14px;}
.calc-result small{font-size:13px;}
.calc-result strong{font-size:20px;}

/* Products */
.product-badge{font-size:12px;}
.product-add{font-size:14px;}
.product-category{font-size:12px;}
.product-content h3{font-size:18px;line-height:1.4;}
.product-spec{font-size:14px;}
.old-price{font-size:14px;}
.price{font-size:20px;}
.stock{font-size:13px;}

/* Parallax */
.parallax-content p{font-size:16px;line-height:1.8;}

/* Contact */
.contact-item small{font-size:12px;}
.contact-item strong{font-size:15px;}
.contact-panel input,
.contact-panel textarea{font-size:15px;}

/* Footer */
.footer-brand p{font-size:14px;line-height:1.75;}
.footer h6 {
    font-size: 20px;
    color: white;
}
.footer a{font-size:14px;}
.footer-contact{font-size:14px;}
.footer-bottom{font-size:12px;}

/* Cart */
.cart-header h5{font-size:18px;}
.cart-item-head h6{font-size:15px;line-height:1.4;}
.cart-item-head button{font-size:13px;}
.cart-item-price{font-size:13px;}
.quantity-box span{font-size:13px;}
.cart-item-bottom strong{font-size:15px;}
.empty-cart h5{font-size:16px;}
.empty-cart p{font-size:14px;}
.cart-total span{font-size:14px;}
.cart-total strong{font-size:20px;}
.checkout-btn{font-size:14px;}
.site-toast{font-size:14px;}

@media(max-width:767px){
    body{font-size:15px;}
    .menu a{font-size:14px;}
    .hero-description,
    .section-text,
    .intro-text,
    .storage-copy p,
    .parallax-content p{font-size:15px;}
    .product-content h3{font-size:17px;}
    .footer a,
    .footer-contact,
    .footer-brand p{font-size:14px;}
}



/* ============================================================
   PAGE BREADCRUMB
============================================================ */

.page-breadcrumb{
    position:relative;
    overflow:hidden;
    padding:155px 0 60px;
    background:var(--soft);
    border-bottom:1px solid var(--line);
}

.breadcrumb-glow{
    position:absolute;
    right:-180px;
    top:-260px;
    width:520px;
    height:520px;
    border:95px solid rgba(120,184,42,.07);
    border-radius:50%;
}

.page-breadcrumb-inner{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
}

.page-breadcrumb h1{
    margin:0;
    color:var(--dark);
    font-size:clamp(38px,4vw,58px);
    line-height:1.08;
    letter-spacing:-3px;
    font-weight:500;
}

.breadcrumb-nav{
    display:flex;
    align-items:center;
    gap:10px;
    padding-bottom:7px;
    white-space:nowrap;
}

.breadcrumb-nav a,
.breadcrumb-nav span{
    color:var(--muted);
    font-size:9px;
    font-weight:500;
}

.breadcrumb-nav a{
    transition:.25s;
}

.breadcrumb-nav a:hover{
    color:var(--green);
}

.breadcrumb-nav span{
    color:var(--green);
}

.breadcrumb-nav i{
    color:#bbc3b5;
    font-size:8px;
}


/* ============================================================
   CORPORATE
============================================================ */

.corporate-about{
    background:#fff;
}

.corporate-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:90px;
    align-items:center;
}

.corporate-image{
    position:relative;
}

.corporate-image-main{
    height:570px;
    overflow:hidden;
    border-radius:4px;
}

.corporate-image-main img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.corporate-image-badge{
    position:absolute;
    right:-30px;
    bottom:35px;
    width:160px;
    min-height:145px;
    padding:25px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    background:var(--green);
    color:#fff;
}

.corporate-image-badge i{
    margin-bottom:24px;
    font-size:24px;
}

.corporate-image-badge strong{
    display:block;
    font-size:18px;
    font-weight:500;
}

.corporate-image-badge span{
    margin-top:4px;
    font-size:8px;
    line-height:1.6;
    opacity:.8;
}

.corporate-copy .section-title{
    max-width:680px;
}

.corporate-copy .section-title span{
    color:var(--green);
}

.corporate-copy > p{
    max-width:590px;
    margin:25px 0 0;
    color:var(--muted);
    font-size:10px;
    line-height:1.9;
}

.corporate-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    margin-top:38px;
    border:1px solid var(--line);
    background:var(--line);
}

.corporate-point{
    min-height:150px;
    padding:25px;
    background:#fff;
}

.corporate-point i{
    display:block;
    margin-bottom:24px;
    color:var(--green);
    font-size:22px;
}

.corporate-point strong{
    display:block;
    margin-bottom:7px;
    font-size:11px;
    font-weight:600;
}

.corporate-point p{
    margin:0;
    color:#858e7f;
    font-size:8px;
    line-height:1.7;
}


/* ============================================================
   CORPORATE VALUES
============================================================ */

.corporate-values{
    background:var(--dark);
    color:#fff;
}

.corporate-values-head{
    max-width:700px;
    margin-bottom:55px;
}

.corporate-values-head .section-title span{
    color:var(--green2);
}

.corporate-values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:rgba(255,255,255,.08);
}

.corporate-value{
    min-height:255px;
    padding:35px;
    background:var(--dark);
    transition:.3s;
}

.corporate-value:hover{
    background:var(--dark2);
}

.corporate-value-number{
    margin-bottom:55px;
    color:var(--green2);
    font-size:8px;
    letter-spacing:1.5px;
}

.corporate-value i{
    display:block;
    margin-bottom:20px;
    color:var(--green2);
    font-size:25px;
}

.corporate-value h3{
    margin:0 0 10px;
    font-size:16px;
    font-weight:500;
}

.corporate-value p{
    max-width:300px;
    margin:0;
    color:rgba(255,255,255,.45);
    font-size:9px;
    line-height:1.8;
}


/* ============================================================
   CORPORATE CTA
============================================================ */

.corporate-cta{
    padding:80px 0;
    background:var(--soft);
}

.corporate-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.corporate-cta h2{
    max-width:670px;
    margin:0;
    color:var(--dark);
    font-size:clamp(31px,3.3vw,47px);
    line-height:1.1;
    letter-spacing:-2.5px;
    font-weight:500;
}

.corporate-cta h2 span{
    color:var(--green);
}


/* ============================================================
   CORPORATE RESPONSIVE
============================================================ */

@media(max-width:991px){

    .page-breadcrumb{
        padding:135px 0 45px;
    }

    .page-breadcrumb-inner{
        align-items:flex-start;
        flex-direction:column;
        gap:20px;
    }

    .corporate-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .corporate-image-main{
        height:480px;
    }

    .corporate-image-badge{
        right:20px;
    }

    .corporate-values-grid{
        grid-template-columns:1fr;
    }

    .corporate-value{
        min-height:auto;
    }

    .corporate-value-number{
        margin-bottom:35px;
    }

    .corporate-cta-inner{
        align-items:flex-start;
        flex-direction:column;
    }

}

@media(max-width:576px){

    .page-breadcrumb{
        padding:120px 0 38px;
    }

    .breadcrumb-nav{
        flex-wrap:wrap;
    }

    .corporate-image-main{
        height:370px;
    }

    .corporate-image-badge{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        min-height:auto;
    }

    .corporate-points{
        grid-template-columns:1fr;
    }

}


.corporate-value{
    min-height:280px;
    padding:38px;
    background:var(--dark);
    transition:.3s;
}

.corporate-value:hover{
    background:var(--dark2);
}

.corporate-value-number{
    margin-bottom:50px;
    color:var(--green2);
    font-size:11px;
    font-weight:600;
    letter-spacing:1.5px;
}

.corporate-value i{
    display:block;
    margin-bottom:22px;
    color:var(--green2);
    font-size:28px;
}

.corporate-value h3{
    margin:0 0 12px;
    font-size:18px;
    line-height:1.4;
    font-weight:600;
}

.corporate-value p{
    max-width:340px;
    margin:0;
    color:rgba(255,255,255,.58);
    font-size:11px;
    line-height:1.9;
}

.corporate-point strong{
    display:block;
    margin-bottom:9px;
    font-size:14px;
    font-weight:600;
}

.corporate-point p{
    margin:0;
    color:#858e7f;
    font-size:11px;
    line-height:1.8;
}


.corporate-copy > p{
    max-width:590px;
    margin:25px 0 0;
    color:var(--muted);
    font-size:12px;
    line-height:1.9;
}




/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-page{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:90px;
    align-items:start;
}

.contact-info .section-title span{
    color:var(--green);
}

.contact-info > p{
    max-width:520px;
    margin:25px 0 40px;
    color:var(--muted);
    font-size:12px;
    line-height:1.9;
}

.contact-items{
    display:flex;
    flex-direction:column;
    border-top:1px solid var(--line);
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:22px 0;
    border-bottom:1px solid var(--line);
}

.contact-item > i{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    background:var(--soft);
    color:var(--green);
    font-size:18px;
}

.contact-item small{
    display:block;
    margin-bottom:4px;
    color:#969e91;
    font-size:10px;
}

.contact-item a,
.contact-item span{
    color:var(--dark);
    font-size:14px;
    font-weight:500;
}

.contact-item a:hover{
    color:var(--green);
}


/* FORM */

.contact-form-box{
    padding:42px;
    background:var(--soft);
    border:1px solid var(--line);
}

.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.form-group.full,
.contact-form-grid .full{
    grid-column:1 / -1;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:var(--dark);
    font-size:12px;
    font-weight:500;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #dfe5da;
    border-radius:3px;
    outline:none;
    background:#fff;
    color:var(--text);
    font-family:'Poppins',sans-serif;
    font-size:12px;
    transition:.25s;
}

.form-group input{
    height:52px;
    padding:0 16px;
}

.form-group textarea{
    height:145px;
    padding:15px 16px;
    resize:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--green);
}


/* RESPONSIVE */

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

}

@media(max-width:576px){

    .contact-form-box{
        padding:25px;
    }

    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .form-group.full,
    .contact-form-grid .full{
        grid-column:auto;
    }

}


/* ============================================================
   PROJECTS PAGE
============================================================ */

.projects-page{
    background:#fff;
}

.projects-head{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:90px;
    align-items:end;
    margin-bottom:55px;
}

.projects-head .section-title span{
    color:var(--green);
}

.projects-head > p{
    max-width:460px;
    margin:0 0 7px auto;
    color:var(--muted);
    font-size:12px;
    line-height:1.9;
}


/* GRID */

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.project-card{
    overflow:hidden;
    border:1px solid var(--line);
    background:#fff;
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 60px rgba(31,50,20,.09);
}

.project-image{
    position:relative;
    height:300px;
    overflow:hidden;
    background:var(--soft);
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.project-card:hover .project-image img{
    transform:scale(1.05);
}

.project-category{
    position:absolute;
    top:18px;
    left:18px;
    padding:9px 13px;
    background:var(--green);
    color:#fff;
    font-size:10px;
    font-weight:600;
}

.project-content{
    padding:24px;
}

.project-content h3{
    margin:0 0 18px;
    color:var(--dark);
    font-size:18px;
    line-height:1.45;
    font-weight:600;
}

.project-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding-top:17px;
    border-top:1px solid var(--line);
}

.project-meta span{
    display:flex;
    align-items:center;
    gap:7px;
    color:var(--muted);
    font-size:11px;
}

.project-meta i{
    color:var(--green);
    font-size:14px;
}


/* CTA */

.projects-cta{
    padding:75px 0;
    background:var(--soft);
}

.projects-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.projects-cta h2{
    max-width:700px;
    margin:0;
    color:var(--dark);
    font-size:clamp(31px,3.3vw,47px);
    line-height:1.12;
    letter-spacing:-2.5px;
    font-weight:500;
}

.projects-cta h2 span{
    color:var(--green);
}


/* RESPONSIVE */

@media(max-width:991px){

    .projects-head{
        grid-template-columns:1fr;
        gap:25px;
    }

    .projects-head > p{
        margin:0;
    }

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .projects-cta-inner{
        align-items:flex-start;
        flex-direction:column;
    }

}

@media(max-width:650px){

    .projects-grid{
        grid-template-columns:1fr;
    }

    .project-image{
        height:260px;
    }

}



/* ============================================================
   PROJECT DETAIL
============================================================ */

.project-detail{
    background:#fff;
}

.project-detail-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

.project-detail-image{
    height:560px;
    overflow:hidden;
    background:var(--soft);
}

.project-detail-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.project-detail-content .section-title{
    margin-bottom:24px;
}

.project-detail-content p{
    max-width:560px;
    margin:0 0 35px;
    color:var(--muted);
    font-size:12px;
    line-height:1.9;
}

.project-detail-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    margin-bottom:35px;
    border-top:1px solid var(--line);
    border-left:1px solid var(--line);
}

.project-detail-info-item{
    padding:22px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.project-detail-info-item small{
    display:block;
    margin-bottom:6px;
    color:#92998d;
    font-size:10px;
}

.project-detail-info-item strong{
    color:var(--dark);
    font-size:15px;
    font-weight:600;
}


/* BOTTOM */

.project-detail-bottom{
    padding:75px 0;
    background:var(--dark);
    color:#fff;
}

.project-detail-bottom-grid{
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:80px;
    align-items:end;
}

.project-detail-bottom h2{
    max-width:700px;
    margin:0;
    font-size:clamp(32px,3.6vw,50px);
    line-height:1.1;
    letter-spacing:-2.5px;
    font-weight:500;
}

.project-detail-bottom h2 span{
    color:var(--green2);
}

.project-detail-bottom p{
    max-width:470px;
    margin:0;
    color:rgba(255,255,255,.55);
    font-size:12px;
    line-height:1.9;
}


/* RESPONSIVE */

@media(max-width:991px){

    .project-detail-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .project-detail-image{
        height:450px;
    }

    .project-detail-bottom-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

}

@media(max-width:576px){

    .project-detail-image{
        height:320px;
    }

    .project-detail-info{
        grid-template-columns:1fr;
    }

}





/* ============================================================
   PRODUCTS PAGE
============================================================ */



.products-page-head{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:80px;
    align-items:end;
    margin-bottom:45px;
}

.products-page-head .section-title span{
    color:var(--green);
}

.products-page-head > p{
    max-width:480px;
    margin:0 0 7px auto;
    color:var(--muted);
    font-size:12px;
    line-height:1.9;
}


/* ============================================================
   FILTER
============================================================ */

.product-filter{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:35px;
    padding-bottom:20px;
    border-bottom:1px solid var(--line);
}

.product-filter button{
    min-height:44px;
    padding:0 18px;
    border:1px solid var(--line);
    border-radius:3px;
    background:#fff;
    color:var(--dark);
    font-size:12px;
    font-weight:500;
    transition:.25s;
}

.product-filter button:hover,
.product-filter button.active{
    border-color:var(--green);
    background:var(--green);
    color:#fff;
}


/* ============================================================
   PRODUCT GRID
============================================================ */

.products-list-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.products-list-card{
    overflow:hidden;
    border:1px solid var(--line);
    background:#fff;
    transition:.35s;
}

.products-list-card:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 65px rgba(31,50,20,.09);
}


/* IMAGE */

.products-list-image{
    position:relative;
    display:block;
  
    overflow:hidden;
    background:var(--soft);
}

.products-list-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.products-list-card:hover
.products-list-image img{
    transform:scale(1.05);
}

.products-list-badge{
    position:absolute;
    top:17px;
    left:17px;
    padding:9px 13px;
    background:var(--green);
    color:#fff;
    font-size:10px;
    font-weight:600;
}


/* CONTENT */

.products-list-content{
    padding:24px;
}

.products-list-category{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:10px;
    color:var(--green);
    font-size:11px;
    font-weight:600;
}

.products-list-category span{
    color:var(--muted);
    font-weight:500;
}

.products-list-title{
    display:block;
    min-height:52px;
    color:var(--dark);
    font-size:18px;
    line-height:1.45;
    font-weight:600;
    transition:.25s;
}

.products-list-title:hover{
    color:var(--green);
}


/* PRICE */

.products-list-bottom{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-top:0px;
    padding-top:0px;
  
}

.products-list-price del{
    display:block;
    margin-bottom:3px;
    color:#a4aaa0;
    font-size:11px;
}

.products-list-price strong{
    display:block;
    color:var(--dark);
    font-size:18px;
    line-height:1;
    font-weight:600;
}


/* ADD CART */

.product-add-button{
    width:48px;
    height:48px;
    padding:0;
    border:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    background:var(--green);
    color:#fff;
    font-size:19px;
    transition:.3s;
}

.product-add-button:hover{
    background:var(--dark);
    transform:rotate(-5deg);
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px){

    .products-page-head{
        grid-template-columns:1fr;
        gap:25px;
    }

    .products-page-head > p{
        margin:0;
    }

    .products-list-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:650px){

    .products-list-grid{
        grid-template-columns:1fr;
    }

    .products-list-image{
        height:300px;
    }

    .product-filter{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:15px;
    }

    .product-filter button{
        flex-shrink:0;
    }

}


.product-add-button{
    min-width:145px;
    height:48px;
    padding:0 20px;
    border:0;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    flex-shrink:0;
    background:var(--green);
    color:#fff;
    font-size:12px;
    font-weight:600;
    transition:.3s;
}

.product-add-button i{
    font-size:17px;
}

.product-add-button:hover{
    background:var(--dark);
    color:#fff;
    transform:translateY(-2px);
}


.products-list-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-top:0px;
    padding-top:0px;
  
}




/* ============================================================
   PRODUCT DETAIL
============================================================ */

.product-detail-page{
    background:#fff;
}

.product-detail-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:85px;
    align-items:center;
}


/* IMAGE */

.product-detail-image{
    position:relative;
    height:600px;
    overflow:hidden;
    background:var(--soft);
}

.product-detail-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-detail-badge{
    position:absolute;
    top:22px;
    left:22px;
    padding:10px 15px;
    background:var(--green);
    color:#fff;
    font-size:11px;
    font-weight:600;
}


/* CONTENT */

.product-detail-category{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
    color:var(--green);
    font-size:12px;
    font-weight:600;
}

.product-detail-category span{
    padding-left:15px;
    border-left:1px solid var(--line);
    color:var(--muted);
}

.product-detail-content h1{
    max-width:650px;
    margin:0;
    color:var(--dark);
    font-size:clamp(40px,4.5vw,62px);
    line-height:1.08;
    letter-spacing:-3px;
    font-weight:500;
}

.product-detail-description{
    max-width:590px;
    margin:25px 0;
    color:var(--muted);
    font-size:13px;
    line-height:1.9;
}


/* PRICE */

.product-detail-price{
    padding:25px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.product-detail-price del{
    display:block;
    margin-bottom:4px;
    color:#9ba394;
    font-size:13px;
}

.product-detail-price strong{
    display:inline-block;
    color:var(--dark);
    font-size:30px;
    line-height:1;
    font-weight:600;
}

.product-detail-price small{
    margin-left:10px;
    color:var(--muted);
    font-size:11px;
}


/* FEATURES */

.product-detail-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 25px;
    padding:27px 0;
}

.product-detail-features div{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--text);
    font-size:12px;
}

.product-detail-features i{
    flex-shrink:0;
    color:var(--green);
    font-size:15px;
}


/* ACTIONS */

.product-detail-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.product-detail-cart,
.product-detail-offer{
    height:54px;
    padding:0 24px;
    border-radius:4px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:12px;
    font-weight:600;
    transition:.3s;
}

.product-detail-cart{
    min-width:180px;
    border:0;
    background:var(--green);
    color:#fff;
}

.product-detail-cart i{
    font-size:18px;
}

.product-detail-cart:hover{
    background:var(--dark);
    transform:translateY(-2px);
}

.product-detail-offer{
    border:1px solid var(--line);
    background:#fff;
    color:var(--dark);
}

.product-detail-offer:hover{
    border-color:var(--green);
    color:var(--green);
}


/* SAFE */

.product-detail-safe{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:22px;
    margin-top:25px;
}

.product-detail-safe span{
    display:flex;
    align-items:center;
    gap:7px;
    color:var(--muted);
    font-size:11px;
}

.product-detail-safe i{
    color:var(--green);
    font-size:14px;
}


/* ============================================================
   PRODUCT INFO
============================================================ */

.product-info-section{
    padding:80px 0;
    background:var(--dark);
    color:#fff;
}

.product-info-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:90px;
    align-items:center;
}

.product-info-section h2{
    max-width:550px;
    margin:0;
    font-size:clamp(32px,3.6vw,50px);
    line-height:1.1;
    letter-spacing:-2.5px;
    font-weight:500;
}

.product-info-section h2 span{
    color:var(--green2);
}

.product-specs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid rgba(255,255,255,.12);
    border-bottom:1px solid rgba(255,255,255,.12);
}

.product-specs > div{
    padding:25px;
    border-right:1px solid rgba(255,255,255,.12);
}

.product-specs > div:last-child{
    border-right:0;
}

.product-specs span{
    display:block;
    margin-bottom:7px;
    color:rgba(255,255,255,.48);
    font-size:11px;
}

.product-specs strong{
    display:block;
    color:#fff;
    font-size:14px;
    line-height:1.5;
    font-weight:500;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px){

    .product-detail-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .product-detail-image{
        height:500px;
    }

    .product-info-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

}


@media(max-width:650px){

    .product-detail-image{
        height:360px;
    }

    .product-detail-content h1{
        font-size:38px;
        letter-spacing:-2px;
    }

    .product-detail-features{
        grid-template-columns:1fr;
    }

    .product-detail-actions{
        align-items:stretch;
        flex-direction:column;
    }

    .product-detail-cart,
    .product-detail-offer{
        width:100%;
    }

    .product-specs{
        grid-template-columns:1fr;
    }

    .product-specs > div{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.12);
    }

    .product-specs > div:last-child{
        border-bottom:0;
    }

}



.intro-right {
    
    min-width: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    
    
}



/* ============================================================
   ENERGY FLOW - LIGHT CARD STYLE
============================================================ */

.energy-flow-section{
    min-height:auto;
    padding:50px 0 50px;
    overflow:hidden;
    display:block;

    background:#f5f4f2;
    color:#1d1d1f;
}


/* BAŞLIK ALANI */

.energy-flow-section .energy-head{
    max-width:900px;
    margin:0 auto 55px;
    text-align:center;
}

.energy-flow-section .section-label{
    margin-bottom:16px;
    color:var(--green);
    font-size:11px;
    font-weight:600;
    letter-spacing:1.5px;
}

.energy-flow-section .section-title{
    color:#1d1d1f;
    font-size:clamp(44px, 5vw, 68px);
    line-height:1.05;
    font-weight:600;
    letter-spacing:-3px;
}

.energy-flow-section .section-title span{
    color:var(--green);
}

.energy-flow-section .section-text{
    max-width:700px;
    margin:22px auto 0;
    color:#777;
    font-size:15px;
    line-height:1.8;
}


/* BEYAZ BÜYÜK KUTU */

.energy-flow-section .energy-system{
    position:relative;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:40px;

    padding:70px 55px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fcfdfb 100%
        );

    border:1px solid rgba(0,0,0,.035);
    border-radius:34px;

    box-shadow:
        0 28px 70px rgba(35,45,25,.09);

    overflow:hidden;
}


/* BAĞLANTI ÇİZGİSİ */

.energy-flow-section .energy-line{
    position:absolute;
    z-index:0;

    top:139px;
    left:12%;

    width:76%;
    height:2px;

    background:#e8ece4;
}

.energy-flow-section .energy-line-progress{
    height:100%;

    background:
        linear-gradient(
            90deg,
            #b8df72,
            var(--green)
        );

    box-shadow:
        0 0 16px rgba(120,184,42,.30);
}


/* NODE */

.energy-flow-section .energy-node{
    position:relative;
    z-index:2;
    text-align:center;
}


/* ICON */

.energy-flow-section .energy-icon{
    width:140px;
    height:140px;

    margin:0 auto 26px;

    border:1px solid #e4eadf;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f5f9ef;

    color:var(--green);
    font-size:37px;

    box-shadow:
        0 14px 35px rgba(55,80,35,.07);
}

.energy-flow-section .energy-icon::after{
    border-color:rgba(120,184,42,.22);
}


/* YAZILAR */

.energy-flow-section .energy-node small{
    display:block;

    margin-bottom:8px;

    color:#8a9384;

    font-size:11px;
    font-weight:600;
    letter-spacing:1.3px;
}

.energy-flow-section .energy-node strong{
    display:block;

    color:#1d1d1f;

    font-size:17px;
    line-height:1.4;
    font-weight:600;
}

.energy-flow-section .energy-node p{
    max-width:220px;

    margin:10px auto 0;

    color:#777f72;

    font-size:14px;
    line-height:1.7;
}


/* TABLET */

@media(max-width:991px){

    .energy-flow-section{
        padding:90px 0;
    }

    .energy-flow-section .energy-system{
        grid-template-columns:repeat(2, 1fr);
        gap:50px 25px;

        padding:55px 35px;
        border-radius:28px;
    }

    .energy-flow-section .energy-line{
        display:none;
    }
}


/* MOBILE */

@media(max-width:600px){

    .energy-flow-section{
        padding:70px 0;
    }

    .energy-flow-section .energy-head{
        margin-bottom:40px;
    }

    .energy-flow-section .section-title{
        font-size:40px;
        letter-spacing:-2px;
    }

    .energy-flow-section .section-text{
        font-size:15px;
    }

    .energy-flow-section .energy-system{
        grid-template-columns:1fr;

        gap:40px;

        padding:45px 20px;

        border-radius:24px;
    }

    .energy-flow-section .energy-icon{
        width:120px;
        height:120px;

        font-size:32px;
    }

    .energy-flow-section .energy-node strong{
        font-size:17px;
    }

    .energy-flow-section .energy-node p{
        font-size:14px;
    }
}


/* ============================================================
   CALCULATOR SECTION - SOFT GRADIENT BG
============================================================ */

.calculator-section{
    position:relative;

    border-radius:42px;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(214,31,31,.075),
            transparent 27%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(20,20,20,.035),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7f7f5 100%
        ) !important;

    border:1px solid rgba(20,20,20,.055);

    box-shadow:
        0 34px 90px rgba(20,20,20,.08),
        inset 0 1px 0 rgba(255,255,255,1);

    text-align:center;
}




section#storage {
    padding: 0;
}



/* ============================================================
   CALCULATOR SECTION
============================================================ */

.calculator-section{
    background:#f5f5f5 !important;
    padding: 0;

    /* bunlar artık section'da olmayacak */
    border:0;
    border-radius:0;
    box-shadow:none;
    overflow:visible;
}


/* EFEKTLİ ANA KUTU */

.calculator-section > .site-container{
    position:relative;
    overflow:hidden;

    padding:70px 60px;

    border-radius:42px;

    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(120,184,42,.10),
            transparent 27%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(20,20,20,.035),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7f7f5 100%
        ) !important;

    border:1px solid rgba(20,20,20,.055);

    box-shadow:
        0 34px 90px rgba(20,20,20,.08),
        inset 0 1px 0 rgba(255,255,255,1);
}


/* İÇERİDEKİ HESAP MAKİNESİ */

.calculator-section .calculator-box{
    position:relative;
    z-index:2;

    border-radius:28px;
    overflow:hidden;

    border:1px solid rgba(20,20,20,.05);

    box-shadow:
        0 18px 55px rgba(20,20,20,.06);
}


/* TABLET */

@media(max-width:991px){

    .calculator-section{
        padding:80px 0;
    }

    .calculator-section > .site-container{
        padding:45px 30px;
        border-radius:32px;
    }

}


/* MOBILE */

@media(max-width:600px){

    .calculator-section{
        padding:55px 0;
    }

    .calculator-section > .site-container{
        width:calc(100% - 24px);

        padding:30px 15px;

        border-radius:26px;
    }

}



/* ============================================================
   ABOUT - MODERN CENTERED
============================================================ */

.about-modern-section{
    padding:50px 0;
    background:#f5f4f2;
}


/* BÜYÜK BEYAZ KUTU */

.about-modern-box{
    position:relative;
    overflow:hidden;

    padding:75px 65px 65px;

    border-radius:34px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fcfdfb 100%
        );

    border:1px solid rgba(0,0,0,.035);

    box-shadow:
        0 28px 70px rgba(35,45,25,.09);
}


/* BAŞLIK */

.about-modern-head{
    max-width:900px;
    margin:0 auto 55px;
    text-align:center;
}

.about-modern-head .section-label{
    margin-bottom:16px;

    color:var(--green);

    font-size:11px;
    font-weight:600;
    letter-spacing:1.5px;
}


/* ANA BAŞLIK */

.about-modern-head h2{
    margin:0;

    color:#1d1d1f;

    font-size:clamp(44px,5vw,68px);
    line-height:1.05;

    font-weight:600;
    letter-spacing:-3px;
}

.about-modern-head h2 span{
    display:block;
    color:var(--green);
}


/* AÇIKLAMA */

.about-modern-head .intro-text{
    max-width:760px;

    margin:24px auto 0;

    color:#777;

    font-size:15px;
    line-height:1.8;
}


/* 3 ÖZELLİK */

.about-modern-section .intro-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:16px;

    margin-top:0;

    background:transparent;
    border:0;
}


/* KART */

.about-modern-section .intro-feature{
    min-height:210px;

    padding:35px 30px;

    border:1px solid rgba(20,20,20,.055);
    border-radius:22px;

    background:#fff;

    text-align:center;

    box-shadow:
        0 14px 35px rgba(20,20,20,.04);

    transition:.3s ease;
}

.about-modern-section .intro-feature:hover{
    transform:translateY(-5px);

    box-shadow:
        0 22px 50px rgba(20,20,20,.07);
}


/* ICON */

.about-modern-section .intro-feature i{
    width:62px;
    height:62px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f2f7eb;

    color:var(--green);

    font-size:25px;
}


/* KART BAŞLIĞI */

.about-modern-section .intro-feature strong{
    display:block;

    margin-bottom:10px;

    color:#1d1d1f;

    font-size:17px;
    font-weight:600;
}


/* KART AÇIKLAMASI */

.about-modern-section .intro-feature p{
    max-width:280px;

    margin:0 auto;

    color:#7a8274;

    font-size:14px;
    line-height:1.7;
}


/* TABLET */

@media(max-width:991px){

    .about-modern-box{
        padding:55px 35px;
    }

}


/* MOBILE */

@media(max-width:767px){

    .about-modern-section{
        padding:40px 0;
    }

    .about-modern-box{
        padding:45px 18px 25px;
        border-radius:26px;
    }

    .about-modern-head{
        margin-bottom:35px;
    }

    .about-modern-head h2{
        font-size:40px;
        letter-spacing:-2px;
    }

    .about-modern-head .intro-text{
        font-size:15px;
    }

    .about-modern-section .intro-features{
        grid-template-columns:1fr;
        gap:12px;
    }

    .about-modern-section .intro-feature{
        min-height:auto;
    }

}


/* ============================================================
   ABOUT - YENİ DÜZEN
============================================================ */

#about{
    padding:50px 0;
    background:#f5f4f2;
}


/* ANA KUTU */

#about > .site-container{
    position:relative;
    overflow:hidden;

    padding:75px 65px 65px;

    border-radius:34px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fcfdfb 100%
        );

    border:1px solid rgba(0,0,0,.035);

    box-shadow:
        0 28px 70px rgba(35,45,25,.09);
}


/* ARTIK TEK KOLON */

#about .intro-right{
    width:100%;
    max-width:none;

    text-align:center;
}


/* LABEL */

#about .section-label{
    margin-bottom:16px;

    color:var(--green);

    font-size:11px;
    font-weight:600;
    letter-spacing:1.5px;
}


/* BAŞLIK */

#about .intro-right h2{
    max-width:950px;

    margin:0 auto;

    color:#1d1d1f;

    font-size:clamp(44px,5vw,68px);
    line-height:1.05;

    font-weight:600;
    letter-spacing:-3px;
}

#about .intro-right h2 span{
    display:block;
    color:var(--green);
}


/* AÇIKLAMA */

#about .intro-text{
    max-width:760px;

    margin:24px auto 0;

    color:#777;

    font-size:15px;
    line-height:1.8;
}


/* ============================================================
   INTRO FEATURES
============================================================ */

#about .intro-features{
    display:grid !important;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    width:100%;

    margin-top:55px;

    background:transparent;
    border:0;
}


/* KART */

#about .intro-feature{
    min-height:220px;

    padding:35px 30px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    background:#fff;

    border:1px solid rgba(20,20,20,.055);
    border-radius:22px;

    text-align:center;

    box-shadow:
        0 14px 35px rgba(20,20,20,.045);

    transition:.3s ease;
}

#about .intro-feature:hover{
    transform:translateY(-6px);

    box-shadow:
        0 25px 55px rgba(20,20,20,.08);
}


/* ICON */

#about .intro-feature i{
    width:64px;
    height:64px;

    margin:0 0 24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#f1f7e9;

    color:var(--green);

    font-size:26px;
}


/* BAŞLIK */

#about .intro-feature strong{
    display:block;

    margin-bottom:10px;

    color:#1d1d1f;

    font-size:17px;
    font-weight:600;
}


/* AÇIKLAMA */

#about .intro-feature p{
    max-width:270px;

    margin:0;

    color:#7a8274;

    font-size:14px;
    line-height:1.7;
}


/* TABLET */

@media(max-width:991px){

    #about > .site-container{
        padding:55px 35px;
    }

}


/* MOBILE */

@media(max-width:767px){

    #about{
        padding:40px 0;
    }

    #about > .site-container{
        width:calc(100% - 24px);

        padding:45px 18px 25px;

        border-radius:26px;
    }

    #about .intro-right h2{
        font-size:40px;
        letter-spacing:-2px;
    }

    #about .intro-features{
        grid-template-columns:1fr;
        gap:14px;

        margin-top:35px;
    }

    #about .intro-feature{
        min-height:auto;
    }

}


#about > .site-container{
    position:relative;
    overflow:hidden;

    padding:75px 65px 65px;

    border-radius:42px;

    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(120,184,42,.09),
            transparent 27%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(20,20,20,.035),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7f7f5 100%
        );

    border:1px solid rgba(20,20,20,.055);

    box-shadow:
        0 34px 90px rgba(20,20,20,.08),
        inset 0 1px 0 rgba(255,255,255,1);
}


/* ============================================================
   ABOUT - FINAL FIX
============================================================ */

#about{
    padding:50px 0 !important;
    background:#f5f4f2 !important;
}


/* ANA CONTAINER */

#about > .site-container{
    position:relative !important;

    width:min(1320px, calc(100% - 50px)) !important;
    margin:0 auto !important;

    padding:75px 65px 65px !important;

    overflow:visible !important;

    border-radius:42px !important;

    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(120,184,42,.09),
            transparent 27%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(20,20,20,.035),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7f7f5 100%
        ) !important;

    border:1px solid rgba(20,20,20,.055) !important;

    box-shadow:
        0 34px 90px rgba(20,20,20,.08),
        inset 0 1px 0 rgba(255,255,255,1) !important;
}


/* İÇ ALAN */

#about .intro-right{
    width:100% !important;
    max-width:100% !important;

    display:block !important;

    text-align:center !important;

    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}


/* BAŞLIK */

#about .intro-right h2{
    width:100% !important;
    max-width:950px !important;

    margin:0 auto !important;

    font-size:clamp(44px,5vw,68px) !important;
    line-height:1.05 !important;
    letter-spacing:-3px !important;

    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}

#about .intro-right h2 span{
    display:block !important;
    color:var(--green) !important;
}


/* AÇIKLAMA */

#about .intro-text{
    max-width:760px !important;

    margin:24px auto 0 !important;

    color:#777 !important;

    font-size:15px !important;
    line-height:1.8 !important;

    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}


/* ============================================================
   3 KART
============================================================ */

#about .intro-features{
    width:100% !important;

    display:grid !important;

    grid-template-columns:
        repeat(3, minmax(0,1fr)) !important;

    gap:18px !important;

    margin:55px 0 0 !important;
    padding:0 !important;

    background:transparent !important;
    border:0 !important;

    overflow:visible !important;

    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}


/* EN ÖNEMLİ KISIM */

#about .intro-features > .intro-feature{
    position:relative !important;

    width:100% !important;
    min-width:0 !important;
    min-height:220px !important;

    padding:35px 30px !important;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;

    background:#fff !important;

    border:1px solid rgba(20,20,20,.055) !important;
    border-radius:22px !important;

    box-shadow:
        0 14px 35px rgba(20,20,20,.045) !important;

    text-align:center !important;

    /* GSAP / JS NE VERİRSE VERSİN GÖRÜNSÜN */
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    filter:none !important;
}


/* 1 - 2 - 3 TÜM KARTLAR */

#about .intro-feature:nth-child(1),
#about .intro-feature:nth-child(2),
#about .intro-feature:nth-child(3){
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    display:flex !important;
}


/* ICON */

#about .intro-feature i{
    width:64px !important;
    height:64px !important;

    margin:0 0 24px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    border-radius:50% !important;

    background:#f1f7e9 !important;

    color:var(--green) !important;

    font-size:26px !important;

    opacity:1 !important;
}


/* KART BAŞLIK */

#about .intro-feature strong{
    margin-bottom:10px !important;

    color:#1d1d1f !important;

    font-size:17px !important;
    font-weight:600 !important;

    opacity:1 !important;
}


/* KART YAZI */

#about .intro-feature p{
    max-width:280px !important;

    margin:0 auto !important;

    color:#7a8274 !important;

    font-size:14px !important;
    line-height:1.7 !important;

    opacity:1 !important;
}


/* TABLET */

@media(max-width:991px){

    #about > .site-container{
        padding:55px 35px !important;
    }

}


/* MOBILE */

@media(max-width:767px){

    #about > .site-container{
        width:calc(100% - 24px) !important;
        padding:45px 18px !important;
        border-radius:26px !important;
    }

    #about .intro-features{
        grid-template-columns:1fr !important;
        gap:14px !important;
        margin-top:35px !important;
    }

}

div#mobileMenu {
    width: 68%;
}