/* ═══════════════════════════════════════════════
   INDALKEY · style.css
   Cerrajeros Almería 24H
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --lime:    #AAFF00;
  --lime-d:  #88CC00;
  --lime-05: rgba(170,255,0,.05);
  --lime-10: rgba(170,255,0,.10);
  --lime-20: rgba(170,255,0,.20);
  --lime-40: rgba(170,255,0,.40);
  --bg:   #060606;
  --s1:   #0d0d0d;
  --s2:   #111111;
  --s3:   #161616;
  --s4:   #1d1d1d;
  --brd:  #1e1e1e;
  --brd2: #282828;
  --text: #f0f0f0;
  --t2:   #b8b8b8;
  --t3:   #717171;
  --t4:   #3e3e3e;
  --r:    3px;
  --gap:  1px;
  --max:  1180px;
  --hh:   62px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden; cursor: none;
}
a { text-decoration: none; }

/* ── GRAIN ── */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px; opacity: .038;
  pointer-events: none; z-index: 9999;
  animation: grain .6s steps(1) infinite;
}
@keyframes grain {
  0%{transform:translate(0,0)}   20%{transform:translate(-3%,-2%)}
  40%{transform:translate(2%,3%)} 60%{transform:translate(-2%,1%)}
  80%{transform:translate(3%,-2%)} 100%{transform:translate(-1%,2%)}
}

/* ── CURSOR ── */
#cur {
  position: fixed; width: 7px; height: 7px;
  background: var(--lime); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s;
}
#cur2 {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(170,255,0,.32); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, border-color .2s;
}
body.ch #cur  { width: 11px; height: 11px; }
body.ch #cur2 { width: 56px; height: 56px; border-color: var(--lime-10); }

/* ── UTILS ── */
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .6rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--lime); margin-bottom: 14px;
}
.tag::before { content: ''; width: 24px; height: 1px; background: var(--lime); }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; height: var(--hh);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background .35s, border-color .35s;
}
header.stuck {
  background: rgba(6,6,6,.96);
  backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid var(--brd);
}

/* ── LOGO ── */
.logo {
  display: flex; align-items: center;
  text-decoration: none; cursor: none; flex-shrink: 0;
}
.logo-img {
  height: 48px; width: auto; display: block;
  transition: opacity .25s;
}
.logo:hover .logo-img { opacity: .85; }

/* ── GALLERY ── */
.gallery-section { padding: 80px 0; border-top: 1px solid var(--brd); overflow: hidden; }
.gallery-head { padding: 0 48px; margin-bottom: 44px; max-width: 720px; }
.gallery-head h2 { margin: 10px 0 12px; }
.gallery-head p { color: var(--t3); font-size: .95rem; }
.gallery-track {
  display: flex; gap: 16px; width: max-content;
  animation: galleryScroll 28s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-img {
  width: 260px; height: 260px; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--brd);
  flex-shrink: 0; display: block;
  transition: transform .35s cubic-bezier(.4,0,.2,1), border-color .25s;
}
.gallery-img:hover { transform: scale(1.03); border-color: var(--lime-20); }
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV DROPDOWN ── */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop > a { display: flex; align-items: center; gap: 5px; }
.nav-drop > a::after { content: ''; width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-1px); transition: transform .2s; display: inline-block; }
.nav-drop:hover > a::after { transform: rotate(-135deg) translateY(2px); }
.drop-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(6,6,6,.97); backdrop-filter: blur(24px);
  border: 1px solid var(--brd); border-radius: 6px;
  min-width: 230px; padding: 20px 0 6px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .2s, transform .2s; z-index: 600;
}
.nav-drop:hover .drop-menu {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop-menu a {
  display: block !important; padding: 10px 18px;
  font-size: .68rem !important; letter-spacing: .6px !important;
  text-transform: uppercase !important; color: var(--t3) !important;
  border-right: none !important; cursor: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.drop-menu a:hover { color: var(--lime) !important; background: var(--lime-05); }
.drop-menu a + a { border-top: 1px solid var(--brd); }

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: .73rem; font-weight: 500;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--t3); transition: color .2s; cursor: none;
}
nav a:hover { color: var(--text); }
.nav-cta {
  color: var(--bg) !important; background: var(--lime);
  padding: 9px 20px; border-radius: var(--r);
  font-weight: 700 !important;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--lime-d) !important; transform: translateY(-1px); }

