/* ...existing code... */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
overflow-x:hidden;
color:#1e293b;

background:
radial-gradient(circle at top left,#dff7e5 0%,transparent 35%),
radial-gradient(circle at top right,#c8f1d2 0%,transparent 30%),
linear-gradient(180deg,#f8fffa,#eefbf2);

}

/* NAVBAR */

.navbar{

position:fixed;
top:20px;
left:50%;

transform:translateX(-50%);

width:90%;
max-width:1300px;

padding:18px 35px;

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

backdrop-filter:blur(20px);

border-radius:20px;

display:flex;
justify-content:space-between;
align-items:center;

z-index:999;

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

}

.logo{
font-size:28px;
font-weight:800;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:#334155;
font-weight:500;
}

.nav-btn{

border:none;

background:linear-gradient(
135deg,
#7bcf8c,
#58b86f
);

color:white;

padding:12px 24px;

border-radius:999px;

cursor:pointer;

font-weight:600;

transition:.3s;

}

.nav-btn:hover{
transform:translateY(-2px);
}

/* HERO */

.hero{

min-height:100vh;

width:90%;
margin:auto;

display:flex;
align-items:center;
justify-content:space-between;

gap:60px;

padding-top:140px;

}

.hero-content{
max-width:650px;
}

.badge{

display:inline-block;

background:#dff5e3;

color:#2e6e3c;

padding:12px 18px;

border-radius:999px;

font-size:14px;

font-weight:600;

}

.hero h1{

font-size:78px;

line-height:1.05;

margin-top:25px;

font-weight:800;

}

.hero h1 span{
color:#6cc67d;
}

.hero p{

margin-top:25px;

font-size:22px;

line-height:1.7;

color:#64748b;

}

.hero-buttons{

display:flex;

gap:15px;

margin-top:35px;

}

.primary-btn{

border:none;

padding:18px 34px;

border-radius:18px;

background:linear-gradient(
135deg,
#7bcf8c,
#5fbf74
);

color:white;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.primary-btn:hover{
transform:translateY(-5px);
}

.secondary-btn{

border:none;

background:white;

padding:18px 34px;

border-radius:18px;

cursor:pointer;

font-weight:600;

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

}

.hero-stats{

display:flex;

gap:20px;

margin-top:50px;

}

.stat{

background:white;

padding:20px;

border-radius:20px;

min-width:140px;

box-shadow:
0 10px 25px rgba(0,0,0,.05);

}

.stat h3{

color:#66c279;

font-size:28px;
}

.stat span{

color:#64748b;

font-size:14px;

}

/* DASHBOARD */

.dashboard-card{

width:430px;
height:430px;

border-radius:35px;

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

backdrop-filter:blur(20px);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

position:relative;

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

}

.dashboard-header{

position:absolute;
top:30px;

font-weight:700;

}

.growth-circle{

width:220px;
height:220px;

border-radius:50%;

background:
linear-gradient(
135deg,
#c8f1d2,
#73ca88
);

display:flex;
align-items:center;
justify-content:center;

animation:float 5s ease-in-out infinite;

}

.circle-center{
font-size:90px;
}

.growth-info{

display:flex;

gap:40px;

margin-top:40px;

}

.growth-info strong{
display:block;
font-size:22px;
}

.growth-info span{
color:#64748b;
font-size:14px;
}

@keyframes float{

0%{
    transform:translateY(0);
}

50%{
    transform:translateY(-15px);
}

100%{
    transform:translateY(0);
}

}

/* FEATURES */

.features{

width:90%;
margin:120px auto;

}

.features h2{

text-align:center;

font-size:48px;

margin-bottom:60px;

}

.cards{

display:grid;

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

gap:25px;

}

.card{

background:white;

padding:35px;

border-radius:28px;

transition:.3s;

box-shadow:
0 10px 25px rgba(0,0,0,.05);

}

.card:hover{

transform:translateY(-8px);

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

}

.card h3{
margin-bottom:15px;
}

.card p{
color:#64748b;
}

/* PREMIUM */

.premium{

width:90%;

margin:120px auto;

}

.premium-card{

max-width:750px;

margin:auto;

text-align:center;

padding:60px;

border-radius:35px;

background:
linear-gradient(
135deg,
#7bcf8c,
#c5f0cf
);

box-shadow:
0 25px 50px rgba(0,0,0,.08);

}

.premium-badge {
    display: inline-block;
    padding: 8px 28px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #000000;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px #ffffff(255, 255, 255, 0.4);
    position: relative;
    top: -20px;
}

.premium-badge::before {
    content: '⭐ ';
}

.price{

font-size:64px;

font-weight:800;

margin:25px 0;

}

.price span{
font-size:22px;
}

.premium-card ul{

list-style:none;

margin:35px 0;

}

.premium-card li{

margin:12px 0;

font-size:18px;
}

.buy-btn{

border:none;

background:#1f2937;

color:white;

padding:18px 35px;

border-radius:18px;

cursor:pointer;

font-size:18px;

font-weight:600;
}

/* MOBILE */

@media(max-width:900px){

.hero{
    flex-direction:column;
    text-align:center;
}

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

.dashboard-card{
    width:100%;
    max-width:380px;
    height:380px;
}

.hero-stats{
    flex-direction:column;
}

.nav-links{
    display:none;
}

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

}
/* ...existing code... */
