/* GLOBAL */

*{
box-sizing:border-box;
}

body{
margin:0;
font-family:'Inter',sans-serif;
background:#f9fafb;
color:#0f172a;
line-height:1.7;
}

/* HERO */

.hero{
text-align:center;
padding:90px 20px;
background:linear-gradient(135deg,#0f172a,#020617);
color:white;
}

.hero h1{
font-size:46px;
margin-bottom:12px;
font-weight:700;
}

.hero p{
opacity:0.9;
font-size:18px;
max-width:700px;
margin:auto;
}

/* BADGE */

.badge{
display:inline-block;
background:#22c55e;
color:#022c22;
padding:7px 16px;
border-radius:30px;
margin-top:14px;
font-size:14px;
font-weight:600;
}

/* CONTAINER */

.container{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

/* SECTION */

.section{
margin-top:80px;
}

.section h2{
font-size:26px;
margin-bottom:25px;
position:relative;
padding-left:16px;
}

.section h2:before{
content:"";
position:absolute;
left:0;
top:6px;
height:22px;
width:4px;
background:#22c55e;
border-radius:4px;
}

/* CARD */

.card{
background:white;
padding:30px;
border-radius:14px;
border:1px solid #e5e7eb;
box-shadow:0 6px 20px rgba(0,0,0,0.06);
transition:all 0.35s ease;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* FEATURE */

.feature{
text-align:center;
padding-top:35px;
position:relative;
}

.feature h3{
margin-bottom:10px;
font-size:18px;
}

.feature:before{
content:"";
position:absolute;
top:0;
left:50%;
transform:translateX(-50%);
width:10px;
height:10px;
background:#22c55e;
border-radius:50%;
}

/* LIST */

ul{
padding-left:20px;
}

li{
margin-bottom:10px;
color:#334155;
}

/* IMAGE GALLERY */

.gallery{
display:grid;
grid-template-columns:1fr;
gap:35px;
margin-top:25px;
}

.gallery img{
width:100%;
height:auto;
border-radius:12px;
border:1px solid #e5e7eb;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:all 0.35s ease;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.02);
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* CTA */

.cta{
text-align:center;
background:linear-gradient(180deg,#f1f5f9,#ffffff);
padding:80px 20px;
margin-top:100px;
border-top:1px solid #e5e7eb;
}

.cta h2{
font-size:28px;
margin-bottom:12px;
}

.cta p{
color:#475569;
margin-bottom:25px;
font-size:16px;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.cta a{
background:#22c55e;
color:white;
padding:14px 30px;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:0.3s;
display:inline-block;
}

.cta a:hover{
background:#16a34a;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* --------------------- */
/* RESPONSIVE BREAKPOINTS */
/* --------------------- */

/* TABLET */

@media (max-width:992px){

.hero h1{
font-size:38px;
}

.container{
padding:50px 20px;
}

.section{
margin-top:70px;
}

}

/* MOBILE */

@media (max-width:768px){

.hero{
padding:70px 20px;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:16px;
}

.container{
padding:40px 18px;
}

.section{
margin-top:60px;
}

.section h2{
font-size:22px;
}

.card{
padding:22px;
}

.grid{
grid-template-columns:1fr;
gap:20px;
}

.gallery{
gap:25px;
}

}

/* SMALL PHONES */

@media (max-width:480px){

.hero h1{
font-size:26px;
}

.hero p{
font-size:15px;
}

.badge{
font-size:12px;
padding:6px 12px;
}

.card{
padding:18px;
}

.cta h2{
font-size:22px;
}

}