/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:     #080808;
  --bg2:    #0f0f0f;
  --bg3:    #161616;
  --line:   rgba(255, 255, 255, 0.08);
  --acc:    #c8ff00;
  --hot:    #ff3b6e;
  --txt:    #f4f4f0;
  --muted:  rgba(244, 244, 240, 0.4);
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --bebas:  'Bebas Neue', sans-serif;
  --body:   'Space Grotesk', sans-serif;
  --serif:  'DM Serif Display', serif;
  --app-vh: 1vh;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: none;
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button {
  cursor: none;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

/* Scroll margin para compensar o nav fixo */
#about, #services, #stats, #portfolio,
#process, #testimonials, #clients, #cta {
  scroll-margin-top: 80px;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.028;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 10050;
  width: 100vw;
  height: calc(var(--app-vh) * 100);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
  pointer-events: all;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.ld-logo {
  font-family: var(--bebas);
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: 0.04em;
  overflow: hidden;
  display: flex;
  gap: 0.08em;
}

.ld-char {
  display: inline-block;
  transform: translateY(120%);
  animation: ldUp 0.6s var(--ease) forwards;
}

.ld-char:nth-child(1) { animation-delay: 0.05s; }
.ld-char:nth-child(2) { animation-delay: 0.12s; }
.ld-char:nth-child(3) { animation-delay: 0.19s; }
.ld-char:nth-child(4) { color: var(--acc); animation-delay: 0.26s; }
.ld-char:nth-child(5) { animation-delay: 0.33s; }
.ld-char:nth-child(6) { animation-delay: 0.40s; }
.ld-char:nth-child(7) { animation-delay: 0.47s; }

.ld-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--acc);
  width: 0;
  animation: ldBar 1.2s var(--ease) 0.1s forwards;
}

@keyframes ldUp  { to { transform: translateY(0); } }
@keyframes ldBar { to { width: 100%; } }

/* ============================================================
   CURSOR
   ============================================================ */
#cur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9700;
  pointer-events: none;
  mix-blend-mode: exclusion;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cur-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--acc);
  border-radius: 50%;
  transition:
    width 0.45s var(--ease),
    height 0.45s var(--ease),
    border-color 0.3s,
    background 0.3s,
    opacity 0.3s;
}

.cur-dot {
  width: 5px;
  height: 5px;
  background: var(--acc);
  border-radius: 50%;
  transition: opacity 0.2s, transform 0.3s var(--ease);
}

.cur-label {
  position: absolute;
  font-family: var(--bebas);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  pointer-events: none;
}

body.on-link .cur-ring  { width: 72px; height: 72px; background: var(--acc); border-color: var(--acc); }
body.on-link .cur-dot   { opacity: 0; }
body.on-link .cur-label { opacity: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  transition: padding 0.3s var(--ease), background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

nav.sc {
  padding: 1.1rem 3rem;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--line);
}

.nav-logo {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-pill:hover {
  border-color: var(--acc);
  color: var(--acc);
  background: rgba(200, 255, 0, 0.05);
}

.menu-toggle {
  font-family: var(--bebas);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--txt);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle:hover { color: var(--acc); }

.menu-toggle .bar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.menu-toggle .bar span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.menu-open .menu-toggle .bar span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .menu-toggle .bar span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle .bar span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav overlay */
.nav-ov {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  padding: 7rem 3rem 3rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
}

.nav-ov.open { clip-path: inset(0 0 0% 0); }

.ov-links {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ov-links li {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.ov-links li:first-child { border-top: 1px solid var(--line); }

.ov-links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--bebas);
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: 0.04em;
  padding: 0.4rem 0;
  line-height: 1;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease), color 0.2s;
  color: var(--txt);
}

.nav-ov.open .ov-links a      { transform: translateY(0); }
.ov-links li:nth-child(1) a   { transition-delay: 0.08s; }
.ov-links li:nth-child(2) a   { transition-delay: 0.14s; }
.ov-links li:nth-child(3) a   { transition-delay: 0.20s; }
.ov-links li:nth-child(4) a   { transition-delay: 0.26s; }
.ov-links li:nth-child(5) a   { transition-delay: 0.32s; }
.ov-links a:hover              { color: var(--acc); }

.ov-links a span {
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.ov-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

.ov-foot a { transition: color 0.2s; }
.ov-foot a:hover { color: var(--txt); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 3rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(100px);
  animation: blobPulse 8s ease-in-out infinite alternate;
}

.blob1 { width: 700px; height: 700px; top: -10%; left: 40%; background: rgba(200, 255, 0, 0.06); animation-delay: 0s; }
.blob2 { width: 500px; height: 500px; top: 30%;  left: 60%; background: rgba(255, 59, 110, 0.04); animation-delay: -3s; }
.blob3 { width: 600px; height: 600px; top: 50%;  left: -10%; background: rgba(200, 255, 0, 0.03); animation-delay: -5s; }

@keyframes blobPulse {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.18) translate(3%, 4%); }
}

.hero-badge {
  position: absolute;
  top: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.6s 0.8s forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc);
  animation: ping 1.5s ease-in-out infinite;
}

@keyframes ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 244, 240, 0.56);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  animation: fadeIn 0.7s 1.8s forwards;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.hero-scroll-hint span { white-space: nowrap; }

.hero-scroll-hint::before {
  content: '';
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, var(--acc), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--acc);
  border-bottom: 1px solid var(--acc);
  transform: rotate(45deg);
  animation: scrollArrow 1.35s var(--ease) infinite;
}

