/* ============================================================
   MOVETEK GROUP — Main Stylesheet
   ============================================================ */

/* ── CSS HOUDINI PROPERTIES ── */
@property --border-angle { syntax:'<angle>'; initial-value:0deg; inherits:false; }

:root {
    --dark:        #060d1f;
    --dark-2:      #0b1530;
    --dark-3:      #0e1e42;
    --blue:        #1565e8;
    --cyan:        #00c8ff;
    --white:       #ffffff;
    --gray:        #8892a4;
    --gray-light:  #c8d3e6;
    --card-bg:     rgba(255,255,255,0.03);
    --card-border: rgba(255,255,255,0.08);
    --gradient:    linear-gradient(135deg,#1565e8 0%,#00c8ff 100%);
}

* { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth }
body { font-family:'Inter',sans-serif; background:var(--dark); color:var(--white); overflow-x:hidden; line-height:1.6 }
h1,h2,h3,h4 { font-family:'Space Grotesk',sans-serif; line-height:1.15 }

/* ── UTILS ── */
.container { max-width:1200px; margin:0 auto; padding:0 24px }
.gradient-text { background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }

.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 28px; border-radius:8px; font-weight:600; font-size:15px; text-decoration:none; transition:all .3s; cursor:pointer; border:none; font-family:'Inter',sans-serif }
.btn-primary { background:var(--gradient); color:#fff; box-shadow:0 4px 20px rgba(21,101,232,.4); position:relative; overflow:visible; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 36px rgba(21,101,232,.65),0 0 0 1px rgba(0,200,255,.3); }

/* ── BUTTON SPARK PARTICLES ── */
.btn-spark { position:absolute; border-radius:50%; pointer-events:none; z-index:20; animation:sparkFly var(--dur,.55s) ease-out forwards; }
@keyframes sparkFly { 0%{transform:translate(-50%,-50%) scale(1);opacity:1} 100%{transform:translate(calc(-50% + var(--dx,20px)),calc(-50% + var(--dy,-20px))) scale(0);opacity:0} }

/* ── CUSTOM CURSOR ── */
@media(pointer:fine){ body { cursor:none; } a,button,input,select,textarea,label { cursor:none; } }
@media(pointer:coarse){ .cursor-dot,.cursor-ring { display:none !important; } }
.cursor-dot { position:fixed; top:0; left:0; width:6px; height:6px; background:#fff; border-radius:50%; pointer-events:none; z-index:10001; opacity:0; transition:width .2s,height .2s,background .2s,opacity .15s; will-change:transform; }
.cursor-ring { position:fixed; top:0; left:0; width:36px; height:36px; border-radius:50%; border:1.5px solid rgba(0,200,255,.5); pointer-events:none; z-index:10000; opacity:0; transition:width .3s,height .3s,border-color .3s,border-width .3s,opacity .15s; will-change:transform; }
.cursor-dot.active { opacity:1; }
.cursor-ring.active { opacity:1; }
.cursor-dot.hover { width:4px; height:4px; background:var(--cyan); }
.cursor-ring.hover { width:52px; height:52px; border-color:var(--cyan); border-width:2px; }

/* ── GRAIN OVERLAY ── */
.grain-overlay { position:fixed; inset:0; pointer-events:none; z-index:9995; opacity:.042; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E"); background-size:200px 200px; animation:grainShift .2s steps(1) infinite; }
@keyframes grainShift { 0%{background-position:0 0} 20%{background-position:-35px -15px} 40%{background-position:18px -36px} 60%{background-position:-12px 24px} 80%{background-position:26px 10px} }
.btn-outline { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.25) }
.btn-outline:hover { border-color:var(--cyan); color:var(--cyan); background:rgba(0,200,255,.05) }
.btn-lg { padding:18px 36px; font-size:16px }

.section-tag { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--cyan); background:rgba(0,200,255,.1); border:1px solid rgba(0,200,255,.25); padding:6px 16px; border-radius:100px; margin-bottom:20px }
.section-header { text-align:center; margin-bottom:64px }
.section-title { font-size:clamp(30px,4.5vw,52px); font-weight:800; margin-bottom:16px; background:linear-gradient(135deg,#fff,#c8d3e6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.section-subtitle { font-size:17px; color:var(--gray); max-width:580px; margin:0 auto; line-height:1.7 }

/* ── TYPEWRITER CURSOR ── */
.typewriter-cursor { display:inline-block; width:3px; height:.82em; background:var(--cyan); border-radius:2px; margin-left:4px; vertical-align:middle; box-shadow:0 0 10px var(--cyan),0 0 20px rgba(0,200,255,.4); animation:twBlink 1s step-end infinite }
@keyframes twBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── REVEAL ── */
.reveal { opacity:0; transform:translateY(36px); transition:opacity .7s ease,transform .7s ease }
.reveal.visible { opacity:1; transform:none }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── PARTICLES CANVAS ── */
#hero-canvas { position:fixed; top:0; left:0; width:100%; height:100%; z-index:0; pointer-events:none }

/* ── NAVBAR ── */
#navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:20px 0; transition:background .4s, padding .4s, border-color .4s }
#navbar.scrolled { background:rgba(6,13,31,.97); padding:10px 0; border-bottom:1px solid rgba(255,255,255,.07); box-shadow:0 2px 40px rgba(0,0,0,.5) }
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:24px }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none }
.nav-logo img { height:54px; width:auto; display:block }
.nav-brand { display:flex; flex-direction:column; line-height:1; gap:3px }
.nav-brand-name { font-family:'Space Grotesk',sans-serif; font-size:21px; font-weight:800; letter-spacing:-0.5px; background:linear-gradient(120deg,#fff 30%,#7db8ff 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.nav-brand-sub { font-family:'Space Grotesk',sans-serif; font-size:9.5px; font-weight:700; letter-spacing:3.5px; text-transform:uppercase; color:var(--cyan); opacity:.85 }
.nav-links { display:flex; list-style:none; gap:4px }
.nav-links a { display:block; padding:8px 16px; color:var(--gray-light); text-decoration:none; font-size:15px; font-weight:500; border-radius:6px; transition:all .2s }
.nav-links a:hover, .nav-links a.active { color:#fff; background:rgba(255,255,255,.07) }
.nav-cta { display:flex; align-items:center; gap:12px }
.menu-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px }
.menu-toggle span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:all .3s }

/* ── MOBILE MENU ── */
.mobile-menu { display:none; position:fixed; inset:0; background:rgba(6,13,31,.98); z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:8px }
.mobile-menu.open { display:flex }
.mobile-menu a { font-family:'Space Grotesk',sans-serif; font-size:28px; font-weight:700; color:#fff; text-decoration:none; padding:10px 24px; transition:color .2s }
.mobile-menu a:hover { color:var(--cyan) }
.mobile-close { position:absolute; top:24px; right:24px; background:none; border:none; color:#fff; font-size:32px; cursor:pointer; line-height:1 }

/* ── HERO (index) ── */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; padding:130px 0 90px; overflow:hidden; z-index:1 }
.hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(21,101,232,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(21,101,232,.05) 1px,transparent 1px); background-size:60px 60px; mask-image:radial-gradient(ellipse at 50% 50%,black 30%,transparent 75%); z-index:0 }
.hero-glow-1 { position:absolute; top:-120px; right:-80px; width:700px; height:700px; background:radial-gradient(circle,rgba(21,101,232,.18) 0%,transparent 65%); z-index:0; animation:floatGlow 8s ease-in-out infinite }
.hero-glow-2 { position:absolute; bottom:-200px; left:-100px; width:600px; height:600px; background:radial-gradient(circle,rgba(0,200,255,.1) 0%,transparent 65%); z-index:0; animation:floatGlow 10s ease-in-out infinite reverse }
.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; width:100% }
.hero-content { position:relative; z-index:2 }
.hero-badge { display:none }
.hero h1 { font-size:clamp(36px,4.5vw,68px); font-weight:800; line-height:1.08; margin-bottom:24px; animation:fadeInUp .8s .2s both }
.hero-desc { font-size:17px; color:var(--gray); line-height:1.75; margin-bottom:36px; animation:fadeInUp .8s .4s both }
.hero-ctas { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:52px; animation:fadeInUp .8s .6s both }
.hero-stats { display:flex; gap:36px; flex-wrap:wrap; animation:fadeInUp .8s .8s both }
.hero-stat-num { font-family:'Space Grotesk',sans-serif; font-size:34px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1 }
.hero-stat-label { font-size:12px; color:var(--gray); margin-top:4px }

/* ── HERO DASHBOARD ── */
.hero-visual { position:relative; z-index:2; display:flex; align-items:center; justify-content:center; animation:fadeInUp .8s .5s both }
.dash-card { background:rgba(9,17,38,.85); border:1px solid rgba(21,101,232,.3); border-radius:20px; padding:22px; width:100%; max-width:370px; backdrop-filter:blur(24px); box-shadow:0 24px 80px rgba(0,0,0,.5), 0 0 60px rgba(21,101,232,.12); animation:dashFloat 6s ease-in-out infinite; position:relative; z-index:2 }
.dash-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:4px }
.dash-title-sm { font-size:12px; color:var(--gray); font-weight:500; margin-bottom:4px }
.dash-big-val { font-family:'Space Grotesk',sans-serif; font-size:28px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1 }
.dash-trend { font-size:12px; color:#10b981; display:inline-flex; align-items:center; gap:4px; font-weight:600; margin-left:6px; vertical-align:middle }
.dash-live { display:flex; align-items:center; gap:6px; font-size:11px; font-weight:600; color:var(--cyan); background:rgba(0,200,255,.1); border:1px solid rgba(0,200,255,.2); padding:5px 10px; border-radius:100px }
.dash-live-dot { width:6px; height:6px; border-radius:50%; background:var(--cyan); animation:blink 1.5s infinite; flex-shrink:0 }
.dash-months { display:flex; justify-content:space-between; padding:10px 0 0; }
.dash-months span { font-size:10px; color:rgba(255,255,255,.3) }
.dash-chart-wrap { height:120px; margin-bottom:16px }
#heroChart { display:block; width:100%; height:100% }
.dash-divider { height:1px; background:rgba(255,255,255,.07); margin-bottom:14px }
.dash-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:8px }
.dash-metric-val { font-family:'Space Grotesk',sans-serif; font-size:18px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:3px }
.dash-metric-label { font-size:10px; color:var(--gray) }

