*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#F8F5EF;

    color:#2d2d2d;

    line-height:1.8;

    padding-bottom: 100px;

}

img{

    width: 100%;

    display:block;

}

h1{

    font-size:54px;

    font-weight:700;

    line-height:1.2;

}

h2{

    font-size:38px;

    margin-bottom:20px;

}

h3{

    font-size:24px;

    margin-bottom:15px;

}

p{

    font-size:18px;

    color:#555;

}

.btn{

    display:inline-block;

    margin-top:30px;

    padding:16px 34px;

    background:#b58b46;

    color:#fff;

    border-radius:8px;

    transition:.3s;

    font-weight:600;

}

.btn:hover{

    background:#926f37;

}

header{

    background:#ffffff;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

    position:sticky;

    top:0;

    z-index:999;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 0;

}

.logo{

    font-size:28px;

    font-weight:700;

    color:#b58b46;

}

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

.grid1{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:75px;

    margin-top:40px;

    align-items: center;

}

.grid2{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:50px;

    margin-top:40px;

}

.card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card img{

    object-fit:cover;

}

.card h3{

    padding:10px 20px;

}

.card p{

    padding:10px 20px;

}

.card li{

    padding:10px 20px;
}

.card a{

    display:block;

    margin:25px 20px 25px;

    color:#926f37;

    font-weight:600;

}

section{

    padding:50px 0;

}

.social-proof{

    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 0;

}

.social-proof img{

    width:100%;
    max-width:1000px;
    border-radius:16px;
    transition:opacity .3s ease;
}

.sticky-footer{

    position:fixed;
    bottom:0;
    left:0;

    width:100%;

    background:#F5E3B8;
    border-top:1px solid #D5B97A;

    padding:5px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:9999;

    box-shadow:0 -8px 25px rgba(0,0,0,.08);

}

.left{

    display:flex;
    flex-direction:column;
    gap:6px;

}

.title{

    font-size:22px;
    font-weight:700;
    color:#4B3322;

}

.subtitle{

    font-size:15px;
    color:#5B4737;

}

.benefit{

    font-size:14px;
    color:#6E5B4C;

}

.right{

    display:flex;
    align-items:center;
    gap:30px;

}

.price{

    display:flex;
    flex-direction:column;
    align-items:flex-end;

}

.new{

    font-size:30px;
    font-weight:800;
    color:#5A3E28;

}

.old{

    text-decoration:line-through;
    color:#888;
    font-size:16px;

}

.btn-buy{

    background:#5A3E28;
    color:#fff;

    padding:18px 42px;

    border-radius:12px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    transition:.3s;

}

.btn-buy:hover{

    background:#3F2A1B;
    transform:translateY(-2px);

}