*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

font-family:'Poppins',sans-serif;

background:#ffffff;

color:#222;

overflow-x:hidden;

}

a{

text-decoration:none;

}

.container{

width:90%;

max-width:1200px;

margin:auto;

}

/*================ NAVBAR =================*/

header{

position:fixed;

width:100%;

top:0;

left:0;

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.08);

z-index:999;

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

height:80px;

}

.logo{

display:flex;

align-items:center;

gap:10px;

font-size:28px;

font-weight:700;

color:#FBBF24;

}

nav ul{

display:flex;

gap:35px;

list-style:none;

}

nav ul li a{

font-weight:500;

color:#333;

transition:.3s;

}

nav ul li a:hover{

color:#FBBF24;

}

.btn{

padding:15px 30px;

background:#FBBF24;

border-radius:50px;

color:#fff;

font-weight:600;

transition:.4s;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(251,191,36,.4);

}

/*================ HERO =================*/
.blob{

position:absolute;

width:500px;

height:500px;

background:#FFE082;

filter:blur(140px);

border-radius:50%;

right:-150px;

top:-150px;

z-index:-1;

}

.hero{

position:relative;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(251,191,36,.15);

filter:blur(120px);

right:-120px;

top:-150px;

border-radius:50%;

}

.hero{

padding-top:150px;

padding-bottom:80px;

background:

linear-gradient(
135deg,
#FFF9E8,
#ffffff);

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.badge{

display:inline-block;

padding:10px 20px;

background:#FFF3C7;

color:#EAB308;

border-radius:50px;

margin-bottom:25px;

}

.hero h1{

font-size:65px;

line-height:1.1;

margin-bottom:20px;

}

.hero h1 span{

color:#FBBF24;

}

.hero p{

font-size:18px;

line-height:1.8;

margin-bottom:35px;

color:#666;

}

.hero-button{

display:flex;

gap:20px;

}

.btn-outline{

padding:15px 30px;

border-radius:50px;

border:2px solid #FBBF24;

color:#FBBF24;

font-weight:600;

transition:.3s;

}

.btn-outline:hover{

background:#FBBF24;

color:#fff;

}

.hero-image img{

width:100%;

animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/*================ TITLE =================*/

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

color:#FBBF24;

font-weight:600;

}

.section-title h2{

font-size:42px;

margin-top:15px;

}

/*================ PRODUCT =================*/

.product{

padding:100px 0;

background:#FFFDF8;

}

.product-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.product-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

padding-bottom:25px;

}

.product-card:hover{

transform:translateY(-12px);

}

.product-card img{

width:100%;

height:280px;

object-fit:cover;

}

.product-card h3{

padding:20px;

padding-bottom:5px;

}

.product-card p{

padding:0 20px;

color:#888;

}

.product-card h4{

padding:20px;

font-size:28px;

color:#FBBF24;

}

.btn-small{

margin-left:20px;

display:inline-block;

padding:12px 30px;

background:#FBBF24;

color:#fff;

border-radius:40px;

}
@media(max-width:991px){

.hero-grid{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.product-grid{

grid-template-columns:1fr;

}

.counter-grid{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

nav ul{

display:none;

}

}

@media(max-width:600px){

.feature-grid{

grid-template-columns:1fr;

}

.counter-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

.section-title h2{

font-size:32px;

}

}
/*================ ABOUT =================*/

.about{

padding:120px 0;

background:#ffffff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.section-subtitle{

display:inline-block;

color:#FBBF24;

font-weight:600;

margin-bottom:15px;

}

.about h2{

font-size:48px;

margin-bottom:25px;

}

.about p{

line-height:2;

color:#666;

margin-bottom:30px;

}

.about-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:35px;

}

.about-list div{

display:flex;

align-items:center;

gap:10px;

font-weight:500;

}

.about-list i{

color:#FBBF24;

font-size:20px;

}

/*================ TESTIMONIAL =================*/

.testimonial{

padding:120px 0;

background:#FFFDF7;

}

.testimonial-slider{

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

}

.testimonial-card{

width:340px;

background:#fff;

padding:40px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.testimonial-card:hover{

transform:translateY(-12px);

}

.testimonial-card img{

width:90px;

height:90px;

border-radius:50%;

margin-bottom:20px;

object-fit:cover;

}

.testimonial-card p{

line-height:1.8;

color:#666;

margin-bottom:25px;

}

.testimonial-card h3{

margin-bottom:5px;

}

.testimonial-card span{

color:#888;

}

/*================ FAQ =================*/

.faq{

padding:120px 0;

background:#fff;

}

.faq-container{

max-width:900px;

margin:auto;

}

.faq-item{

margin-bottom:20px;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-question{

width:100%;

padding:25px;

display:flex;

justify-content:space-between;

align-items:center;

border:none;

background:white;

font-size:18px;

font-weight:600;

cursor:pointer;

}

.faq-answer{

display:none;

padding:25px;

background:#fafafa;

line-height:1.8;

color:#666;

}

/*================ CTA =================*/

.cta{

padding:120px 0;

background:linear-gradient(135deg,#FBBF24,#F59E0B);

text-align:center;

color:white;

}

.cta h2{

font-size:48px;

margin-bottom:20px;

}

.cta p{

font-size:20px;

margin-bottom:40px;

}

/* ================= FOOTER ================= */

footer{

    padding:80px 0 25px;

    background:#FFFFFF;

    color:#1E293B;

    border-top:1px solid #E2E8F0;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

/* Judul */

.footer-grid h3,
.footer-grid h4{

    color:#1E293B;

    margin-bottom:18px;

    font-weight:700;

}

/* Deskripsi */

.footer-grid p{

    color:#64748B;

    line-height:1.8;

}

/* Link */

.footer-grid a{

    display:block;

    color:#475569;

    margin:12px 0;

    transition:.3s;

    font-weight:500;

}

.footer-grid a:hover{

    color:#FBBF24;

    padding-left:6px;

}

/*================ SOCIAL =================*/

.social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.social i{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#F8FAFC;

    color:#1E293B;

    border:1px solid #E2E8F0;

    transition:.35s;

    cursor:pointer;

    font-size:18px;

}

.social i:hover{

    background:#FBBF24;

    color:white;

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(251,191,36,.35);

}

/*================ COPYRIGHT =================*/

.footer-bottom{

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid #E2E8F0;

    text-align:center;

}

.footer-bottom p{

    color:#64748B;

    font-size:15px;

    line-height:1.8;

}

.footer-bottom strong{

    color:#FBBF24;

    font-weight:700;

}

.footer-logo{

    width:28px;
    height:28px;
    object-fit:contain;

}

#topBtn{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

background:#FBBF24;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

color:white;

font-size:20px;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.2);

}

html{

scroll-behavior:smooth;

}