:root {
  --bg: #0a0a0f;
  --neon: #00f5a0;
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --text: #f0eeff;
  --muted: #8b8aa8;
  --card: #12111e;
  --card2: #1a1830;
  --border: rgba(124,58,237,0.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* TRAIL CURSOR */
.trail-dot { position: fixed; width: 6px; height: 6px; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: opacity .6s; }

/* NEW BACKGROUND - animated grid + glow */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    linear-gradient(rgba(0,245,160,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,160,0.03) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0,245,160,0.07) 0%, transparent 55%),
    #0a0a0f;
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%, auto;
  animation: bgShift 20s ease-in-out infinite alternate;
}
@keyframes bgShift {
  from { background-position: 0 0, 0 0, center center, center center; }
  to   { background-position: 48px 48px, 48px 48px, center center, center center; }
}

/* LOADING */
#loading { position: fixed; inset: 0; background: var(--bg); z-index: 9000; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity .6s, visibility .6s; }
#loading.gone { opacity: 0; visibility: hidden; }
.load-logo { font-family: 'Bebas Neue'; font-size: clamp(36px,6vw,64px); color: var(--neon); letter-spacing: 4px; }
.load-logo span { color: var(--violet-light); }
.load-bar-wrap { width: 240px; height: 2px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 28px; overflow: hidden; }
.load-bar { height: 100%; width: 0; background: linear-gradient(90deg,var(--violet),var(--neon)); border-radius: 2px; animation: loadbar 1.4s ease forwards; }
@keyframes loadbar { 0%{width:0} 60%{width:70%} 100%{width:100%} }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .3s;
}
nav.scrolled {
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
nav.menu-open {
  background: #0a0a0f !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}
.nav-logo {
  font-family: 'Bebas Neue'; font-size: 26px; letter-spacing: 2px;
  color: var(--text); text-decoration: none;
  position: relative; overflow: hidden;
}
.nav-logo span { color: var(--neon); }
.nav-logo::before {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  color: var(--violet-light);
  clip-path: inset(0 100% 0 0);
  transition: clip-path .4s;
}
.nav-logo:hover::before { clip-path: inset(0 0% 0 0); animation: glitch .4s steps(2) infinite; }
@keyframes glitch {
  0%{clip-path:inset(30% 0 40% 0); transform:translateX(-2px)}
  25%{clip-path:inset(10% 0 70% 0); transform:translateX(2px)}
  50%{clip-path:inset(60% 0 10% 0); transform:translateX(-1px)}
  75%{clip-path:inset(20% 0 50% 0); transform:translateX(1px)}
  100%{clip-path:inset(0 0% 0 0); transform:translateX(0)}
}
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 22px; border: 1.5px solid var(--neon); border-radius: 6px;
  color: var(--neon); text-decoration: none; font-size: 14px; font-weight: 500;
  position: relative; overflow: hidden; background: transparent;
  display: inline-block;
}
.nav-cta span { position: relative; z-index: 1; transition: color .3s; }
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--neon);
  transform: translateY(101%); transition: transform .32s cubic-bezier(.23,1,.32,1);
  z-index: 0;
}
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover span { color: var(--bg); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* HERO */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 5% 80px; overflow: hidden; isolation: isolate; }
canvas#particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; color: var(--muted);
  margin-bottom: 28px; background: rgba(124,58,237,0.08);
}
.hero-badge span { width: 8px; height: 8px; background: var(--neon); border-radius: 50%; animation: pulse 1.8s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-h1 {
  font-family: 'Bebas Neue';
  font-size: clamp(58px,9vw,120px);
  line-height: .95;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hero-h1 em { color: var(--neon); font-style: normal; }
.typewriter-wrap { font-family: 'Bebas Neue'; font-size: clamp(40px,6vw,80px); color: var(--violet-light); letter-spacing: 2px; height: clamp(44px,7vw,90px); overflow: hidden; margin-bottom: 28px; }
.typewriter-word { display: block; animation: typeSlide 8s infinite; }
@keyframes typeSlide {
  0%,18%{transform:translateY(0)}
  25%,43%{transform:translateY(-100%)}
  50%,68%{transform:translateY(-200%)}
  75%,93%{transform:translateY(-300%)}
  100%{transform:translateY(0)}
}
.hero-sub { font-size: clamp(16px,2vw,20px); color: var(--muted); max-width: 600px; line-height: 1.7; margin-bottom: 40px; font-weight: 300; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary {
  padding: 16px 36px; background: var(--neon); color: var(--bg);
  border: none; border-radius: 8px; font-size: 16px; font-weight: 700;
  cursor: none; text-decoration: none; transition: all .3s;
  position: relative; overflow: hidden; letter-spacing: .5px;
}
.btn-primary::after { content: ''; position: absolute; inset: 0; background: white; opacity: 0; transition: opacity .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(0,245,160,.35); }
.btn-primary:active::after { opacity: .1; }
.btn-secondary {
  padding: 16px 36px; background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px;
  font-size: 16px; font-weight: 500; cursor: none; text-decoration: none;
  transition: all .3s;
}
.btn-secondary:hover { border-color: var(--violet-light); color: var(--violet-light); }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Bebas Neue'; font-size: clamp(32px,4vw,48px); color: var(--neon); letter-spacing: 1px; }
.stat-label { font-size: 13px; color: var(--muted); }
.hero-visual {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  z-index: 2; pointer-events: none; display: none;
}
@media(min-width:1100px){.hero-visual{display:block}}

/* SECTIONS general */
section { padding: 100px 5%; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--neon); margin-bottom: 14px; }
.section-title { font-family: 'Bebas Neue'; font-size: clamp(38px,5vw,72px); letter-spacing: 1px; line-height: 1; margin-bottom: 16px; }
.section-sub { font-size: clamp(15px,1.5vw,18px); color: var(--muted); max-width: 580px; line-height: 1.7; margin-bottom: 60px; font-weight: 300; }

/* FOR WHO - redesigned */
#who { background: linear-gradient(180deg,var(--bg) 0%,#0d0c1a 100%); }
.who-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media(max-width:700px){ .who-grid { grid-template-columns: 1fr; } }
.who-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 36px;
  transition: all .4s cubic-bezier(.23,1,.32,1);
  cursor: default; position: relative; overflow: hidden;
  display: flex; gap: 24px; align-items: flex-start;
}
.who-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.who-card:hover::after { opacity: 1; }
.who-card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,0.5); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.who-icon-wrap {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; position: relative; z-index: 1;
}
.who-icon-wrap.c1 { background: rgba(0,245,160,0.1); border: 1px solid rgba(0,245,160,0.2); }
.who-icon-wrap.c2 { background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.25); }
.who-icon-wrap.c3 { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.2); }
.who-icon-wrap.c4 { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); }
.who-content { flex: 1; position: relative; z-index: 1; }
.who-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.who-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.who-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.who-pill { font-size: 11px; padding: 4px 12px; border-radius: 100px; font-weight: 500; }
.who-pill.green { background: rgba(0,245,160,0.1); color: var(--neon); border: 1px solid rgba(0,245,160,0.2); }
.who-pill.violet { background: rgba(124,58,237,0.1); color: var(--violet-light); border: 1px solid rgba(124,58,237,0.2); }
.who-pill.amber { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.who-pill.blue { background: rgba(59,130,246,0.1); color: #93c5fd; border: 1px solid rgba(59,130,246,0.2); }
.who-arrow { position: absolute; bottom: 28px; right: 28px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 16px; transition: all .3s; z-index: 1; }
.who-card:hover .who-arrow { border-color: var(--neon); color: var(--neon); transform: translate(2px,-2px); }

/* SERVICES */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
}
.srv-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: all .35s cubic-bezier(.23,1,.32,1); cursor: none;
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--violet),var(--neon));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.srv-card:hover::after { transform: scaleX(1); }
.srv-card:hover { border-color: rgba(0,245,160,0.3); box-shadow: 0 0 40px rgba(0,245,160,0.07); transform: translateY(-4px); }
.srv-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(124,58,237,0.15); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.srv-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.srv-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.srv-price { font-size: 13px; color: var(--neon); font-weight: 500; margin-bottom: 20px; display: block; }
.srv-btn {
  display: inline-block; padding: 9px 20px; border: 1px solid rgba(0,245,160,0.3);
  border-radius: 6px; font-size: 13px; color: var(--neon); text-decoration: none;
  opacity: 0; transform: translateY(4px); transition: all .3s;
  cursor: none;
}
.srv-card:hover .srv-btn { opacity: 1; transform: translateY(0); }