.live-indicator {
  display: flex; align-items: center; gap: 7px;
  font-size: .6rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--lime);
}
.live-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: blink 1.8s ease infinite; }
@keyframes blink { 0%,100%{opacity:1;box-shadow:0 0 0 0 var(--lime-20)} 50%{opacity:.3;box-shadow:0 0 0 5px transparent} }

.hbg { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.hbg span { display: block; width: 22px; height: 1.5px; background: var(--lime); transition: all .3s; }

.mob-nav {
  display: none; position: fixed; top: var(--hh); left: 0; right: 0; z-index: 499;
  background: rgba(6,6,6,.97); backdrop-filter: blur(20px);
  padding: 28px 32px; border-bottom: 1px solid var(--brd);
  flex-direction: column; gap: 20px;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-size: .85rem; font-weight: 500; letter-spacing: .5px; text-transform: uppercase; color: var(--t2); cursor: pointer; }
.mob-nav a.m-cta { color: var(--lime); font-weight: 700; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--hh) + 64px) 48px 64px;
  overflow: hidden;
}
.hero-dotgrid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse 100% 80% at 50% 40%, rgba(6,6,6,0) 0%, var(--bg) 78%);
}
.hero-deco-num {
  position: absolute; right: -60px; bottom: -80px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44vw; font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(170,255,0,.04);
  pointer-events: none; user-select: none; z-index: 0;
  letter-spacing: -.05em;
}

/* H1 — centered, large, animated */
.hero-headline {
  text-align: center; position: relative; z-index: 2;
  margin-bottom: 72px;
}
h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; line-height: .92; letter-spacing: -.04em;
  color: var(--text);
}
.h1-line {
  display: block;
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  opacity: 0; transform: translateY(30px) skewY(-1.5deg);
  animation: lineUp .9s cubic-bezier(.16,1,.3,1) forwards;
}
.h1-accent {
  color: var(--lime);
  font-size: clamp(4rem, 10vw, 10rem);
}
.h1-sub {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 300; letter-spacing: -.01em;
  color: var(--t3); margin-top: 8px;
}
.h1-line:nth-child(1) { animation-delay: .05s; }
.h1-line:nth-child(2) { animation-delay: .22s; }
.h1-line:nth-child(3) { animation-delay: .38s; }
@keyframes lineUp { to { opacity:1; transform:translateY(0) skewY(0); } }

/* Hero lower — 2 col (kept for reference) */
.hero-lower {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: start;
  position: relative; z-index: 2;
}

/* Hero body — centered single col */
.hero-body-center {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-content {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
  font-size: .65rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--t3);
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: blink 1.8s ease infinite; }
.hero-badge b { color: var(--lime); }
.hero-copy { font-size: 1rem; color: var(--t2); max-width: 480px; line-height: 1.78; margin-bottom: 34px; }
.hero-copy strong { color: var(--text); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-micro { display: flex; align-items: center; gap: 16px; font-size: .68rem; color: var(--t3); flex-wrap: wrap; }
.hero-micro .on { color: var(--lime); font-weight: 600; }
.micro-sep { width: 1px; height: 12px; background: var(--brd2); }

.status-card { background: var(--s1); border: 1px solid var(--brd); border-radius: 8px; padding: 22px; position: relative; overflow: hidden; }
.status-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,var(--lime),transparent); }
.sc-head { display: flex; justify-content: space-between; align-items: center; font-size: .58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--t4); margin-bottom: 14px; }
.sc-on { color: var(--lime); font-weight: 700; display: flex; align-items: center; gap: 5px; }
.sc-on::before { content: ''; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; animation: blink 1.5s ease infinite; }
.sc-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--brd); }
.sc-row:last-of-type { border: none; }
.sc-l { font-size: .65rem; color: var(--t3); text-transform: uppercase; letter-spacing: .5px; }
.sc-v { font-family: 'Space Grotesk', sans-serif; font-size: .88rem; font-weight: 700; color: var(--text); }
.sc-v.g { color: var(--lime); }
.sc-btn-call { display: block; margin-top: 14px; background: var(--lime); color: var(--bg); border-radius: var(--r); padding: 11px; text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; cursor: none; transition: background .2s; }
.sc-btn-call:hover { background: var(--lime-d); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: .875rem;
  font-weight: 700; letter-spacing: .3px; border-radius: var(--r);
  transition: all .2s; cursor: none; border: none; padding: 14px 26px;
}
.btn-primary { background: var(--lime); color: var(--bg); }
.btn-primary:hover { background: var(--lime-d); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(170,255,0,.14); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--brd2); }
.btn-ghost:hover { border-color: var(--t3); }
.btn-ghost-lime { background: transparent; color: var(--lime); border: 1px solid var(--lime-20); }
.btn-ghost-lime:hover { border-color: var(--lime); background: var(--lime-05); }

