1/* =====================================
   GLOBAL STYLE
===================================== */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



html{
    scroll-behavior:smooth;
}



body{

    font-family:
    "Inter",
    "Helvetica Neue",
    Arial,
    sans-serif;

    color:#222;

    background:#ffffff;

    line-height:1.7;

}



img{

    width:100%;

    display:block;

}



a{

    text-decoration:none;

    color:inherit;

}



.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}



.section{

    padding:100px 0;

}




/* =====================================
   HEADER
===================================== */


.header{

    position:absolute;

    width:100%;

    top:0;

    left:0;

    z-index:20;

}



.nav-container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.logo{

    font-size:24px;

    font-weight:700;

    color:#111;

}



.nav-btn{

    background:#111;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-size:15px;

    transition:.3s;

}



.nav-btn:hover{

    opacity:.8;

}






/* =====================================
   BUTTON
===================================== */


.primary-btn{


    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#c58b3a;

    color:white;

    padding:18px 38px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.3s;


}



.primary-btn:hover{

    transform:translateY(-3px);

}



.secondary-btn{


    display:inline-flex;

    padding:17px 35px;

    border-radius:50px;

    border:1px solid #222;

    margin-left:15px;

    font-weight:600;

}






/* =====================================
   HERO SECTION
===================================== */


.hero{


    padding-top:160px;

    padding-bottom:120px;

    background:

    linear-gradient(
    180deg,
    #faf7f2,
    #ffffff
    );


}




.hero-grid{


    display:grid;

    grid-template-columns:

    1fr 1fr;

    gap:70px;

    align-items:center;


}




.tag{


    color:#b17b32;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;


}




.hero h1{


    font-size:60px;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-1px;

    margin-bottom:30px;


}




.hero-desc{


    font-size:20px;

    color:#555;

    max-width:580px;

    margin-bottom:40px;


}





.hero-buttons{


    margin-bottom:45px;


}







.hero-trust{


    display:flex;

    gap:35px;


}




.hero-trust div{


    display:flex;

    flex-direction:column;


}



.hero-trust strong{


    font-size:35px;

    line-height:1;

}



.hero-trust span{


    font-size:14px;

    color:#777;


}







.hero-image{


    position:relative;

}





.hero-image>img{


    border-radius:25px;

    height:650px;

    object-fit:cover;


}





.photo-card{


    position:absolute;

    bottom:-30px;

    left:-40px;


    width:190px;

    background:white;

    padding:15px;

    border-radius:20px;


    box-shadow:

    0 20px 50px rgba(0,0,0,.15);


}



.photo-card img{


    height:140px;

    object-fit:cover;

    border-radius:15px;


}



.photo-card span{


    display:block;

    text-align:center;

    font-size:14px;

    margin-top:10px;


}









/* =====================================
   SECTION TITLE
===================================== */


.section-title{


    text-align:center;

    max-width:750px;

    margin:0 auto 70px;


}



.section-title h2{


    font-size:45px;

    line-height:1.25;

    margin-bottom:20px;


}



.section-title p:last-child{


    color:#666;

}









/* =====================================
   ABOUT SECTION
===================================== */


.about{

    background:#fff;

}



.about-grid{


    display:grid;

    grid-template-columns:

    1fr 1fr;

    gap:70px;

    align-items:center;


}



.about-image img{


    border-radius:25px;

    height:550px;

    object-fit:cover;


}




.about-content p{


    font-size:18px;

    color:#555;

    margin-bottom:20px;


}









/* =====================================
   NUMBERS SECTION
===================================== */


.numbers{


    background:#111;

    padding:70px 0;

    color:#fff;


}



.numbers-grid{


    display:grid;

    grid-template-columns:

    repeat(4,1fr);

    text-align:center;

    gap:30px;


}



.number-item h3{


    font-size:55px;

    line-height:1;

    margin-bottom:15px;


}



.number-item p{


    color:#ccc;

    font-size:16px;


}