/* Floating notifications */
.dash-notif { position:absolute; background:rgba(9,17,38,.92); border:1px solid rgba(255,255,255,.1); border-radius:14px; padding:11px 15px; display:flex; align-items:center; gap:12px; backdrop-filter:blur(16px); box-shadow:0 8px 32px rgba(0,0,0,.35); white-space:nowrap; z-index:3 }
.dash-notif strong { display:block; font-size:13px; font-weight:700; margin-bottom:1px }
.dash-notif span { font-size:11px; color:var(--gray) }
.dash-notif-icon { width:34px; height:34px; border-radius:9px; background:rgba(21,101,232,.2); display:flex; align-items:center; justify-content:center; color:var(--cyan); font-size:15px; flex-shrink:0 }
.dash-n1 { top:-58px; right:-16px; animation:dashFloat 5s ease-in-out 1s infinite }
.dash-n2 { bottom:-56px; left:-16px; animation:dashFloat 4s ease-in-out 2s infinite }

@keyframes dashFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── ORBIT SYSTEM ── */
.orbit-system { position:relative; width:420px; height:420px; flex-shrink:0; pointer-events:none }
.orbit-core { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:52px; height:52px; background:var(--gradient); border-radius:15px; display:flex; align-items:center; justify-content:center; font-size:22px; color:#fff; box-shadow:0 0 0 8px rgba(21,101,232,.12),0 0 50px rgba(21,101,232,.7),0 0 100px rgba(21,101,232,.2); z-index:2; animation:coreGlow 3s ease-in-out infinite }
@keyframes coreGlow { 0%,100%{box-shadow:0 0 0 8px rgba(21,101,232,.12),0 0 40px rgba(21,101,232,.6)} 50%{box-shadow:0 0 0 14px rgba(21,101,232,.18),0 0 70px rgba(21,101,232,.9),0 0 120px rgba(0,200,255,.3)} }
.orbit-circle { position:absolute; top:50%; left:50%; border-radius:50%; border:1px dashed rgba(0,200,255,.14); width:calc(var(--r)*2); height:calc(var(--r)*2); margin-top:calc(-1*var(--r)); margin-left:calc(-1*var(--r)) }
.orb { position:absolute; top:50%; left:50%; border-radius:50%; width:calc(var(--r)*2); height:calc(var(--r)*2); margin-top:calc(-1*var(--r)); margin-left:calc(-1*var(--r)); animation:orbitSpin var(--dur) linear var(--dl,0s) infinite }
.orb-icon { position:absolute; top:0; left:50%; transform:translateX(-50%) translateY(-50%); width:38px; height:38px; background:rgba(6,13,31,.92); border:1px solid rgba(0,200,255,.28); border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:15px; color:var(--cyan); box-shadow:0 4px 20px rgba(0,0,0,.55),0 0 14px rgba(0,200,255,.15); animation:orbitCounter var(--dur) linear var(--dl,0s) infinite; transition:transform .3s }
.orb-icon-ai { border-color:rgba(0,200,255,.5); box-shadow:0 4px 20px rgba(0,0,0,.55),0 0 22px rgba(0,200,255,.35); color:#fff; background:linear-gradient(135deg,rgba(0,200,255,.2),rgba(21,101,232,.35)) }
@keyframes orbitSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes orbitCounter { from{transform:translateX(-50%) translateY(-50%) rotate(0deg)} to{transform:translateX(-50%) translateY(-50%) rotate(-360deg)} }
@media(max-width:1100px){ .orbit-system{ display:none } }

/* ── PAGE HERO (sub-pages) ── */
.page-hero { position:relative; padding:180px 0 80px; text-align:center; z-index:1; overflow:hidden }
.page-hero::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:900px; height:500px; background:radial-gradient(ellipse,rgba(21,101,232,.18) 0%,transparent 70%); z-index:0 }
.page-hero-content { position:relative; z-index:1 }
.page-breadcrumb { display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--gray); margin-bottom:20px }
.page-breadcrumb a { color:var(--cyan); text-decoration:none }
.page-breadcrumb a:hover { text-decoration:underline }
.page-breadcrumb span { opacity:.5 }
.page-hero h1 { font-size:clamp(36px,5.5vw,68px); font-weight:800; margin-bottom:16px; background:linear-gradient(135deg,#fff,#c8d3e6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.page-hero p { font-size:18px; color:var(--gray); max-width:580px; margin:0 auto; line-height:1.7 }
.page-divider { height:1px; background:linear-gradient(to right,transparent,rgba(21,101,232,.35),transparent); margin-bottom:0 }
.page-hero--split { text-align:left }
.page-hero--split .page-hero-content { max-width:560px }
.page-hero--split p { margin:0 }
.page-hero-split-inner { display:flex; align-items:center; justify-content:space-between; gap:48px; position:relative; z-index:1 }
@media(max-width:1000px){ .page-hero-split-inner{ flex-direction:column; text-align:center } .page-hero--split p{margin:0 auto} .orbit-system{width:300px;height:300px} }

/* ── LOGOS STRIP ── */
.logos-strip { position:relative; z-index:1; padding:48px 0; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); background:rgba(255,255,255,.02); }
.logos-text { text-align:center; font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--gray); margin-bottom:36px }
.logos-grid { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:40px 80px; }
.logo-item { display:flex; align-items:center; }
.logo-item img { height:52px; width:auto; object-fit:contain; filter:brightness(0) invert(1); opacity:.32; transition:opacity .35s,transform .35s; }
.logo-item img:hover { opacity:.75; transform:scale(1.06); }