/* PROCESS */
#process { background: #0d0c1a; overflow: hidden; }
.process-scroll { display: flex; gap: 0; position: relative; margin-top: 20px; }
.process-step {
  flex: 1; min-width: 200px; padding: 0 28px 40px; position: relative;
  border-top: 2px solid rgba(255,255,255,0.08);
  transition: border-color .3s;
}
.process-step.active { border-top-color: var(--neon); }
.process-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  position: absolute; top: -8px; left: 28px;
  transition: all .4s;
}
.process-step.active .process-dot { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 12px var(--neon); }
.process-num { font-family: 'Bebas Neue'; font-size: 52px; color: rgba(255,255,255,0.05); margin-top: 24px; letter-spacing: 2px; }
.process-step h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }



/* TESTIMONIALS */
#testimonials { background: linear-gradient(135deg,#0d0c1a 0%,#110f22 100%); position: relative; overflow: hidden; }
#testimonials::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle,rgba(124,58,237,0.12),transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform .6s cubic-bezier(.23,1,.32,1); }
.testi-card {
  min-width: 100%; padding: 0 4px;
}
.testi-inner {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 44px; max-width: 820px; margin: 0 auto;
}
.testi-quote { font-size: clamp(16px,2vw,22px); font-weight: 300; line-height: 1.7; color: var(--text); margin-bottom: 32px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--violet); object-fit: cover; }
.testi-name { font-weight: 600; font-size: 16px; }
.testi-company { font-size: 13px; color: var(--muted); }
.testi-stars { color: #f59e0b; font-size: 16px; margin-top: 2px; letter-spacing: 1px; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: none; transition: all .3s; border: none; }
.testi-dot.active { background: var(--neon); width: 24px; border-radius: 4px; }

/* PRICING */
#pricing { background: var(--bg); }
.pricing-toggle { display: flex; align-items: center; gap: 14px; margin-bottom: 52px; }
.toggle-label { font-size: 15px; color: var(--muted); }
.toggle-label.active { color: var(--text); }
.toggle-switch {
  width: 48px; height: 26px; background: var(--card2); border: 1px solid var(--border);
  border-radius: 100px; cursor: none; position: relative; transition: background .3s;
}
.toggle-switch.on { background: var(--violet); }
.toggle-knob {
  width: 18px; height: 18px; background: white; border-radius: 50%;
  position: absolute; top: 3px; left: 4px; transition: left .3s;
}
.toggle-switch.on .toggle-knob { left: 26px; }
.discount-badge { font-size: 12px; background: rgba(0,245,160,0.12); color: var(--neon); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(0,245,160,0.2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.price-monthly { font-size: 13px; color: var(--muted); margin-top: 4px; margin-bottom: 0; }
.price-monthly strong { color: var(--neon); }
.price-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px); border-radius: 20px; padding: 36px 32px;
  position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  background: rgba(124,58,237,0.1); border-color: var(--violet);
  box-shadow: 0 0 60px rgba(124,58,237,0.2);
}
.featured-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--violet); color: white; font-size: 12px; font-weight: 600;
  padding: 5px 20px; border-radius: 0 0 10px 10px; letter-spacing: 1px;
  text-transform: uppercase;
}
.price-tier { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.price-num { font-family: 'Bebas Neue'; font-size: 62px; color: var(--text); letter-spacing: 1px; line-height: 1; }
.price-num span { font-size: 24px; color: var(--muted); }
.price-desc { font-size: 14px; color: var(--muted); margin: 12px 0 24px; line-height: 1.5; }
.price-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.price-features li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.price-features li::before { content: '✓'; color: var(--neon); font-weight: 700; flex-shrink: 0; }
.price-btn {
  width: 100%; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600;
  cursor: none; border: none; transition: all .3s; font-family: 'DM Sans';
  position: relative; overflow: hidden;
}
.price-btn.outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.price-btn.outline:hover { border-color: var(--neon); color: var(--neon); }
.price-btn.solid { background: var(--violet); color: white; }
.price-btn.solid:hover { background: #6d28d9; box-shadow: 0 0 24px rgba(124,58,237,.4); }
.price-btn.solid::after { content: ''; position: absolute; inset: 0; background: white; opacity: 0; border-radius: inherit; transition: opacity .15s; }
.price-btn.solid:active::after { opacity: .15; }

/* FAQ */
#faq { background: #0d0c1a; }
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; background: transparent; border: none; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 500; color: var(--text); cursor: none;
  text-align: left; gap: 16px; font-family: 'DM Sans';
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s; font-size: 18px; color: var(--neon); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--neon); color: var(--bg); border-color: var(--neon); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--muted); line-height: 1.7; }