.hero-scroll-hint.is-hidden {
  opacity: 0 !important;
  transform: translateY(10px);
  pointer-events: none;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

@keyframes scrollArrow {
  0%, 100% { opacity: 0.4; transform: rotate(45deg) translate(0, 0); }
  50%      { opacity: 1;   transform: rotate(45deg) translate(3px, 3px); }
}

.h-wrap { position: relative; z-index: 1; }

.h-super {
  font-family: var(--bebas);
  font-size: clamp(5rem, 15.5vw, 17rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  overflow: visible;
}

.h-super .row { display: block; overflow: hidden; }

.h-super .row > span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: slideUp 0.85s var(--ease) forwards;
}

.h-super .row:nth-child(1) > span { animation-delay: 0.5s; }
.h-super .row:nth-child(2) > span { animation-delay: 0.65s; }
.h-super .row:nth-child(3) > span { animation-delay: 0.8s; }

.h-super .lime { color: var(--acc); }

.h-super .out {
  -webkit-text-stroke: 2px var(--txt);
  color: transparent;
}

.h-super .it {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85em;
}

.h-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}

.h-desc {
  max-width: 370px;
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

.h-desc strong { color: var(--txt); font-weight: 500; }

.h-ctas { display: flex; align-items: center; gap: 1.25rem; }

.btn-acc {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--acc);
  color: var(--bg);
  font-family: var(--bebas);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: transform 0.25s var(--ease), box-shadow 0.3s;
}

.btn-acc:hover {
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(200, 255, 0, 0.35);
}

.btn-ghost2 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-ghost2 svg { transition: transform 0.22s var(--ease); }
.btn-ghost2:hover { color: var(--txt); }
.btn-ghost2:hover svg { transform: translateX(4px); }

@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--acc);
  overflow: hidden;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.m-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--bebas);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--bg);
}

.m-sep { font-size: 0.7rem; opacity: 0.4; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 9rem 3rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}

.about-side { position: sticky; top: 8rem; }

.ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 1rem;
}

.ab-tag::before { content: ''; width: 20px; height: 1px; background: var(--acc); }

.ab-num {
  font-family: var(--bebas);
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: var(--bg3);
  -webkit-text-stroke: 1px var(--line);
}

.ab-body { font-size: 0.88rem; line-height: 1.9; color: var(--muted); }
.ab-body strong { color: var(--txt); font-weight: 500; }

.about-stmt {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
}

.about-stmt .hl  { color: var(--acc); font-style: italic; }
.about-stmt .hl2 { color: var(--hot); font-style: italic; }

/* ── Foto do Sobre ── */
.ab-photo-wrap {
  margin-top: 2rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.ab-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(18%);
  transition: filter 0.5s ease, transform 0.6s var(--ease);
}

.ab-photo-wrap:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.ab-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 255, 0, 0.18);
  border-radius: 4px;
  pointer-events: none;
}

.ab-photo-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 2px;
  z-index: 2;
}

.ab-photo-badge span { color: var(--acc); }

/* ── Frase de impacto ── */
@keyframes glowPulse {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 28px rgba(200, 255, 0, 0.45); }
}

.impact-strip {
  padding: 8rem 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}

.is-headline {
  font-family: var(--bebas);
  font-size: clamp(2.8rem, 6.5vw, 7.5rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  margin-bottom: 2.5rem;
}

.is-headline .acc {
  color: var(--acc);
  animation: glowPulse 3.2s ease-in-out infinite;
  animation-delay: 1.2s;
}

.is-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.is-eyebrow::before,
.is-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--acc);
  opacity: 0.5;
}

.is-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.is-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--bebas);
  letter-spacing: 0.12em;
  font-size: 1rem;
  color: var(--bg);
  background: var(--acc);
  padding: 0.65rem 2rem;
  border-radius: 3px;
  transition: opacity 0.2s, transform 0.2s;
}

.is-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3.5rem;
}

.a-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.a-tag:hover { border-color: var(--acc); color: var(--acc); }

/* ============================================================
   SERVICES — sticky fullscreen scroll
   ============================================================ */
#services {
  border-top: 1px solid var(--line);
  position: relative;
}

.svc-outer { position: relative; }

.svc-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.svc-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.svc-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--acc);
  transition: height 0.4s var(--ease);
  height: 0%;
}

.svc-counter {
  position: absolute;
  top: 2.5rem;
  right: 3rem;
  font-family: var(--bebas);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  z-index: 2;
}

.svc-counter em { color: var(--acc); font-style: normal; }

.svc-section-lbl {
  position: absolute;
  top: 2.5rem;
  left: 3.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}

.svc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 0 3.5rem;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 1;
}

.svc-slide-idx {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.4s;
}

.svc-slide-idx::before { content: ''; width: 24px; height: 1px; background: var(--acc); }

.svc-slide-title {
  font-family: var(--bebas);
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: 0.02em;
  line-height: 0.88;
  margin-bottom: 2.5rem;
  transition: opacity 0.4s, transform 0.5s var(--ease);
}

.svc-slide-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  max-width: 420px;
  transition: opacity 0.4s;
}