/* ── SERVICES ── */
.services { position:relative; z-index:1; padding:100px 0 }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.service-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:16px; padding:36px 32px; transition:background .4s,border-color .4s,box-shadow .4s; position:relative; --border-angle:0deg; }
.service-card:hover { background:rgba(21,101,232,.05); border-color:rgba(21,101,232,.35); box-shadow:0 24px 60px rgba(21,101,232,.15); }
/* Animated border trace */
.service-card::before { content:''; position:absolute; inset:-1px; border-radius:inherit; padding:1px; background:conic-gradient(from var(--border-angle),transparent 0%,transparent 70%,rgba(0,200,255,.65) 82%,rgba(21,101,232,.85) 89%,transparent 100%); -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; animation:borderTrace 4.5s linear infinite; pointer-events:none; z-index:0; }
@keyframes borderTrace { to { --border-angle:360deg; } }
/* Tilt shine */
.service-card::after { content:''; position:absolute; inset:0; border-radius:inherit; background:radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(255,255,255,.07) 0%,transparent 60%); opacity:0; pointer-events:none; transition:opacity .3s; z-index:0; }
.service-card:hover::after { opacity:1; }
.service-icon { width:56px; height:56px; border-radius:14px; background:rgba(21,101,232,.15); border:1px solid rgba(0,200,255,.2); display:flex; align-items:center; justify-content:center; font-size:24px; color:var(--cyan); margin-bottom:24px; transition:all .3s }
.service-card:hover .service-icon { background:var(--gradient); color:#fff; border-color:transparent; transform:scale(1.08) }
.service-card h3 { font-size:20px; font-weight:700; margin-bottom:12px }
.service-card p { font-size:15px; color:var(--gray); line-height:1.7; margin-bottom:20px }
.service-link { display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:600; color:var(--cyan); text-decoration:none; transition:gap .2s }
.service-link:hover { gap:10px }

/* ── SERVICE DETAIL (servicios.html) ── */
.services-page { position:relative; z-index:1; padding:60px 0 100px }
.service-row { padding:60px 0; border-bottom:1px solid rgba(255,255,255,.05) }
.service-row:last-child { border-bottom:none }
.service-row-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center }
.service-row:nth-child(even) .service-row-inner { direction:rtl }
.service-row:nth-child(even) .service-row-inner > * { direction:ltr }
.service-row-icon { width:80px; height:80px; border-radius:20px; background:rgba(21,101,232,.15); border:1px solid rgba(0,200,255,.2); display:flex; align-items:center; justify-content:center; font-size:36px; color:var(--cyan); margin-bottom:24px }
.service-row h2 { font-size:clamp(26px,3.5vw,40px); font-weight:800; margin-bottom:14px; background:linear-gradient(135deg,#fff,#c8d3e6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.service-row > .service-row-inner > div > p { font-size:16px; color:var(--gray); line-height:1.8; margin-bottom:24px }
.service-features { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; list-style:none }
.service-features li { display:flex; align-items:center; gap:10px; font-size:15px; color:var(--gray-light) }
.service-features li i { color:var(--cyan); font-size:11px; flex-shrink:0 }
.service-visual { background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:48px 32px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; min-height:280px }
.service-visual .vis-icon { font-size:72px; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:20px; display:block }
.service-visual p { font-size:14px; color:var(--gray); line-height:1.7; max-width:220px }

/* ── AI TERMINAL ── */
.ai-terminal-wrap { display:flex; align-items:center; justify-content:center }
.ai-terminal { width:100%; max-width:400px; background:rgba(4,9,22,.95); border:1px solid rgba(0,200,255,.22); border-radius:14px; overflow:hidden; box-shadow:0 24px 80px rgba(0,0,0,.6),0 0 50px rgba(0,200,255,.1),inset 0 1px 0 rgba(255,255,255,.05) }
.terminal-header { display:flex; align-items:center; gap:10px; padding:11px 16px; background:rgba(0,0,0,.4); border-bottom:1px solid rgba(255,255,255,.05) }
.terminal-dots { display:flex; gap:6px }
.terminal-dots span { width:11px; height:11px; border-radius:50%; display:block; flex-shrink:0 }
.terminal-title { font-size:11px; font-weight:600; color:rgba(255,255,255,.35); letter-spacing:.8px; margin-left:6px }
.terminal-body { padding:16px 18px; font-family:'Courier New',monospace; font-size:12px; line-height:1.8; min-height:220px; max-height:220px; overflow:hidden }
.t-line { white-space:pre; display:block }
.t-cmd  { color:var(--cyan) }
.t-out  { color:rgba(255,255,255,.38) }
.t-ok   { color:#10b981 }
.t-warn { color:#f59e0b }
.t-hi   { color:#fff; font-weight:700 }

/* ── SERVICE CARD AI (index.html featured) ── */
.service-card-ai { grid-column:1/-1; background:linear-gradient(135deg,rgba(0,200,255,.07) 0%,rgba(21,101,232,.1) 100%); border-color:rgba(0,200,255,.3); position:relative; overflow:hidden }
.service-card-ai::before { content:''; position:absolute; inset:auto; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent 0%,var(--cyan) 40%,#1565e8 60%,transparent 100%); animation:none; -webkit-mask:none; mask:none; padding:0; }
.service-card-ai::after { content:''; position:absolute; top:-80px; right:-80px; width:260px; height:260px; background:radial-gradient(circle,rgba(0,200,255,.12) 0%,transparent 70%); pointer-events:none }
.service-card-ai:hover { transform:translateY(-4px); box-shadow:0 24px 80px rgba(0,200,255,.15); border-color:rgba(0,200,255,.5) }
.service-ai-badge { display:inline-flex; align-items:center; gap:6px; font-size:10px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:#030810; background:var(--cyan); padding:4px 12px; border-radius:100px; margin-bottom:20px }
.service-card-ai-inner { display:flex; align-items:center; gap:36px }
.service-ai-icon-wrap { flex-shrink:0; width:96px; height:96px; border-radius:24px; background:linear-gradient(135deg,rgba(0,200,255,.18),rgba(21,101,232,.25)); border:1px solid rgba(0,200,255,.3); display:flex; align-items:center; justify-content:center; font-size:42px; color:var(--cyan); box-shadow:0 0 40px rgba(0,200,255,.2) }
.service-ai-body { flex:1 }
.service-ai-body h3 { font-size:22px; font-weight:800; margin-bottom:10px }
.service-ai-body p { font-size:15px; color:var(--gray); line-height:1.7; margin-bottom:18px }
.service-ai-pills { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px }
.service-ai-pills span { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:var(--gray-light); background:rgba(0,200,255,.08); border:1px solid rgba(0,200,255,.18); padding:5px 12px; border-radius:100px }
.service-ai-pills span i { color:var(--cyan); font-size:10px }

/* ── SERVICE ROW AI (servicios.html featured) ── */
.service-row-ai { background:linear-gradient(135deg,rgba(0,200,255,.05),rgba(21,101,232,.07)); border-radius:24px; border-bottom:none !important; padding:48px 48px 60px; margin-bottom:0; position:relative; overflow:hidden }
.service-row-ai::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--cyan),#1565e8,transparent) }
.service-row-ai::after { content:''; position:absolute; bottom:-100px; right:-100px; width:400px; height:400px; background:radial-gradient(circle,rgba(0,200,255,.1) 0%,transparent 70%); pointer-events:none }
.service-ai-badge-row { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:#030810; background:var(--cyan); padding:5px 16px; border-radius:100px; margin-bottom:24px }
.service-row-icon-ai { background:linear-gradient(135deg,rgba(0,200,255,.2),rgba(21,101,232,.3)); border-color:rgba(0,200,255,.35); box-shadow:0 0 50px rgba(0,200,255,.25); animation:pulseGlow 3s ease-in-out infinite }
.service-visual-ai { background:linear-gradient(135deg,rgba(0,200,255,.08),rgba(21,101,232,.12)); border-color:rgba(0,200,255,.25) }
.vis-icon-ai { filter:none; background:none; -webkit-text-fill-color:var(--cyan); color:var(--cyan); text-shadow:0 0 40px rgba(0,200,255,.6) }
@keyframes pulseGlow { 0%,100%{box-shadow:0 0 30px rgba(0,200,255,.2)} 50%{box-shadow:0 0 60px rgba(0,200,255,.5)} }

/* ── PROCESO ── */
.proceso { position:relative; z-index:1; padding:100px 0; background:linear-gradient(180deg,transparent,rgba(21,101,232,.04),transparent) }
.proceso-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; position:relative; margin-top:16px }
.proceso-grid::before { content:''; position:absolute; top:35px; left:calc(12.5% + 24px); right:calc(12.5% + 24px); height:1px; background:linear-gradient(to right,var(--blue),var(--cyan)); opacity:.4 }
.step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 12px }
.step-num { width:70px; height:70px; border-radius:50%; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-size:22px; font-weight:800; color:#fff; margin-bottom:24px; position:relative; z-index:1; box-shadow:0 0 0 8px rgba(21,101,232,.12); transition:all .3s }
.step:hover .step-num { box-shadow:0 0 0 12px rgba(21,101,232,.2),0 0 40px rgba(21,101,232,.4); transform:scale(1.08) }
.step h3 { font-size:18px; font-weight:700; margin-bottom:10px }
.step p { font-size:14px; color:var(--gray); line-height:1.65 }

/* ── WHY US ── */
.why-us { position:relative; z-index:1; padding:100px 0 }
.why-us-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center }
.why-us-left h2 { font-size:clamp(30px,3.8vw,48px); font-weight:800; margin-bottom:16px; background:linear-gradient(135deg,#fff,#c8d3e6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.why-us-left p { font-size:16px; color:var(--gray); line-height:1.8; margin-bottom:32px }
.features-list { display:flex; flex-direction:column; gap:14px }
.feature-item { display:flex; align-items:flex-start; gap:14px }
.feature-check { width:22px; height:22px; border-radius:50%; background:rgba(0,200,255,.12); border:1px solid rgba(0,200,255,.35); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px }
.feature-check i { font-size:9px; color:var(--cyan) }
.feature-item span { font-size:15px; color:var(--gray-light); line-height:1.55 }
.metrics-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:start }
.metric-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:16px; padding:32px 24px; text-align:center; transition:all .3s }
.metric-card:hover { border-color:rgba(21,101,232,.35); background:rgba(21,101,232,.04); transform:translateY(-4px) }
.metric-card:nth-child(even) { margin-top:28px }
.metric-num { font-family:'Space Grotesk',sans-serif; font-size:46px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:8px }
.metric-label { font-size:13px; color:var(--gray); font-weight:500 }

/* ── TESTIMONIALS ── */
.testimonials { position:relative; z-index:1; padding:100px 0; background:linear-gradient(180deg,transparent,rgba(0,200,255,.025),transparent) }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.testimonial-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:16px; padding:32px; transition:all .3s }
.testimonial-card:hover { border-color:rgba(21,101,232,.3); transform:translateY(-4px); box-shadow:0 20px 40px rgba(0,0,0,.3) }
.stars { display:flex; gap:4px; margin-bottom:18px }
.stars i { color:#fbbf24; font-size:14px }
.testimonial-text { font-size:15px; color:var(--gray-light); line-height:1.75; margin-bottom:24px; font-style:italic }
.testimonial-author { display:flex; align-items:center; gap:12px }
.author-avatar { width:44px; height:44px; border-radius:50%; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:15px; flex-shrink:0 }
.author-name { font-weight:700; font-size:15px }
.author-role { font-size:13px; color:var(--gray) }

/* ── UBICACIÓN ── */
.ubicacion { position:relative; z-index:1; padding:100px 0 }
.ubicacion-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start }
.ubicacion-map { border-radius:20px; overflow:hidden; height:480px; border:1px solid rgba(21,101,232,.2); box-shadow:0 20px 60px rgba(0,0,0,.4) }
.ubicacion-map iframe { display:block; width:100%; height:100%; }
.ubicacion-right { display:flex; flex-direction:column; gap:20px }

/* Oficina visual (CSS illustration) */
.oficina-visual { position:relative; border-radius:20px; overflow:hidden; aspect-ratio:16/10; background:#020c1f; border:1px solid rgba(21,101,232,.2) }
.ov-bg { position:absolute; inset:0; background:linear-gradient(160deg,#020c1f 0%,#041228 40%,#020a1a 100%) }
.ov-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(21,101,232,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(21,101,232,.07) 1px,transparent 1px); background-size:28px 28px }
.ov-glow { position:absolute; top:-40px; left:50%; transform:translateX(-50%); width:70%; height:200px; background:radial-gradient(ellipse,rgba(21,101,232,.22) 0%,transparent 70%); pointer-events:none }
.ov-windows { position:absolute; top:14%; left:50%; transform:translateX(-50%); display:grid; grid-template-columns:repeat(3,1fr); gap:8px; width:62% }
.ov-win { aspect-ratio:1/.8; border-radius:4px; background:rgba(21,101,232,.08); border:1px solid rgba(21,101,232,.18); transition:background .3s }
.ov-win.lit { background:rgba(0,200,255,.14); border-color:rgba(0,200,255,.35); box-shadow:0 0 14px rgba(0,200,255,.2),inset 0 0 8px rgba(0,200,255,.08); animation:winBlink calc(3s + var(--i,0)*1.3s) ease-in-out infinite }
.ov-win:nth-child(1){ --i:0 } .ov-win:nth-child(2){ --i:1 } .ov-win:nth-child(3){ --i:2 } .ov-win:nth-child(4){ --i:0.5 } .ov-win:nth-child(5){ --i:1.5 } .ov-win:nth-child(6){ --i:0.8 } .ov-win:nth-child(7){ --i:2 } .ov-win:nth-child(8){ --i:0.3 } .ov-win:nth-child(9){ --i:1.8 }
@keyframes winBlink { 0%,100%{opacity:1} 50%{opacity:.55} }
.ov-floor { position:absolute; bottom:0; left:0; right:0; height:38%; background:linear-gradient(to top,#010810,#020e1f); border-top:1px solid rgba(0,200,255,.15) }
.ov-desk { position:absolute; bottom:18%; left:50%; transform:translateX(-50%); display:flex; align-items:flex-end; gap:14px }
.ov-monitor { width:54px; height:38px; background:rgba(21,101,232,.22); border:1px solid rgba(0,200,255,.3); border-radius:4px; position:relative; box-shadow:0 0 20px rgba(0,200,255,.25) }
.ov-monitor::after { content:''; position:absolute; inset:4px; background:linear-gradient(135deg,rgba(0,200,255,.18),rgba(21,101,232,.35)); border-radius:2px; animation:screenAnim 4s ease-in-out infinite }
.ov-monitor-sm { width:36px; height:26px }
.ov-screen-glow { position:absolute; bottom:22%; left:50%; transform:translateX(-50%); width:120px; height:12px; background:rgba(0,200,255,.18); filter:blur(10px); border-radius:50% }
@keyframes screenAnim { 0%,100%{opacity:.6} 50%{opacity:1} }
.ov-label { position:absolute; bottom:8px; right:10px; font-size:10px; font-weight:600; letter-spacing:.8px; color:rgba(255,255,255,.3); display:flex; align-items:center; gap:5px }
.ov-label i { color:var(--cyan); opacity:.6 }

/* Datos de oficina */
.oficina-info { display:flex; flex-direction:column; gap:14px }
.oficina-dato { display:flex; align-items:flex-start; gap:14px; padding:16px 18px; background:var(--card-bg); border:1px solid var(--card-border); border-radius:14px; transition:border-color .3s }
.oficina-dato:hover { border-color:rgba(21,101,232,.3) }
.oficina-dato-icon { width:40px; height:40px; border-radius:10px; background:rgba(21,101,232,.12); border:1px solid rgba(21,101,232,.2); display:flex; align-items:center; justify-content:center; color:var(--cyan); font-size:15px; flex-shrink:0 }
.oficina-dato strong { display:block; font-size:13px; font-weight:700; color:#fff; margin-bottom:2px }
.oficina-dato span { font-size:13px; color:var(--gray); line-height:1.5 }
@media(max-width:900px){ .ubicacion-grid{ grid-template-columns:1fr } .ubicacion-map{ height:320px } }

/* ── CTA BANNER ── */
.cta-section { position:relative; z-index:1; padding:80px 0 }

.cta-box {
    background: linear-gradient(135deg, rgba(21,101,232,.22) 0%, rgba(9,17,38,.97) 48%, rgba(0,200,255,.13) 100%);
    border: 1px solid rgba(21,101,232,.45);
    border-radius: 28px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,200,255,.06) inset, 0 32px 100px rgba(0,0,0,.45);
    animation: ctaBorderPulse 4s ease-in-out infinite;
}
@keyframes ctaBorderPulse {
    0%,100% { border-color:rgba(21,101,232,.45); box-shadow:0 0 0 1px rgba(0,200,255,.06) inset, 0 0 80px rgba(21,101,232,.12), 0 32px 100px rgba(0,0,0,.45); }
    50%      { border-color:rgba(0,200,255,.55);  box-shadow:0 0 0 1px rgba(0,200,255,.12) inset, 0 0 100px rgba(0,200,255,.18), 0 32px 100px rgba(0,0,0,.45); }
}
/* Grid overlay */
.cta-box::before {
    content:'';
    position:absolute;
    inset:0;
    background-image: linear-gradient(rgba(21,101,232,.055) 1px,transparent 1px), linear-gradient(90deg,rgba(21,101,232,.055) 1px,transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 5%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 5%, transparent 70%);
    pointer-events: none;
}
/* Corner glows */
.cta-box::after {
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 88% 12%, rgba(21,101,232,.38) 0%, transparent 42%),
        radial-gradient(circle at 12% 88%, rgba(0,200,255,.22) 0%, transparent 38%);
    pointer-events: none;
}
.cta-box > * { position:relative; z-index:1; }
.cta-box h2 { font-size:clamp(30px,4.5vw,54px); font-weight:800; margin-bottom:16px; line-height:1.1; background:linear-gradient(135deg,#fff 40%,#b8cdea 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.cta-box p { font-size:17px; color:var(--gray); max-width:520px; margin:0 auto 36px; line-height:1.75; }
.cta-box .btn { position:relative; }

/* ── Mini-stats row ── */
.cta-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); border-radius:16px; overflow:hidden; max-width:480px; margin:0 auto 40px; }
.cta-stat { background:rgba(9,17,38,.75); padding:18px 12px; text-align:center; transition:background .3s; }
.cta-stat:hover { background:rgba(21,101,232,.1); }
.cta-stat-num { font-family:'Space Grotesk',sans-serif; font-size:26px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; }
.cta-stat-label { font-size:11px; color:var(--gray); margin-top:5px; font-weight:500; }

/* ── Trust badges ── */
.cta-trust { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:8px 20px; margin-top:24px; }
.cta-trust-item { display:flex; align-items:center; gap:6px; font-size:12px; font-weight:500; color:var(--gray); }
.cta-trust-item i { color:var(--cyan); font-size:10px; }

/* ── CONTACT ── */
.contact { position:relative; z-index:1; padding:100px 0 }
.contact-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start }
.contact-info h2 { font-size:clamp(28px,3.5vw,44px); font-weight:800; margin-bottom:16px }
.contact-info > p { font-size:16px; color:var(--gray); line-height:1.75; margin-bottom:36px }
.contact-details { display:flex; flex-direction:column; gap:20px }
.contact-detail { display:flex; align-items:center; gap:16px }
.contact-detail-icon { width:44px; height:44px; border-radius:10px; background:rgba(21,101,232,.12); border:1px solid rgba(21,101,232,.25); display:flex; align-items:center; justify-content:center; color:var(--cyan); font-size:16px; flex-shrink:0 }
.contact-detail-text strong { display:block; font-weight:600; font-size:14px; margin-bottom:2px }
.contact-detail-text span { font-size:14px; color:var(--gray) }
.contact-form { background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:40px }
.form-group { margin-bottom:20px }
.form-label { display:block; font-size:13px; font-weight:600; color:var(--gray-light); margin-bottom:8px; letter-spacing:.4px }
.form-input,.form-textarea,.form-select { width:100%; padding:14px 16px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:10px; color:#fff; font-size:15px; font-family:'Inter',sans-serif; transition:all .3s; outline:none; -webkit-appearance:none; appearance:none }
.form-input::placeholder,.form-textarea::placeholder { color:rgba(255,255,255,.22) }
.form-input:focus,.form-textarea:focus,.form-select:focus { border-color:var(--blue); background:rgba(21,101,232,.06); box-shadow:0 0 0 3px rgba(21,101,232,.15) }
.form-textarea { resize:vertical; min-height:120px }
.form-select option { background:#0b1530 }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px }
.form-submit { width:100%; justify-content:center }
.form-submit:disabled { opacity:.6; cursor:not-allowed; pointer-events:none; }
.form-checkbox-wrap { display:flex; align-items:flex-start; gap:10px; margin-bottom:20px; }
.form-checkbox-wrap input[type="checkbox"] { width:16px; height:16px; flex-shrink:0; margin-top:2px; accent-color:var(--blue); cursor:pointer; }
.form-checkbox-wrap label { font-size:12px; color:var(--gray); line-height:1.5; cursor:pointer; }
.form-checkbox-wrap a { color:var(--cyan); text-decoration:none; }
.form-checkbox-wrap a:hover { text-decoration:underline; }
.form-status { display:none; margin-top:20px; padding:16px 20px; border-radius:10px; font-size:14px; font-weight:500; text-align:center; }
.form-status.show { display:block; }
.form-status.success { background:rgba(0,200,130,.1); border:1px solid rgba(0,200,130,.3); color:#00c882; }
.form-status.error   { background:rgba(220,50,50,.1);  border:1px solid rgba(220,50,50,.3);  color:#e05555; }

/* ── FOOTER ── */
footer { position:relative; z-index:1; background:var(--dark-2); border-top:1px solid rgba(255,255,255,.06); padding:64px 0 32px }
.footer-inner { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px }
.footer-brand img { height:100px; margin-bottom:16px; display:block }
.footer-brand p { font-size:14px; color:var(--gray); line-height:1.75; max-width:250px; margin-bottom:24px }
.social-links { display:flex; gap:10px }
.social-link { width:38px; height:38px; border-radius:8px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:var(--gray); text-decoration:none; font-size:15px; transition:all .25s }
.social-link:hover { background:var(--blue); border-color:var(--blue); color:#fff }
.footer-col h4 { font-size:13px; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; color:#fff; margin-bottom:20px }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px }
.footer-links a { font-size:14px; color:var(--gray); text-decoration:none; transition:color .2s }
.footer-links a:hover { color:var(--cyan) }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:32px; display:flex; align-items:center; justify-content:space-between }
.footer-bottom p { font-size:13px; color:var(--gray) }

/* ── KEYFRAMES ── */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(30px)}  to{opacity:1;transform:none} }
@keyframes blink      { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
@keyframes marquee    { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes floatGlow  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }

/* ── CIUDAD FRAGMENTADA ── */
.ciudad-section { position:relative; height:260vh; z-index:1 }
.ciudad-sticky { position:sticky; top:0; height:100vh; overflow:hidden }
#ciudadCanvas { position:absolute; inset:0; width:100%; height:100%; display:block }
.ciudad-overlay { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; pointer-events:none; padding:24px; gap:16px }
.ciudad-title { font-family:'Space Grotesk',sans-serif; font-size:clamp(30px,5vw,64px); font-weight:800; line-height:1.1; text-align:center; opacity:0; transform:translateY(28px); transition:opacity .8s ease,transform .8s ease; text-shadow:0 2px 40px rgba(0,0,0,.9) }
.ciudad-title.show { opacity:1; transform:none }
.ciudad-sub { font-size:18px; color:var(--gray-light); text-align:center; opacity:0; transition:opacity .8s ease .25s; text-shadow:0 2px 20px rgba(0,0,0,1) }
.ciudad-sub.show { opacity:1 }
.ciudad-hint { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; transition:opacity .5s }
.ciudad-hint span { font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gray) }
.scroll-line { width:1px; height:36px; background:linear-gradient(to bottom,var(--cyan),transparent); animation:scrollLine 1.6s ease-in-out infinite }
@keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .hero-inner { grid-template-columns:1fr }
    .hero-visual { display:none }
    .services-grid { grid-template-columns:repeat(2,1fr) }
    .proceso-grid { grid-template-columns:repeat(2,1fr); gap:40px }
    .proceso-grid::before { display:none }
    .why-us-inner { grid-template-columns:1fr; gap:48px }
    .metrics-grid { max-width:420px }
    .testimonials-grid { grid-template-columns:repeat(2,1fr) }
    .footer-inner { grid-template-columns:1fr 1fr; gap:36px }
    .contact-inner { grid-template-columns:1fr; gap:48px }
    .service-row-inner { grid-template-columns:1fr; gap:40px }
    .service-row:nth-child(even) .service-row-inner { direction:ltr }
}
@media(max-width:768px) {
    .nav-links, .nav-cta .btn-primary { display:none }
    .menu-toggle { display:flex }
    .services-grid { grid-template-columns:1fr }
    .hero-stats { gap:28px }
    .testimonials-grid { grid-template-columns:1fr }
    .footer-inner { grid-template-columns:1fr }
    .footer-bottom { flex-direction:column; gap:8px; text-align:center }
    .cta-box { padding:48px 28px }
    .cta-stats { max-width:100%; }
    .cta-trust { gap:6px 14px; }
    .form-row { grid-template-columns:1fr }
    .metric-card:nth-child(even) { margin-top:0 }
    .metrics-grid { max-width:100% }
}

/* ══════════════════════════════════════════════════
   MÉTODO PAGE
══════════════════════════════════════════════════ */

/* ── HERO ── */
.mt-hero { position:relative; min-height:100vh; display:flex; align-items:center; padding:130px 0 100px; overflow:hidden; z-index:1; }
.mt-hero-bg-word { position:absolute; right:-40px; top:50%; transform:translateY(-50%); font-family:'Space Grotesk',sans-serif; font-size:clamp(120px,18vw,260px); font-weight:800; letter-spacing:-8px; background:linear-gradient(135deg,rgba(21,101,232,.08),rgba(0,200,255,.04)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; pointer-events:none; user-select:none; line-height:1; }
.mt-hero-inner { display:grid; grid-template-columns:1fr auto; gap:64px; align-items:center; }
.mt-hero-content h1 { font-size:clamp(40px,5.5vw,76px); font-weight:800; line-height:1.05; margin-bottom:24px; }
.mt-hero-content p { font-size:17px; color:var(--gray); line-height:1.75; max-width:520px; margin-bottom:40px; }
.mt-hero-ctas { display:flex; gap:16px; flex-wrap:wrap; }
.mt-scroll-hint { position:absolute; bottom:36px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; text-decoration:none; }
.mt-scroll-hint span { font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gray); }

/* Hero phases (right column) */
.mt-hero-phases { display:flex; flex-direction:column; gap:0; }
.mt-phase-item { display:flex; align-items:flex-start; gap:16px; opacity:.42; transition:opacity .3s; }
.mt-phase-item.mpi-active { opacity:1; }
.mt-phase-left { display:flex; flex-direction:column; align-items:center; }
.mt-phase-dot { width:10px; height:10px; border-radius:50%; background:var(--card-border); border:2px solid rgba(255,255,255,.2); flex-shrink:0; transition:all .3s; }
.mpi-active .mt-phase-dot { background:var(--cyan); border-color:var(--cyan); box-shadow:0 0 14px rgba(0,200,255,.6); }
.mt-phase-connector { width:1px; height:40px; background:linear-gradient(to bottom,rgba(0,200,255,.25),transparent); margin-top:4px; }
.mt-phase-right { padding-bottom:32px; }
.mt-phase-num { font-family:'Space Grotesk',sans-serif; font-size:11px; font-weight:800; letter-spacing:2px; color:var(--cyan); display:block; margin-bottom:3px; }
.mt-phase-label { font-size:15px; font-weight:600; color:var(--gray-light); }
.mpi-active .mt-phase-label { color:#fff; }

/* ── MANIFESTO ── */
.mt-manifesto { position:relative; z-index:1; padding:80px 0; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); background:linear-gradient(180deg,rgba(21,101,232,.04),transparent); }
.mt-manifesto-text { text-align:center; display:flex; flex-direction:column; gap:4px; }
.mt-manifesto-text span { display:block; font-family:'Space Grotesk',sans-serif; font-size:clamp(26px,4vw,52px); font-weight:800; line-height:1.15; color:rgba(255,255,255,.55); transition:color .3s; }
.mt-manifesto-text span:last-child { color:#fff; }
.mt-manifesto-text span.gradient-text { color:transparent; opacity:1; }

/* ── PROGRESS SIDEBAR ── */
.mt-progress-wrap { position:fixed; left:max(20px, calc(50vw - 680px)); top:50%; transform:translateY(-50%); display:flex; align-items:center; gap:14px; z-index:500; opacity:0; pointer-events:none; transition:opacity .4s; }
.mt-progress-wrap.mt-progress-visible { opacity:1; }
.mt-progress-track { width:2px; height:200px; background:rgba(255,255,255,.08); border-radius:2px; overflow:hidden; position:relative; }
.mt-progress-fill { position:absolute; inset:0; background:linear-gradient(to bottom,var(--blue),var(--cyan)); border-radius:2px; transform-origin:top; transform:scaleY(0); transition:transform .1s linear; }
.mt-progress-nums { display:flex; flex-direction:column; justify-content:space-between; height:200px; }
.mpn-item { font-family:'Space Grotesk',sans-serif; font-size:11px; font-weight:800; letter-spacing:1px; color:rgba(255,255,255,.25); transition:color .3s, transform .3s; cursor:default; }
.mpn-item.active { color:var(--cyan); transform:translateX(4px); }

/* ── STEPS SECTION ── */
.mt-steps { position:relative; z-index:1; }
.mt-step { padding:100px 0; border-bottom:1px solid rgba(255,255,255,.05); position:relative; overflow:hidden; }
.mt-step::before { content:''; position:absolute; inset:0; background:transparent; transition:background .6s; }
.mt-step-alt { background:rgba(255,255,255,.015); }
.mt-step-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.mt-step-alt .mt-step-inner { direction:rtl; }
.mt-step-alt .mt-step-inner > * { direction:ltr; }

.mt-step-header { position:relative; margin-bottom:28px; }
.mt-step-num-bg { display:block; font-family:'Space Grotesk',sans-serif; font-size:clamp(80px,10vw,140px); font-weight:800; line-height:.85; background:linear-gradient(135deg,rgba(21,101,232,.12),rgba(0,200,255,.06)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; user-select:none; margin-bottom:-20px; }
.mt-step-tag { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--cyan); background:rgba(0,200,255,.1); border:1px solid rgba(0,200,255,.25); padding:5px 14px; border-radius:100px; }
.mt-step-title { font-size:clamp(36px,4.5vw,64px); font-weight:800; line-height:1.05; margin-bottom:20px; background:linear-gradient(135deg,#fff,#c8d3e6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.mt-step-desc { font-size:16px; color:var(--gray); line-height:1.8; margin-bottom:28px; }
.mt-step-list { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.mt-step-list li { display:flex; align-items:center; gap:12px; font-size:15px; color:var(--gray-light); }
.mt-step-list li i { color:var(--cyan); font-size:11px; width:18px; height:18px; background:rgba(0,200,255,.12); border:1px solid rgba(0,200,255,.25); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.mt-step-duration { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--gray); background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); padding:8px 16px; border-radius:100px; }
.mt-step-duration i { color:var(--cyan); }
.mt-step-visual { display:flex; align-items:center; justify-content:center; }

/* ── VISUAL 01: SONAR / ESCUCHA ── */
.mt-vis { width:100%; max-width:420px; aspect-ratio:1; display:flex; align-items:center; justify-content:center; position:relative; }
.mt-vis-01 { }
.mtv01-rings { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.mtv01-ring { position:absolute; border-radius:50%; border:1px solid rgba(0,200,255,.18); animation:sonarPulse 3.5s ease-out infinite; }
.mtv01-ring.r1 { width:120px; height:120px; animation-delay:0s; }
.mtv01-ring.r2 { width:220px; height:220px; animation-delay:.8s; }
.mtv01-ring.r3 { width:340px; height:340px; animation-delay:1.6s; }
@keyframes sonarPulse { 0%{opacity:.7;transform:scale(.85)} 100%{opacity:0;transform:scale(1.1)} }
.mtv01-core { width:72px; height:72px; border-radius:20px; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-size:30px; color:#fff; box-shadow:0 0 50px rgba(21,101,232,.6); z-index:2; position:relative; animation:coreGlow 3s ease-in-out infinite; }
.mtv01-bubbles { position:absolute; inset:0; }
.mtv01-bubble { position:absolute; background:rgba(9,17,38,.92); border:1px solid rgba(0,200,255,.25); border-radius:12px; padding:8px 14px; font-size:12px; font-weight:600; color:var(--gray-light); white-space:nowrap; backdrop-filter:blur(12px); }
.mtv01-bubble.b1 { top:10%; left:55%; animation:bubbleFloat 4s ease-in-out infinite; }
.mtv01-bubble.b2 { top:42%; left:58%; animation:bubbleFloat 4s ease-in-out 1.3s infinite; }
.mtv01-bubble.b3 { top:72%; left:50%; animation:bubbleFloat 4s ease-in-out 2.6s infinite; }
@keyframes bubbleFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── VISUAL 02: AUDITORÍA ── */
.mt-vis-02 { display:block; aspect-ratio:auto; background:rgba(9,17,38,.9); border:1px solid rgba(21,101,232,.25); border-radius:16px; overflow:hidden; max-width:400px; width:100%; box-shadow:0 24px 80px rgba(0,0,0,.5); }
.mt-vis-02 .mtv02-header { display:flex; align-items:center; gap:10px; font-size:13px; font-weight:700; color:#fff; padding:14px 18px; background:rgba(0,0,0,.3); border-bottom:1px solid rgba(255,255,255,.06); }
.mt-vis-02 .mtv02-header i { color:var(--cyan); }
.mtv02-live { margin-left:auto; display:flex; align-items:center; gap:6px; font-size:11px; color:var(--cyan); }
.mtv02-rows { padding:20px 18px; display:flex; flex-direction:column; gap:16px; }
.mtv02-row { display:grid; grid-template-columns:120px 1fr 40px; align-items:center; gap:12px; font-size:12px; color:var(--gray); }
.mtv02-track { height:6px; background:rgba(255,255,255,.06); border-radius:3px; overflow:hidden; }
.mtv02-fill { height:100%; width:var(--w,0); background:var(--gradient); border-radius:3px; animation:barGrow .9s ease forwards; transform-origin:left; }
@keyframes barGrow { from{width:0} to{width:var(--w,0)} }
.mtv02-bad  { color:#ef4444; font-weight:700; text-align:right; }
.mtv02-warn { color:#f59e0b; font-weight:700; text-align:right; }
.mtv02-mid  { color:#10b981; font-weight:700; text-align:right; }
.mtv02-footer { display:flex; align-items:center; gap:8px; font-size:12px; font-weight:600; color:#f59e0b; padding:12px 18px; background:rgba(245,158,11,.06); border-top:1px solid rgba(245,158,11,.15); }

/* ── VISUAL 03: ESTRATEGIA / ROADMAP ── */
.mt-vis-03 { display:flex; flex-direction:column; align-items:center; gap:24px; aspect-ratio:auto; max-width:380px; width:100%; }
.mtv03-goal { display:flex; align-items:center; gap:10px; font-family:'Space Grotesk',sans-serif; font-size:14px; font-weight:800; color:#fff; background:var(--gradient); padding:12px 24px; border-radius:100px; box-shadow:0 8px 30px rgba(21,101,232,.4); }
.mtv03-goal i { font-size:16px; }
.mtv03-channels { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }
.mtv03-ch { display:flex; flex-direction:column; align-items:center; gap:6px; font-size:11px; font-weight:700; color:var(--gray-light); background:var(--card-bg); border:1px solid var(--card-border); border-radius:12px; padding:14px 16px; min-width:64px; transition:all .3s; }
.mtv03-ch:hover { border-color:rgba(0,200,255,.4); color:var(--cyan); }
.mtv03-ch i { font-size:20px; color:var(--cyan); }
.mtv03-timeline { display:flex; align-items:flex-start; gap:0; width:100%; position:relative; }
.mtv03-timeline::before { content:''; position:absolute; top:8px; left:16px; right:16px; height:1px; background:linear-gradient(to right,var(--blue),var(--cyan)); opacity:.4; }
.mtv03-month { flex:1; display:flex; flex-direction:column; align-items:center; gap:6px; position:relative; }
.mtv03-dot { width:16px; height:16px; border-radius:50%; background:var(--dark-2); border:2px solid rgba(255,255,255,.2); position:relative; z-index:1; transition:all .3s; }
.mtv03-month.active .mtv03-dot { background:var(--cyan); border-color:var(--cyan); box-shadow:0 0 14px rgba(0,200,255,.6); }
.mtv03-mlabel { font-size:12px; font-weight:700; color:var(--cyan); }
.mtv03-month small { font-size:10px; color:var(--gray); text-align:center; }

/* ── VISUAL 04: TERMINAL (reusa .ai-terminal) ── */
.mt-vis-04 { aspect-ratio:auto; max-width:400px; width:100%; }
.mt-vis-04 .ai-terminal { width:100%; }

/* ── VISUAL 05: RESULTADOS ── */
.mt-vis-05 { display:flex; flex-direction:column; gap:16px; aspect-ratio:auto; max-width:380px; width:100%; }
.mtv05-label { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gray); text-align:center; }
.mtv05-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.mtv05-metric { background:var(--card-bg); border:1px solid var(--card-border); border-radius:14px; padding:20px 18px; display:flex; flex-direction:column; gap:4px; position:relative; overflow:hidden; transition:border-color .3s; }
.mtv05-metric:hover { border-color:rgba(21,101,232,.35); }
.mtv05-metric::before { content:''; position:absolute; inset:-1px; border-radius:inherit; padding:1px; background:conic-gradient(from var(--border-angle),transparent 0%,transparent 70%,rgba(0,200,255,.4) 82%,rgba(21,101,232,.6) 89%,transparent 100%); -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; animation:borderTrace 5s linear infinite; pointer-events:none; }
.mtv05-icon { color:var(--cyan); font-size:14px; margin-bottom:4px; }
.mtv05-icon-down { color:#10b981; font-size:14px; margin-bottom:4px; }
.mtv05-val { font-family:'Space Grotesk',sans-serif; font-size:28px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; }
.mtv05-name { font-size:11px; color:var(--gray); font-weight:500; }

/* ── PILARES ── */
.mt-pilares { position:relative; z-index:1; padding:100px 0; background:linear-gradient(180deg,transparent,rgba(21,101,232,.04),transparent); }
.mt-pilares-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.mt-pilar { background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:40px 32px; text-align:center; transition:all .4s; position:relative; overflow:hidden; }
.mt-pilar::before { content:''; position:absolute; inset:-1px; border-radius:inherit; padding:1px; background:conic-gradient(from var(--border-angle),transparent 0%,transparent 70%,rgba(0,200,255,.6) 82%,rgba(21,101,232,.8) 89%,transparent 100%); -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; animation:borderTrace 5s linear infinite; pointer-events:none; }
.mt-pilar:hover { transform:translateY(-6px); background:rgba(21,101,232,.05); box-shadow:0 24px 60px rgba(21,101,232,.12); }
.mt-pilar-icon { width:60px; height:60px; border-radius:16px; background:rgba(21,101,232,.15); border:1px solid rgba(0,200,255,.25); display:flex; align-items:center; justify-content:center; font-size:26px; color:var(--cyan); margin:0 auto 24px; transition:all .3s; }
.mt-pilar:hover .mt-pilar-icon { background:var(--gradient); color:#fff; border-color:transparent; }
.mt-pilar h3 { font-size:20px; font-weight:700; margin-bottom:12px; }
.mt-pilar p { font-size:15px; color:var(--gray); line-height:1.7; }

/* ── GARANTÍA ── */
.mt-garantia { position:relative; z-index:1; padding:100px 0; }
.mt-garantia-inner { display:grid; grid-template-columns:auto 1fr; gap:64px; align-items:start; background:linear-gradient(135deg,rgba(21,101,232,.12),rgba(0,200,255,.06)); border:1px solid rgba(21,101,232,.3); border-radius:28px; padding:64px; position:relative; overflow:hidden; }
.mt-garantia-inner::before { content:''; position:absolute; top:-60px; right:-60px; width:320px; height:320px; background:radial-gradient(circle,rgba(0,200,255,.1) 0%,transparent 70%); pointer-events:none; }
.mt-garantia-badge { width:88px; height:88px; border-radius:24px; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-size:38px; color:#fff; box-shadow:0 0 60px rgba(21,101,232,.5); flex-shrink:0; animation:coreGlow 3s ease-in-out infinite; }
.mt-garantia-content h2 { font-size:clamp(24px,3.5vw,44px); font-weight:800; line-height:1.15; margin-bottom:16px; background:linear-gradient(135deg,#fff,#c8d3e6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.mt-garantia-content h2 .gradient-text { background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.mt-garantia-content > p { font-size:16px; color:var(--gray); line-height:1.75; margin-bottom:32px; max-width:560px; }
.mt-garantia-bullets { display:grid; grid-template-columns:1fr 1fr; gap:12px 32px; margin-bottom:36px; }
.mt-garantia-bullet { display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; color:var(--gray-light); }
.mt-garantia-bullet i { color:var(--cyan); font-size:11px; width:20px; height:20px; background:rgba(0,200,255,.12); border:1px solid rgba(0,200,255,.3); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* ── RESPONSIVE MÉTODO ── */
@media(max-width:1024px){
    .mt-hero-inner { grid-template-columns:1fr; }
    .mt-hero-phases { flex-direction:row; flex-wrap:wrap; gap:24px; }
    .mt-phase-connector { display:none; }
    .mt-phase-right { padding-bottom:0; }
    .mt-progress-wrap { display:none; }
    .mt-step-inner, .mt-step-alt .mt-step-inner { grid-template-columns:1fr; direction:ltr; gap:48px; }
    .mt-step-alt .mt-step-inner > * { direction:ltr; }
    .mt-step-visual { order:-1; }
    .mt-step-alt .mt-step-visual { order:-1; }
    .mt-garantia-inner { grid-template-columns:1fr; gap:32px; padding:40px; }
    .mt-garantia-badge { width:64px; height:64px; font-size:28px; }
    .mt-pilares-grid { grid-template-columns:1fr 1fr; }
    .mt-hero-bg-word { opacity:.4; }
}
@media(max-width:768px){
    .mt-step-num-bg { font-size:72px; }
    .mt-step-title { font-size:38px; }
    .mt-pilares-grid { grid-template-columns:1fr; }
    .mt-garantia-bullets { grid-template-columns:1fr; }
    .mtv05-grid { grid-template-columns:1fr 1fr; }
    .mt-hero-phases { display:none; }
    .mt-vis { max-width:100%; }
    .mt-vis-02, .mt-vis-03, .mt-vis-04 { max-width:100%; }
}

/* ══════════════════════════════════════════════
   MEGA-MENU
══════════════════════════════════════════════ */
.nav-mega-wrap { position:relative; }
.nav-mega-trigger { display:flex; align-items:center; gap:6px; cursor:pointer; }
.nav-chevron { font-size:10px; transition:transform .25s; pointer-events:none; }
.nav-mega-wrap.open .nav-chevron { transform:rotate(180deg); }
.mega-menu { position:absolute; top:calc(100% + 18px); left:50%; transform:translateX(-50%) translateY(-8px); width:700px; background:rgba(6,13,31,.99); border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:28px; display:grid; grid-template-columns:repeat(3,1fr); gap:0 24px; opacity:0; visibility:hidden; transition:opacity .2s,transform .2s,visibility .2s; box-shadow:0 24px 80px rgba(0,0,0,.8); pointer-events:none; z-index:2000; }
.nav-mega-wrap.open .mega-menu { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); pointer-events:auto; }
.mega-col-title { font-family:'Space Grotesk',sans-serif; font-size:10px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--cyan); margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid rgba(0,200,255,.2); }
.mega-links { list-style:none; display:flex; flex-direction:column; gap:2px; }
.mega-links a { display:flex; align-items:center; gap:12px; padding:9px 10px; border-radius:10px; text-decoration:none; transition:background .15s; }
.mega-links a:hover { background:rgba(21,101,232,.1); }
.mega-links a > i { width:32px; height:32px; border-radius:8px; background:rgba(21,101,232,.1); border:1px solid rgba(0,200,255,.15); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--cyan); flex-shrink:0; transition:all .2s; }
.mega-links a:hover > i { background:var(--gradient); color:#fff; border-color:transparent; }
.mega-links strong { font-size:13px; font-weight:600; color:var(--gray-light); display:block; }
.mega-links a:hover strong { color:#fff; }
.mega-links em { font-size:11px; font-style:normal; color:var(--gray); display:block; }
.mega-footer { grid-column:1/-1; display:flex; align-items:center; justify-content:space-between; padding-top:14px; border-top:1px solid rgba(255,255,255,.06); margin-top:16px; }
.mega-all { font-size:13px; font-weight:600; color:var(--gray); text-decoration:none; display:flex; align-items:center; gap:6px; transition:color .2s; }
.mega-all:hover { color:var(--cyan); }
.mega-badge { font-size:11px; font-weight:700; color:var(--cyan); background:rgba(0,200,255,.1); border:1px solid rgba(0,200,255,.25); padding:4px 10px; border-radius:100px; }

/* Mobile services accordion */
.mob-srv-toggle { background:none; border:none; font-family:'Space Grotesk',sans-serif; font-size:28px; font-weight:700; color:#fff; padding:10px 24px; display:flex; align-items:center; gap:10px; width:100%; justify-content:center; cursor:pointer; transition:color .2s; }
.mob-srv-toggle:hover { color:var(--cyan); }
.mob-srv-toggle i { font-size:16px; transition:transform .3s; }
.mob-srv-toggle.open i { transform:rotate(180deg); }
.mob-srv-sub { display:none; flex-direction:column; padding:4px 0 16px; }
.mob-srv-sub.open { display:flex; }
.mob-srv-sub a { font-size:16px !important; font-weight:500 !important; color:rgba(255,255,255,.65) !important; padding:8px 24px !important; }
.mob-srv-sub a:hover { color:var(--cyan) !important; }

@media(max-width:960px){ .mega-menu { width:min(580px,90vw); grid-template-columns:1fr 1fr; } .mega-menu .mega-col:last-child { grid-column:1/-1; } }
@media(max-width:768px){ .mega-menu { display:none !important; } }

/* ══════════════════════════════════════════════
   SERVICE PAGES
══════════════════════════════════════════════ */

/* ── Hero ── */
.srv-page-hero { position:relative; z-index:1; padding:160px 0 80px; overflow:hidden; }
.srv-page-hero::before { content:''; position:absolute; top:-120px; right:-80px; width:600px; height:600px; background:radial-gradient(circle,rgba(21,101,232,.18) 0%,transparent 65%); pointer-events:none; }
.srv-page-hero .container { position:relative; z-index:1; }
.srv-page-hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.srv-page-hero-left h1 { font-size:clamp(36px,5vw,64px); font-weight:800; line-height:1.1; margin-bottom:24px; }
.srv-page-hero-left p { font-size:18px; color:var(--gray); line-height:1.75; margin-bottom:36px; max-width:520px; }
.srv-page-hero-pills { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px; }
.srv-page-hero-pill { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:var(--cyan); background:rgba(0,200,255,.08); border:1px solid rgba(0,200,255,.25); padding:6px 14px; border-radius:100px; }
.srv-page-hero-right { display:flex; align-items:center; justify-content:center; }
.srv-hero-visual { width:100%; aspect-ratio:1; max-width:420px; position:relative; }

/* ── Stats bar ── */
.srv-stats-bar { position:relative; z-index:1; padding:60px 0; }
.srv-stats-inner { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.06); border-radius:20px; overflow:hidden; }
.srv-stat { padding:32px 28px; background:rgba(6,13,31,.8); text-align:center; transition:background .3s; }
.srv-stat:hover { background:rgba(21,101,232,.08); }
.srv-stat-num { font-family:'Space Grotesk',sans-serif; font-size:42px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:8px; }
.srv-stat-label { font-size:13px; color:var(--gray); font-weight:500; }

/* ── Intro ── */
.srv-intro { position:relative; z-index:1; padding:100px 0; }
.srv-intro-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.srv-intro-text h2 { font-size:clamp(28px,3.5vw,44px); font-weight:800; line-height:1.2; margin-bottom:20px; background:linear-gradient(135deg,#fff,#c8d3e6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.srv-intro-text p { font-size:16px; color:var(--gray); line-height:1.8; margin-bottom:16px; }
.srv-checklist { list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:24px; }
.srv-checklist li { display:flex; align-items:center; gap:12px; font-size:15px; color:var(--gray-light); font-weight:500; }
.srv-checklist li::before { content:'\f00c'; font-family:'Font Awesome 6 Free'; font-weight:900; font-size:11px; color:#fff; background:var(--gradient); width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* ── Features grid ── */
.srv-features { position:relative; z-index:1; padding:100px 0; background:linear-gradient(180deg,transparent,rgba(21,101,232,.04),transparent); }
.srv-features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:64px; }
.srv-feature-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:36px 28px; transition:all .4s; position:relative; overflow:hidden; }
.srv-feature-card::before { content:''; position:absolute; inset:-1px; border-radius:inherit; padding:1px; background:conic-gradient(from var(--border-angle),transparent 0%,transparent 75%,rgba(0,200,255,.35) 85%,rgba(21,101,232,.5) 91%,transparent 100%); -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; animation:borderTrace 6s linear infinite; pointer-events:none; }
.srv-feature-card:hover { transform:translateY(-6px); background:rgba(21,101,232,.05); box-shadow:0 24px 60px rgba(21,101,232,.12); }
.srv-feature-icon { width:52px; height:52px; border-radius:14px; background:rgba(21,101,232,.12); border:1px solid rgba(0,200,255,.2); display:flex; align-items:center; justify-content:center; font-size:22px; color:var(--cyan); margin-bottom:24px; transition:all .3s; }
.srv-feature-card:hover .srv-feature-icon { background:var(--gradient); color:#fff; border-color:transparent; }
.srv-feature-card h3 { font-size:18px; font-weight:700; margin-bottom:10px; }
.srv-feature-card p { font-size:14px; color:var(--gray); line-height:1.7; }

/* ── Process / How it works ── */
.srv-process { position:relative; z-index:1; padding:100px 0; }
.srv-process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:64px; position:relative; }
.srv-process-steps::before { content:''; position:absolute; top:28px; left:10%; right:10%; height:1px; background:linear-gradient(to right,transparent,rgba(21,101,232,.4),rgba(0,200,255,.4),transparent); }
.srv-process-step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 16px; position:relative; z-index:1; }
.srv-process-num { width:56px; height:56px; border-radius:50%; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-size:20px; font-weight:800; color:#fff; margin-bottom:24px; box-shadow:0 0 30px rgba(21,101,232,.4); flex-shrink:0; }
.srv-process-step h4 { font-size:16px; font-weight:700; margin-bottom:8px; }
.srv-process-step p { font-size:13px; color:var(--gray); line-height:1.65; }

/* ── FAQ ── */
.faq-section { position:relative; z-index:1; padding:100px 0; }
.faq-list { max-width:760px; margin:64px auto 0; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--card-bg); border:1px solid var(--card-border); border-radius:14px; overflow:hidden; transition:border-color .3s; }
.faq-item.open { border-color:rgba(21,101,232,.4); }
.faq-q { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 24px; cursor:pointer; transition:background .2s; }
.faq-q:hover { background:rgba(21,101,232,.05); }
.faq-q span { font-size:16px; font-weight:600; color:var(--gray-light); }
.faq-item.open .faq-q span { color:#fff; }
.faq-icon { width:28px; height:28px; border-radius:50%; border:1.5px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:12px; color:var(--gray); transition:all .3s; }
.faq-item.open .faq-icon { background:var(--gradient); border-color:transparent; color:#fff; transform:rotate(45deg); }
.faq-a { display:none; padding:0 24px 22px; font-size:15px; color:var(--gray); line-height:1.75; }
.faq-item.open .faq-a { display:block; }

/* ── Related services ── */
.srv-related { position:relative; z-index:1; padding:100px 0; background:linear-gradient(180deg,transparent,rgba(21,101,232,.03),transparent); }
.srv-related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:64px; }
.srv-related-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:16px; padding:28px; text-decoration:none; transition:all .3s; display:flex; flex-direction:column; gap:16px; }
.srv-related-card:hover { border-color:rgba(21,101,232,.4); background:rgba(21,101,232,.06); transform:translateY(-4px); }
.srv-related-icon { width:44px; height:44px; border-radius:12px; background:rgba(21,101,232,.12); border:1px solid rgba(0,200,255,.2); display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--cyan); }
.srv-related-card h4 { font-size:16px; font-weight:700; color:#fff; }
.srv-related-card p { font-size:13px; color:var(--gray); line-height:1.6; }
.srv-related-link { display:flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--cyan); margin-top:auto; }

/* ── Service page responsive ── */
@media(max-width:1024px){
    .srv-page-hero-inner { grid-template-columns:1fr; gap:48px; }
    .srv-hero-visual { max-width:320px; }
    .srv-stats-inner { grid-template-columns:repeat(2,1fr); }
    .srv-intro-inner { grid-template-columns:1fr; gap:48px; }
    .srv-features-grid { grid-template-columns:repeat(2,1fr); }
    .srv-process-steps { grid-template-columns:repeat(2,1fr); gap:40px; }
    .srv-process-steps::before { display:none; }
    .srv-related-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px){
    .srv-stats-inner { grid-template-columns:1fr 1fr; }
    .srv-features-grid { grid-template-columns:1fr; }
    .srv-process-steps { grid-template-columns:1fr; }
    .srv-related-grid { grid-template-columns:1fr; }
    .srv-page-hero-left h1 { font-size:36px; }
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════ */
.legal-hero {
    padding: 140px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,212,255,.07) 0%, transparent 70%);
}
.legal-hero-inner { max-width: 720px; }
.legal-breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--gray); margin-bottom:20px; }
.legal-breadcrumb a { color:var(--gray); text-decoration:none; }
.legal-breadcrumb a:hover { color:var(--cyan); }
.legal-breadcrumb span { color:var(--cyan); }
.legal-hero h1 { font-size:clamp(28px,4vw,44px); font-weight:800; margin-bottom:12px; }
.legal-hero .legal-meta { font-size:13px; color:var(--gray); }
.legal-hero .legal-meta strong { color:var(--text-muted); }

/* Layout */
.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    align-items: start;
    padding: 64px 0 100px;
}
.legal-toc {
    position: sticky;
    top: 100px;
}
.legal-toc h4 { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gray); margin-bottom:16px; }
.legal-toc ol { list-style:none; padding:0; margin:0; counter-reset:toc; }
.legal-toc ol li { counter-increment:toc; margin-bottom:10px; }
.legal-toc ol li a {
    display:flex; align-items:baseline; gap:8px;
    font-size:13px; color:var(--text-muted); text-decoration:none;
    transition:color .2s;
}
.legal-toc ol li a::before {
    content:counter(toc,decimal-leading-zero);
    font-size:11px; color:var(--cyan); font-weight:700; min-width:18px;
}
.legal-toc ol li a:hover { color:var(--text); }

/* Content */
.legal-content { min-width:0; }
.legal-section { margin-bottom:56px; scroll-margin-top:110px; }
.legal-section h2 {
    font-size:18px; font-weight:700; color:var(--text);
    border-left:3px solid var(--cyan); padding-left:14px;
    margin-bottom:20px;
}
.legal-section h3 { font-size:15px; font-weight:600; color:var(--text-muted); margin:24px 0 10px; }
.legal-section p { font-size:14px; color:var(--gray); line-height:1.8; margin-bottom:12px; }
.legal-section ul, .legal-section ol { padding-left:20px; margin-bottom:12px; }
.legal-section li { font-size:14px; color:var(--gray); line-height:1.8; margin-bottom:6px; }
.legal-section strong { color:var(--text-muted); font-weight:600; }
.legal-section a { color:var(--cyan); text-decoration:none; }
.legal-section a:hover { text-decoration:underline; }

/* Data box */
.legal-data-box {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom:20px;
}
.legal-data-box dl { display:grid; grid-template-columns:140px 1fr; gap:6px 16px; margin:0; }
.legal-data-box dt { font-size:12px; color:var(--gray); font-weight:600; padding-top:1px; }
.legal-data-box dd { font-size:14px; color:var(--text-muted); margin:0; }

/* Cookies table */
.cookies-table { width:100%; border-collapse:collapse; margin:16px 0 24px; font-size:13px; }
.cookies-table th {
    text-align:left; padding:10px 14px; font-size:11px; font-weight:700;
    letter-spacing:.08em; text-transform:uppercase; color:var(--gray);
    border-bottom:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.02);
}
.cookies-table td {
    padding:10px 14px; color:var(--gray); line-height:1.6;
    border-bottom:1px solid rgba(255,255,255,.05);
    vertical-align:top;
}
.cookies-table tr:last-child td { border-bottom:none; }
.cookie-type {
    display:inline-block; font-size:10px; font-weight:700; letter-spacing:.06em;
    text-transform:uppercase; padding:2px 8px; border-radius:20px; white-space:nowrap;
}
.cookie-type.analitica { background:rgba(0,212,255,.12); color:var(--cyan); }
.cookie-type.tecnica { background:rgba(124,58,237,.15); color:#a78bfa; }
.cookie-type.marketing { background:rgba(245,158,11,.12); color:#f59e0b; }

/* Rights highlight */
.legal-rights-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:16px 0;
}
.legal-right-card {
    background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07);
    border-radius:10px; padding:16px; text-align:center;
}
.legal-right-card i { color:var(--cyan); font-size:18px; margin-bottom:8px; display:block; }
.legal-right-card span { font-size:12px; color:var(--text-muted); font-weight:600; }

@media(max-width:900px){
    .legal-layout { grid-template-columns:1fr; gap:0; }
    .legal-toc { position:static; margin-bottom:40px; }
    .legal-toc ol { display:flex; flex-wrap:wrap; gap:8px; }
    .legal-toc ol li { margin:0; }
    .legal-toc ol li a { font-size:12px; background:rgba(255,255,255,.04); border-radius:20px; padding:4px 12px; }
    .legal-rights-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:600px){
    .legal-data-box dl { grid-template-columns:1fr; }
    .legal-data-box dt { margin-top:10px; }
    .legal-data-box dt:first-child { margin-top:0; }
    .legal-rights-grid { grid-template-columns:1fr 1fr; }
    .cookies-table { font-size:12px; }
    .cookies-table th, .cookies-table td { padding:8px; }
}

/* ═══════════════════════════════════════════════
   TOOLS STRIP
═══════════════════════════════════════════════ */
.tools-strip {
    padding: 44px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(255,255,255,.015);
    overflow: hidden;
}
.tools-strip-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gray);
    margin-bottom: 32px;
}
.tools-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
}
.tool-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: .4;
    transition: opacity .25s ease;
    cursor: default;
}
.tool-logo:hover { opacity: 1; }
.tool-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.tool-logo-text {
    font-size: 12px;
    color: #fff;
    line-height: 1.25;
    font-family: var(--font-body);
}
.tool-logo-text em {
    display: block;
    font-style: normal;
    font-size: 10px;
    opacity: .7;
    letter-spacing: .03em;
}
.tool-logo-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.tool-wordmark {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    font-family: var(--font-head);
}
.tool-wordmark-semrush {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: var(--font-head);
}
@media(max-width:768px){
    .tools-strip-inner { gap:28px; }
    .tool-logo { gap:8px; }
    .tool-logo svg { width:22px; height:22px; }
    .tool-wordmark { font-size:16px; }
    .tool-wordmark-semrush { font-size:13px; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
#waFloat {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9990;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,.45);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
#waFloat:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,.65); }
#waFloat i { color: #fff; font-size: 28px; line-height: 1; }
#waFloat .wa-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(6,13,31,.96);
    color: #fff;
    font-size: 13px; font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
#waFloat:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════ */
#scrollProgress {
    position: fixed; top: 0; left: 0; z-index: 9998;
    height: 2px; width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    pointer-events: none;
    transform-origin: left;
}

/* ═══════════════════════════════════════════════
   SPLIT-TEXT HERO H1
═══════════════════════════════════════════════ */
.hero-split-h1 { animation: none !important; }
.hs-line { display: block; overflow: hidden; line-height: 1.1; }
.hs-inner {
    display: block;
    opacity: 0;
    transform: translateY(110%);
    animation: hsSlideIn .95s cubic-bezier(.22,1,.36,1) forwards;
}
.hs-line:nth-child(1) .hs-inner { animation-delay: 1.4s; }
.hs-line:nth-child(2) .hs-inner { animation-delay: 1.65s; }
.hs-line:nth-child(3) .hs-inner { animation-delay: 1.9s; }
@keyframes hsSlideIn { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════
   TOOLS MARQUEE
═══════════════════════════════════════════════ */
.tools-marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    margin-top: 8px;
}
.tools-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 36s linear infinite;
}
.tools-marquee-track:hover { animation-play-state: paused; }
.tools-marquee-inner {
    display: flex; align-items: center;
    gap: 52px; padding: 0 26px; flex-shrink: 0;
}
.tool-sep { color: rgba(255,255,255,.1); font-size: 28px; font-weight: 100; user-select: none; }

/* ═══════════════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════════════ */
#cookieBanner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: min(780px, calc(100vw - 32px));
    z-index: 9999;
    opacity: 0;
    transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
    pointer-events: none;
}
#cookieBanner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner-inner {
    background: rgba(14,14,22,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,212,255,.08);
}
.cookie-banner-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(0,212,255,.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--cyan);
}
.cookie-banner-text { flex: 1; min-width: 0; }
.cookie-banner-text p {
    font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0;
}
.cookie-banner-text a { color: var(--cyan); text-decoration: none; }
.cookie-banner-text a:hover { text-decoration: underline; }
.cookie-banner-actions {
    display: flex; gap: 10px; flex-shrink: 0; align-items: center;
}
.cookie-btn-accept {
    background: var(--cyan); color: #000;
    border: none; border-radius: 8px;
    padding: 10px 20px; font-size: 13px; font-weight: 700;
    cursor: pointer; white-space: nowrap;
    transition: background .2s, transform .15s;
}
.cookie-btn-accept:hover { background: #00b8d9; transform: translateY(-1px); }
.cookie-btn-reject {
    background: transparent; color: var(--text-muted);
    border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
    padding: 10px 16px; font-size: 13px; font-weight: 600;
    cursor: pointer; white-space: nowrap;
    transition: border-color .2s, color .2s;
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,.3); color: var(--text); }
@media(max-width:640px){
    .cookie-banner-inner { flex-direction:column; gap:16px; align-items:flex-start; }
    .cookie-banner-icon { display:none; }
    .cookie-banner-actions { width:100%; }
    .cookie-btn-accept, .cookie-btn-reject { flex:1; text-align:center; }
}