/* CTA FINAL */
#contact { background: var(--bg); position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,rgba(124,58,237,0.18),transparent 70%);
  animation: meshMove 8s ease-in-out infinite alternate;
}
@keyframes meshMove { from{transform:scale(1) rotate(0deg)} to{transform:scale(1.1) rotate(3deg)} }
.contact-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; }
.contact-form {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px; margin-top: 48px;
  backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; color: var(--muted); text-align: left; }
.form-control {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px; color: var(--text); font-size: 15px;
  font-family: 'DM Sans'; outline: none; transition: border-color .3s;
  width: 100%;
}
.form-control:focus { border-color: var(--violet); }
.form-control::placeholder { color: rgba(255,255,255,0.2); }
select.form-control option { background: #1a1830; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 18px; background: linear-gradient(135deg,var(--violet),#5b21b6);
  border: none; border-radius: 10px; color: white; font-size: 17px; font-weight: 700;
  cursor: none; transition: all .3s; font-family: 'DM Sans'; position: relative; overflow: hidden;
}
.form-submit:hover { box-shadow: 0 0 40px rgba(124,58,237,.4); transform: translateY(-2px); }
.success-msg { display: none; text-align: center; padding: 24px; }
.success-msg .check { font-size: 52px; display: block; margin-bottom: 12px; }
.success-msg p { font-size: 16px; color: var(--muted); }