/* ── STATS ── */
.stats-strip { background: var(--s1); border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 26px 40px; border-right: 1px solid var(--brd); display: flex; flex-direction: column; gap: 5px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--text); letter-spacing: -.03em; line-height: 1; }
.stat-num b { color: var(--lime); }
.stat-lbl { font-size: .68rem; color: var(--t3); }

/* ── URGENTE STRIP ── */
.urg-section {
  padding: 80px 48px; border-top: 1px solid var(--brd);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.urg-text { max-width: 540px; }
.urg-text h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem,3.2vw,2.8rem); font-weight: 700; letter-spacing: -.04em; color: var(--text); margin-bottom: 16px; }
.urg-text h2 em { font-style: normal; color: var(--lime); }
.urg-text p { font-size: .92rem; color: var(--t2); line-height: 1.78; margin-bottom: 14px; }
.urg-text p strong { color: var(--text); }
.urg-steps { display: flex; flex-direction: column; gap: 0; }
.urg-step { display: flex; align-items: flex-start; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--brd); position: relative; }
.urg-step:last-child { border-bottom: none; }
.urg-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--t4); line-height: 1; min-width: 44px; transition: color .3s; }
.urg-step:hover .urg-num { color: var(--lime); }
.urg-step-body strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.urg-step-body span { font-size: .8rem; color: var(--t3); line-height: 1.55; }

/* ── NEGOCIOS/COMUNIDADES ── */
.cat-section {
  padding: 100px 48px; background: var(--s1); border-top: 1px solid var(--brd);
}
.cat-head { max-width: 700px; margin-bottom: 52px; }
.cat-head h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem,3.2vw,2.8rem); font-weight: 700; letter-spacing: -.04em; color: var(--text); margin-bottom: 12px; }
.cat-head h2 em { font-style: normal; color: var(--lime); }
.cat-head p { font-size: .92rem; color: var(--t3); line-height: 1.76; }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); background: var(--brd); }
.cat-item { background: var(--s2); padding: 44px 36px; position: relative; overflow: hidden; transition: background .22s; }
.cat-item:hover { background: var(--s3); }
.cat-item::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .38s cubic-bezier(.4,0,.2,1); }
.cat-item:hover::after { transform: scaleX(1); }
.cat-icon { width: 48px; height: 48px; margin-bottom: 22px; }
.cat-icon svg { width: 30px; height: 30px; stroke: var(--lime); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.cat-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -.02em; }
.cat-item p { font-size: .875rem; color: var(--t3); line-height: 1.72; margin-bottom: 22px; }
.cat-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cat-list li { font-size: .78rem; color: var(--t3); display: flex; align-items: center; gap: 9px; }
.cat-list li::before { content: ''; width: 4px; height: 4px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; align-items: stretch; justify-content: center;
  background: var(--s2); border-bottom: 1px solid var(--brd);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 48px; gap: 4px;
}
.ti-v {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--text); line-height: 1;
}
.ti-v.lime { color: var(--lime); }
.ti-l { font-size: .58rem; color: var(--t3); text-transform: uppercase; letter-spacing: 1.5px; }
.trust-sep { width: 1px; background: var(--brd2); align-self: stretch; margin: 10px 0; }

