body{
background:#050509;
color:#fff;
font-family:Inter,system-ui,sans-serif;
}


/* HERO */

.zenith-hero{
text-align:center;
padding:120px 20px;
max-width:900px;
margin:auto;
}

.zenith-hero h1{
font-size:64px;
font-weight:800;
margin-bottom:10px;
}

.zenith-sub{
color:#9ca3af;
font-size:20px;
margin-bottom:30px;
}

.zenith-download{
background:#22d3ee;
color:#000;
padding:14px 28px;
border-radius:10px;
font-weight:700;
transition:.2s;
}

.zenith-download:hover{
transform:translateY(-2px);
box-shadow:0 0 10px rgba(34,211,238,.6);
}


/* PLANES */

.zenith-plans{
text-align:center;
padding:120px 20px;
}

.zenith-plans h2{
font-size:42px;
margin-bottom:70px;
font-weight:700;
letter-spacing:.5px;
}

/* GRID */
.plans-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:35px;
max-width:900px;
margin:auto;
}

/* CARD */
.plan{
width:240px;
background:linear-gradient(145deg,#0e1117,#151922);
border-radius:18px;
padding:40px 25px;
border:1px solid rgba(255,255,255,.06);
transition:all .35s ease;
position:relative;
overflow:hidden;
}

/* EFECTO HOVER */
.plan:hover{
transform:translateY(-10px) scale(1.02);
border:1px solid rgba(34,211,238,.3);
box-shadow:
0 15px 40px rgba(0,0,0,.6),
0 0 25px rgba(34,211,238,.15);
}

/* TITULO */
.plan h3{
font-size:22px;
margin-bottom:15px;
font-weight:600;
color:#fff;
}

/* PRECIO */
.plan span{
display:block;
font-size:36px;
font-weight:700;
color:#22d3ee;
margin-bottom:25px;
}

/* BOTON */
.plan button{
background:linear-gradient(135deg,#22d3ee,#06b6d4);
color:#000;
padding:12px 22px;
border-radius:10px;
font-weight:700;
border:none;
cursor:pointer;
transition:all .25s ease;
}

.plan button:hover{
transform:scale(1.05);
box-shadow:0 0 18px rgba(34,211,238,.6);
}


/* TUTORIAL */

.zenith-tutorial{
padding:120px 20px;
text-align:center;
}

.zenith-tutorial h2{
font-size:40px;
margin-bottom:60px;
}

.tutorial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
max-width:1000px;
margin:auto;
}

.tutorial-step img{
width:100%;
border-radius:14px;
margin-bottom:20px;
}

.tutorial-step h3{
font-size:22px;
margin-bottom:10px;
}

.tutorial-step p{
color:#9ca3af;
}

/* ========================= */
/* 🌞 MODO CLARO - ZENITH */
/* ========================= */

/* FONDO */
body.light{
background:#f8fafc;
color:#111;
}

/* HERO */
body.light .zenith-hero h1{
color:#111;
}

body.light .zenith-sub{
color:#555;
}

body.light .zenith-download{
background:#00bcd4;
color:#fff;
}

body.light .zenith-download:hover{
box-shadow:0 0 12px rgba(0,188,212,.35);
}

/* PLANES */
body.light .zenith-plans h2{
color:#111;
}

/* CARD PLAN */
body.light .plan{
background:#ffffff;
border:1px solid rgba(0,0,0,.08);
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

body.light .plan:hover{
border:1px solid rgba(0,188,212,.3);
box-shadow:
0 12px 30px rgba(0,0,0,.12),
0 0 15px rgba(0,188,212,.15);
}

/* TITULO */
body.light .plan h3{
color:#111;
}

/* PRECIO */
body.light .plan span{
color:#00bcd4;
}

/* BOTON */
body.light .plan button{
background:linear-gradient(135deg,#00bcd4,#0097a7);
color:#fff;
}

body.light .plan button:hover{
box-shadow:0 0 15px rgba(0,188,212,.35);
}

/* TUTORIAL */
body.light .zenith-tutorial h2{
color:#111;
}

body.light .tutorial-step h3{
color:#111;
}

body.light .tutorial-step p{
color:#555;
}

/* IMAGEN */
body.light .tutorial-step img{
box-shadow:0 10px 25px rgba(0,0,0,.08);
}