.svc-slide-feats {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-slide-feats li {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}

.svc-slide-feats li.on { border-color: var(--acc); color: var(--acc); }

.svc-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.svc-img-wrap {
  width: 100%;
  height: 62vh;
  overflow: visible;
  position: relative;
  animation: floatImg 6s ease-in-out infinite alternate;
}

@keyframes floatImg {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}

.svc-img-ph {
  width: 100%;
  height: 100%;
  position: relative;
  background: transparent;
  overflow: visible;
}

/* ── ILLUSTRATIONS CONTAINER ── */
.svc-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BROWSER (site institucional) ── */
.illo-browser {
  width: 100%;
  max-width: 480px;
  background: var(--bg3);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
/* ── SHARED KEYFRAMES ── */
@keyframes illoShimmer   { from { opacity: 0.5; } to { opacity: 1; } }
@keyframes illoGlowBtn   { from { box-shadow: none; } to { box-shadow: 0 0 22px rgba(200,255,0,0.45); } }
@keyframes illoGrow      { to { width: 100%; } }
@keyframes illoPopIn     { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes illoSlideUp   { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes illoNudge     { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@keyframes illoPulseCta  { 0%,100% { box-shadow: 0 0 0 0 rgba(200,255,0,0.5); } 50% { box-shadow: 0 0 0 14px rgba(200,255,0,0); } }
@keyframes illoSwIn      { from { transform: scale(0) rotate(-90deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
@keyframes illoSpinCW    { to { transform: rotate(360deg); } }
@keyframes illoSpinCCW   { to { transform: rotate(-360deg); } }
@keyframes illoMoveCursor {
  0%   { top: 30px;  left: 30px; }
  25%  { top: 80px;  left: 160px; }
  50%  { top: 40px;  left: 290px; }
  75%  { top: 110px; left: 100px; }
  100% { top: 30px;  left: 30px; }
}
@keyframes illoBarPulse {
  0%, 100% { height: 30%; }
  50%       { height: 90%; }
}
@keyframes illoCountUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ═══════════════════════════════════════
   1. BROWSER — Site Institucional
═══════════════════════════════════════ */
.illo-browser {
  width: 100%; max-width: 480px;
  background: var(--bg3);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.ib-chrome {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--line);
}
.ib-dots { display: flex; gap: 5px; }
.ib-dots i { display: block; width: 8px; height: 8px; border-radius: 50%; }
.ib-dots i:nth-child(1) { background: var(--hot); }
.ib-dots i:nth-child(2) { background: #ffb800; }
.ib-dots i:nth-child(3) { background: var(--acc); }
.ib-url {
  flex: 1; height: 14px; background: var(--bg2);
  border-radius: 20px; border: 1px solid var(--line);
}
.ib-live {
  font-size: 0.52rem; letter-spacing: 0.1em; color: var(--acc);
  animation: illoShimmer 1.4s ease-in-out infinite alternate;
}
/* inner nav */
.ib-nav-strip {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.ib-brand {
  font-family: var(--bebas); font-size: 0.85rem;
  letter-spacing: 0.06em; color: var(--txt);
  margin-right: auto;
}
.ib-brand em { color: var(--acc); font-style: normal; }
.ib-nav-links { display: flex; gap: 0.55rem; }
.ib-nav-links s {
  display: block; height: 6px; border-radius: 3px;
  background: var(--line); text-decoration: none;
}
.ib-nav-links s:nth-child(1) { width: 28px; }
.ib-nav-links s:nth-child(2) { width: 22px; }
.ib-nav-links s:nth-child(3) { width: 32px; }
.ib-nav-links s:nth-child(4) { width: 20px; }
.ib-nav-pill {
  height: 18px; width: 70px; border-radius: 100px;
  background: var(--acc);
}
/* hero band */
.ib-hero-band {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem; padding: 1.1rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.ib-hero-copy { display: flex; flex-direction: column; gap: 0.35rem; }
.ib-badge-pill {
  height: 12px; width: 70px; border-radius: 100px;
  background: rgba(200,255,0,0.15); border: 1px solid rgba(200,255,0,0.3);
}
.ib-h1 { height: 12px; border-radius: 3px; background: var(--txt); opacity: 0.75; }
.ib-h1.w75 { width: 75%; }
.ib-desc { height: 7px; border-radius: 3px; background: var(--line); }
.ib-desc.w60 { width: 60%; }
.ib-hero-btns { display: flex; gap: 0.4rem; margin-top: 0.3rem; }
.ib-pri-btn {
  height: 18px; width: 72px; border-radius: 4px;
  background: var(--acc);
  animation: illoGlowBtn 2s ease-in-out infinite alternate;
}
.ib-sec-btn {
  height: 18px; width: 56px; border-radius: 4px;
  background: var(--line);
}
/* floating chart card */
.ib-hero-vis { display: flex; align-items: flex-end; justify-content: center; }
.ib-float-card {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: 7px; padding: 0.55rem; width: 100%;
}
.ib-fc-top { display: flex; gap: 0.35rem; margin-bottom: 0.55rem; }
.ib-fc-top s { display: block; height: 7px; border-radius: 3px; background: var(--line); text-decoration: none; }
.ib-fc-top s:first-child { flex: 1; }
.ib-fc-top s.acc { width: 30px; background: rgba(200,255,0,0.3); }
.ib-fc-chart {
  display: flex; align-items: flex-end; gap: 4px; height: 40px;
}
.ib-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: var(--line);
  transition: height 0.4s var(--ease);
}
.ib-bar.hacc { background: var(--acc); animation: illoShimmer 1.4s ease-in-out infinite alternate; }
.ib-fc-label {
  font-size: 0.5rem; letter-spacing: 0.1em; color: var(--acc);
  text-transform: uppercase; margin-top: 0.4rem;
}
/* feature row */
.ib-feat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0.75rem 0.9rem; gap: 0.6rem;
}
.ib-feat { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.ib-feat-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--line);
}
.ib-feat-dot.acc { border-color: rgba(200,255,0,0.4); background: rgba(200,255,0,0.08); }
.ib-feat-line { height: 5px; border-radius: 3px; background: var(--line); width: 100%; }
.ib-feat-line.short { width: 60%; }

/* ═══════════════════════════════════════
   2. LANDING PAGE
═══════════════════════════════════════ */
.illo-lp {
  width: 100%; max-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.ilp-main {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 0.55rem;
}
.ilp-eyebrow {
  height: 10px; width: 70px; border-radius: 100px;
  background: rgba(200,255,0,0.2); border: 1px solid rgba(200,255,0,0.4);
}
.ilp-h1 { height: 16px; width: 100%; border-radius: 3px; background: var(--txt); opacity: 0.85; }
.ilp-h1.w80 { width: 80%; }
.ilp-h2 { height: 8px; border-radius: 3px; background: var(--line); width: 90%; }
.ilp-h2.short { width: 65%; }
.ilp-btn {
  margin-top: 0.6rem;
  padding: 0.7rem 1.6rem;
  background: var(--acc);
  border-radius: 5px;
  color: var(--bg);
  font-family: var(--bebas);
  font-size: 1rem;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 0.4rem;
  animation: illoPulseCta 2s ease-in-out infinite;
}
.ilp-arr { animation: illoNudge 1.4s ease-in-out infinite; display: inline-block; }
.ilp-trust { display: flex; gap: 0.3rem; margin-top: 0.4rem; }
.ilp-trust i {
  display: block; width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--bg2);
}
.ilp-trust i:nth-child(2) { margin-left: -6px; }
.ilp-trust i:nth-child(3) { margin-left: -6px; }
/* metrics sidebar */
.ilp-metrics { display: flex; flex-direction: column; gap: 0.6rem; }
.ilp-metric {
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: 8px; padding: 0.6rem 0.75rem;
  animation: illoSlideUp 0.5s var(--ease) both;
}
.ilp-metric:nth-child(2) { animation-delay: 0.1s; border-color: rgba(200,255,0,0.25); }
.ilp-metric:nth-child(3) { animation-delay: 0.2s; }
.ilp-mval {
  font-family: var(--bebas); font-size: 1.6rem;
  letter-spacing: 0.04em; line-height: 1;
  color: var(--txt);
}
.ilp-metric:nth-child(2) .ilp-mval { color: var(--acc); }
.ilp-mlbl {
  font-size: 0.5rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 0.15rem;
}
.ilp-mbar { height: 3px; border-radius: 2px; background: var(--line); margin-top: 0.4rem; overflow: hidden; }
.ilp-mbar-fill { height: 100%; border-radius: 2px; background: var(--acc); }

/* ═══════════════════════════════════════
   3. E-COMMERCE
═══════════════════════════════════════ */
.illo-ecom {
  width: 100%; max-width: 440px;
  display: grid; grid-template-rows: auto auto;
  gap: 0.6rem;
}
.iec-topbar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: 8px;
}
.iec-logo { font-family: var(--bebas); font-size: 0.85rem; letter-spacing: 0.04em; color: var(--txt); margin-right: auto; }
.iec-logo em { color: var(--acc); font-style: normal; }
.iec-search { flex: 0.5; height: 14px; border-radius: 100px; background: var(--bg2); border: 1px solid var(--line); }
.iec-cart-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--acc); display: flex; align-items: center;
  justify-content: center; font-size: 0.65rem; color: var(--bg); font-weight: 700;
  position: relative;
}
.iec-badge {
  position: absolute; top: -5px; right: -5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--hot); font-size: 0.45rem; font-weight: 700;
  color: #fff; display: flex; align-items: center; justify-content: center;
  animation: illoPopIn 0.4s var(--ease) both;
}
.iec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.iec-card {
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden; position: relative;
}
.iec-card.active { border-color: rgba(200,255,0,0.45); }
.iec-img {
  height: 70px; background: rgba(255,255,255,0.03);
  position: relative; overflow: hidden;
}
.iec-img-pat {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 6px, rgba(255,255,255,0.02) 6px, rgba(255,255,255,0.02) 7px);
}
.iec-card.active .iec-img { background: rgba(200,255,0,0.06); }
.iec-info { padding: 0.5rem; display: flex; flex-direction: column; gap: 4px; }
.iec-name { height: 7px; border-radius: 3px; background: var(--line); }
.iec-price {
  font-family: var(--bebas); font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--muted);
}
.iec-card.active .iec-price { color: var(--acc); }
.iec-add {
  margin-top: 0.25rem; height: 18px; border-radius: 4px;
  background: var(--line); font-size: 0.5rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.iec-card.active .iec-add {
  background: var(--acc); color: var(--bg);
  animation: illoGlowBtn 2s ease-in-out infinite alternate;
}
.iec-sticker {
  position: absolute; top: 5px; left: 5px;
  background: var(--hot); color: #fff;
  font-size: 0.45rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 2px 5px; border-radius: 3px;
}

/* ═══════════════════════════════════════
   4. APP MOBILE
═══════════════════════════════════════ */
.illo-app { display: flex; align-items: center; justify-content: center; gap: 1.2rem; }
.iapp-phone {
  background: var(--bg3);
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: 26px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.iapp-phone.main { width: 130px; height: 240px; }
.iapp-phone.sec  { width: 100px; height: 190px; opacity: 0.7; }
.iapp-notch {
  width: 40px; height: 9px; background: var(--bg);
  border-radius: 0 0 8px 8px; align-self: center; flex-shrink: 0;
}
.iapp-screen { flex: 1; padding: 0.5rem; display: flex; flex-direction: column; gap: 0.35rem; overflow: hidden; }
.iapp-topbar { display: flex; align-items: center; gap: 0.3rem; }
.iapp-topbar s { display: block; height: 6px; border-radius: 3px; background: var(--line); text-decoration: none; }
.iapp-topbar s:first-child { flex: 1; }
.iapp-topbar s.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); }
.iapp-hero-card {
  border-radius: 7px; padding: 0.5rem;
  background: linear-gradient(135deg, rgba(200,255,0,0.1), rgba(200,255,0,0.04));
  border: 1px solid rgba(200,255,0,0.2);
  display: flex; flex-direction: column; gap: 3px;
}
.iapp-hc-val {
  font-family: var(--bebas); font-size: 1.1rem; letter-spacing: 0.04em;
  line-height: 1; color: var(--acc);
}
.iapp-hc-lbl { height: 5px; width: 60%; border-radius: 3px; background: rgba(200,255,0,0.2); }
.iapp-row { height: 7px; border-radius: 3px; background: var(--line); }
.iapp-row.short { width: 65%; }
.iapp-cards { display: flex; gap: 0.3rem; margin-top: 0.15rem; }
.iapp-card {
  flex: 1; height: 50px; border-radius: 6px;
  background: var(--bg2); border: 1px solid var(--line);
  animation: illoSlideUp 0.55s var(--ease) both;
}
.iapp-card.acc { background: rgba(200,255,0,0.06); border-color: rgba(200,255,0,0.18); }
.iapp-card:nth-child(2) { animation-delay: 0.1s; }
.iapp-notif {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: 8px; padding: 0.3rem 0.5rem;
  font-size: 0.45rem; letter-spacing: 0.06em; color: var(--txt);
  white-space: nowrap;
  animation: illoSlideUp 0.6s var(--ease) 0.8s both;
}
.iapp-home { width: 32px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.18); align-self: center; margin-bottom: 7px; flex-shrink: 0; }
.iapp-phones-wrap { position: relative; display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════════════════
   5. UI/UX DESIGN
═══════════════════════════════════════ */
.illo-ux {
  width: 100%; max-width: 460px;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.iux-toolbar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
}
.iux-tool {
  width: 22px; height: 22px; border-radius: 5px;
  background: var(--line);
}
.iux-tool.on { background: rgba(200,255,0,0.15); border: 1px solid rgba(200,255,0,0.4); }
.iux-sep { width: 1px; height: 16px; background: var(--line); margin: 0 0.2rem; }
.iux-zoom { margin-left: auto; font-size: 0.5rem; letter-spacing: 0.06em; color: var(--muted); }
.iux-canvas {
  width: 100%; height: 160px;
  background: #111;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.iux-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.iux-frame {
  position: absolute;
  border: 1px solid rgba(200,255,0,0.25);
  border-radius: 4px;
}
.iux-frame.f1 { top: 18px; left: 18px; width: 120px; height: 90px; }
.iux-frame.f2 { top: 18px; left: 148px; width: 90px; height: 40px; }
.iux-frame.f3 { top: 68px; left: 148px; width: 90px; height: 40px; }
.iux-frame.f4 { top: 18px; left: 248px; width: 60px; height: 90px; opacity: 0.5; }
/* frame content */
.iux-fc { position: absolute; inset: 6px; display: flex; flex-direction: column; gap: 3px; }
.iux-fc-bar { height: 7px; border-radius: 3px; background: rgba(200,255,0,0.15); }
.iux-fc-row { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.06); }
.iux-fc-row.s { width: 60%; }
/* cursor */
.iux-cursor {
  position: absolute; z-index: 5;
  width: 0; height: 0;
  border-left: 9px solid var(--acc);
  border-right: 4px solid transparent;
  border-bottom: 14px solid transparent;
  filter: drop-shadow(0 0 6px rgba(200,255,0,0.6));
  animation: illoMoveCursor 5s ease-in-out infinite;
}
.iux-cursor-label {
  position: absolute; z-index: 5;
  font-size: 0.5rem; letter-spacing: 0.06em;
  color: var(--acc); background: rgba(200,255,0,0.12);
  padding: 2px 6px; border-radius: 3px;
  white-space: nowrap;
  animation: illoMoveCursor 5s ease-in-out infinite;
  transform: translate(14px, 4px);
}
/* bottom system */
.iux-bottom { display: flex; gap: 0.6rem; }
.iux-swatches { display: flex; gap: 0.4rem; align-items: center; }
.iux-sw {
  width: 28px; height: 28px; border-radius: 50%;
  animation: illoSwIn 0.5s var(--ease) both;
  cursor: pointer;
}
.iux-sw.s1 { background: var(--acc); }
.iux-sw.s2 { background: var(--hot); }
.iux-sw.s3 { background: #3b82f6; }
.iux-sw.s4 { background: #f59e0b; }
.iux-sw.s5 { background: rgba(255,255,255,0.18); }
.iux-sw:nth-child(2) { animation-delay: 0.07s; }
.iux-sw:nth-child(3) { animation-delay: 0.14s; }
.iux-sw:nth-child(4) { animation-delay: 0.21s; }
.iux-sw:nth-child(5) { animation-delay: 0.28s; }
.iux-typo { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.iux-typo-row { height: 7px; border-radius: 3px; background: var(--line); }
.iux-typo-row.lg { height: 11px; width: 60%; }
.iux-typo-row.sm { width: 40%; }

/* ═══════════════════════════════════════
   6. MANUTENÇÃO — dashboard
═══════════════════════════════════════ */
.illo-maint {
  width: 100%; max-width: 440px;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.im-topbar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  background: var(--bg3); border: 1px solid var(--line); border-radius: 8px;
}
.im-topbar-ttl {
  font-family: var(--bebas); font-size: 0.85rem; letter-spacing: 0.06em; color: var(--txt); margin-right: auto;
}
.im-status {
  font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--acc); display: flex; align-items: center; gap: 0.35rem;
}
.im-status::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); animation: illoShimmer 1.2s ease-in-out infinite;
}
.im-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.im-card {
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: 8px; padding: 0.65rem 0.75rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.im-card.hi { border-color: rgba(200,255,0,0.3); }
.im-card-lbl {
  font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.im-card-val {
  font-family: var(--bebas); font-size: 1.6rem; letter-spacing: 0.02em;
  line-height: 1; color: var(--txt);
}
.im-card.hi .im-card-val { color: var(--acc); }
.im-card-bar { height: 3px; border-radius: 2px; background: var(--line); margin-top: 0.3rem; overflow: hidden; }
.im-card-fill { height: 100%; border-radius: 2px; }
.im-card.hi .im-card-fill { background: var(--acc); width: 99%; }
.im-card:nth-child(2) .im-card-fill { background: #3b82f6; width: 28%; animation: illoBarPulse 2s ease-in-out infinite; }
.im-card:nth-child(3) .im-card-fill { background: #f59e0b; width: 45%; }
.im-card:nth-child(4) .im-card-fill { background: var(--hot); width: 12%; }
/* log feed */
.im-log {
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: 8px; padding: 0.5rem 0.7rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.im-log-row {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.48rem; letter-spacing: 0.06em; color: var(--muted);
  animation: illoSlideUp 0.4s var(--ease) both;
}
.im-log-row:nth-child(2) { animation-delay: 0.07s; }
.im-log-row:nth-child(3) { animation-delay: 0.14s; }
.im-log-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.im-log-dot.ok  { background: var(--acc); }
.im-log-dot.inf { background: #3b82f6; }
.im-log-dot.wrn { background: #f59e0b; }
.im-log-time { margin-left: auto; opacity: 0.6; }
/* gears */
.im-gears { display: flex; justify-content: flex-end; gap: 0.25rem; align-items: center; }
.im-gear {
  border-radius: 50%; flex-shrink: 0;
  border-style: solid;
}
.im-gear.big {
  width: 30px; height: 30px;
  border-width: 3px; border-color: rgba(200,255,0,0.3);
  background: rgba(200,255,0,0.05);
  animation: illoSpinCW 5s linear infinite;
}
.im-gear.small {
  width: 20px; height: 20px;
  border-width: 2px; border-color: rgba(255,255,255,0.15);
  background: transparent;
  animation: illoSpinCCW 3.4s linear infinite;
}

.svc-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--acc);
  opacity: 0.06;
  filter: blur(40px);
}

.svc-sticky.transitioning .svc-slide-title,
.svc-sticky.transitioning .svc-slide-desc,
.svc-sticky.transitioning .svc-slide-idx {
  opacity: 0;
  transform: translateY(20px);
}

.svc-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 2;
}

.svc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.3s, transform 0.3s;
  cursor: none;
}

.svc-dot.on { background: var(--acc); transform: scale(1.4); }

.svc-mobile-exit-hint {
  display: none;
}

/* ============================================================
   STATS — sticky fullscreen scroll
   ============================================================ */
#stats {
  border-top: 1px solid var(--line);
  position: relative;
}

.st-outer { position: relative; }

.st-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--bg);
}

.st-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.st-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--acc);
  transition: height 0.4s var(--ease);
  height: 0%;
}