/* ── SERVICES ── */
.srv-section { padding: 100px 0; }
.srv-head { padding: 0 48px; margin-bottom: 52px; }
.srv-head h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem,3.5vw,2.9rem); font-weight: 700; letter-spacing: -.03em; color: var(--text); margin-bottom: 10px; }
.srv-head h2 em { font-style: normal; color: var(--lime); }
.srv-head p { font-size: .9rem; color: var(--t3); max-width: 480px; }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--gap); background: var(--brd);
}
.sc {
  background: var(--s1); padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: background .25s;
  display: flex; flex-direction: column;
}
.sc::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--lime); transform: scaleX(0); transform-origin: left;
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.sc:hover::after { transform: scaleX(1); }
.sc:hover { background: var(--s2); }
.sc.featured {
  grid-column: span 2; background: var(--s2);
  border-top: 1px solid var(--lime);
}
.sc.featured::after { display: none; }
.sc-idx { font-family: 'Space Grotesk', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: 1.5px; color: var(--t4); margin-bottom: 24px; }
.sc-icon { width: 46px; height: 46px; margin-bottom: 20px; }
.sc-icon svg { width: 28px; height: 28px; stroke: var(--lime); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
h3.sc-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -.02em; }
.sc > p { font-size: .875rem; color: var(--t3); line-height: 1.72; flex: 1; }
.sc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 26px; padding: 9px 16px;
  border: 1px solid var(--lime-20); border-radius: var(--r);
  font-size: .68rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--lime);
  cursor: none; transition: all .28s cubic-bezier(.4,0,.2,1); align-self: flex-start;
}
.sc-link .arr { transition: transform .22s; display: inline-block; }
.sc-link:hover, .sc-link:active {
  border-color: var(--lime);
  background: var(--lime-05);
  box-shadow: 0 0 18px rgba(170,255,0,.22), 0 0 6px rgba(170,255,0,.12);
}
.sc-link:hover .arr { transform: translateX(4px); }

/* ── CAR SECTION ── */
.car-section {
  padding: 100px 48px; background: var(--s1);
  position: relative; overflow: hidden;
  background-image: repeating-linear-gradient(-50deg, transparent, transparent 28px, rgba(255,255,255,.013) 28px, rgba(255,255,255,.013) 29px);
}
.car-header { margin-bottom: 48px; max-width: 720px; }
.car-header p { font-size: .95rem; color: var(--t3); line-height: 1.76; margin-top: 14px; }
.car-kicker { display: flex; align-items: center; gap: 10px; font-size: .6rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.car-kicker::before { content: ''; width: 22px; height: 1px; background: var(--lime); }
.car-section h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; letter-spacing: -.03em; color: var(--text); margin-bottom: 16px; }
.car-section h2 em { font-style: normal; color: var(--lime); }
.car-body p { font-size: .95rem; color: var(--t3); line-height: 1.76; margin-bottom: 14px; }
.car-body strong { color: var(--t2); }
.car-list li { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--brd); font-size: .88rem; color: var(--t2); }
.car-list li::before { content: ''; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }

.car-list {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 40px; list-style: none;
  border-top: 1px solid var(--brd); margin-bottom: 48px;
}
.car-bottom {
  display: grid; grid-template-columns: 200px 1fr auto;
  gap: 24px; align-items: start;
}
.car-brands-col { display: flex; flex-direction: column; gap: 12px; }
.car-btn { align-self: center; white-space: nowrap; }
.car-card { background: var(--s3); border: 1px solid var(--brd2); border-radius: 6px; padding: 22px 26px; position: relative; overflow: hidden; }
.car-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--lime); }
.cc-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--lime); letter-spacing: -.03em; line-height: 1; margin-bottom: 4px; }
.cc-lbl { font-size: .65rem; color: var(--t3); text-transform: uppercase; letter-spacing: 1px; }

