.hero{
display:flex;
align-items:center;
justify-content:space-between;
gap:55px;
min-height:600px;
padding:55px 4%;
margin-bottom:35px;
background:
radial-gradient(circle at 10% 20%,rgba(56,189,248,.12),transparent 35%),
radial-gradient(circle at 90% 80%,rgba(34,197,94,.10),transparent 35%),
linear-gradient(135deg,#f8feff,#ffffff);
border-radius:0 0 45px 45px;
}

.hero-content{
width:50%;
animation:fadeUp .8s ease;
}

.hero-content .badge{
display:inline-block;
padding:8px 16px;
background:#e8faf7;
color:#008c95;
border:1px solid #ccefeb;
border-radius:999px;
font-size:14px;
font-weight:bold;
margin-bottom:18px;
}

.hero-content h1{
font-size:52px;
line-height:1.5;
color:#008c95;
margin:0 0 20px;
}

.hero-content p{
font-size:19px;
line-height:2;
color:#475569;
margin-bottom:30px;
max-width:650px;
}

.hero-buttons{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.hero-buttons .btn{
min-width:150px;
text-align:center;
border-radius:15px;
transition:transform .2s ease,box-shadow .2s ease;
}

.hero-buttons .btn:hover{
transform:translateY(-3px);
}

.hero-image{
width:45%;
display:flex;
justify-content:center;
animation:fadeUp .9s ease;
}

.hero-image img{
width:100%;
max-width:500px;
height:450px;
object-fit:cover;
border-radius:38px;
box-shadow:0 25px 55px rgba(0,140,149,.16);
background:#e0f7f4;
border:6px solid rgba(255,255,255,.8);
}

.counter-section{
padding:45px 5%;
}

.counter-section > h2{
text-align:center;
color:#008c95;
margin-bottom:30px;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
}

.card{
position:relative;
background:#fff;
border:1px solid #e5efee;
border-radius:22px;
padding:24px;
box-shadow:0 8px 25px rgba(0,140,149,.06);
transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
cursor:pointer;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 16px 35px rgba(0,140,149,.12);
border-color:#c8ebe7;
}

.card h3{
color:#008c95;
line-height:1.7;
}

.card p{
color:#64748b;
line-height:1.9;
}

.card:first-child{
border-top:5px solid #38BDF8;
}

.card:nth-child(2){
border-top:5px solid #22C55E;
}

.card:nth-child(3){
border-top:5px solid #F59E0B;
}

.card:nth-child(4){
border-top:5px solid #A855F7;
}

.features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:45px 5%;
}

.features > div{
background:#fff;
padding:25px 18px;
border-radius:22px;
text-align:center;
border:1px solid #e8f1f0;
box-shadow:0 8px 24px rgba(0,0,0,.04);
transition:.2s ease;
}

.features > div:hover{
transform:translateY(-5px);
box-shadow:0 14px 30px rgba(0,140,149,.10);
}

.features div{
font-size:32px;
}

.features h3{
font-size:19px;
color:#008c95;
margin:12px 0 5px;
}

.features p{
color:#64748b;
line-height:1.8;
}

section > h2{
color:#008c95;
text-align:center;
margin-bottom:28px;
}

section:not(.hero){
padding-top:40px;
padding-bottom:40px;
}

section:not(.hero) > h2{
font-size:27px;
}

section .cards .card{
text-decoration:none;
color:inherit;
}

section .cards a.card:hover{
color:inherit;
}

.why{
background:
radial-gradient(circle at 20% 20%,rgba(56,189,248,.14),transparent 35%),
linear-gradient(135deg,#effffb,#f8fbff);
border-radius:40px;
margin:40px 6%;
padding:45px 5%;
}

.why .cards{
grid-template-columns:repeat(4,1fr);
}

.why .card{
text-align:center;
background:rgba(255,255,255,.85);
}

.trust-section{
background:#f8fffd;
border-radius:35px;
margin:30px 5%;
padding-left:5%;
padding-right:5%;
text-align:center;
}

.trust-section .btn{
display:inline-block;
margin-top:20px;
padding:13px 24px;
border-radius:15px;
}

.parent-trust{
background:#fff;
padding-left:5%;
padding-right:5%;
}

.parent-trust .card{
text-align:center;
}

.testimonials{
background:linear-gradient(180deg,#f7fcff,#ffffff);
padding-left:5%;
padding-right:5%;
}

.testimonials .card{
text-align:center;
border-top:5px solid #38BDF8;
}

.testimonials .card p{
font-size:16px;
line-height:2.1;
}

.newsletter{
margin:45px 8%;
padding:40px 25px;
text-align:center;
border-radius:30px;
background:linear-gradient(135deg,#e9fffa,#eef9ff);
border:1px solid #d8efeb;
box-shadow:0 12px 35px rgba(0,140,149,.08);
}

.newsletter h2{
color:#008c95;
}

.newsletter p{
color:#64748b;
line-height:1.8;
}

.newsletter input{
max-width:300px;
padding:13px 15px;
border:1px solid #cfe5e2;
border-radius:13px;
outline:none;
margin:5px;
}

.newsletter input:focus{
border-color:#00a99d;
box-shadow:0 0 0 3px rgba(0,169,157,.10);
}

.newsletter button{
padding:13px 22px;
border:0;
border-radius:13px;
background:#008c95;
color:#fff;
font-weight:bold;
cursor:pointer;
}

.hero-content,
.hero-image{
animation:fadeUp .8s ease;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(25px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@media(max-width:900px){

.hero{
gap:30px;
padding:40px 4%;
}

.hero-content h1{
font-size:42px;
}

.features{
grid-template-columns:repeat(2,1fr);
}

.cards{
grid-template-columns:repeat(2,1fr);
}

.why .cards{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.hero{
flex-direction:column;
min-height:auto;
padding:30px 18px 40px;
border-radius:0 0 30px 30px;
text-align:center;
}

.hero-content{
width:100%;
}

.hero-content h1{
font-size:32px;
line-height:1.6;
}

.hero-content p{
font-size:16px;
line-height:2;
}

.hero-buttons{
justify-content:center;
}

.hero-buttons .btn{
width:100%;
max-width:320px;
}

.hero-image{
width:100%;
margin-top:20px;
}

.hero-image img{
height:320px;
border-radius:28px;
}

.features{
grid-template-columns:1fr;
padding:25px 18px;
}

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

.counter-section,
.parent-trust,
.testimonials{
padding-left:18px;
padding-right:18px;
}

.why{
margin:25px 12px;
padding:30px 18px;
border-radius:28px;
}

.why .cards{
grid-template-columns:1fr;
}

.trust-section{
margin:20px 12px;
padding-left:18px;
padding-right:18px;
}

.newsletter{
margin:30px 12px;
padding:30px 18px;
}

.newsletter input,
.newsletter button{
width:100%;
max-width:100%;
box-sizing:border-box;
margin:5px 0;
}

}
