/* ============================================================
   MAFER · Landing futurista
   ============================================================ */

:root {
  --bg:        #06060a;
  --bg-2:      #0b0b12;
  --surface:   rgba(255,255,255,0.045);
  --surface-2: rgba(255,255,255,0.07);
  --line:      rgba(255,255,255,0.10);
  --text:      #f3f4f8;
  --muted:     #a7a9b8;
  --faint:     #6f7180;

  --red:   #ff3b2f;
  --orange:#ff7a18;
  --gold:  #ffc42e;
  --cyan:  #35e6ff;
  --wa:    #25d366;

  --grad: linear-gradient(100deg, #ff3b2f 0%, #ff7a18 45%, #ffc42e 100%);
  --grad-soft: linear-gradient(100deg, rgba(255,59,47,.16), rgba(255,196,46,.14));

  --radius: 20px;
  --radius-sm: 13px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 30px 70px -30px rgba(0,0,0,.75);

  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

@media (max-width: 900px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(255,122,24,.35); color: #fff; }

/* ---------- Background FX ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: radial-gradient(120% 120% at 50% -10%, #12121c 0%, var(--bg) 55%); }
#particles { position: absolute; inset: 0; width: 100%; height: 100%; }

.grid-plane {
  position: absolute; inset: -50% -20% auto -20%; height: 130%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(62deg) translateY(20%);
  transform-origin: top center;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 70%);
  opacity: .5;
}

.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.glow--red  { width: 46vw; height: 46vw; background: #ff3b2f; top: -12vw; left: -8vw; animation: float1 16s var(--ease) infinite; }
.glow--gold { width: 40vw; height: 40vw; background: #ffb020; top: 8vw; right: -12vw; opacity: .38; animation: float2 20s var(--ease) infinite; }
.glow--cyan { width: 34vw; height: 34vw; background: #1e8bff; bottom: -14vw; left: 30vw; opacity: .3; animation: float1 24s var(--ease) infinite reverse; }

.noise { position: absolute; inset: 0; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@keyframes float1 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(4vw,3vw) scale(1.12);} }
@keyframes float2 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-3vw,4vw) scale(1.08);} }

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; width: 34px; height: 34px; border: 1.5px solid rgba(255,122,24,.8); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s, background .2s, border-color .2s; mix-blend-mode: screen; }
.cursor-dot { position: fixed; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); }
.cursor.is-hover { width: 56px; height: 56px; background: rgba(255,122,24,.12); border-color: var(--gold); }
@media (max-width: 900px) { .cursor, .cursor-dot { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--grad); z-index: 200; box-shadow: 0 0 12px rgba(255,122,24,.7); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 20px;
  padding: 16px clamp(16px, 4vw, 48px);
  transition: background .4s, border-color .4s, padding .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8,8,13,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 4px 12px rgba(255,80,20,.5)); }
.brand__text {
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 26px; letter-spacing: 2px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand__text--lg { font-size: 40px; }

.nav { display: flex; gap: 6px; }
.nav__link {
  position: relative; padding: 9px 14px; font-size: 14.5px; font-weight: 500; color: var(--muted);
  border-radius: 10px; transition: color .25s, background .25s;
}
.nav__link:hover { color: var(--text); background: var(--surface); }
.nav__link::after { content:""; position:absolute; left:14px; right:14px; bottom:5px; height:2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); border-radius:2px; }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--text); }

.nav-cta { flex-shrink: 0; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); z-index: 99;
  background: rgba(10,10,16,.96); backdrop-filter: blur(20px);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px; padding: 96px 24px 24px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 14px 16px; border-radius: 12px; font-size: 17px; font-weight: 500; color: var(--muted); }
.mobile-menu a:hover { background: var(--surface); color: var(--text); }
.mobile-menu .btn { margin-top: 14px; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  font-family: inherit; border: 1px solid transparent; cursor: none; position: relative;
  transition: transform .25s var(--ease), box-shadow .3s, background .3s, border-color .3s, color .3s;
  white-space: nowrap;
}
@media (max-width:900px){ .btn { cursor: pointer; } }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary { background: var(--grad); color: #17110a; box-shadow: 0 12px 30px -8px rgba(255,90,20,.6); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -10px rgba(255,90,20,.75); }

.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--line); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(255,122,24,.55); transform: translateY(-3px); }

.btn--wa { background: var(--wa); color: #062b13; box-shadow: 0 10px 26px -10px rgba(37,211,102,.7); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(37,211,102,.85); filter: brightness(1.05); }

/* Tienda online — botón con borde gradiente */
.btn--store {
  background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, var(--grad) border-box;
  border: 1.6px solid transparent; color: var(--text);
  box-shadow: 0 10px 28px -12px rgba(255,122,24,.55);
}
.btn--store:hover { transform: translateY(-3px); box-shadow: 0 18px 42px -12px rgba(255,122,24,.75); }
.btn--store svg { color: var(--gold); }
.btn--lg { padding: 17px 30px; font-size: 16px; }

.store-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 46px; }
.store-cta p { color: var(--muted); font-size: 14.5px; }
.store-cta strong { color: var(--orange); }

/* ---------- Layout helpers ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 10vw, 130px) clamp(16px, 4vw, 32px); }
.section--tight { padding-top: clamp(30px, 5vw, 60px); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.section__title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(30px, 5vw, 50px); line-height: 1.08; letter-spacing: -.5px; }
.section__desc { color: var(--muted); margin-top: 16px; font-size: clamp(15px, 2vw, 18px); }
.txt-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px clamp(16px,4vw,32px) 80px; position: relative; }
.hero__inner { max-width: 900px; }
.badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 13.5px; font-weight: 500; color: var(--muted); margin-bottom: 28px; backdrop-filter: blur(8px); }
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: ping 2s infinite; }
@keyframes ping { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.55);} 70%{ box-shadow: 0 0 0 10px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

.hero__title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(40px, 8.5vw, 92px); line-height: 1.02; letter-spacing: -2px; }
.hero__title .line { display: block; }
.hero__grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; position: relative; }
.hero__grad::after {
  content: attr(data-text); position: absolute; inset: 0;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: blur(22px); opacity: .55; z-index: -1;
}
.hero__sub { max-width: 640px; margin: 26px auto 0; color: var(--muted); font-size: clamp(16px, 2.2vw, 19px); }
.hero__sub strong { color: var(--text); font-weight: 600; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero__pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.pill { padding: 9px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 13.5px; color: var(--muted); backdrop-filter: blur(6px); }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); }
.mouse { width: 22px; height: 34px; border: 1.5px solid var(--faint); border-radius: 12px; display: flex; justify-content: center; padding-top: 5px; }
.mouse span { width: 3px; height: 7px; background: var(--orange); border-radius: 2px; animation: scrolly 1.6s infinite; }
@keyframes scrolly { 0%{ opacity:0; transform: translateY(-3px);} 50%{ opacity:1;} 100%{ opacity:0; transform: translateY(9px);} }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; background: var(--grad-soft); }
.marquee__track { display: flex; align-items: center; gap: 34px; white-space: nowrap; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee__track span { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 2px; color: rgba(255,255,255,.72); }
.marquee__track .sep { color: var(--orange); font-size: 16px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Servicios ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  position: relative; padding: 34px 28px 30px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  transform-style: preserve-3d;
}
.svc:hover { border-color: rgba(255,122,24,.4); box-shadow: var(--shadow); }
.svc__icon { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); color: var(--orange); margin-bottom: 22px; }
.svc__title { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.svc__text { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.svc__list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.svc__list li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--muted); }
.svc__list li::before { content:"›"; position: absolute; left: 6px; color: var(--orange); font-weight: 700; }
.svc__glow { position: absolute; width: 200px; height: 200px; border-radius: 50%; filter: blur(60px); top: -60px; right: -60px; opacity: 0; transition: opacity .4s; }
.svc:hover .svc__glow { opacity: .35; }
.svc[data-accent="red"]  .svc__glow { background: var(--red); }
.svc[data-accent="gold"] .svc__glow { background: var(--gold); }
.svc[data-accent="cyan"] .svc__glow { background: var(--cyan); }
.svc[data-accent="gold"] .svc__icon { color: var(--gold); }
.svc[data-accent="cyan"] .svc__icon { color: var(--cyan); }

/* ---------- Stats ---------- */
.stats { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px,4vw,32px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 40px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); backdrop-filter: blur(6px); }
.stat { text-align: center; }
.stat__num { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: clamp(34px, 5vw, 52px); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--muted); font-size: 14px; margin-top: 10px; }