.st-lbl {
  position: absolute;
  top: 2.5rem;
  left: 3.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.st-counter {
  position: absolute;
  top: 2.5rem;
  right: 3rem;
  font-family: var(--bebas);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.st-counter em { color: var(--acc); font-style: normal; }

.st-number {
  font-family: var(--bebas);
  font-size: clamp(8rem, 22vw, 22rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--acc);
  transition: opacity 0.35s, transform 0.5s var(--ease);
}

.st-label {
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.5rem;
  transition: opacity 0.35s;
}

.st-sticky.transitioning .st-number,
.st-sticky.transitioning .st-label {
  opacity: 0;
  transform: translateY(24px);
}

.st-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.st-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.3s, transform 0.3s;
}

.st-dot.on { background: var(--acc); transform: scale(1.4); }

.st-mobile-list {
  display: none;
  width: min(460px, 100%);
  margin: 1.5rem auto 0;
  gap: 0.8rem;
}

.st-mobile-item {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 8px;
  padding: 1rem 1.1rem 0.95rem;
  opacity: 1;
  transform: none;
  transition: border-color 0.3s, opacity 0.3s, transform 0.35s var(--ease);
}

.st-mobile-item.is-active {
  border-color: rgba(200, 255, 0, 0.4);
  opacity: 1;
  transform: translateY(-2px);
}

.st-mobile-value {
  font-family: var(--bebas);
  font-size: clamp(2.3rem, 8vw, 3.3rem);
  letter-spacing: 0.02em;
  color: var(--acc);
  line-height: 0.95;
}

.st-mobile-label {
  margin-top: 0.45rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
#portfolio {
  padding: 9rem 0 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.port-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 3rem;
  margin-bottom: 4rem;
}

.port-ttl {
  font-family: var(--bebas);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
}

.port-ttl .acc { color: var(--acc); }

.port-hint {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.port-hint svg { animation: arrowPulse 1.8s ease-in-out infinite; }

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}

.port-track-wrap {
  overflow-x: auto;
  padding: 0 3rem 4rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  -webkit-user-select: none;
}

.port-track-wrap::-webkit-scrollbar { display: none; }

.port-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.pcard {
  width: clamp(340px, 38vw, 520px);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg2);
  transition: border-color 0.3s, transform 0.5s var(--ease);
}

