*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#FAFAF7;
color:#333;
line-height:1.7;
}

/* HERO SECTION */

.hero{
background:linear-gradient(135deg,#0A3D1F,#1B6B3A);
min-height:100vh;
padding:80px 10%;
display:flex;
justify-content:center;
align-items:center;
gap:80px;
color:white;
}

.hero-left{
max-width:250px;
text-align:center;
}

.coach-photo{
width:220px;
height:220px;
object-fit:cover;
border-radius:50%;
border:5px solid #2ECC71;

box-shadow:
0 0 20px #2ECC71,
0 0 40px rgba(46,204,113,.8);
}

.hero-left h3{
margin-top:20px;
font-size:30px;
font-weight:700;
}

.coach-tagline{
margin-top:10px;
opacity:.9;
line-height:1.7;
}

.hero-right{
max-width:650px;
}

.hero-badge{
display:inline-block;
background:#F0B429;
color:#0A3D1F;
padding:8px 18px;
border-radius:25px;
font-size:13px;
font-weight:700;
margin-bottom:25px;
}

.hero-right h1{
font-family:'Playfair Display',serif;
font-size:clamp(40px,5vw,62px);
font-weight:900;
line-height:1.2;
margin-bottom:25px;
}

.hero-right span{
color:#F0B429;
text-decoration:underline;
text-decoration-style:wavy;
text-underline-offset:6px;
}

.hero-subtitle{
font-size:18px;
line-height:1.9;
opacity:.9;
margin-bottom:35px;
}

/* LEAD FORM */

.lead-form{
display:flex;
flex-direction:column;
gap:15px;
}

.lead-form input,
.lead-form select{
padding:16px;
border:none;
border-radius:12px;
font-size:16px;
}

.lead-form button{
background:#F0B429;
color:#0A3D1F;
font-size:18px;
font-weight:700;
padding:18px;
border:none;
border-radius:12px;
cursor:pointer;
transition:.3s;
}

.lead-form button:hover{
transform:translateY(-4px);
}

/* TRUST BAR */

.trust-bar{
background:#0A3D1F;
color:white;
padding:20px;
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
font-weight:600;
}

/* TESTIMONIALS */

.testimonial-section{
padding:80px 10%;
background:white;
text-align:center;
}

.testimonial-section h2{
font-family:'Playfair Display',serif;
font-size:42px;
color:#0A3D1F;
margin-bottom:50px;
}

.testimonial-grid{
display:flex;
flex-direction:column;
gap:40px;
max-width:900px;
margin:auto;
}

.testimonial-card{
background:#FAFAF7;
padding:35px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
text-align:left;
}

.testimonial-card p{
line-height:1.9;
color:#555;
margin-bottom:20px;
}

.testimonial-card h4{
color:#F0B429;
font-size:22px;
margin-bottom:10px;
}

.testimonial-card span{
font-weight:700;
color:#0A3D1F;
}

/* PRODUCTS */

.products-section{
padding:80px 10%;
background:#FAFAF7;
text-align:center;
}

.products-section h2{
font-family:'Playfair Display',serif;
font-size:42px;
color:#0A3D1F;
margin-bottom:50px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;
max-width:1200px;
margin:auto;
}

.product-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
}

.product-card h3{
color:#0A3D1F;
font-size:24px;
margin-bottom:20px;
}

.product-card p{
color:#555;
line-height:1.8;
}
/* WHY FOREVER */

.why-section{
padding:80px 10%;
background:white;
text-align:center;
}

.why-section h2{
font-family:'Playfair Display',serif;
font-size:42px;
color:#0A3D1F;
margin-bottom:50px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
max-width:1200px;
margin:auto;
}

.why-card{
background:#FAFAF7;
padding:35px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.why-card:hover{
transform:translateY(-8px);
}

.why-card h3{
color:#0A3D1F;
font-size:24px;
margin-bottom:20px;
}

.why-card p{
line-height:1.8;
color:#555;
}


/* INCOME SECTION */

.income-section{
padding:80px 10%;
background:#FAFAF7;
text-align:center;
}

.income-section h2{
font-family:'Playfair Display',serif;
font-size:42px;
color:#0A3D1F;
margin-bottom:50px;
}

.income-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
max-width:1200px;
margin:auto;
}

.income-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.income-card:hover{
transform:translateY(-8px);
}

.income-card h3{
color:#0A3D1F;
font-size:24px;
margin-bottom:20px;
}

.income-card p{
line-height:1.8;
color:#555;
}


/* CTA SECTION */

.cta-section{
background:linear-gradient(135deg,#0A3D1F,#1B6B3A);
color:white;
padding:100px 10%;
text-align:center;
}

.cta-section h2{
font-family:'Playfair Display',serif;
font-size:50px;
margin-bottom:30px;
}

.cta-section p{
max-width:900px;
margin:auto;
line-height:1.9;
margin-bottom:25px;
font-size:18px;
}

.cta-section button{
background:#F0B429;
color:#0A3D1F;
padding:18px 40px;
font-size:18px;
font-weight:700;
border:none;
border-radius:12px;
cursor:pointer;
transition:.3s;
}

.cta-section button:hover{
transform:translateY(-5px);
}


/* FOOTER */

.footer{
background:#0A3D1F;
color:white;
text-align:center;
padding:50px 10%;
}

.footer h3{
font-family:'Playfair Display',serif;
font-size:32px;
margin-bottom:20px;
}

.footer p{
line-height:1.9;
opacity:.9;
}


/* MOBILE RESPONSIVE */

@media(max-width:768px){

.hero{
flex-direction:column;
text-align:center;
gap:40px;
padding:60px 8%;
}

.hero-right h1{
font-size:42px;
}

.testimonial-section h2,
.products-section h2,
.why-section h2,
.income-section h2,
.cta-section h2{
font-size:34px;
}

}
.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:16px 24px;
border-radius:50px;
font-size:18px;
font-weight:700;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,.25);
z-index:999;
transition:.3s;
display:flex;
align-items:center;
gap:10px;
}

.whatsapp-float:hover{
transform:scale(1.1);
}
.wa-icon{
width:30px;
height:30px;
}