/* ---------- Productos ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat {
  display: flex; align-items: center; gap: 14px; padding: 20px 20px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line); font-weight: 500; font-size: 15px;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.cat:hover { transform: translateY(-4px); background: var(--surface-2); border-color: rgba(255,122,24,.4); }
.cat__emoji { font-size: 24px; filter: saturate(1.1); }

/* ---------- Proceso / Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.timeline::before { content:""; position: absolute; top: 34px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,122,24,.5), transparent); }
.step { position: relative; padding: 26px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.step__num { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 22px; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-2); border: 1px solid var(--line); color: var(--orange); margin-bottom: 18px; position: relative; z-index: 1; box-shadow: 0 0 0 5px var(--bg); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- Nosotros ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.about__media { display: flex; justify-content: center; }
.about__card { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1; border-radius: 28px; background: linear-gradient(160deg, rgba(255,59,47,.14), rgba(255,196,46,.08)); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; gap: 16px; padding: 40px; overflow: hidden; }
.about__badge { position: absolute; top: 24px; left: 24px; font-family: 'Orbitron',sans-serif; font-weight: 900; font-size: 20px; letter-spacing: 2px; color: var(--gold); }
.about__stat { position: relative; z-index: 1; }
.about__stat b { display: block; font-size: 26px; font-weight: 700; }
.about__stat span { color: var(--muted); font-size: 14px; }
.about__ring { position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1.5px dashed rgba(255,122,24,.35); right: -80px; bottom: -80px; animation: spin 26s linear infinite; }
.about__ring::after { content:""; position: absolute; width: 160px; height: 160px; border-radius: 50%; border: 1px solid rgba(255,196,46,.25); inset: 50px; }
@keyframes spin { to { transform: rotate(360deg); } }

.about__body p { color: var(--muted); font-size: 16px; margin-top: 16px; }
.about__body strong { color: var(--text); font-weight: 600; }
.about__quote { font-size: 20px !important; font-style: italic; color: var(--text) !important; border-left: 3px solid var(--orange); padding-left: 18px; margin-top: 22px !important; }
.about__points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.about__points span { padding: 8px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 14px; color: var(--muted); }

/* ---------- Contacto ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact__list { display: flex; flex-direction: column; gap: 12px; margin: 30px 0; }
.cinfo { display: flex; align-items: center; gap: 15px; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); transition: transform .25s var(--ease), border-color .25s, background .25s; }
a.cinfo:hover { transform: translateX(5px); border-color: rgba(255,122,24,.45); background: var(--surface-2); }
.cinfo__ico { font-size: 22px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line); flex-shrink: 0; }
.cinfo b { display: block; font-size: 15px; }
.cinfo small { color: var(--muted); font-size: 14px; }

.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; backdrop-filter: blur(8px); }
.contact__form h3 { font-size: 22px; margin-bottom: 22px; }
.field { position: relative; margin-bottom: 18px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 16px 16px 8px; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 12px; color: var(--text); font-family: inherit; font-size: 15px; outline: none;
  transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.field select { padding: 16px; appearance: none; }
.field textarea { padding-top: 18px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,24,.15); }
.field label { position: absolute; left: 16px; top: 15px; color: var(--faint); font-size: 15px; pointer-events: none; transition: .2s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: 6px; font-size: 11px; color: var(--orange); }
.label--static { position: static !important; display: block; margin-bottom: 8px; font-size: 12px !important; color: var(--faint) !important; order: -1; }
.field:has(select) { display: flex; flex-direction: column; }
.form__note { text-align: center; color: var(--faint); font-size: 12.5px; margin-top: 14px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: rgba(6,6,10,.6); backdrop-filter: blur(8px); }
.footer__top { max-width: var(--maxw); margin: 0 auto; padding: 60px clamp(16px,4vw,32px) 40px; display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; margin-top: 12px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--faint); margin-bottom: 14px; }
.footer__cols a, .footer__cols span { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 9px; transition: color .2s; }
.footer__cols a:hover { color: var(--orange); }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; padding: 22px clamp(16px,4vw,32px); border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--faint); font-size: 13px; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 34px -8px rgba(37,211,102,.7); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0%{ transform: scale(1); opacity: .8;} 100%{ transform: scale(1.7); opacity: 0;} }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav { display: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .services, .cats, .timeline, .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about, .contact { grid-template-columns: 1fr; gap: 34px; }
  .timeline::before { display: none; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services, .cats, .stats__grid, .footer__cols { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .stats__grid { padding: 28px 20px; }
  .contact__form { padding: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__pills .pill { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
