:root {
  --bg: #07070a;
  --bg-alt: #0d0e12;
  --surface: #141519;
  --surface-2: #1b1d23;
  --fg: #f5f6f7;
  --muted: #9aa1ab;
  --border: rgba(255,255,255,0.09);

  --accent: #e31e24;
  --accent-2: #ff4d4d;
  --accent-dark: #9c1216;

  --chrome-1: #eef1f4;
  --chrome-2: #aeb4bd;
  --chrome-3: #4b4f57;

  --whatsapp: #25d366;

  --font-display: 'Syncopate', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; height: 100vh; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon--lg { width: 28px; height: 28px; }

/* grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: 0.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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 101;
  background: rgba(255,255,255,0.06);
}
.scroll-progress__fill {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--chrome-1));
  box-shadow: 0 0 12px rgba(227,30,36,0.6);
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; position: relative; z-index: 2; }
.preloader__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.1em;
  background: linear-gradient(150deg, var(--chrome-1), var(--chrome-2) 45%, var(--chrome-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.preloader__bar { width: 220px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .2s linear; }
.preloader__count { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.15em; color: var(--muted); }
.preloader__panel {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: var(--bg-alt);
  z-index: 1;
}
.preloader__panel--l { left: 0; border-right: 1px solid var(--border); }
.preloader__panel--r { right: 0; border-left: 1px solid var(--border); }
.preloader.is-done .preloader__panel--l { transform: translateX(-100%); transition: transform .9s var(--ease); }
.preloader.is-done .preloader__panel--r { transform: translateX(100%); transition: transform .9s var(--ease); }
.preloader.is-done .preloader__inner { opacity: 0; transition: opacity .3s ease; }
.preloader.is-hidden { display: none; }

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 997;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent-2); opacity: 0; }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.4); opacity: 0; transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.cursor-ring.is-hover { width: 56px; height: 56px; border-color: var(--accent-2); background: rgba(227,30,36,0.08); }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn:focus-visible { outline: 2px solid var(--chrome-1); outline-offset: 3px; }

.btn--accent {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: 0 8px 24px rgba(227,30,36,0.35);
}
.btn--accent:hover { box-shadow: 0 12px 32px rgba(227,30,36,0.5); }

.btn--ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--fg);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.25); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #06210f;
  padding: 10px 18px;
  font-size: 14px;
}
.btn--whatsapp:hover { box-shadow: 0 8px 20px rgba(37,211,102,0.4); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7,7,10,0.82);
  backdrop-filter: blur(14px);
  border-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 20px;
}
.nav.is-scrolled .nav__inner { padding: 14px 24px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--chrome-1), var(--chrome-2) 45%, var(--chrome-3));
  color: #0a0a0c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 15px;
}
.logo__accent { color: var(--accent); }
.logo__city {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 8px;
  margin-left: 2px;
}

.nav__links {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.nav__links a { position: relative; transition: color .2s; }
.nav__links a:hover { color: var(--fg); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: #07070a;
  border-bottom: 1px solid var(--border);
  padding: 10px 24px 22px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: 12px 4px; font-size: 15px; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 70% 20%, #16171d 0%, var(--bg) 60%); }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero__video:not([src]), .hero__video.is-hidden { display: none; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,0.55) 0%, rgba(7,7,10,0.75) 55%, var(--bg) 100%);
}
.hero__spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--sx,50%) var(--sy,30%), rgba(238,241,244,0.06), transparent 60%);
  transition: background .1s linear;
}

.hero__visual {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: min(30vw, 340px);
  z-index: 1;
}
.hero__grid {
  position: absolute; inset: -60% -60%;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(closest-side, rgba(0,0,0,0.9), transparent);
  mask-image: radial-gradient(closest-side, rgba(0,0,0,0.9), transparent);
}

.hero__meter {
  position: relative;
  background: rgba(20,21,25,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  backdrop-filter: blur(10px);
}
.hero__meter-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 14px;
}
.hero__meter-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 16px;
}
.hero__meter-percent { font-size: 24px; color: var(--muted); margin-left: 2px; }
.hero__meter-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.hero__meter-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--chrome-1));
  border-radius: 2px;
}
.hero__meter-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent-2);
}
.hero__meter-check {
  width: 16px; height: 16px;
  color: var(--chrome-1);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .3s, transform .3s;
}
.hero__meter-status.is-complete { color: var(--chrome-1); }
.hero__meter-status.is-complete .hero__meter-check { opacity: 1; transform: scale(1); }

.hero__content { position: relative; z-index: 2; text-align: center; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--accent-2);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 6.2vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.hero__title .line { display: block; }
.hero__title--accent .char {
  color: var(--accent-2);
  text-shadow: 0 0 24px rgba(227,30,36,0.45);
}
.word { display: inline-block; white-space: nowrap; }
.char { display: inline-block; will-change: transform, opacity; }
.hero__sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero__scroll span {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--accent-2), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: .2; } 50% { opacity: 1; } }

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track { display: flex; width: max-content; animation: marqueeScroll 26s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__group span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 0 20px;
  white-space: nowrap;
}
.marquee__group i { color: var(--chrome-2); font-style: normal; font-size: 10px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
.section { padding: 110px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px);
  text-transform: uppercase;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.section__sub { color: var(--muted); font-size: 17px; max-width: 620px; margin: 0 0 56px; }

.grid { display: grid; gap: 24px; }

.services__subheading {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 56px 0 24px;
  text-transform: uppercase;
}

/* ---------- FEATURED (Bezkraska) ---------- */
.featured {
  position: relative;
  background: linear-gradient(150deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(227,30,36,0.35);
  border-radius: var(--radius);
  padding: 44px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(227,30,36,0.08);
}
.featured::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(500px circle at 85% 20%, rgba(227,30,36,0.15), transparent 60%);
  pointer-events: none;
}
.featured__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fff;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.featured__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; }
.featured__text h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); margin: 0 0 14px; text-transform: uppercase; }
.featured__text h3 span { color: var(--accent-2); }
.featured__text p { color: var(--muted); font-size: 16px; max-width: 480px; margin: 0 0 22px; }
.featured__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.featured__tags span {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--fg);
}
.featured__visual { display: flex; align-items: center; justify-content: center; }
.featured__visual svg { width: 100%; max-width: 220px; }
.badge-svg circle, .badge-svg path { stroke: var(--chrome-2); }
.badge-ring { animation: spin 18s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }

.services__list { border-top: 1px solid var(--border); }
.services__row {
  display: grid;
  grid-template-columns: 44px 52px 1fr 24px;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease), padding-left .3s var(--ease);
}
.services__row:hover { background: rgba(255,255,255,0.025); padding-left: 18px; }
.services__index {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.services__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--chrome-1);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.services__row:hover .services__icon { border-color: var(--accent-2); color: var(--accent-2); }
.services__icon svg { width: 20px; height: 20px; }
.services__text h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -0.01em; }
.services__text p { margin: 0; color: var(--muted); font-size: 14px; max-width: 520px; }
.services__arrow {
  width: 22px; height: 22px;
  color: var(--muted);
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease), color .3s var(--ease);
}
.services__row:hover .services__arrow { transform: translateX(0); opacity: 1; color: var(--accent-2); }

/* ---------- PROCESS ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__line { position: absolute; top: 26px; left: 6%; width: 88%; height: 4px; overflow: visible; }
#processLine { stroke: var(--chrome-2); stroke-dasharray: 1000; stroke-dashoffset: 1000; }
#processLine.is-drawn { stroke-dashoffset: 0; transition: stroke-dashoffset 1.4s var(--ease); }
.process__step { position: relative; z-index: 1; }
.process__num {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--bg);
  background: linear-gradient(145deg, var(--chrome-1), var(--chrome-2));
  width: 52px; height: 52px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-weight: 700;
  transition: box-shadow .4s var(--ease);
}
.process__step.is-active .process__num { box-shadow: 0 0 0 6px rgba(227,30,36,0.18), 0 0 24px rgba(227,30,36,0.5); }
.process__step h3 { margin: 0 0 8px; font-size: 17px; }
.process__step p { margin: 0; color: var(--muted); font-size: 14px; max-width: 240px; }

/* ---------- COMPARE (before/after) ---------- */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: ew-resize;
  user-select: none;
}
.compare__before, .compare__after {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.compare__after { clip-path: inset(0 0 0 50%); }
.compare__empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--muted);
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
}
.compare__empty svg { width: 34px; height: 34px; opacity: .5; }
.compare__empty p { margin: 0; font-size: 13px; }
.compare img[src$="before.jpg"], .compare img[src$="after.jpg"] { opacity: 0; }
.compare.has-before .compare__before, .compare.has-after .compare__after { opacity: 1; }
.compare.has-before.has-after .compare__empty { display: none; }