.pcard:hover { border-color: rgba(200, 255, 0, 0.3); transform: translateY(-6px); }

.pc-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-ph {
  inset: 0;
  position: absolute;
  background: repeating-linear-gradient(
    -45deg,
    var(--bg2) 0, var(--bg2) 1px,
    transparent 1px, transparent 24px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pc-ph svg { opacity: 0.2; }

.pc-over {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}

.pcard:hover .pc-over { opacity: 1; }

.pc-view {
  font-family: var(--bebas);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--acc);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pc-info  { padding: 1.5rem; }

.pc-cat {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 0.4rem;
}

.pc-name {
  font-family: var(--bebas);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.pc-year { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* ── Portfolio — MacBook + Mobile mockup ── */
.pc-nb-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 90% 70% at 30% 80%, rgba(200, 255, 0, 0.09) 0%, transparent 100%),
    radial-gradient(ellipse 55% 50% at 78% 18%, rgba(100, 60, 255, 0.07) 0%, transparent 100%),
    #090909;
  overflow: hidden;
}

.pc-nb-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.pc-notebook {
  position: relative;
  width: 66%;
  z-index: 2;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.75));
}

.pc-notebook::after {
  content: '';
  position: absolute;
  bottom: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 30px;
  background: rgba(200, 255, 0, 0.14);
  filter: blur(22px);
  border-radius: 50%;
  z-index: -1;
}