/* =====================================
   MEMORY SECTION
===================================== */


.memory{

    background:#faf8f4;


}



.memory .container{


    display:grid;

    grid-template-columns:

    1fr 1fr;

    gap:70px;

    align-items:center;


}




.memory-content h2{


    font-size:45px;

    line-height:1.25;

    margin-bottom:30px;


}



.memory-content p{


    font-size:18px;

    color:#555;

    margin-bottom:20px;


}



.memory-image img{


    height:550px;

    object-fit:cover;

    border-radius:25px;


}






/* =====================================
   BENEFIT CARDS
===================================== */


.benefit-grid{


    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:30px;


}



.benefit-card{


    padding:40px 30px;

    border-radius:25px;

    background:#fff;

    box-shadow:

    0 15px 40px rgba(0,0,0,.08);


}



.icon{


    font-size:40px;

    margin-bottom:20px;


}



.benefit-card h3{


    font-size:24px;

    margin-bottom:15px;


}



.benefit-card p{


    color:#666;

}
/* =====================================
   CUSTOMIZATION SCENARIOS
===================================== */


.scenarios{

    background:#faf8f4;

}



.scenario-grid{

    display:grid;

    grid-template-columns:

    repeat(2,1fr);

    gap:40px;

}



.scenario-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:

    0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}



.scenario-card:hover{

    transform:translateY(-8px);

}



.scenario-card img{

    height:630px;

    object-fit:cover;

}



.scenario-content{

    padding:35px;

}



.scenario-content h3{

    font-size:28px;

    margin-bottom:20px;

}



.scenario-content p{

    color:#666;

    margin-bottom:15px;

    font-size:17px;

}








/* =====================================
   PHOTO REQUIREMENTS
===================================== */


.photo-grid{

    display:grid;

    grid-template-columns:

    1fr 1fr;

    gap:70px;

    align-items:center;

}



.photo-content h2{

    font-size:45px;

    line-height:1.25;

    margin-bottom:30px;

}



.photo-content p{

    font-size:18px;

    color:#555;

    margin-bottom:20px;

}



.photo-content ul{

    list-style:none;

    margin:30px 0;

}



.photo-content li{

    margin-bottom:15px;

    font-size:17px;

}



.photo-image img{

    height:550px;

    object-fit:cover;

    border-radius:25px;

}








/* =====================================
   PRODUCTION PROCESS
===================================== */


.process{

    background:#111;

    color:white;

}



.process .section-title h2{

    color:white;

}



.process .section-title p:last-child{

    color:#ccc;

}



.process-grid{

    display:grid;

    grid-template-columns:

    repeat(5,1fr);

    gap:25px;

}



.process-item{

    padding:35px 25px;

    background:#1d1d1d;

    border-radius:20px;

}



.step-number{

    font-size:45px;

    font-weight:800;

    color:#c58b3a;

    margin-bottom:20px;

}



.process-item h3{

    font-size:22px;

    margin-bottom:15px;

}



.process-item p{

    color:#ccc;

    font-size:15px;

}








/* =====================================
   QUALITY SECTION
===================================== */


.quality-grid{

    display:grid;

    grid-template-columns:

    1fr 1fr;

    gap:70px;

    align-items:center;

}



.quality-image img{

    height:946px;

    object-fit:cover;

    border-radius:25px;

}



.quality-content h2{

    font-size:45px;

    line-height:1.25;

    margin-bottom:30px;

}



.quality-content>p{

    font-size:18px;

    color:#555;

}



.quality-list{

    margin-top:35px;

}



.quality-list div{

    margin-bottom:25px;

}



.quality-list h4{

    font-size:20px;

}



.quality-list p{

    color:#666;

}









/* =====================================
   FACTORY SHOWCASE
===================================== */


.factory{

    background:#faf8f4;

}



.factory-grid{

    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:30px;

}



.factory-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

}



.factory-card img{

    height:300px;

    object-fit:cover;

}