.compare__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 44px; margin-left: -22px;
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
}
.compare__handle::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255,255,255,0.85); transform: translateX(-50%);
}
.compare__handle svg {
  position: relative;
  width: 38px; height: 38px;
  padding: 8px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
}
.compare__handle:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 4px; border-radius: 50%; }

.compare__tag {
  position: absolute; top: 14px;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: var(--fg);
}
.compare__tag--left { left: 14px; }
.compare__tag--right { right: 14px; }

/* ---------- SOCIAL ---------- */
.social__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.social__card {
  display: flex; align-items: center; gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.social__card:hover { border-color: rgba(227,30,36,0.4); }
.social__card .icon { width: 30px; height: 30px; color: var(--accent-2); }
.social__card h3 { margin: 0 0 4px; font-size: 15px; }
.social__card p { margin: 0; color: var(--muted); font-size: 13px; }

/* ---------- CONTACT ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact .section__sub { margin-bottom: 34px; }
.contact__methods { display: flex; flex-direction: column; gap: 16px; }
.contact__method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  transition: border-color .25s, transform .25s;
}
a.contact__method:hover { border-color: rgba(227,30,36,0.4); transform: translateX(4px); }
.contact__method .icon { color: var(--accent-2); }
.contact__method--static { cursor: default; }
.contact__method--static:hover { transform: none; }

.contact__cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--accent-2), var(--accent) 55%, var(--accent-dark));
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 50px rgba(227,30,36,0.35);
  transition: box-shadow .35s var(--ease);
  max-width: 300px;
  margin: 0 auto;
}
.contact__cta:hover { box-shadow: 0 24px 60px rgba(227,30,36,0.5); }
.contact__cta span { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; }
.contact__cta small { color: rgba(255,255,255,0.75); font-size: 12px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border); padding: 40px 0; background: var(--bg-alt); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__social { display: flex; gap: 16px; }
.footer__social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__copy { color: var(--muted); font-size: 13px; margin: 0; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #06210f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { animation: none; transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { clip-path: inset(0 0 100% 0); opacity: 1; transition: clip-path .9s var(--ease); }
.reveal.is-visible { clip-path: inset(0 0 0% 0); }

.reveal-pop { opacity: 0; transform: translateY(32px) scale(0.96); }
.reveal-pop.is-visible { opacity: 1; transform: translateY(0) scale(1); transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1180px) {
  .hero__visual { display: none; }
}

@media (max-width: 1024px) {
  .featured__grid { grid-template-columns: 1fr; text-align: center; }
  .featured__text p { margin-left: auto; margin-right: auto; }
  .featured__tags { justify-content: center; }
  .featured__visual svg { max-width: 160px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__cta { max-width: 260px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .logo__city { display: none; }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process__line { display: none; }
  .social__grid { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .hero { padding: 120px 0 60px; }
  .hero__visual { display: none; }
  .featured { padding: 28px 20px; }
  .services__row { grid-template-columns: 32px 40px 1fr; gap: 14px; }
  .services__arrow { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .compare { aspect-ratio: 4/3; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