.pc-nb-lid {
  width: 100%;
  background: #1a1a1c;
  border-radius: 6px 6px 0 0;
  padding: 2.6% 1.8% 1%;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.pc-nb-lid::before {
  content: '';
  position: absolute;
  top: 1.3%;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2d2d2f;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.05);
}

.pc-nb-screen-inner {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
  background: #000;
}

.pc-nb-screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s var(--ease);
}

.pcard:hover .pc-nb-screen-inner img { transform: scale(1.04); }

.pc-nb-base {
  width: 110%;
  margin-left: -5%;
  padding-bottom: 3.6%;
  background: linear-gradient(180deg, #2c2c2e 0%, #1c1c1e 100%);
  border-radius: 0 0 4px 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.pc-nb-base::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13%;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
}

.pc-mobile-frame {
  position: absolute;
  bottom: 8%;
  right: 5%;
  width: 17%;
  aspect-ratio: 9 / 18;
  background: #0d0d0d;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.75), 0 2px 8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 4;
}

.pc-mobile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ── Imagem full-bleed (sem frame, ocupa o card inteiro) ── */
.pc-fill-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pc-fill-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.pcard:hover .pc-fill-img img { transform: scale(1.05); }

/* ── App mockup (phone hero — sem notebook) ── */
.pc-app-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 75% 80% at 50% 65%, rgba(120, 60, 255, 0.2) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 18% 18%, rgba(200, 255, 0, 0.07) 0%, transparent 100%),
    #06060e;
  overflow: hidden;
}

