*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0c;
  --bg2: #111116;
  --bg3: #18181f;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --text: #f0eeea;
  --muted: #7a7880;
  --accent: #c8f135;
  --accent2: #9fd900;
  --accent-dim: rgba(200,241,53,0.10);
  --accent-dim2: rgba(200,241,53,0.05);
  --red: #ff5c5c;
  --blue: #4da6ff;
  --orange: #ff8c42;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
section[id] { scroll-margin-top: 75px; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  border: 1.5px solid var(--border2);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  display: inline-flex; align-items: center; gap: 1px;
}
.logo .teko { color: var(--text); }
.logo .cool { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: 0.9rem; text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #0a0a0c;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem;
  padding: 0.6rem 1.4rem; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(200,241,53,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,241,53,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,241,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid rgba(200,241,53,0.2);
  color: var(--accent); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 2rem; margin-top: 3rem;
  width: fit-content; text-transform: uppercase;
}
.hero-tag::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05;
  max-width: 900px; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.15rem; color: var(--muted); max-width: 550px;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #0a0a0c;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 2rem; border-radius: 100px; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-secondary {
  color: var(--muted); font-size: 0.95rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--text); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--text);
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* DOLOR */
.section { padding: 6rem 4rem; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 540px; }

.dolor-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border); margin-top: 4rem;
  border: 1px solid var(--border);
}
.dolor-card {
  background: var(--bg); padding: 2rem;
  transition: background 0.2s;
}
.dolor-card:hover { background: var(--bg3); }
.dolor-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1.2rem;
}
.dolor-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.dolor-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.dolor-card .badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px; margin-top: 1rem;
}
.badge-red { background: rgba(255,92,92,0.12); color: var(--red); }
.badge-blue { background: rgba(77,166,255,0.12); color: var(--blue); }
.badge-orange { background: rgba(255,140,66,0.12); color: var(--orange); }
.badge-green { background: var(--accent-dim); color: var(--accent); }

/* SERVICIOS */
.services-bg { background: var(--bg2); }
.service-block { margin-top: 4rem; }
.service-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.service-header h2 { font-size: 1.8rem; font-weight: 800; max-width: 400px; }
.service-header p { color: var(--muted); font-size: 0.92rem; max-width: 360px; flex: 1; }

.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; align-items: stretch;
}
.plan-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.8rem; position: relative;
  transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.plan-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.plan-card.featured {
  border-color: rgba(200,241,53,0.35);
  background: linear-gradient(160deg, rgba(200,241,53,0.04) 0%, var(--bg3) 60%);
}
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0a0a0c;
  font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700;
  padding: 3px 14px; border-radius: 100px; white-space: nowrap;
  letter-spacing: 0.05em;
}
.plan-name {
  font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.4rem;
}
.plan-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.plan-desc { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.5; }
.plan-price {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.2rem;
}
.plan-price sup { font-size: 1rem; vertical-align: super; }
.plan-price-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.8rem; flex: 1; }
.plan-features li {
  font-size: 0.83rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px;
}
.plan-features li::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(200,241,53,0.3);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='[http://www.w3.org/2000/svg'%3E%3Cpath](http://www.w3.org/2000/svg'%3E%3Cpath) d='M1 3L3 5L7 1' stroke='%23c8f135' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.plan-features li.muted { color: rgba(122,120,128,0.5); }
.plan-features li.muted::before { background-image: none; background: rgba(255,255,255,0.04); border-color: var(--border); }

.plan-btn {
  display: block; text-align: center; padding: 0.75rem;
  border-radius: 10px; font-family: 'Syne', sans-serif;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; margin-top: auto;
}
.plan-btn-ghost {
  border: 1px solid var(--border2); color: var(--text);
  background: transparent;
}
.plan-btn-ghost:hover { border-color: rgba(200,241,53,0.4); color: var(--accent); }
.plan-btn-solid {
  background: var(--accent); color: #0a0a0c;
}
.plan-btn-solid:hover { background: var(--accent2); }

.service-divider {
  height: 1px; background: var(--border);
  margin: 4rem 0;
}

/* PLAN PERSONALIZADO */
.custom-banner {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-top: 1rem;
}
.custom-banner h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.custom-banner p { color: var(--muted); font-size: 0.9rem; }

/* BANNER NOTA (publicidad y bot) */
.pub-nota {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg3); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 1.2rem 1.5rem;
  margin: 2rem 0 1rem;
}
.pub-nota-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pub-nota strong { font-family: 'Syne', sans-serif; font-size: 0.95rem; display: block; margin-bottom: 0.3rem; }
.pub-nota p { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.6; }