/* Brands marquee */
.brands-ticker-wrap {
  background: var(--s3); border: 1px solid var(--brd2); border-radius: 6px;
  padding: 18px 0; overflow: hidden;
}
.brands-ticker-label { font-size: .58rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--t4); padding: 0 20px; margin-bottom: 14px; }
.brands-ticker { overflow: hidden; cursor: default; }
.brands-track {
  display: flex; align-items: center;
  width: max-content;
  animation: brandScroll 18s linear infinite;
}
.brands-ticker:hover .brands-track { animation-play-state: paused; }
.brand-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--t3); padding: 4px 22px;
  border-right: 1px solid var(--brd);
  white-space: nowrap;
  transition: color .2s, background .2s;
  cursor: default;
}
.brand-item:hover { color: var(--lime); background: var(--lime-05); }
@keyframes brandScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.car-srv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.car-srv-item { background: var(--s3); border: 1px solid var(--brd2); border-radius: 5px; padding: 14px 16px; }
.car-srv-item strong { display: block; font-size: .75rem; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.car-srv-item span { font-size: .68rem; color: var(--t3); }

/* ── ALARMAS AJAX ── */
.ajax-section {
  padding: 100px 48px; background: var(--s2);
  border-top: 1px solid var(--brd); position: relative; overflow: hidden;
}
.ajax-section::after {
  content: 'AJAX'; position: absolute; right: -20px; bottom: -40px;
  font-family: 'Space Grotesk', sans-serif; font-size: 18vw; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(170,255,0,.03);
  pointer-events: none; user-select: none; line-height: 1;
}
.ajax-top { max-width: 720px; margin-bottom: 52px; }
.ajax-top h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; letter-spacing: -.04em; color: var(--text); margin-bottom: 14px; }
.ajax-top h2 em { font-style: normal; color: var(--lime); }
.ajax-top p { font-size: .95rem; color: var(--t2); line-height: 1.78; }
.ajax-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: var(--gap); background: var(--brd); margin-bottom: 40px;
}
.ajax-feat { background: var(--s1); padding: 34px 28px; transition: background .22s; }
.ajax-feat:hover { background: var(--s3); }
.ajf-icon { width: 40px; height: 40px; margin-bottom: 18px; display: flex; align-items: center; }
.ajf-icon svg { width: 26px; height: 26px; stroke: var(--lime); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ajax-feat h3 { font-family: 'Space Grotesk', sans-serif; font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.ajax-feat p { font-size: .83rem; color: var(--t3); line-height: 1.68; }
.ajax-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.ajax-note { font-size: .75rem; color: var(--t4); }
.ajax-note strong { color: var(--lime); font-weight: 700; }

/* ── WHY ── */
.why-section { padding: 100px 48px; }
.why-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.why-top h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; letter-spacing: -.04em; color: var(--text); }
.why-top h2 em { font-style: normal; color: var(--lime); }
.why-top p { font-size: .92rem; color: var(--t3); line-height: 1.76; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); background: var(--brd); }
.why-item { background: var(--s1); padding: 38px 32px; transition: background .22s; }
.why-item:hover { background: var(--s2); }
.why-item:first-child { grid-column: span 2; }
.wi-n { font-family: 'Space Grotesk', sans-serif; font-size: 3.2rem; font-weight: 700; color: var(--t4); line-height: 1; margin-bottom: 14px; letter-spacing: -.04em; transition: color .3s; }
.why-item:hover .wi-n { color: var(--lime); }
.wi-title { font-family: 'Space Grotesk', sans-serif; font-size: .98rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.wi-text { font-size: .84rem; color: var(--t3); line-height: 1.65; }
.why-item:first-child .wi-title { font-size: 1.15rem; }
.why-item:first-child .wi-text { max-width: 440px; }

/* ── LOCATIONS ── */
.loc-section { padding: 100px 48px; background: var(--s1); border-top: 1px solid var(--brd); }
.loc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 40px; }
.loc-header-left h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem,3.2vw,2.7rem); font-weight: 700; letter-spacing: -.03em; color: var(--text); margin-bottom: 10px; }
.loc-header-left h2 em { font-style: normal; color: var(--lime); }
.loc-header-left p { font-size: .9rem; color: var(--t3); max-width: 440px; line-height: 1.7; }
.loc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--gap); background: var(--brd); margin-bottom: 28px; }
.loc-card { background: var(--s2); padding: 22px 20px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 5px; transition: background .22s; }
.loc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .32s cubic-bezier(.4,0,.2,1); }
.loc-card:hover::before { transform: scaleX(1); }
.loc-card:hover { background: var(--s3); }
.loc-name { font-family: 'Space Grotesk', sans-serif; font-size: .9rem; font-weight: 600; color: var(--text); transition: color .22s; padding-right: 20px; }
.loc-card:hover .loc-name { color: var(--lime); }
.loc-sub { font-size: .65rem; color: var(--t4); }
.loc-arr { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--t4); font-size: .8rem; transition: color .22s, transform .22s; }
.loc-card:hover .loc-arr { color: var(--lime); transform: translateY(-50%) translateX(3px); }
.loc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--brd); }
.loc-footer p { font-size: .82rem; color: var(--t3); }