.pc-app-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.pc-phone-hero {
  position: relative;
  width: 42%;
  aspect-ratio: 9 / 19.5;
  background: #0a0a0a;
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 55px rgba(120, 60, 255, 0.25);
  overflow: hidden;
  z-index: 2;
}

.pc-phone-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 15px;
  background: #0a0a0a;
  border-radius: 0 0 10px 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  border-top: none;
  z-index: 3;
}

.pc-phone-hero::after {
  content: '';
  position: absolute;
  bottom: -22%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 40px;
  background: rgba(120, 60, 255, 0.32);
  filter: blur(26px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.pc-phone-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s var(--ease);
}

.pcard:hover .pc-phone-hero img { transform: scale(1.03); }

/* ============================================================
   PROCESS — horizontal sticky scroll
   ============================================================ */
#process {
  border-top: 1px solid var(--line);
  position: relative;
}

.proc-outer { position: relative; }

.proc-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.proc-fixed-header {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2rem 3.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.proc-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.proc-ttl {
  font-family: var(--bebas);
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.proc-ttl .acc { color: var(--acc); }

.proc-step-counter {
  font-family: var(--bebas);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.proc-step-counter em { color: var(--acc); font-style: normal; }

.proc-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.proc-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.proc-slide {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 3rem 5rem;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}

.proc-slide:last-child { border-right: none; }

.p-n {
  font-family: var(--bebas);
  font-size: clamp(10rem, 18vw, 20rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  transition: -webkit-text-stroke-color 0.4s;
  user-select: none;
}

.proc-slide:hover .p-n { -webkit-text-stroke-color: rgba(200, 255, 0, 0.5); }

.p-body { max-width: 520px; }

.p-t {
  font-family: var(--bebas);
  font-size: clamp(2.5rem, 4.5vw, 5.5rem);
  letter-spacing: 0.04em;
  color: var(--acc);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.p-d {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

.proc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
  z-index: 2;
}

.proc-progress-fill {
  height: 100%;
  background: var(--acc);
  width: 25%;
  transition: width 0.35s var(--ease);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 9rem 3rem;
  border-top: 1px solid var(--line);
}

.t-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
}

.t-ttl {
  font-family: var(--bebas);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
}

.t-ttl .acc { color: var(--acc); }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.t-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.8rem 2.5rem 2.2rem;
  transition: border-color 0.3s, transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.t-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--acc), var(--hot));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.t-card:hover { border-color: rgba(200, 255, 0, 0.2); transform: translateY(-5px); }
.t-card:hover::before { transform: scaleX(1); }

.t-stars { display: flex; gap: 3px; margin-bottom: 1.5rem; }
.t-stars span { color: var(--acc); font-size: 0.85rem; }

.t-txt {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
}

.t-author { display: flex; align-items: center; gap: 0.9rem; }

.t-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bebas);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--acc);
  flex-shrink: 0;
}

.t-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.15rem; }
.t-role { font-size: 0.72rem; color: var(--muted); }

/* ============================================================
   CLIENTS
   ============================================================ */
#clients {
  padding: 6rem 3rem;
  border-top: 1px solid var(--line);
}

.cl-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3rem;
}

.cl-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
}

.cl-it {
  flex: 1 1 16.66%;
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--line);
  font-family: var(--bebas);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
  transition: color 0.25s, background 0.25s;
}

.cl-it:last-child { border-right: none; }
.cl-it:hover { color: var(--txt); background: var(--bg2); }

/* ============================================================
   CTA
   ============================================================ */
#cta {
  padding: 11rem 3rem 9rem;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200, 255, 0, 0.05) 0%, transparent 65%);
}