/* FOOTER */
footer {
  background: #07070f; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 5% 36px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom p span { color: #e74c3c; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; font-size: 16px; transition: all .25s; }
.footer-socials a:hover { border-color: var(--neon); color: var(--neon); }

/* WHATSAPP BUTTON */
#whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 8000;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
#whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 36px rgba(37,211,102,0.6); animation: none; }
@keyframes waPulse {
  0%,100%{ box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}
#whatsapp-btn svg { width: 32px; height: 32px; fill: white; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* MOBILE NAV OPEN */
@media(max-width:768px){
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: #0a0a0f;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9990;
    align-items: center;
    justify-content: center;
    gap: 32px;
    border: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s; }
  .nav-links.open li { opacity: 1; transform: translateY(0); }
  .nav-links.open li:nth-child(1){transition-delay:.05s}
  .nav-links.open li:nth-child(2){transition-delay:.1s}
  .nav-links.open li:nth-child(3){transition-delay:.15s}
  .nav-links.open li:nth-child(4){transition-delay:.2s}
  .nav-links.open li:nth-child(5){transition-delay:.25s}
  .nav-links.open li:nth-child(6){transition-delay:.3s}
  .nav-links a { font-size: 28px; font-weight: 500; color: var(--text); }
  .nav-links a:hover { color: var(--neon); }
  .nav-cta { font-size: 18px !important; padding: 14px 36px !important; }
  .nav-hamburger { display: flex; z-index: 9991; position: relative; }
  .nav-hamburger.open span:nth-child(1){ transform: rotate(45deg) translate(5px,5px); }
  .nav-hamburger.open span:nth-child(2){ opacity: 0; }
  .nav-hamburger.open span:nth-child(3){ transform: rotate(-45deg) translate(5px,-5px); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-scroll { overflow-x: auto; padding-bottom: 24px; }
  .process-step { min-width: 200px; }
}
@media(max-width:480px){
  .footer-inner { grid-template-columns: 1fr; }
}