/* ── TESTIMONIALS ── */
.testi-section { padding: 100px 48px; border-top: 1px solid var(--brd); }
.testi-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.testi-top h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; letter-spacing: -.03em; color: var(--text); }
.testi-top h2 em { font-style: normal; color: var(--lime); }
.testi-score { text-align: right; }
.ts-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--lime); line-height: 1; }
.ts-lbl { font-size: .68rem; color: var(--t3); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); background: var(--brd); }
.tc { background: var(--s1); padding: 34px 30px; border-left: 2px solid transparent; transition: border-color .3s, background .22s; }
.tc:hover { border-left-color: var(--lime); background: var(--s2); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.tc-stars svg { width: 13px; height: 13px; fill: var(--lime); }
.tc-quote { font-size: .9rem; color: var(--t2); line-height: 1.72; font-style: italic; margin-bottom: 22px; }
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-av { width: 32px; height: 32px; background: var(--s4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: .75rem; font-weight: 700; color: var(--lime); flex-shrink: 0; }
.tc-info strong { display: block; font-size: .78rem; color: var(--text); font-weight: 600; }
.tc-info span { font-size: .68rem; color: var(--t4); }

/* ── FAQ ── */
.faq-section { padding: 100px 48px; }
.faq-inner { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.faq-aside h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem,2.8vw,2.3rem); font-weight: 700; letter-spacing: -.03em; color: var(--text); margin-bottom: 12px; }
.faq-aside h2 em { font-style: normal; color: var(--lime); }
.faq-aside p { font-size: .875rem; color: var(--t3); line-height: 1.75; margin-bottom: 26px; }
.faq-list { border-top: 1px solid var(--brd); }
.faq-item { border-bottom: 1px solid var(--brd); }
.faq-trigger { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 20px 0; cursor: none; user-select: none; }
h3.faq-q { font-family: 'Space Grotesk', sans-serif; font-size: .92rem; font-weight: 600; color: var(--text); letter-spacing: -.01em; transition: color .2s; }
.faq-item.open h3.faq-q { color: var(--lime); }
.faq-ico { width: 22px; height: 22px; border: 1px solid var(--brd2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--t3); font-size: .9rem; font-weight: 300; line-height: 1; flex-shrink: 0; margin-top: 1px; transition: all .3s; }
.faq-item.open .faq-ico { background: var(--lime); color: var(--bg); border-color: var(--lime); transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-body { max-height: 260px; }
.faq-body p { font-size: .875rem; color: var(--t3); line-height: 1.76; padding-bottom: 20px; }
.faq-body strong { color: var(--t2); }

/* ── CTA FINAL ── */
.cta-section { padding: 120px 48px; background: var(--lime); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(0,0,0,.04) 1px, transparent 1px); background-size: 30px 30px; }
.cta-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-tag { font-size: .6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,.4); margin-bottom: 14px; display: block; }
.cta-section h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem,5vw,4rem); font-weight: 700; letter-spacing: -.04em; color: var(--bg); line-height: 1.05; margin-bottom: 12px; }
.cta-section > .cta-inner > p { font-size: 1rem; color: rgba(0,0,0,.5); max-width: 460px; margin: 0 auto 40px; line-height: 1.72; }
.cta-tel { display: block; font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.6rem,8vw,6rem); font-weight: 700; color: var(--bg); letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; cursor: none; transition: opacity .2s; }
.cta-tel:hover { opacity: .75; }
.cta-avail { display: block; font-size: .68rem; color: rgba(0,0,0,.38); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 42px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-dark { background: var(--bg); color: var(--lime); }
.btn-dark:hover { background: #111; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--bg); border: 2px solid rgba(0,0,0,.22); }
.btn-outline-dark:hover { border-color: rgba(0,0,0,.44); }

/* ── FOOTER ── */
footer { background: var(--s1); border-top: 1px solid var(--brd); padding: 60px 48px 40px; }
.ft-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.ft-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 11px; display: flex; align-items: center; gap: 9px; }
.ft-logo .ft-badge { width: 26px; height: 26px; background: var(--lime); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ft-logo .ft-badge svg { width: 13px; height: 13px; stroke: #000; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ft-logo .ft-indal { color: var(--t2); font-weight: 400; }
.ft-logo .ft-key { color: var(--lime); }
.ft-brand-p { font-size: .82rem; color: var(--t3); line-height: 1.76; max-width: 240px; margin-bottom: 14px; }
.ft-phone { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); cursor: none; transition: color .2s; }
.ft-phone:hover { color: var(--lime); }
.ft-col h4 { font-size: .56rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--t4); margin-bottom: 16px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ft-col ul a { font-size: .82rem; color: var(--t3); cursor: none; transition: color .2s; }
.ft-col ul a:hover { color: var(--text); }
.ft-bottom { padding-top: 24px; border-top: 1px solid var(--brd); display: flex; justify-content: space-between; align-items: center; font-size: .68rem; color: var(--t4); }
.ft-bottom a { color: var(--t4); cursor: none; }
.ft-bottom a:hover { color: var(--t3); }
.ft-live { display: flex; align-items: center; gap: 6px; }
.ft-live::before { content: ''; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; animation: blink 2s ease infinite; }

/* ── MOBILE CTA BAR ── */
.mob-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--lime); box-shadow: 0 -4px 24px rgba(0,0,0,.45); }
.mob-cta-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 20px; width: 100%; font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--bg); cursor: pointer; }
.mob-cta-bar a svg { width: 18px; height: 18px; }

/* ── REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  header { padding: 0 32px; }
  .hero, .car-section, .why-section, .loc-section, .testi-section, .faq-section, .cta-section, footer { padding-left: 32px; padding-right: 32px; }
  .srv-head { padding: 0 32px; }
}
@media (max-width: 960px) {
  body { cursor: auto; }
  #cur, #cur2 { display: none; }
  .btn, .nav-cta, .sc-btn-call, .faq-trigger, .loc-card, .tc, .logo, .hbg, .ft-col ul a, .ft-phone, .cta-tel, .mob-cta-bar a, .sc-link { cursor: pointer; }
  header { padding: 0 24px; }
  nav > a:not(.nav-cta) { display: none; }
  .live-indicator { display: none; }
  .hbg { display: flex; }
  .hero-headline { margin-bottom: 48px; }
  .trust-item { padding: 14px 24px; }
  .car-bottom { grid-template-columns: 1fr 1fr; }
  .car-btn { grid-column: 1 / -1; }
  .ajax-grid { grid-template-columns: 1fr 1fr; }
  .hero-lower { grid-template-columns: 1fr; }
  .urg-section { grid-template-columns: 1fr; gap: 44px; }
  .cat-grid { grid-template-columns: 1fr; }
  .why-top { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:first-child { grid-column: span 2; }
  .loc-grid { grid-template-columns: repeat(3,1fr); }
  .loc-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .loc-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .testi-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 44px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-brand { grid-column: 1 / -1; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--brd); border-right: 1px solid var(--brd); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--brd); }
  .mob-cta-bar { display: flex; }
  body { padding-bottom: 58px; }
}
@media (max-width: 640px) {
  .hero, .car-section, .why-section, .loc-section, .testi-section, .faq-section, .cta-section, footer { padding-left: 20px; padding-right: 20px; }
  header { padding: 0 20px; }
  .srv-head { padding: 0 20px; }
  .srv-grid { grid-template-columns: 1fr; }
  .sc.featured { grid-column: auto; }
  .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .why-item:first-child { grid-column: auto; }
  .loc-grid { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .car-list { grid-template-columns: 1fr; }
  .car-bottom { grid-template-columns: 1fr; }
  .car-btn { width: 100%; justify-content: center; }
  .ajax-grid { grid-template-columns: 1fr; }
}