.cta-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-h {
  font-family: var(--bebas);
  font-size: clamp(4rem, 13vw, 13rem);
  letter-spacing: 0.01em;
  line-height: 0.88;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.cta-h .acc { color: var(--acc); }

/* Cycling word animation */
.cc-wrap {
  display: inline-block;
  overflow: hidden;
  height: 0.88em;
  vertical-align: top;
  margin-left: 0.12em;
}

.cc-inner {
  display: flex;
  flex-direction: column;
  animation: cyc 3.5s steps(1) infinite;
}

.cc-inner span { display: block; height: 0.88em; line-height: 0.88; }

@keyframes cyc {
  0%   { transform: translateY(0); }
  33%  { transform: translateY(-0.88em); }
  66%  { transform: translateY(-1.76em); }
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 2rem 0 3.5rem;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #071a0e;
  font-family: var(--bebas);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: transform 0.25s var(--ease), box-shadow 0.3s;
}

.btn-wpp:hover { transform: scale(1.04); box-shadow: 0 0 44px rgba(37, 211, 102, 0.3); }

.btn-email {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}

.btn-email:hover { color: var(--txt); border-color: var(--txt); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.f-logo { font-family: var(--bebas); font-size: 1.4rem; letter-spacing: 0.05em; }
.f-logo em { color: var(--acc); font-style: normal; }
.f-copy { font-size: 0.72rem; color: var(--muted); }

.f-links { display: flex; gap: 2rem; list-style: none; }
.f-links a { font-size: 0.72rem; color: var(--muted); transition: color 0.2s; }
.f-links a:hover { color: var(--txt); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.rv {
  opacity: 1;
  transform: none;
  transition: none;
}

.rv.in { opacity: 1; transform: none; }

.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.45s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid .t-card:last-child { grid-column: span 2; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .about-side { position: static; }
  .ab-photo-wrap { max-height: 360px; }
  .impact-strip { padding: 5rem 1.5rem; }
  .cl-it { flex: 1 1 33%; }
}

@media (max-width: 768px) {
  nav, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  nav         {
    top: 0;
    left: 0;
    right: 0;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    transition: background 0.25s, border-color 0.25s;
  }
  nav.sc      {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8, 8, 8, 0.96);
  }
  .nav-logo {
    max-width: 56vw;
    font-size: 0.62rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .menu-toggle { font-size: 1rem; }
  .nav-pill   { display: none; }
  .nav-ov     { padding-left: 1.5rem; padding-right: 1.5rem; padding-top: 5rem; }

  #hero, #about, #testimonials,
  #clients, #cta { padding-left: 1.5rem; padding-right: 1.5rem; }

  .port-hdr        { padding: 0 1.5rem; }
  .port-track-wrap { padding: 0 1.5rem 3rem; }
  .hero-badge { display: none; }
  .hero-scroll-hint {
    left: 50%;
    right: auto;
    bottom: 1rem;
    transform: translateX(-50%);
    writing-mode: horizontal-tb;
    padding: 0.4rem 0.78rem;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.62);
    backdrop-filter: blur(10px);
    letter-spacing: 0.14em;
    font-size: 0.5rem;
    color: rgba(244, 244, 240, 0.64);
  }
  .hero-scroll-hint::before {
    width: 22px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--acc), transparent);
  }
  .hero-scroll-hint::after {
    width: 6px;
    height: 6px;
  }
  .hero-scroll-hint.is-hidden {
    transform: translateX(-50%) translateY(8px);
  }

  .h-foot { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .t-hdr, .port-hdr { flex-direction: column; gap: 1.5rem; align-items: flex-start; }

  /* Services mobile */
  .svc-content { grid-template-columns: 1fr; gap: 3rem; padding: 0 1.5rem; }
  .svc-right   { display: none; }
  .svc-mobile-exit-hint {
    position: absolute;
    left: 50%;
    bottom: 0.95rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.53rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244, 244, 240, 0.72);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 0.38rem 0.68rem;
    background: rgba(8, 8, 8, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .svc-mobile-exit-hint .arrow {
    color: var(--acc);
    animation: svcHintPulse 1.1s ease-in-out infinite alternate;
  }
  .svc-dots {
    bottom: 3.6rem;
  }

  /* Stats mobile: simpler stacked layout */
  .st-outer   { height: auto !important; }
  .st-sticky  { position: relative; height: auto; flex-direction: column; gap: 1rem; padding: 4rem 1.5rem; text-align: center; }
  .st-lbl {
    position: static;
    align-self: center;
    margin-bottom: 0.4rem;
    font-size: 0.55rem;
  }
  .st-number,
  .st-label,
  .st-progress,
  .st-counter,
  .st-dots { display: none; }
  .st-mobile-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* Process mobile: vertical fallback */
  .proc-outer { height: auto !important; }
  .proc-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
  .proc-fixed-header { padding: 2rem 1.5rem; }
  .proc-track-wrap   { overflow: visible; flex: none; }
  .proc-track {
    flex-direction: column;
    transform: none !important;
    will-change: unset;
  }
  .proc-slide {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2.5rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--line);
    height: auto;
  }
  .proc-slide:last-child { border-bottom: none; }
  .p-n { font-size: clamp(6rem, 20vw, 10rem); }
  .proc-progress, .proc-step-counter { display: none; }

  .t-grid { grid-template-columns: 1fr; }
  .t-grid .t-card:last-child { grid-column: span 1; }
  .cl-it  { flex: 1 1 50%; }

  footer    { flex-direction: column; text-align: center; }
  .f-links  { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }

  #cur      { display: none; }
  body      { cursor: auto; }
  a, button { cursor: pointer; }
}

@keyframes svcHintPulse {
  from { transform: translateY(0); opacity: 0.75; }
  to   { transform: translateY(2px); opacity: 1; }
}