.factory-card h3{

    padding:25px 25px 10px;

    font-size:25px;

}



.factory-card p{

    padding:0 25px 30px;

    color:#666;

}








/* =====================================
   PRICING
===================================== */


.pricing-grid{

    display:grid;

    grid-template-columns:

    repeat(4,1fr);

    gap:25px;

}



.price-card{

    background:white;

    border-radius:25px;

    padding:40px 25px;

    text-align:center;

    box-shadow:

    0 15px 40px rgba(0,0,0,.08);

    position:relative;

}



.price-card.popular{

    border:3px solid #c58b3a;

}



.popular-tag{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:#c58b3a;

    color:white;

    padding:6px 20px;

    border-radius:30px;

    font-size:13px;

}



.price-card h3{

    font-size:28px;

}



.price{

    font-size:50px;

    font-weight:800;

    margin:20px 0;

}



.price-card ul{

    list-style:none;

    margin-bottom:30px;

}



.price-card li{

    margin-bottom:12px;

    color:#666;

}



.price-card a{

    display:block;

    background:#111;

    color:white;

    padding:14px;

    border-radius:50px;

}









/* =====================================
   GUARANTEE
===================================== */


.guarantee{

    background:#faf8f4;

}



.guarantee-box{

    display:grid;

    grid-template-columns:

    1fr 400px;

    gap:60px;

    align-items:center;

}



.guarantee-box img{

    border-radius:25px;

}







/* =====================================
   FAQ
===================================== */


.faq-list{

    max-width:850px;

    margin:auto;

}



.faq-item{

    border-bottom:1px solid #ddd;

}



.faq-item button{

    width:100%;

    padding:25px 0;

    border:none;

    background:none;

    display:flex;

    justify-content:space-between;

    font-size:20px;

    cursor:pointer;

}



.faq-answer{

    display:none;

    padding-bottom:25px;

    color:#666;

}









/* =====================================
   FINAL CTA
===================================== */


.contact{

    background:#111;

    color:white;

    text-align:center;

}



.contact-box h2{

    font-size:50px;

    line-height:1.2;

    margin-bottom:25px;

}



.contact-box p{

    color:#ccc;

    font-size:20px;

    margin-bottom:40px;

}







footer{

    background:#000;

    color:#aaa;

    text-align:center;

    padding:30px;

}








/* =====================================
   FLOATING WHATSAPP
===================================== */


.whatsapp-float{


    position:fixed;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);


    display:flex;

    align-items:center;

    gap:12px;


    background:#25D366;

    color:white;


    padding:15px 35px;


    border-radius:50px;


    z-index:999;


    box-shadow:

    0 10px 30px rgba(0,0,0,.25);


    font-weight:700;


}



.whatsapp-float img{


    width:30px;

    height:30px;


}







/* =====================================
   MOBILE RESPONSIVE
===================================== */


@media(max-width:900px){


.container{

    width:92%;

}



.section{

    padding:70px 0;

}




.hero-grid,
.about-grid,
.memory .container,
.photo-grid,
.quality-grid,
.guarantee-box{


    grid-template-columns:1fr;


}



.hero h1{

    font-size:40px;

}



.section-title h2,
.memory-content h2,
.photo-content h2,
.quality-content h2{


    font-size:34px;

}



.hero-image>img{

    height:450px;

}



.hero-trust{

    gap:20px;

}



.hero-trust strong{

    font-size:28px;

}




.benefit-grid,
.factory-grid,
.pricing-grid{


    grid-template-columns:1fr;


}



.scenario-grid{

    grid-template-columns:1fr;

}



.process-grid{


    grid-template-columns:1fr;


}



.photo-card{

    left:10px;

}



.contact-box h2{

    font-size:35px;

}



.nav-btn{

    padding:10px 18px;

}



.logo{

    font-size:20px;

}


.whatsapp-float{

    bottom:20px;

    padding:13px 25px;

}



}