*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;

background:#f5f7fb;

color:#111827;

line-height:1.7;

}



/* NAVBAR */

nav{

position:sticky;

top:0;

z-index:999;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 8%;

background:rgba(255,255,255,.8);

backdrop-filter:blur(16px);

border-bottom:1px solid rgba(0,0,0,.06);

}

.logo{

font-size:28px;

font-weight:800;

color:#0f172a;

}

.nav-links{

display:flex;

gap:35px;

}

.nav-links a{

text-decoration:none;

color:#374151;

font-weight:600;

transition:.3s;

}

.nav-links a:hover{

color:#2563eb;

}



/* HERO */

.hero{

padding:120px 8%;

background:

linear-gradient(135deg,#0f172a,#1d4ed8);

color:white;

text-align:center;

}

.hero h1{

font-size:58px;

font-weight:800;

margin-bottom:20px;

}

.hero h2{

font-size:26px;

font-weight:500;

margin-bottom:20px;

opacity:.95;

}

.hero p{

max-width:900px;

margin:auto;

font-size:19px;

opacity:.95;

line-height:1.8;

}



.hero-buttons{

margin-top:40px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.hero-buttons button{

background:white;

color:#111827;

border:none;

padding:15px 30px;

border-radius:14px;

font-size:16px;

font-weight:700;

box-shadow:0 20px 50px rgba(0,0,0,.15);

cursor:pointer;

transition:.3s;

}

.hero-buttons button:hover{

transform:translateY(-5px);

}



/* SEARCH */

.search-section{

padding:60px 8% 20px;

}

.search-section input{

width:100%;

padding:20px;

border-radius:16px;

border:none;

font-size:18px;

background:white;

box-shadow:0 10px 40px rgba(0,0,0,.08);

outline:none;

}



/* STATS */

.stats{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

padding:50px 8%;

}

.stat-card{

background:white;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card h2{

font-size:42px;

color:#2563eb;

margin-bottom:10px;

}



/* FILTERS */

.filters{

padding:20px 8%;

display:flex;

gap:15px;

flex-wrap:wrap;

justify-content:center;

}

.filter{

border:none;

padding:12px 24px;

border-radius:999px;

background:white;

font-weight:700;

cursor:pointer;

transition:.3s;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.filter:hover{

background:#2563eb;

color:white;

}

.active{

background:#2563eb;

color:white;

}



/* REVIEW SECTION */

#reviews{

padding:70px 8%;

}

#reviews h2{

font-size:42px;

margin-bottom:40px;

text-align:center;

}



#reviewGrid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:28px;

}



/* REVIEW CARD */

.review-card{

background:white;

padding:28px;

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

}

.review-card:hover{

transform:translateY(-8px);

}

.review-card .stars{

font-size:22px;

color:#f59e0b;

margin-bottom:10px;

}

.review-card h3{

font-size:22px;

margin-bottom:5px;

}

.meta{

color:#6b7280;

font-size:14px;

margin-bottom:15px;

}

.score{

display:inline-block;

background:#dbeafe;

color:#1d4ed8;

padding:8px 16px;

border-radius:999px;

font-weight:700;

margin-bottom:18px;

}

.review-card p{

font-size:16px;

color:#374151;

}



/* FAQ */

#faq{

padding:80px 8%;

background:white;

margin-top:80px;

}

#faq h2{

text-align:center;

font-size:40px;

margin-bottom:40px;

}

.faq{

padding:25px;

border-radius:18px;

background:#f8fafc;

margin-bottom:20px;

box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.faq h3{

margin-bottom:10px;

}



/* FOOTER */

footer{

padding:70px 8%;

background:#0f172a;

color:white;

text-align:center;

}

footer h3{

font-size:30px;

margin-bottom:15px;

}



/* MOBILE */

@media(max-width:768px){

.hero{

padding:90px 25px;

}

.hero h1{

font-size:36px;

}

.hero h2{

font-size:20px;

}

.hero-buttons{

flex-direction:column;

}

.nav-links{

display:none;

}

#reviews h2{

font-size:32px;

}

}