@media (prefers-color-scheme: dark) {
  /* Obliga a mantener el diseño claro original */
  :root {
    color-scheme: light; 
  }
}
:root{
--primary:#1557F5;
--dark:#000814;
--light:#F7F9FC;
}
.hero{
padding:10px 0;
background:
radial-gradient(circle at top right,#E8F0FF 0%,#FFFFFF 60%);
}
.hero h1{
font-size:4rem;
font-weight:900;
line-height:1.1;
}
.hero span{
color:var(--primary);
}
.hero-list{
list-style:none;
padding:0;
margin-top:25px;
}
.hero-list li{
margin-bottom:12px;
}
.phone-chat{
background:white;
padding:25px;
border-radius:25px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.chat-bot{
background:#E8F0FF;
padding:12px;
border-radius:15px;
margin-bottom:10px;
}
.btn-goobyx{
background:var(--primary);
color:white;
border:none;
padding:14px 30px;
border-radius:14px;
font-weight:700;
}
.btn-goobyx:hover{
background:#0e45cb;
color:white;
}
.section{
padding:80px 0;
}
.stats{
background:#F5F8FF;
}
.stat{
text-align:center;
}
.stat h3{
color:var(--primary);
font-size:2.5rem;
font-weight:900;
}
.feature-icon{
font-size:40px;
color:var(--primary);
margin-bottom:15px;
}
.section-title{
font-size:2.7rem;
font-weight:800;
margin-bottom:15px;
}
.feature-card{
padding:30px;
border-radius:20px;
background:white;
height:100%;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}
.plan{
border-radius:25px;
padding:40px;
height:100%;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.plan-featured{
border:3px solid var(--primary);
transform:scale(1.03);
}
.price{
font-size:1rem;
font-weight:900;
color:var(--primary);
}
.cta{
background:var(--primary);
color:white;
padding:100px 0;
}