.price-hosting-tag {
  font-size: 0.78rem; color: var(--accent); display: block;
  margin-top: 5px; font-weight: 500;
}
/* TOGGLE PAGO */
.pay-toggle-wrap {
  display: flex; align-items: center; gap: 12px;
  margin: 2rem 0 1.5rem; flex-wrap: wrap;
}
.pay-label { font-size: 0.9rem; transition: color 0.2s; }
.pay-toggle {
  width: 48px; height: 26px; border-radius: 100px;
  background: var(--border2); border: 1px solid var(--border2);
  cursor: pointer; position: relative; transition: background 0.3s;
  flex-shrink: 0;
}
.pay-toggle.active { background: var(--accent); border-color: var(--accent); }
.pay-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--text); transition: left 0.3s;
}
.pay-toggle.active .pay-thumb { left: 27px; background: #0a0a0c; }
.save-badge {
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px;
  border-radius: 100px; background: var(--accent-dim);
  border: 1px solid rgba(200,241,53,0.2); color: var(--accent);
  opacity: 0; transition: opacity 0.3s;
}
.save-badge.visible { opacity: 1; }
.hosting-note {
  font-size: 0.78rem; color: var(--muted);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px; margin-bottom: 1rem;
  transition: opacity 0.3s;
}
.hosting-note strong { color: var(--text); }
.hosting-note.hidden { opacity: 0; pointer-events: none; }
.hosting-disclaimer {
  font-size: 0.75rem; color: var(--muted);
  margin-top: 1.2rem; padding-left: 0.5rem;
  border-left: 2px solid var(--border);
}

/* NOSOTROS */
.nosotros-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem; margin-top: 3rem;
}
.nosotros-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.nosotros-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.nosotros-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
  flex-shrink: 0;
}
.nosotros-name {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  margin-bottom: 0.15rem;
}
.nosotros-role {
  font-size: 0.78rem; color: var(--muted); margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.nosotros-bio { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.nosotros-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.ntag {
  font-size: 0.72rem; font-weight: 500;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border2);
  color: var(--muted); padding: 3px 10px; border-radius: 100px;
}
.nosotros-banner {
  margin-top: 2.5rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.nosotros-banner-icon { font-size: 2.8rem; flex-shrink: 0; }
.nosotros-banner h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.3rem; }
.nosotros-banner p { color: var(--muted); font-size: 0.9rem; }

/* AUTOMATIZACIONES */
.auto-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.auto-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
}
.auto-card .icon { font-size: 1.4rem; margin-bottom: 0.8rem; }
.auto-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.auto-card p { font-size: 0.8rem; color: var(--muted); }

/* CTA FINAL */
.cta-section {
  padding: 8rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,241,53,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.cta-section p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; }

.comp-banner {
  display: flex; align-items: flex-start; gap: 1.2rem;
  background: rgba(200,241,53,0.04); border: 1px solid rgba(200,241,53,0.2);
  border-radius: 12px; padding: 1.4rem 1.8rem; margin: 1.5rem 0 2rem;
}
.comp-banner-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.comp-banner h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--accent); }
.comp-banner p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.pauta-note {
  font-size: 0.78rem; color: var(--muted);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px; margin-bottom: 1rem;
}
.pauta-note strong { color: var(--text); }

/* FORMULARIO CONTACTO */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start;
}
.contact-form-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 10px; padding: 0.7rem 1rem;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(200,241,53,0.5);
}
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-btn {
  width: 100%; padding: 0.9rem; border-radius: 10px;
  background: var(--accent); color: #0a0a0c;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.contact-btn:hover { background: var(--accent2); transform: translateY(-1px); }
.contact-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
#form-status { font-size: 0.85rem; margin-bottom: 1rem; min-height: 1.4rem; }
#form-status.ok { color: var(--accent); }
#form-status.err { color: var(--red); }
.contact-aside { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.contact-item:first-child { padding-top: 0; }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item-val { font-size: 0.9rem; color: var(--text); text-decoration: none; }
.contact-item-val:hover { color: var(--accent); }

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-aside { order: -1; }
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
footer p { font-size: 0.82rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  text-decoration: none; transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ANIMACIONES */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: none; }

/* HAMBURGUESA */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0;
  background: rgba(10,10,12,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.5rem 2.5rem; z-index: 99;
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu.open {
  transform: translateY(0); opacity: 1;
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block; padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text); text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 600;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--accent); }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .desktop-only { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero { padding: 100px 1.5rem 4rem; }
  .section { padding: 4rem 1.5rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .custom-banner { padding: 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .cta-section { padding: 5rem 1.5rem; }
}