:root {
  --bg: #0b0f10;
  --surface: #101415;
  --surface-2: #1d2022;
  --ink: #e0e3e5;
  --ink-soft: #bac9cc;
  --primary: #00e5ff;
  --primary-soft: #c3f5ff;
  --blue: #2979ff;
  --grad: linear-gradient(135deg, #00e5ff 0%, #0068ed 100%);
  --text-grad: linear-gradient(135deg, #c3f5ff 0%, #00daf3 100%);
  --border: rgba(255,255,255,.08);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, .nav-brand-name, .footer-brand-name { font-family: "Plus Jakarta Sans", sans-serif; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.text-grad { background: var(--text-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 12px; font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700; font-size: .95rem; border: 1px solid transparent; cursor: pointer;
  transition: .25s transform, .25s box-shadow, .25s background;
}
.btn-lg { padding: 16px 32px; font-size: 1.02rem; border-radius: 14px; }
.btn-grad { background: var(--grad); color: #fff; }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(0,229,255,.4); }
.btn-ghost { background: transparent; color: var(--primary); border-color: rgba(0,229,255,.4); }
.btn-ghost:hover { background: rgba(0,229,255,.08); }

.glass {
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(255,255,255,.15);
}

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(11,15,16,.7); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: .3s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 38px; height: 38px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; font-weight: 800; color: #012f37; }
.nav-brand-name { font-weight: 800; font-size: 1.15rem; letter-spacing: -.5px; }
.nav-links { display: flex; gap: 30px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 11px 24px; }
.nav-burger { display: none; background: none; border: 0; width: 28px; height: 20px; position: relative; cursor: pointer; }
.nav-burger span { position: absolute; left: 0; right: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: .3s; }
.nav-burger span:nth-child(1){ top: 0; } .nav-burger span:nth-child(2){ top: 9px; } .nav-burger span:nth-child(3){ top: 18px; }
.nav-mobile { display: none; flex-direction: column; gap: 6px; padding: 12px 24px 20px; background: var(--surface); border-bottom: 1px solid var(--border); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 0; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--border); }
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile .btn { margin-top: 12px; text-align: center; }

/* HERO */
.hero { min-height: 92vh; display: flex; align-items: center; padding: 120px 0 60px; position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media-fallback { position: absolute; inset: 0; background-size: cover; background-position: center; display: none; }
.no-video .hero-media-fallback { display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,15,16,.8) 0%, rgba(11,15,16,.9) 60%, var(--bg) 100%); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(800px 500px at 75% 35%, rgba(0,229,255,.14), transparent 60%), radial-gradient(600px 400px at 15% 80%, rgba(41,121,255,.1), transparent 60%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: var(--glass); border: 1px solid rgba(0,229,255,.3); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--primary-soft); margin-bottom: 22px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(0,229,255,.5);} 70%{ box-shadow: 0 0 0 10px rgba(0,229,255,0);} 100%{ box-shadow: 0 0 0 0 rgba(0,229,255,0);} }
.hero h1 { font-size: 3.4rem; font-weight: 800; line-height: 1.06; letter-spacing: -.02em; margin-bottom: 22px; }
.lead { font-size: 1.16rem; color: var(--ink-soft); margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-metrics { display: flex; gap: 44px; }
.hero-metrics strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.7rem; color: var(--primary); }
.hero-metrics span { color: var(--ink-soft); font-size: .88rem; }

.hero-visual { display: flex; justify-content: center; }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.flow-card { width: 100%; max-width: 420px; border-radius: 22px; padding: 32px; background: rgba(255,255,255,.03); backdrop-filter: blur(20px); border: 1px solid var(--border); border-top: 1px solid rgba(255,255,255,.16); }
.flow-node { display: flex; align-items: center; gap: 16px; padding: 12px; border-bottom: 1px solid var(--border); }
.flow-node:last-child { border-bottom: 0; }
.flow-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-size: 1.4rem; color: var(--primary); }
.flow-node strong { display: block; }
.flow-node span { font-size: .82rem; color: var(--ink-soft); }
.flow-arrow { text-align: center; color: rgba(0,229,255,.5); padding: 6px 0; }

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--surface); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* SERVICES */
.sol-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sol-eyebrow { display: inline-block; color: var(--primary); font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.sol-head h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 16px; }
.sol-terms { color: var(--primary-soft); font-size: 1.05rem; letter-spacing: .02em; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.sol-terms::before, .sol-terms::after { content: ""; opacity: 0; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc { border-radius: var(--radius); padding: 0; overflow: hidden; transition: .3s transform, .3s box-shadow; display: flex; flex-direction: column; }
.svc-photo { height: 180px; overflow: hidden; position: relative; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: .4s transform; }
.svc:hover .svc-photo img { transform: scale(1.06); }
.svc-num { position: absolute; top: 12px; left: 12px; z-index: 2; width: 40px; height: 40px; border-radius: 12px; background: rgba(0,0,0,.55); backdrop-filter: blur(8px); border: 1px solid rgba(0,229,255,.4); color: var(--primary); font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1rem; display: grid; place-items: center; }
.svc-wide .svc-num { position: static; }
.svc-body { padding: 32px; }
.svc-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.svc-tags li { font-size: .78rem; font-weight: 600; color: var(--primary-soft); background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.25); padding: 5px 12px; border-radius: 999px; }
.svc-wide { flex-direction: row; align-items: center; gap: 30px; padding: 32px; }
.svc:hover { transform: translateY(-6px); box-shadow: 0 0 40px rgba(0,229,255,.14); }
.svc-icon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: var(--surface-2); font-size: 1.5rem; margin-bottom: 20px; }
.svc h3 { font-size: 1.3rem; margin-bottom: 12px; }
.svc p { color: var(--ink-soft); }
.svc-wide { grid-column: span 3; display: flex; align-items: center; gap: 30px; }
.svc-wide-copy { flex: 1; }
.svc-visual { flex: .8; max-width: 320px; }
.mini-chart { display: flex; align-items: flex-end; gap: 10px; height: 130px; }
.mini-chart i { flex: 1; height: var(--h); background: var(--grad); border-radius: 6px 6px 0 0; opacity: .85; }

/* BANDA DE CONFIANZA */
.trust-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.trust-label { text-align: center; color: var(--ink-soft); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 40px; }
.trust-items span { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.35rem; font-weight: 700; color: rgba(224,227,229,.28); transition: .3s color; }
.trust-items span:hover { color: var(--primary); }

/* CASOS */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case { border-radius: var(--radius); padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.case-photo { height: 180px; overflow: hidden; }
.case-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.case-quote { font-size: 2.6rem; color: var(--primary); line-height: 1; margin-bottom: 16px; }
.case blockquote { font-size: 1.05rem; margin-bottom: 24px; color: var(--ink); flex: 1; }
.case-author strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; }
.case-author span { color: var(--ink-soft); font-size: .88rem; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { border-radius: var(--radius); padding: 34px; text-align: center; }
.step-num { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--grad); font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.5rem; color: #012f37; margin: 0 auto 20px; }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border-radius: 14px; padding: 22px 26px; cursor: pointer; }
.faq-item summary { font-weight: 700; font-family: "Plus Jakarta Sans", sans-serif; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--primary); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 14px; color: var(--ink-soft); }

/* CONTACT */
.contact-panel { border-radius: 26px; padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-copy h2 { font-size: 2rem; font-weight: 800; margin-bottom: 18px; }
.contact-copy p { color: var(--ink-soft); margin-bottom: 24px; }
.contact-phone { display: inline-flex; align-items: center; gap: 14px; font-size: 1.5rem; font-family: "Plus Jakarta Sans", sans-serif; }
.contact-phone:hover { color: var(--primary); }
.contact-phone .svc-icon { margin: 0; }
.contact-small { font-size: .9rem; margin-top: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 600; font-size: .88rem; }
.contact-form input, .contact-form textarea { padding: 13px 16px; border-radius: 12px; border: 1px solid var(--border); background: rgba(0,0,0,.3); color: var(--ink); font-family: inherit; font-size: .95rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--primary); border-color: transparent; }
.form-note { color: var(--primary); font-weight: 700; }

/* FOOTER */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 48px; align-items: start; }
.footer-brand { display: grid; grid-template-columns: auto auto; gap: 12px; align-items: center; }
.footer-brand-name { font-weight: 800; font-size: 1.1rem; }
.footer-brand p { grid-column: span 2; color: var(--ink-soft); font-size: .9rem; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; color: var(--ink-soft); }
.footer-nav a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact span { color: var(--ink-soft); font-size: .88rem; }
.footer-contact a { font-weight: 700; font-size: 1.1rem; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; text-align: center; color: var(--ink-soft); font-size: .88rem; }

/* LOGO */
.nav-logo-img { background: #ffffff; border-radius: 12px; overflow: hidden; width: 48px; height: 48px; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.nav-logo-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-brand .nav-logo-img { width: 56px; height: 56px; background: #ffffff; }


/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .services-grid, .cases-grid, .steps { grid-template-columns: 1fr; }
  .svc-wide { grid-column: span 1; flex-direction: column; }
  .contact-panel { grid-template-columns: 1fr; padding: 36px 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-metrics { gap: 26px; }
}
