*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    background:#0f0f10;

    color:#fff;

    line-height:1.6;

}

.container{

    width:min(1180px,92%);

    margin:auto;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

section{

    padding:90px 0;

}



/* HEADER */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:1000;

    background:rgba(10,10,10,.75);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo{

    font-size:30px;

    font-weight:800;

    letter-spacing:2px;

}

.logo span{

    color:#d8b14f;

}



/* BUTTONS */

.btn{

    display:inline-block;

    padding:16px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,#d4af37,#ffd978);

    color:#111;

    font-weight:700;

    transition:.35s;

    box-shadow:0 10px 30px rgba(212,175,55,.35);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(212,175,55,.55);

}

.btn-outline{

    margin-left:15px;

    display:inline-block;

    padding:16px 34px;

    border:2px solid #d4af37;

    color:#fff;

    border-radius:50px;

    transition:.35s;

}

.btn-outline:hover{

    background:#d4af37;

    color:#111;

}



/* HERO */

.hero{

    padding-top:160px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:center;

}

.badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#1d1d1d;

    color:#d4af37;

    margin-bottom:25px;

    border:1px solid rgba(212,175,55,.3);

}

.hero h1{

    font-size:56px;

    line-height:1.1;

    margin-bottom:30px;

    font-weight:800;

}

.hero p{

    font-size:20px;

    color:#cfcfcf;

    margin-bottom:40px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 30px 70px rgba(0,0,0,.6));

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}



/* BENEFITS */

.benefits{

    background:#151515;

}

.benefits h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.card{

    background:#1d1d1d;

    padding:35px;

    border-radius:24px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

}

.icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#d4af37;

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.card h3{

    margin-bottom:18px;

    font-size:24px;

}

.card p{

    color:#cfcfcf;

}
/* ===========================
   INGREDIENTS
=========================== */

.ingredients{

    background:#101010;

}

.ingredients h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:22px;

}

.grid div{

    background:#1b1b1b;

    padding:22px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;

}

.grid div:hover{

    border-color:#d4af37;

    transform:translateY(-6px);

}



/* ===========================
INDICATIONS
=========================== */

.indications{

    background:#151515;

}

.indications h2{

    text-align:center;

    font-size:42px;

    margin-bottom:55px;

}

.indications-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.item{

    background:#1d1d1d;

    padding:24px;

    border-radius:18px;

    border-left:4px solid #d4af37;

}



/* ===========================
HOW
=========================== */

.how{

    background:#101010;

}

.how h2{

    text-align:center;

    margin-bottom:50px;

    font-size:42px;

}

.how-card{

    display:flex;

    gap:25px;

    align-items:flex-start;

    background:#1b1b1b;

    border-radius:22px;

    padding:30px;

    margin-bottom:25px;

}

.number{

    width:60px;

    height:60px;

    flex:none;

    border-radius:50%;

    background:#d4af37;

    color:#111;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

}



/* ===========================
ADVANTAGES
=========================== */

.advantages{

    background:#151515;

}

.advantages h2{

    text-align:center;

    font-size:42px;

    margin-bottom:55px;

}

.adv-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.adv{

    background:#1d1d1d;

    border-radius:18px;

    padding:26px;

    font-size:18px;

}

.adv span{

    color:#d4af37;

    font-weight:bold;

    margin-right:12px;

}



/* ===========================
ORDER
=========================== */

.order{

    background:#0f0f10;

}

.order-box{

    max-width:760px;

    margin:auto;

    background:#1b1b1b;

    border-radius:28px;

    padding:55px;

    border:1px solid rgba(212,175,55,.25);

}

.order-box h2{

    text-align:center;

    font-size:42px;

    margin-bottom:15px;

}

.order-box p{

    text-align:center;

    color:#cfcfcf;

    margin-bottom:40px;

}

.order input,

.order textarea{

    width:100%;

    padding:18px 22px;

    margin-bottom:18px;

    border-radius:14px;

    border:none;

    background:#2a2a2a;

    color:#fff;

    font-size:16px;

    outline:none;

}

.order textarea{

    resize:vertical;

    min-height:130px;

}

.order button{

    width:100%;

    border:none;

    cursor:pointer;

    font-size:18px;

}

#success{

    margin-top:25px;

    text-align:center;

    color:#7fff7f;

    font-weight:600;

}



/* ===========================
FOOTER
=========================== */

footer{

    padding:50px 0;

    text-align:center;

    background:#090909;

    border-top:1px solid rgba(255,255,255,.05);

}

footer p{

    color:#aaa;

    margin:10px 0;

}



/* ===========================
ANIMATIONS
=========================== */

.card,

.grid div,

.item,

.adv,

.order-box{

    transition:.35s ease;

}

.card:hover,

.grid div:hover,

.item:hover,

.adv:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}



/* ===========================
MOBILE
=========================== */

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

}

.btn-outline{

margin-left:0;

}

.cards{

grid-template-columns:1fr;

}

.indications-grid{

grid-template-columns:1fr;

}

.adv-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

}

@media(max-width:640px){

header .container{

height:72px;

}

.logo{

font-size:24px;

}

.hero{

padding-top:120px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:17px;

}

.order-box{

padding:30px 20px;

}

section{

padding:70px 0;

}

h2{

font-size:30px !important;

}

}