/* ============================================
   UNOVA DESIGN · V3 Rounded + Cinematic
   ============================================ */

:root {
  --brand: #7C3AFF;
  --brand-deep: #5B1FE0;
  --brand-glow: #A77BFF;
  --gold: #E8C172;

  --bg: #0A0518;
  --bg-1: #120824;
  --bg-2: #1A0E2E;
  --bg-3: #241439;
  --bg-deep: #06030E;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --line-3: rgba(255, 255, 255, 0.30);

  --text: #FAFAFA;
  --text-2: rgba(250, 250, 250, 0.7);
  --text-3: rgba(250, 250, 250, 0.45);
  --text-4: rgba(250, 250, 250, 0.25);

  /* Paper/light section tokens (from V2) */
  --paper: #F6F2EC;
  --paper-2: #EFEAE0;
  --paper-3: #E8E1D3;
  --ink: #14111A;
  --ink-2: rgba(20, 17, 26, 0.7);
  --ink-3: rgba(20, 17, 26, 0.45);
  --ink-line: rgba(20, 17, 26, 0.1);
  --ink-line-2: rgba(20, 17, 26, 0.2);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Border-radius tokens */
  --r-pill: 999px;
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  --max-w: 1440px;
  --gutter: clamp(24px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(124, 58, 255, 0.10), transparent 55%),
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(167, 123, 255, 0.06), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
/* Mercado Livre logo always sits with rounded corners */
img[src*="mercado-livre"] { border-radius: 22%; overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
::selection { background: var(--brand); color: var(--text); }

.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(100px, 14vw, 200px); }

/* ============ BUTTONS (all pill-shaped) ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 14px; font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--r-pill);
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
              transform 0.18s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--brand);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(124, 58, 255, 0.28);
}
.btn-primary:hover {
  background: var(--brand-deep);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(124, 58, 255, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-outline:hover { border-color: var(--brand-glow); color: var(--brand-glow); }
.btn-white {
  background: var(--text);
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.btn-white:hover {
  background: var(--bg);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset,
              0 12px 30px rgba(0, 0, 0, 0.45);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }

/* ============ REVEAL animations ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.word.in { opacity: 1; transform: none; }

/* ============ EYEBROW ============ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-glow);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}

/* ============ NAV · transforms from full-bleed to floating pill ============ */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: var(--max-w);
  padding: 22px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition: top 0.45s var(--ease),
              width 0.45s var(--ease),
              max-width 0.45s var(--ease),
              padding 0.45s var(--ease),
              background 0.45s var(--ease),
              border-color 0.45s var(--ease),
              border-radius 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}
.nav.scrolled {
  top: 16px;
  width: calc(100% - 32px);
  max-width: 1100px;
  padding: 8px 8px 8px 20px;
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-color: var(--line-3);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
/* Highlighted nav link */
.nav-mid .nav-highlight {
  color: var(--text);
}
.nav-mid .nav-highlight::before {
  transform: translateX(-50%) scale(1);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 24px; }
.nav-logo span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.nav-mid {
  display: flex; gap: 6px;
}
.nav-mid a {
  position: relative;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-2);
  transition: color 0.3s var(--ease);
}
.nav-mid a::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 8px var(--brand-glow);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}
.nav-mid a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px;
  bottom: 6px;
  height: 1px;
  background: var(--brand-glow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-mid a:hover {
  color: var(--text);
}
.nav-mid a:hover::before {
  transform: translateX(-50%) scale(1);
}
.nav-mid a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 11px 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset,
              0 8px 22px rgba(124, 58, 255, 0.4);
  transition: box-shadow 0.4s var(--ease), transform 0.18s var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset,
              0 12px 32px rgba(167, 123, 255, 0.55);
}
.nav-cta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.7);
  animation: pulse 1.6s ease-in-out infinite;
}
@media (max-width: 880px) {
  .nav-mid { display: none; }
  .nav { padding: 18px var(--gutter); }
  .nav.scrolled { padding: 8px 8px 8px 16px; }
}

/* ============ HERO ============ */
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(124, 58, 255, 0.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(91, 31, 224, 0.12), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 96px var(--gutter) 36px;
  display: flex; flex-direction: column;
}
.hero-grid-bg {
  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: 120px 120px;
  mask-image: linear-gradient(180deg, black 30%, transparent 90%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 60%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(124, 58, 255, 0.45) 0%, transparent 60%);
  filter: blur(70px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: ""; position: absolute;
  top: -15%; left: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(167, 123, 255, 0.28) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute;
  bottom: -25%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 255, 0.22) 0%, transparent 65%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero-main-text {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vw, 32px);
  align-items: flex-start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 10px var(--brand-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.5; transform: scale(0.85); } }

.hero-main {
  position: relative; z-index: 2;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr clamp(280px, 28vw, 380px);
  gap: clamp(20px, 2.4vw, 40px);
  align-items: center;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, min(9.5vw, 13vh), 184px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.hero-h1 .line { display: block; }
.hero-h1 .accent { color: var(--brand-glow); }
.hero-h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}
.hero-h1 .ital { font-style: italic; font-weight: 400; }

.hero-aside {
  position: relative;
  align-self: center;
  width: 100%;
}

.hero-image-slot {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, rgba(124, 58, 255, 0.15), rgba(167, 123, 255, 0.05));
  border: 1px solid rgba(167, 123, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 30px 80px rgba(124, 58, 255, 0.25);
  width: 100%;
  max-width: min(380px, 100%);
  margin-inline: auto;
  max-height: 64vh;
  overflow: visible;
}
.hero-image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 1;
}
.hero-image-hint {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  background: rgba(10, 5, 24, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-pill);
  white-space: nowrap;
  pointer-events: none;
}
.hero-image-hint .hi-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 10px var(--brand-glow);
  animation: pulse 1.6s ease-in-out infinite;
}

/* Floating stat cards orbiting the image */
.hero-stat {
  position: absolute;
  z-index: 3;
  background: rgba(20, 9, 35, 0.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(167, 123, 255, 0.25);
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 12px 32px rgba(0, 0, 0, 0.35);
  min-width: 110px;
  transition: transform 0.4s var(--ease);
}
.hero-stat:hover { transform: translateY(-3px) scale(1.04); }
.hero-stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-stat .v .acc { color: var(--brand-glow); }
.hero-stat .v em { font-style: italic; font-weight: 700; letter-spacing: -0.01em; }
.hero-stat-method {
  border-color: rgba(167, 123, 255, 0.4);
  background:
    linear-gradient(135deg, rgba(124, 58, 255, 0.22) 0%, rgba(20, 9, 35, 0.65) 60%);
}
.hero-stat-method .v em { text-shadow: 0 0 18px rgba(167, 123, 255, 0.45); }
.hero-stat .l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-glow);
  margin-top: 6px;
}
.hero-stat.float-tl { top: -22px; left: -32px; transform: rotate(-2deg); }
.hero-stat.float-tr { top: -22px; right: -32px; transform: rotate(2deg); }
.hero-stat.float-bl { bottom: -22px; left: -32px; transform: rotate(2deg); }
.hero-stat.float-br { bottom: -22px; right: -32px; transform: rotate(-2deg); }
.hero-stat.float-tl:hover { transform: rotate(-2deg) translateY(-3px) scale(1.04); }
.hero-stat.float-tr:hover { transform: rotate(2deg) translateY(-3px) scale(1.04); }
.hero-stat.float-bl:hover { transform: rotate(2deg) translateY(-3px) scale(1.04); }
.hero-stat.float-br:hover { transform: rotate(-2deg) translateY(-3px) scale(1.04); }


.hero-bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1080px) {
  .hero-stat { padding: 12px 14px; min-width: 96px; }
  .hero-stat .v { font-size: 24px; }
}
@media (max-width: 880px) {
  .hero { height: auto; min-height: 100vh; }
  .hero-inner { padding: 100px var(--gutter) 40px; }
  .hero-main { grid-template-columns: 1fr; gap: 40px; }
  .hero-aside { order: 2; max-width: 340px; margin-inline: auto; width: 100%; }
  .hero-image-slot { max-height: none; max-width: 100%; }
  .hero-stat { padding: 10px 14px; min-width: 88px; }
  .hero-stat.float-tl { top: -16px; left: -16px; }
  .hero-stat.float-tr { top: -16px; right: -16px; }
  .hero-stat.float-bl { bottom: -16px; left: -16px; }
  .hero-stat.float-br { bottom: -16px; right: -16px; }
}

/* ============ Marquee · editorial ribbon ============ */
.marquee {
  position: relative;
  padding: 18px 0;
  overflow: hidden;
  background:
    radial-gradient(60% 140% at 50% 50%, rgba(124, 58, 255, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-deep) 50%, var(--bg-1) 100%);
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(167, 123, 255, 0.40) 50%, transparent 92%);
  pointer-events: none;
}
.marquee::before { top: 0; }
.marquee::after { bottom: 0; }

.marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  width: max-content;
  animation: m 55s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--text);
  display: inline-flex;
  align-items: center;
}

.marquee-item.acc {
  color: var(--brand-glow);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
  text-shadow: 0 0 18px rgba(167, 123, 255, 0.45);
}

.marquee-sep {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--brand-glow);
  text-shadow: 0 0 14px rgba(167, 123, 255, 0.7);
  animation: sepPulse 2.6s ease-in-out infinite;
}
.marquee-sep::before,
.marquee-sep::after {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 123, 255, 0.45));
}
.marquee-sep::after {
  background: linear-gradient(90deg, rgba(167, 123, 255, 0.45), transparent);
}

@keyframes m { to { transform: translateX(-50%); } }
@keyframes sepPulse {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}

@media (max-width: 720px) {
  .marquee { padding: 12px 0; }
  .marquee-track { gap: 22px; }
  .marquee-sep { font-size: 11px; gap: 10px; }
  .marquee-sep::before, .marquee-sep::after { width: 18px; }
}

/* ============ LIGHT SECTION VARIANT (paper bg, ink text) ============ */
.section.light {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--paper-3);
}
.section.light .section-h2 { color: var(--ink); }
.section.light .section-h2 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.section.light .section-h2 .acc { color: var(--brand); }
.section.light .section-lead { color: var(--ink-2); }


/* Marketplaces override on light bg */
.section.light .mk-card {
  background: var(--paper-2);
  border-color: var(--ink-line);
}
.section.light .mk-card:hover {
  background: #fff;
  border-color: var(--brand);
}
.section.light .mk-card h4 { color: var(--ink); }
.section.light .mk-card p { color: var(--ink-2); }
.section.light .mk-link {
  color: var(--brand);
  border-color: rgba(124, 58, 255, 0.35);
}

/* About override on light bg */
.section.light .about-photo {
  background: var(--paper-2);
  border-color: var(--ink-line);
}
.section.light .about-content h2 { color: var(--ink); }
.section.light .about-content p { color: var(--ink-2); }
.section.light .about-content p strong { color: var(--ink); }
.section.light .about-content p em { color: var(--brand); }
.section.light .about-stat {
  background: var(--paper-2);
  border-color: var(--ink-line);
}
.section.light .about-stat .num { color: var(--brand); }
.section.light .about-stat .label { color: var(--ink-3); }
.section.light .about-photo .frame-label {
  background: rgba(20, 17, 26, 0.7);
  color: var(--paper);
}

/* ============ SECTION HEADERS ============ */
.section-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
  margin-bottom: 32px;
  margin-top: 16px;
}
.section-h2 .acc { color: var(--brand-glow); }
.section-h2 .stroke { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.section-h2 .ital { font-style: italic; font-weight: 400; }
.section-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--text-2);
  max-width: 720px;
  line-height: 1.55;
  margin-bottom: 60px;
}

/* ============ BLOCO 2 · VERDADE (scroll storytelling) ============ */
/* ============ BLOCO 2 · VERDADE ============ */
.truth-scroll {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  /* clear breathing room from the marquee above and the next section below */
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(80px, 10vw, 140px);
  gap: 0;
}

/* ---- Connector: dot · vertical line · dot (humblefactory motif) ---- */
.ts-connector {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  padding-block: clamp(72px, 10vw, 140px);
}
.ts-connector .ts-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 10px rgba(167, 123, 255, 0.55);
}
.ts-connector .ts-line {
  width: 1px;
  height: clamp(120px, 16vw, 200px);
  background: linear-gradient(180deg,
    rgba(167, 123, 255, 0.05) 0%,
    var(--line-2) 50%,
    rgba(167, 123, 255, 0.05) 100%);
}

/* ---- Section header ---- */
.ts-header {
  text-align: center;
  max-width: 880px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.ts-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.02);
}
.ts-eyebrow .eb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 10px var(--brand-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
.ts-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
  text-wrap: balance;
  margin: 0;
}
.ts-title .acc { color: var(--brand-glow); }
.ts-title .ital { font-style: italic; font-weight: 400; }
.ts-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-3);
  max-width: 52ch;
  line-height: 1.55;
  margin: 0;
}

/* ---- Block: label → headline → body ---- */
.ts-block {
  text-align: center;
  max-width: 780px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.ts-block-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.ts-block-num.accent {
  color: var(--brand-glow);
  border-color: rgba(167, 123, 255, 0.4);
  background: rgba(167, 123, 255, 0.06);
}
.ts-block-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--text);
  text-wrap: balance;
  margin: 0;
}
.ts-block-title .acc { color: var(--brand-glow); }
.ts-block-title .ital { font-style: italic; font-weight: 400; }
.ts-block-title .strike {
  position: relative;
  color: var(--text);
  display: inline-block;
}
.ts-block-title .strike::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 6px;
  background: var(--brand);
  border-radius: 4px;
  transform: rotate(-2deg);
  box-shadow: 0 0 14px rgba(124, 58, 255, 0.55);
  pointer-events: none;
  z-index: 2;
}
.ts-block-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0;
}

/* the "turn" block has slightly more weight */
.ts-block.ts-block-turn .ts-block-title {
  font-size: clamp(34px, 4.4vw, 64px);
}

@media (max-width: 720px) {
  .ts-connector { padding-block: 56px; }
  .ts-connector .ts-line { height: 100px; }
  .ts-title { font-size: clamp(34px, 9vw, 52px); }
  .ts-block-title { font-size: clamp(26px, 6.4vw, 36px); }
  .ts-block.ts-block-turn .ts-block-title { font-size: clamp(28px, 7vw, 40px); }
}

/* ============ BLOCO 3 · Comparação ============ */
.margin-group { background: var(--bg); }
.compare-bold {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

/* X separator between the two comparison cards */
.compare-x {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  pointer-events: none;
}
.cx-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(180deg, transparent, var(--line-3), transparent);
}
.cx-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  box-shadow: 0 0 0 6px var(--bg), 0 10px 28px rgba(0,0,0,0.5);
}
@media (max-width: 760px) {
  .compare-x {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    margin: 0 auto;
  }
  .compare-x .cx-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-3), transparent);
  }
}
.compare-cell {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
}
.compare-cell.bad {
  background: linear-gradient(165deg, #14101F 0%, #0C0816 100%);
  border-color: rgba(255, 100, 100, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 100, 100, 0.04) inset;
}
.compare-cell.bad h3 { color: rgba(250, 250, 250, 0.55); }
.compare-cell.bad p { color: var(--text-3); }
.compare-cell.bad .mock-bad { opacity: 0.85; }
.compare-cell.good {
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border-color: rgba(167, 123, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(167, 123, 255, 0.1) inset,
              0 20px 60px rgba(124, 58, 255, 0.12);
}
.compare-cell .badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid currentColor;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.compare-cell.bad .badge { color: var(--text-3); }
.compare-cell.good .badge { color: var(--brand-glow); }
.compare-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.compare-cell.good h3 .acc { color: var(--brand-glow); font-style: italic; font-weight: 400; }
.compare-cell p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 440px;
}

/* mockup tiles */
.mock {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
}
.mock-bad {
  background: repeating-linear-gradient(45deg, #1a1525 0 8px, #221830 8px 16px);
  border: 1px solid var(--line);
}
.mock-bad .mock-thumb {
  flex: 1;
  background: linear-gradient(135deg, #2a2138, #1a1525);
  border-radius: var(--r-md);
  position: relative;
}
.mock-bad .mock-thumb::after {
  content: "?"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 48px; color: var(--text-4);
}
.mock-bad .mock-lines span {
  display: block; height: 6px; background: var(--line-2);
  border-radius: var(--r-pill);
}
.mock-bad .mock-lines span:first-child { width: 60%; margin-bottom: 5px; }
.mock-bad .mock-lines span:last-child { width: 40%; }
.mock-bad .mock-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.mock-good {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  border: 1px solid rgba(255,255,255,0.15);
}
.mock-good::after {
  content: ""; position: absolute; top: -20%; right: -20%; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(232, 193, 114, 0.4), transparent 60%);
  pointer-events: none;
}
.mock-good .mock-thumb {
  flex: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.mock-good .mock-thumb::after {
  content: "U"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px; color: rgba(255,255,255,0.9);
  letter-spacing: -0.04em;
}
.mock-good .mock-lines span {
  display: block; height: 6px;
  background: rgba(255,255,255,0.55);
  border-radius: var(--r-pill);
}
.mock-good .mock-lines span:first-child { width: 80%; margin-bottom: 5px; }
.mock-good .mock-lines span:last-child { width: 50%; background: rgba(255,255,255,0.3); }
.mock-good .mock-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
}
.mock-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.2);
}

.compare-cell .stat-row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-cell .stat-row .l { color: var(--text-3); }
.compare-cell.bad .stat-row .r { color: #FF6464; }
.compare-cell.good .stat-row .r { color: var(--brand-glow); }
@media (max-width: 760px) { .compare-bold { grid-template-columns: 1fr; } }

.margin-thesis {
  margin-top: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: balance;
  max-width: 1100px;
  margin-inline: auto;
}
.margin-thesis .stroke { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.margin-thesis .acc { color: var(--brand-glow); font-style: italic; font-weight: 400; }

/* ============ BLOCO 4 · MÉTODO INOVA (static grid, light bg) ============ */
.method { border-top: 1px solid var(--paper-3); }
.method-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.method-card {
  background: linear-gradient(165deg, #ffffff 0%, var(--paper-2) 100%);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.method-card:hover {
  background: #fff;
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(20, 17, 26, 0.10);
}
.method-card:hover .mc-icon {
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(124, 58, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Icon tile inside each method card */
.mc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(124, 58, 255, 0.14), rgba(124, 58, 255, 0.02));
  border: 1px solid rgba(124, 58, 255, 0.22);
  color: var(--brand);
  box-shadow: 0 6px 18px rgba(124, 58, 255, 0.08), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mc-icon svg { width: 28px; height: 28px; display: block; }

/* Connector line + node between cards (chain effect) */
.method-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 22px;
  height: 10px;
  z-index: 4;
  transform: translateY(-50%);
  pointer-events: none;
  background:
    radial-gradient(circle 4px at 4px 5px, var(--brand) 100%, transparent 100%) no-repeat,
    radial-gradient(circle 4px at 18px 5px, var(--brand) 100%, transparent 100%) no-repeat,
    linear-gradient(var(--brand), var(--brand)) 4px 50% / 14px 1.5px no-repeat;
}
/* Hide connector at end of each row + after the last (CTA) */
.method-card:nth-child(3n)::after,
.method-card-cta::after { display: none; }
.mc-top {
  display: flex; justify-content: space-between; align-items: center;
}
.mc-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--brand);
  padding: 6px 14px;
  border: 1px solid rgba(124, 58, 255, 0.3);
  border-radius: var(--r-pill);
  background: rgba(124, 58, 255, 0.06);
}
.mc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--brand);
}
.method-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.method-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.mc-arrow {
  align-self: flex-start;
  font-size: 20px;
  color: var(--brand);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(124, 58, 255, 0.3);
  border-radius: var(--r-pill);
  background: #fff;
}
.method-card-cta {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-color: rgba(255,255,255,0.15);
  color: white;
  overflow: hidden;
}
.method-card-cta:hover {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 20px 50px rgba(124, 58, 255, 0.3);
}
.method-card-cta::before {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(232, 193, 114, 0.28), transparent 65%);
  pointer-events: none;
}
.method-card-cta .mc-tag {
  color: white;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}
.method-card-cta .mc-num {
  -webkit-text-stroke: 1px rgba(255,255,255,0.6);
  color: transparent;
}
.method-card-cta h4 {
  color: white;
  position: relative;
}
.method-card-cta h4 .stroke { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.7); }
.method-card-cta h4 em { color: var(--brand-glow); font-style: italic; font-weight: 400; }
.method-card-cta .btn { align-self: flex-start; position: relative; }
.method-card-cta .mc-icon {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
  color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.18);
}
.method-card-cta .mc-cta-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  position: relative;
}
/* White CTA button inside purple method card — distinct hover */
.method-cta-btn {
  background: #fff;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.method-cta-btn:hover {
  background: var(--bg);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset,
              0 12px 30px rgba(0, 0, 0, 0.45);
}
.method-cta-btn:hover .arrow { transform: translateX(6px); }
@media (max-width: 980px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  /* re-show 3n connectors, hide 2n end-of-row */
  .method-card:nth-child(3n)::after { display: block; }
  .method-card:nth-child(2n)::after { display: none; }
  .method-card-cta::after { display: none; }
}
@media (max-width: 560px) {
  .method-grid { grid-template-columns: 1fr; gap: 28px; }
  .method-card { padding: 28px 24px; }
  .mc-num { font-size: 52px; }
  /* rotate connector to vertical, place below card */
  .method-card::after {
    display: block;
    top: auto; right: auto;
    bottom: -28px; left: 50%;
    width: 10px; height: 28px;
    transform: translateX(-50%);
    background:
      radial-gradient(circle 4px at 5px 4px, var(--brand) 100%, transparent 100%) no-repeat,
      radial-gradient(circle 4px at 5px 24px, var(--brand) 100%, transparent 100%) no-repeat,
      linear-gradient(var(--brand), var(--brand)) 50% 4px / 1.5px 20px no-repeat;
  }
  .method-card:nth-child(3n)::after,
  .method-card:nth-child(2n)::after { display: block; }
  .method-card-cta::after { display: none; }
}

/* ============ CTA banner (mid-page) — bold attention-grabber ============ */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(167, 123, 255, 0.45), transparent 60%),
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(91, 31, 224, 0.55), transparent 60%),
    linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 50%, #3D17AA 100%);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-banner-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 20%, transparent 90%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 20%, transparent 90%);
}
.cta-glow {
  position: absolute;
  width: 680px; height: 680px;
  border-radius: 50%;
  filter: blur(90px);
}
.cta-glow-a {
  top: -40%; left: -15%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
  mix-blend-mode: overlay;
}
.cta-glow-b {
  bottom: -45%; right: -15%;
  background: radial-gradient(circle, rgba(167, 123, 255, 0.55), transparent 65%);
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.cta-eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
}
.cta-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  animation: pulse 1.6s ease-in-out infinite;
}
.cta-banner h3 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto 36px;
  text-wrap: balance;
}
.cta-banner h3 em {
  font-style: italic;
  font-weight: 400;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0 14px;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.cta-banner .btn-primary {
  position: relative; z-index: 2;
  background: #fff;
  color: var(--brand-deep);
  border-color: transparent;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
}
.cta-banner .btn-primary:hover {
  background: var(--bg);
  color: #fff;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.4);
}

/* ============ BLOCO 6 · PORTFOLIO ============ */
.portfolio { background: var(--bg-1); border-top: 1px solid var(--line); overflow: hidden; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.case {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
}
.case:hover {
  transform: translateY(-6px);
  border-color: var(--brand-glow);
  box-shadow: 0 20px 60px rgba(124, 58, 255, 0.18);
}
/* Before / after comparison slider */
.case-compare {
  --pos: 50%;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
  touch-action: none;
  user-select: none;
}
.cc-side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.cc-before { z-index: 1; }
.cc-after {
  z-index: 2;
  clip-path: inset(0 0 0 var(--pos));
  -webkit-clip-path: inset(0 0 0 var(--pos));
}
.cc-label {
  position: absolute;
  top: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  z-index: 4;
  backdrop-filter: blur(8px);
}
.cc-label-before {
  left: 14px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}
.cc-label-after {
  right: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 12px rgba(124, 58, 255, 0.3);
}

/* Mock store cards inside the slider */
.cc-mock {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4/5;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.cc-mock-before {
  background: repeating-linear-gradient(45deg, #1A1525 0 8px, #221830 8px 16px);
  border: 1px solid var(--line);
}
.cc-mock-after {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 16px 40px rgba(124, 58, 255, 0.25);
}
.cc-mock-after::after {
  content: ""; position: absolute; top: -20%; right: -20%; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(167, 123, 255, 0.45), transparent 65%);
  pointer-events: none;
}
.cc-mock-head {
  display: flex; align-items: center; gap: 6px;
  height: 16px;
}
.cc-mock-before .cc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line-2);
}
.cc-mock-after .cc-mock-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: -0.04em;
}
.cc-mock-after .cc-mock-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: -0.01em;
}
.cc-mock-thumb {
  flex: 1;
  border-radius: var(--r-md);
  position: relative;
}
.cc-mock-before .cc-mock-thumb {
  background: linear-gradient(135deg, #2A2138, #1A1525);
}
.cc-mock-before .cc-mock-thumb::after {
  content: "?";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--text-4);
}
.cc-mock-after .cc-mock-thumb {
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
}
.cc-mock-letter {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.04em;
}
.cc-mock-lines { display: flex; flex-direction: column; gap: 4px; }
.cc-mock-lines span {
  height: 5px;
  border-radius: var(--r-pill);
  display: block;
}
.cc-mock-before .cc-mock-lines span { background: var(--line-2); }
.cc-mock-before .cc-mock-lines span:first-child { width: 60%; }
.cc-mock-before .cc-mock-lines span:last-child { width: 40%; }
.cc-mock-after .cc-mock-lines span { background: rgba(255,255,255,0.55); }
.cc-mock-after .cc-mock-lines span:first-child { width: 78%; }
.cc-mock-after .cc-mock-lines span:last-child { width: 50%; background: rgba(255,255,255,0.3); }
.cc-mock-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.cc-mock-before .cc-mock-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.cc-mock-after .cc-mock-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.cc-mock-badge {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.35);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Draggable handle */
.cc-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  z-index: 5;
  cursor: ew-resize;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-handle-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.85);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}
.cc-handle-grip {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-glow), 0 10px 24px rgba(0,0,0,0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cc-handle-grip svg { width: 18px; height: 18px; }
.cc-handle:hover .cc-handle-grip,
.case-compare.dragging .cc-handle-grip {
  transform: scale(1.08);
  box-shadow: 0 0 0 2px var(--brand), 0 12px 30px rgba(124, 58, 255, 0.5);
}

.case-info {
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
}
.case-info-l { display: flex; flex-direction: column; gap: 6px; }
.case-info .niche {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1;
}
.case-info .stat {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-glow);
  letter-spacing: 0;
}
.case-mk-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.case-mk-tag img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 980px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============ BLOCO 7 · DEPOIMENTOS ============ */
.testimonials { background: var(--bg); }
.wa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.wa-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  transition: all 0.4s var(--ease);
}
.wa-card:hover { border-color: var(--brand-glow); transform: translateY(-4px); }
.wa-frame { background: #0E1418; border-radius: var(--r-lg); padding: 14px 12px; }
.wa-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
}
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; color: white; font-size: 15px;
}
.wa-name { font-size: 13px; font-weight: 600; color: #E8E8E8; }
.wa-online { font-size: 10px; color: #74C49C; }
.wa-bubbles { display: flex; flex-direction: column; gap: 6px; }
.wa-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  color: #E8E8E8;
}
.wa-bubble.them { align-self: flex-start; background: #1F2C32; border-bottom-left-radius: 6px; }
.wa-bubble.me { align-self: flex-end; background: #056052; border-bottom-right-radius: 6px; }
.wa-bubble .time { font-size: 9px; color: rgba(255,255,255,0.5); margin-left: 8px; float: right; margin-top: 4px; }
.wa-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  gap: 12px;
}
.wa-meta .who { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.wa-meta .where {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.where-logo {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.where-niche { white-space: nowrap; }
@media (max-width: 980px) { .wa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wa-grid { grid-template-columns: 1fr; } }

/* ============ BLOCO 7.5 · SERVIÇOS (carousel) ============ */
.services {
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
}
.services-head-l { max-width: 720px; }
.services-nav {
  display: inline-flex;
  gap: 12px;
}
.sv-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              color 0.3s var(--ease), transform 0.3s var(--ease);
}
.sv-btn svg { width: 22px; height: 22px; }
.sv-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.services-carousel {
  margin-top: 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  /* Compensate container padding so first card aligns with grid */
  padding-bottom: 4px;
}
.services-carousel.dragging { cursor: grabbing; }
.services-carousel::-webkit-scrollbar { display: none; }

.services-track {
  display: flex;
  gap: 20px;
  padding: 2px 4px;
}

.service-card {
  flex: 0 0 clamp(280px, 30vw, 360px);
  scroll-snap-align: start;
  background: linear-gradient(165deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease),
              transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease),
              background 0.4s var(--ease);
  user-select: none;
}
.service-card:hover {
  border-color: var(--brand-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(124, 58, 255, 0.18);
}
.sv-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 26px 28px;
  flex: 1;
}
.sv-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-3);
}
.service-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
.service-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}

/* ----- Service preview mockups ----- */
.sv-preview {
  position: relative;
  height: 220px;
  background: linear-gradient(165deg, #0F0820 0%, #1A0E2E 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.sv-preview::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 95%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 95%);
}

/* 01 – product images grid */
.sv-preview-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  padding: 22px;
}
.svp-tile {
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.svp-tile-1 { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); }
.svp-tile-2 { background: linear-gradient(135deg, #FF7AB6, #B23F6A); }
.svp-tile-3 { background: linear-gradient(135deg, #4FD1E0, #1A6B7A); }
.svp-tile-4 { background: linear-gradient(135deg, #F2C94C, #B38A2C); }
.svp-letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.04em;
}

/* 02 – banners */
.sv-preview-banners {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 22px;
  justify-content: center;
}
.svp-banner {
  border-radius: 10px;
  height: 36px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}
.svp-banner-1 {
  height: 64px;
  background: linear-gradient(110deg, var(--brand) 0%, var(--brand-glow) 100%);
  display: flex; align-items: center;
  padding: 0 14px;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(124, 58, 255, 0.3);
}
.svp-bn-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
}
.svp-bn-text {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: var(--r-pill);
}
.svp-banner-2 { background: rgba(255,255,255,0.06); width: 80%; }
.svp-banner-3 { background: rgba(255,255,255,0.04); width: 65%; }

/* 03 – store */
.sv-preview-store {
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(165deg, #14091F 0%, #1F0D33 100%);
}
.svp-store-head {
  display: flex; align-items: center; gap: 10px;
}
.svp-store-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: #fff;
}
.svp-store-name {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  max-width: 70%;
}
.svp-store-banner {
  height: 50px;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(167, 123, 255, 0.5), transparent 60%),
    linear-gradient(110deg, var(--brand-deep), var(--brand));
}
.svp-store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.svp-pgrid {
  aspect-ratio: 1;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
}

/* 04 – branding */
.sv-preview-brand {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  padding: 20px;
}
.svp-logo {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(124, 58, 255, 0.35);
}
.svp-logo span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  letter-spacing: -0.05em;
}
.svp-palette {
  display: flex; gap: 6px;
}
.svp-color {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}
.svp-c1 { background: var(--brand); }
.svp-c2 { background: var(--brand-glow); }
.svp-c3 { background: #1A0E2E; }
.svp-c4 { background: #FAFAFA; }
.svp-c5 { background: #F6F2EC; }
.svp-typo {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-2);
  font-size: 11px;
}
.svp-typo strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.04em;
}

/* 05 – video */
.sv-preview-video {
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.svp-video-frame {
  width: 100%; max-width: 220px;
  aspect-ratio: 9 / 14;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 35%, rgba(167, 123, 255, 0.35), transparent 55%),
    linear-gradient(165deg, var(--brand-deep), #2A1056);
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.svp-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--brand-deep);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.svp-play svg { width: 18px; height: 18px; margin-left: 2px; }
.svp-video-timer {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15);
}
.svp-video-bar {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  height: 3px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}
.svp-video-bar-fill {
  display: block;
  width: 38%;
  height: 100%;
  background: #fff;
  border-radius: inherit;
}

/* 06 – description */
.sv-preview-description {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px;
  justify-content: center;
}
.svp-desc-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}
.svp-desc-row:nth-child(2) {
  background: linear-gradient(110deg, rgba(124,58,255,0.18), rgba(124,58,255,0.04));
  border-color: rgba(167, 123, 255, 0.35);
}
.svp-desc-thumb {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.svp-desc-row:nth-child(2) .svp-desc-thumb {
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  border-color: rgba(255,255,255,0.2);
}
.svp-desc-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.svp-desc-lines span {
  height: 5px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.18);
  display: block;
}
.svp-desc-lines span:first-child { width: 75%; }
.svp-desc-lines span:last-child { width: 50%; opacity: 0.6; }

/* 07 – ad card */
.sv-preview-ad {
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.svp-ad-card {
  width: 100%; max-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  display: flex; gap: 12px;
  align-items: center;
  color: #14111A;
  position: relative;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.svp-ad-img {
  width: 70px; height: 70px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.svp-ad-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.svp-ad-title { display: flex; flex-direction: column; gap: 3px; }
.svp-ad-title span {
  display: block;
  height: 5px;
  border-radius: var(--r-pill);
  background: rgba(20, 17, 26, 0.18);
}
.svp-ad-title span:first-child { width: 90%; }
.svp-ad-title span:last-child { width: 60%; }
.svp-ad-stars {
  font-size: 10px;
  color: #F2C94C;
  letter-spacing: 1px;
}
.svp-ad-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.svp-ad-badge {
  position: absolute;
  top: -8px; left: 12px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  padding: 4px 10px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(124, 58, 255, 0.45);
}

/* CTA card preview */
.sv-preview-cta {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
}
.svp-cta-orb {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);
  top: -30%; left: -10%;
  filter: blur(20px);
}
.svp-cta-orb-2 {
  background: radial-gradient(circle, rgba(167, 123, 255, 0.5), transparent 60%);
  top: auto; bottom: -30%; left: auto; right: -15%;
}
.svp-cta-icon {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.svp-cta-icon svg { width: 32px; height: 32px; }

/* Last CTA card */
.service-card-cta {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  overflow: hidden;
}
.service-card-cta::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(167, 123, 255, 0.4), transparent 65%);
  pointer-events: none;
}
.service-card-cta:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(124, 58, 255, 0.35);
}
.service-card-cta .sv-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.service-card-cta .sv-num { color: rgba(255, 255, 255, 0.7); }
.service-card-cta h4 { color: #fff; }
.service-card-cta p { color: rgba(255, 255, 255, 0.85); }
.service-card-cta .btn { align-self: flex-start; position: relative; }

/* Progress bar */
.services-progress {
  margin-top: 28px;
  width: 100%;
  height: 3px;
  background: var(--line);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}
.sv-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-glow));
  border-radius: inherit;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}

@media (max-width: 760px) {
  .service-card { flex-basis: 78vw; min-height: 340px; }
  .services-nav { align-self: flex-start; }
}

/* ============ BLOCO 9 · MARKETPLACES ============ */
.marketplaces { background: var(--bg); }
.mk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.mk-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 28px 28px;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.mk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(124, 58, 255, 0.10), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.mk-card:hover {
  background: var(--bg-2);
  border-color: var(--brand-glow);
  transform: translateY(-6px);
}
.mk-card:hover::before { opacity: 1; }
.mk-logo {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: relative;
}
.mk-logo-img { padding: 10px; }
.mk-logo-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.mk-logo-ecom {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: 0 8px 22px rgba(124, 58, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}
.mk-logo-ecom svg { width: 30px; height: 30px; }
.mk-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  flex: 1;
}
.mk-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text);
  display: inline-flex; gap: 10px; align-items: center;
  padding: 12px 22px;
  background: rgba(124, 58, 255, 0.1);
  border: 1px solid rgba(167, 123, 255, 0.35);
  border-radius: var(--r-pill);
  align-self: flex-start;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
}
.mk-card:hover .mk-link {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.mk-card:hover .mk-link .arrow { transform: translateX(4px); }
.mk-link .arrow { transition: transform 0.3s; }
@media (max-width: 1000px) { .mk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mk-grid { grid-template-columns: 1fr; } }

/* ============ BLOCO 8 · FAQ ============ */
.faq { background: var(--bg-1); border-top: 1px solid var(--line); }
.faq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  margin-top: 50px;
  align-items: flex-start;
}
.faq-aside {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 16px;
}
.faq-photo {
  aspect-ratio: 1/1;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
}
.faq-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.faq-photo-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15);
}
.faq-aside-card {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-aside-card .qm {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: rgba(167, 123, 255, 0.12);
  border: 1px solid rgba(167, 123, 255, 0.3);
  color: var(--brand-glow);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
}
.faq-aside-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.faq-aside-card .btn { align-self: flex-start; }

.faq-list {
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item.open { border-color: rgba(167, 123, 255, 0.35); background: var(--bg-3); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--brand-glow); }
.faq-q .plus {
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 22px; font-weight: 300;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
  background: var(--bg-1);
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  border-color: transparent;
  color: white;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease); }
.faq-a-inner {
  padding: 0 28px 28px;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 800px;
}
.faq-a-inner p { margin-bottom: 14px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--text); font-weight: 600; }

@media (max-width: 980px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-aside {
    position: static;
    flex-direction: row;
    gap: 16px;
  }
  .faq-photo { flex: 0 0 240px; aspect-ratio: 1/1; }
  .faq-aside-card { flex: 1; }
}
@media (max-width: 640px) {
  .faq-aside { flex-direction: column; }
  .faq-photo { flex: 1; max-width: none; }
}

/* ============ BLOCO 10 · SOBRE ============ */
.about { background: var(--bg-1); border-top: 1px solid var(--line); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}
.about-photo {
  position: relative;
  background: var(--bg-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.about-photo img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
}
.about-photo .frame-label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15);
}
.about-content h2 { margin-bottom: 32px; }
.about-content p { color: var(--text-2); font-size: 17px; line-height: 1.65; margin-bottom: 20px; }
.about-content p strong { color: var(--text); font-weight: 600; }
.about-content p em { color: var(--brand-glow); font-style: italic; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.about-stat {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
}
.about-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--brand-glow);
}
.about-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 8px;
}
@media (max-width: 880px) { .about-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============ BLOCO 11 · STEPS ============ */
.steps { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
}
.step {
  background: linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              transform 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 20px;
}
.step:hover {
  border-color: var(--brand-glow);
  transform: translateY(-6px);
}
.step .step-num {
  width: 72px; height: 72px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset,
              0 8px 22px rgba(124, 58, 255, 0.35);
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.step p { color: var(--text-2); font-size: 15px; line-height: 1.6; }
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }

/* ============ BLOCO 12 · FECHAMENTO ============ */
.closing {
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(124, 58, 255, 0.25), transparent 60%);
}
.closing-inner { position: relative; max-width: 1200px; margin-inline: auto; text-align: center; }
.closing h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8.5vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 40px;
  text-wrap: balance;
}
.closing h2 .stroke { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.closing h2 .acc { color: var(--brand-glow); font-style: italic; font-weight: 400; }
.closing p {
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 800px;
  margin-inline: auto;
}
.closing p strong { color: var(--text); font-weight: 600; }
.closing .punch {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  margin: 50px auto;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  padding: 28px 36px;
  background: rgba(124, 58, 255, 0.08);
  border: 1px solid rgba(167, 123, 255, 0.25);
  border-radius: var(--r-xl);
  max-width: 900px;
}
.closing .punch em { color: var(--brand-glow); font-style: italic; font-weight: 400; }
.closing .btn-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 40px; }
.closing .btn-giant { font-size: 16px; padding: 22px 44px; border-radius: var(--r-pill); }
.closing .microcopy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ============ FOOTER ============ */
.footer {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124, 58, 255, 0.10), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  padding: 100px var(--gutter) 32px;
  position: relative;
  overflow: hidden;
}
.footer-wordmark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0 auto 72px;
  padding-bottom: 28px;
}
.fw-glyph {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
  transition: -webkit-text-stroke-color 0.6s var(--ease);
}
.footer-wordmark:hover .fw-glyph {
  -webkit-text-stroke-color: rgba(167, 123, 255, 0.6);
}
.fw-orb {
  width: clamp(56px, 11vw, 160px);
  height: clamp(56px, 11vw, 160px);
  margin: 0 clamp(2px, 0.3vw, 8px) 0 clamp(6px, 1vw, 18px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 45%),
    radial-gradient(circle at 60% 70%, rgba(167, 123, 255, 0.7), transparent 60%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 30px 80px rgba(124, 58, 255, 0.45);
  position: relative;
  animation: orbFloat 5s ease-in-out infinite;
}
.fw-orb::after {
  content: "";
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 123, 255, 0.5), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fw-tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .footer-wordmark { padding-bottom: 38px; }
  .fw-tag { font-size: 10px; padding: 5px 12px; }
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--text-3); font-size: 14px; max-width: 320px; line-height: 1.6; margin-top: 20px; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-glow);
  margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 14px; color: var(--text-2); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
}
@media (max-width: 880px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}

/* ===========================================================
   RESPONSIVE OVERHAUL · mobile-first refinements
   =========================================================== */

/* ====== ≤ 640px – small tablet / large phone ====== */
@media (max-width: 640px) {
  .section { padding-block: clamp(72px, 14vw, 110px); }
  .section-h2 { font-size: clamp(34px, 9vw, 56px); margin-bottom: 24px; }
  .section-lead { font-size: 16px; margin-bottom: 44px; }

  /* ===== Centralize text on mobile ===== */
  .section-h2,
  .section-lead { text-align: center; margin-inline: auto; }
  .section-lead { max-width: 560px; }

  /* Hero */
  .hero-main-text { align-items: center; text-align: center; }
  .hero-bottom { justify-content: center; }
  .hero-cta-group { justify-content: center; }

  /* Truth */
  .ts-header,
  .ts-block { text-align: center; }
  .ts-block-title,
  .ts-block-body { text-align: center; margin-inline: auto; max-width: 640px; }

  /* Compare */
  .compare-cell { align-items: center; text-align: center; }
  .compare-cell .badge { align-self: center; }
  .compare-cell p { margin-inline: auto; }
  .mock { margin-inline: auto; }
  .margin-thesis { text-align: center; }

  /* Method */
  .method-card { align-items: center; text-align: center; }
  .mc-top { width: 100%; }
  .method-card-cta .btn,
  .method-card .mc-arrow { align-self: center; }

  /* Services */
  .services-head-l { text-align: center; margin-inline: auto; }
  .services-head { justify-content: center; align-items: center; }
  .services-nav { align-self: center; }
  .service-card .sv-body { align-items: center; text-align: center; }
  .service-card-cta .btn { align-self: center; }

  /* Marketplaces */
  .mk-card { align-items: center; text-align: center; }
  .mk-link { align-self: center; }

  /* Testimonials – meta line */
  .wa-meta { justify-content: center; }

  /* FAQ – only the section intro */
  .faq-aside { text-align: center; align-items: center; }
  .faq-aside-card { text-align: center; align-items: center; }
  .faq-aside-card .btn { align-self: center; }

  /* About */
  .about-content { text-align: center; }
  .about-stats { justify-items: center; }

  /* Footer columns */
  .footer-brand,
  .footer-col { text-align: center; }
  .footer-brand .nav-logo { justify-content: center; }
  .footer-brand p { margin-inline: auto; }
  .footer-bottom { justify-content: center; text-align: center; }

  /* ===== Center tags & buttons on mobile ===== */
  .eyebrow,
  .hero-eyebrow,
  .cta-eyebrow,
  .ts-eyebrow,
  .mc-tag,
  .sv-num,
  .badge,
  .case-mk-tag,
  .marketplace,
  .where { align-self: center !important; }

  /* Remove the line connector on .eyebrow when centered, or mirror it */
  .eyebrow::before { display: none; }

  /* method cards: stack the top row so tag + num stay symmetric and centered */
  .mc-top { justify-content: center; gap: 16px; }

  /* compare stat-rows centered as label/value pair */
  .compare-cell .stat-row { justify-content: center; gap: 16px; }

  /* CTA / generic buttons centered when inside a card column */
  .compare-cell .btn,
  .method-card .btn,
  .service-card .btn,
  .mk-card .btn,
  .faq-aside-card .btn,
  .about-content .btn,
  .closing .btn { align-self: center; }

  /* Portfolio info row: stack centered */
  .case-info { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .case-info-l { align-items: center; }

  /* Testimonials wa-meta stacked & centered */
  .wa-meta { flex-direction: column; align-items: center; gap: 8px; }

  .ts-title { font-size: clamp(30px, 9vw, 50px); }
  .ts-block-title { font-size: clamp(24px, 6.8vw, 36px); }

  .compare-cell { padding: 32px 24px; }
  .compare-cell h3 { font-size: clamp(30px, 8.4vw, 48px); }

  .margin-thesis { font-size: clamp(28px, 8vw, 64px); margin-top: 64px; }

  .method-card { padding: 28px 22px; }
  .method-card h4 { font-size: clamp(22px, 6vw, 28px); }
  .mc-num { font-size: 48px; }

  .cta-banner h3 { font-size: clamp(30px, 8.5vw, 56px); }

  .services-head { flex-direction: column; align-items: flex-start; }
  .services-nav { align-self: flex-start; }

  .closing h2 { font-size: clamp(36px, 11vw, 64px) !important; }
  .closing .btn-giant { font-size: 15px; padding: 18px 32px; }
}

/* ====== ≤ 480px – mobile ====== */
@media (max-width: 480px) {
  :root { --gutter: 18px; }
  body { font-size: 15px; }

  /* Nav */
  .nav { padding: 14px 16px; gap: 8px; }
  .nav.scrolled {
    top: 12px;
    width: calc(100% - 20px);
    padding: 6px 6px 6px 14px;
  }
  .nav-logo img { height: 22px; }
  .nav-logo span { font-size: 20px; }
  .nav-cta {
    padding: 9px 14px;
    font-size: 12px;
    gap: 8px;
  }
  .nav-cta-dot { width: 6px; height: 6px; }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 13px; gap: 10px; }
  .btn-sm { padding: 9px 16px; font-size: 12px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { padding: 82px 18px 32px; }
  .hero-main { gap: 32px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; }
  .hero-h1 { font-size: clamp(44px, 13vw, 64px); }
  .hero-aside { max-width: 280px; }
  .hero-image-slot { max-width: 100%; }
  .hero-stat {
    padding: 8px 12px;
    min-width: 76px;
    border-radius: var(--r-sm);
  }
  .hero-stat .v { font-size: 18px; }
  .hero-stat .l { font-size: 8px; margin-top: 4px; }
  .hero-stat.float-tl,
  .hero-stat.float-tl:hover { top: -10px; left: -6px; }
  .hero-stat.float-tr,
  .hero-stat.float-tr:hover { top: -10px; right: -6px; }
  .hero-stat.float-bl,
  .hero-stat.float-bl:hover { bottom: -10px; left: -6px; }
  .hero-stat.float-br,
  .hero-stat.float-br:hover { bottom: -10px; right: -6px; }
  .hero-cta-group { width: 100%; }
  .hero-cta-group .btn { flex: 1; justify-content: center; }
  .hero-bottom { gap: 16px; }

  /* Marquee */
  .marquee-item { font-size: 18px; }
  .marquee-track { gap: 18px; }

  /* Truth */
  .truth-scroll { padding: 64px 18px; }
  .ts-title { font-size: clamp(28px, 8.5vw, 42px); }
  .ts-block-title { font-size: clamp(22px, 6.8vw, 30px); }
  .ts-block-body { font-size: 15px; }

  /* Comparison */
  .compare-bold { gap: 24px; }
  .compare-cell { padding: 26px 20px; gap: 18px; }
  .compare-cell h3 { font-size: clamp(28px, 9vw, 38px); }
  .compare-cell p { font-size: 14px; }
  .compare-cell .stat-row { padding: 10px 0; font-size: 10px; }
  .cx-mark { width: 52px; height: 52px; font-size: 32px; }
  .mock { max-width: 220px; padding: 12px; }
  .margin-thesis { font-size: clamp(26px, 8.5vw, 48px); margin-top: 48px; }

  /* Method */
  .method-grid { gap: 22px; }
  .method-card { padding: 24px 20px; gap: 14px; }
  .method-card h4 { font-size: 22px; }
  .method-card p { font-size: 14px; }
  .mc-num { font-size: 40px; }
  .mc-tag { font-size: 11px; padding: 5px 12px; }
  .mc-icon { width: 48px; height: 48px; border-radius: 12px; }
  .mc-icon svg { width: 24px; height: 24px; }

  /* CTA banner */
  .cta-banner { padding: 70px 18px; }
  .cta-banner h3 { font-size: clamp(28px, 9.5vw, 44px); margin-bottom: 28px; }
  .cta-eyebrow { font-size: 11px; padding: 6px 12px; margin-bottom: 22px; }

  /* Portfolio */
  .portfolio-grid { gap: 16px; }
  .case-info { padding: 18px 20px; gap: 10px; }
  .case-info .niche { font-size: 19px; }
  .case-info .stat { font-size: 12px; }
  .cc-mock { padding: 11px; max-width: 200px; gap: 8px; }
  .cc-mock-letter { font-size: 44px; }
  .cc-label { font-size: 10px; padding: 5px 10px; }
  .cc-handle-grip { width: 38px; height: 38px; }
  .cc-handle-grip svg { width: 16px; height: 16px; }
  .case-mk-tag { width: 38px; height: 38px; padding: 6px; }

  /* Testimonials */
  .wa-card { padding: 18px; gap: 14px; }
  .wa-header { gap: 8px; }
  .wa-avatar { width: 30px; height: 30px; font-size: 13px; }
  .wa-name { font-size: 12px; }
  .wa-bubble { font-size: 12px; padding: 7px 10px; }
  .wa-meta { gap: 8px; }
  .wa-meta .who { font-size: 14px; }
  .wa-meta .where { font-size: 11px; padding: 4px 10px 4px 4px; gap: 6px; }
  .where-logo { width: 20px; height: 20px; padding: 2px; }

  /* Services */
  .services-carousel { margin-top: 36px; }
  .service-card { flex-basis: 82vw; min-height: 380px; }
  .sv-preview { height: 180px; }
  .sv-body { padding: 22px 22px 26px; }
  .service-card h4 { font-size: 22px; }
  .service-card p { font-size: 14px; }
  .sv-btn { width: 44px; height: 44px; }
  .sv-btn svg { width: 18px; height: 18px; }

  /* Marketplaces */
  .mk-grid { gap: 14px; }
  .mk-card { padding: 28px 22px 22px; gap: 18px; }
  .mk-card h4 { font-size: 24px; }
  .mk-logo { width: 52px; height: 52px; }
  .mk-link { padding: 10px 18px; font-size: 13px; }

  /* FAQ */
  .faq-q { padding: 18px 18px; gap: 14px; }
  .faq-q span:first-child { font-size: 14px; }
  .faq-a-inner { padding: 0 18px 18px; font-size: 14px; }
  .faq-aside { gap: 18px; }
  .faq-aside-card { padding: 22px 20px; }

  /* About */
  .about-content p { font-size: 14px; }
  .about-stats { gap: 16px; }
  .about-stat { padding: 18px 16px; }
  .about-stat .num { font-size: clamp(32px, 9vw, 48px); }

  /* Closing */
  .closing { padding-block: clamp(72px, 16vw, 140px); }
  .closing h2 { font-size: clamp(34px, 11vw, 56px) !important; }
  .closing p { font-size: 15px; }
  .closing .punch { font-size: clamp(18px, 5.5vw, 24px); padding: 18px 22px; }
  .closing .btn-giant { font-size: 14px; padding: 16px 28px; width: 100%; justify-content: center; }
  .closing .btn-wrap { width: 100%; }

  /* Footer */
  .footer { padding: 70px 18px 28px; }
  .footer-wordmark { margin-bottom: 60px; padding-bottom: 32px; }
  .fw-glyph { font-size: clamp(54px, 19vw, 110px); -webkit-text-stroke-width: 1px; }
  .fw-orb { width: clamp(40px, 13vw, 70px); height: clamp(40px, 13vw, 70px); margin: 0 4px 0 8px; }
  .fw-tag { font-size: 9px; padding: 4px 10px; letter-spacing: 0.14em; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-brand p { max-width: 100%; font-size: 13px; }
  .footer-col h5 { margin-bottom: 12px; }
  .footer-col a { font-size: 13px; }
  .footer-bottom { justify-content: center; }
}

/* ====== ≤ 380px – ultra small phone ====== */
@media (max-width: 380px) {
  :root { --gutter: 14px; }

  .nav { padding: 12px 12px; }
  .nav.scrolled { width: calc(100% - 16px); padding: 6px 6px 6px 12px; }
  .nav-logo span { font-size: 18px; }
  .nav-logo img { height: 20px; }
  .nav-cta { padding: 8px 12px; font-size: 11px; }

  .btn { padding: 12px 18px; font-size: 12px; }

  .hero-inner { padding: 72px 14px 24px; }
  .hero-h1 { font-size: clamp(40px, 13vw, 56px); }
  .hero-aside { max-width: 240px; }
  .hero-stat { min-width: 64px; padding: 6px 10px; }
  .hero-stat .v { font-size: 16px; }

  .section-h2 { font-size: clamp(30px, 9.5vw, 44px); }
  .ts-title { font-size: clamp(26px, 8.8vw, 38px); }
  .ts-block-title { font-size: clamp(20px, 7vw, 28px); }

  .compare-cell { padding: 22px 18px; }
  .compare-cell h3 { font-size: clamp(26px, 9vw, 34px); }
  .mock { max-width: 100%; padding: 11px; }
  .cx-mark { width: 46px; height: 46px; font-size: 28px; }

  .method-card { padding: 22px 18px; }
  .method-card h4 { font-size: 20px; }
  .mc-num { font-size: 36px; }

  .cta-banner { padding: 60px 14px; }
  .cta-banner h3 { font-size: clamp(26px, 9.5vw, 38px); }

  .case-info { padding: 16px 18px; }
  .case-info .niche { font-size: 17px; }
  .cc-mock { padding: 10px; gap: 7px; }
  .cc-mock-letter { font-size: 40px; }
  .cc-handle-grip { width: 34px; height: 34px; }

  .wa-card { padding: 16px; }
  .wa-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

  .hero-cta-group { flex-direction: column; width: 100%; gap: 10px; }
  .hero-cta-group .btn { width: 100%; }

  .service-card { flex-basis: 86vw; min-height: 360px; }
  .sv-preview { height: 160px; }
  .sv-body { padding: 20px 20px 24px; }
  .service-card h4 { font-size: 20px; }

  .mk-card { padding: 24px 20px 20px; }
  .mk-card h4 { font-size: 22px; }
  .mk-logo { width: 48px; height: 48px; }

  .faq-q span:first-child { font-size: 13.5px; }
  .faq-a-inner { font-size: 13.5px; }

  .closing h2 { font-size: clamp(30px, 11vw, 48px) !important; }
  .closing .punch { font-size: clamp(16px, 5.5vw, 22px); padding: 16px 18px; }

  .footer { padding: 60px 14px 24px; }
  .fw-glyph { font-size: clamp(48px, 20vw, 90px); }
  .fw-orb { width: clamp(36px, 14vw, 60px); height: clamp(36px, 14vw, 60px); }
}

/* ====== ≤ 320px – tiny phones (iPhone SE 1st gen, etc.) ====== */
@media (max-width: 320px) {
  :root { --gutter: 12px; }
  body { font-size: 14px; }

  /* Nav — minimal */
  .nav { padding: 10px 12px; gap: 6px; }
  .nav.scrolled {
    top: 8px;
    width: calc(100% - 12px);
    padding: 5px 5px 5px 10px;
  }
  .nav-logo img { height: 18px; }
  .nav-logo span { font-size: 16px; }
  .nav-cta {
    padding: 7px 10px;
    font-size: 10px;
    gap: 6px;
  }
  .nav-cta-dot { width: 5px; height: 5px; }

  /* Buttons */
  .btn { padding: 11px 16px; font-size: 11.5px; gap: 8px; }
  .btn-sm { padding: 8px 14px; font-size: 11px; }

  /* Hero */
  .hero-inner { padding: 64px 12px 20px; }
  .hero-main { gap: 24px; }
  .hero-eyebrow { font-size: 10px; padding: 5px 10px; gap: 8px; }
  .hero-eyebrow-dot { width: 5px; height: 5px; }
  .hero-h1 { font-size: clamp(36px, 13vw, 48px); }
  .hero-aside { max-width: 200px; }
  .hero-image-hint { font-size: 9px; padding: 6px 10px; gap: 6px; }
  .hero-image-hint .hi-dot { width: 6px; height: 6px; }
  .hero-stat {
    min-width: 58px;
    padding: 5px 8px;
    border-radius: var(--r-sm);
  }
  .hero-stat .v { font-size: 14px; }
  .hero-stat .l { font-size: 7px; margin-top: 3px; letter-spacing: 0.1em; }
  .hero-stat.float-tl,
  .hero-stat.float-tl:hover { top: -8px; left: -4px; }
  .hero-stat.float-tr,
  .hero-stat.float-tr:hover { top: -8px; right: -4px; }
  .hero-stat.float-bl,
  .hero-stat.float-bl:hover { bottom: -8px; left: -4px; }
  .hero-stat.float-br,
  .hero-stat.float-br:hover { bottom: -8px; right: -4px; }
  .hero-bottom { gap: 14px; padding-top: 12px; }

  /* Section pad */
  .section { padding-block: 56px; }
  .section-h2 { font-size: clamp(26px, 9.5vw, 36px); margin-bottom: 18px; }
  .section-lead { font-size: 14px; margin-bottom: 36px; line-height: 1.5; }

  /* Marquee */
  .marquee-item { font-size: 15px; }
  .marquee-track { gap: 14px; }
  .marquee-sep { font-size: 10px; gap: 8px; }
  .marquee-sep::before, .marquee-sep::after { width: 14px; }

  /* Truth */
  .truth-scroll { padding: 56px 12px; }
  .ts-title { font-size: clamp(24px, 9vw, 34px); }
  .ts-block-title { font-size: clamp(18px, 7vw, 26px); }
  .ts-block-body { font-size: 14px; }

  /* Compare */
  .compare-bold { gap: 20px; }
  .compare-cell { padding: 20px 16px; gap: 14px; border-radius: var(--r-lg); }
  .compare-cell .badge { font-size: 10px; padding: 5px 10px; }
  .compare-cell h3 { font-size: clamp(24px, 9vw, 30px); line-height: 1; }
  .compare-cell p { font-size: 13px; line-height: 1.55; }
  .compare-cell .stat-row { padding: 8px 0; font-size: 9.5px; }
  .mock { padding: 9px; gap: 6px; }
  .mock-bad .mock-thumb::after,
  .mock-good .mock-thumb::after { font-size: 36px; }
  .cx-mark { width: 42px; height: 42px; font-size: 24px; }
  .cx-line { height: 1px; width: 40px; }
  .margin-thesis { font-size: clamp(22px, 9vw, 36px); margin-top: 40px; }

  /* Method */
  .method-grid { gap: 18px; }
  .method-card { padding: 20px 16px; gap: 12px; border-radius: var(--r-lg); }
  .method-card h4 { font-size: 18px; }
  .method-card p { font-size: 13px; line-height: 1.55; }
  .mc-num { font-size: 32px; }
  .mc-tag { font-size: 10px; padding: 4px 10px; }
  .mc-icon { width: 42px; height: 42px; border-radius: 10px; }
  .mc-icon svg { width: 22px; height: 22px; }
  .method-card-cta .mc-cta-sub { font-size: 13px; }

  /* CTA banner */
  .cta-banner { padding: 54px 12px; }
  .cta-banner h3 { font-size: clamp(24px, 9.5vw, 32px); margin-bottom: 22px; }
  .cta-eyebrow { font-size: 10px; padding: 5px 10px; margin-bottom: 18px; gap: 8px; }

  /* Portfolio */
  .portfolio-grid { gap: 14px; }
  .case { border-radius: var(--r-lg); }
  .case-info { padding: 14px 16px; gap: 8px; }
  .case-info .niche { font-size: 16px; }
  .case-info .stat { font-size: 11px; }
  .cc-mock { padding: 9px; gap: 6px; max-width: 100%; }
  .cc-mock-letter { font-size: 36px; }
  .cc-label { font-size: 9px; padding: 4px 8px; letter-spacing: 0.06em; }
  .cc-handle { width: 36px; }
  .cc-handle-grip { width: 30px; height: 30px; }
  .cc-handle-grip svg { width: 14px; height: 14px; }
  .case-mk-tag { width: 34px; height: 34px; padding: 5px; }

  /* Testimonials */
  .wa-card { padding: 14px; gap: 12px; border-radius: var(--r-lg); }
  .wa-frame { padding: 12px 10px; }
  .wa-avatar { width: 26px; height: 26px; font-size: 11px; }
  .wa-name { font-size: 11px; }
  .wa-online { font-size: 9px; }
  .wa-bubble { font-size: 11.5px; padding: 6px 9px; }
  .wa-bubble .time { font-size: 8px; }
  .wa-meta .who { font-size: 13px; }
  .wa-meta .where { font-size: 11px; padding: 3px 9px 3px 3px; gap: 5px; }
  .where-logo { width: 18px; height: 18px; padding: 2px; }

  /* Services */
  .services-carousel { margin-top: 28px; }
  .services-progress { margin-top: 18px; }
  .service-card { flex-basis: 88vw; min-height: 340px; border-radius: var(--r-lg); }
  .sv-preview { height: 150px; }
  .sv-body { padding: 18px 18px 22px; gap: 10px; }
  .service-card h4 { font-size: 18px; }
  .service-card p { font-size: 13px; line-height: 1.55; }
  .sv-num { font-size: 11px; }
  .sv-btn { width: 38px; height: 38px; }
  .sv-btn svg { width: 16px; height: 16px; }
  /* tighter preview interiors */
  .sv-preview-images { padding: 14px; gap: 8px; }
  .svp-letter { font-size: 26px; }
  .sv-preview-banners { padding: 16px; gap: 8px; }
  .svp-banner-1 { height: 48px; padding: 0 10px; }
  .svp-bn-mark { width: 22px; height: 22px; font-size: 11px; }
  .svp-banner { height: 28px; }
  .sv-preview-store { padding: 14px; gap: 8px; }
  .svp-store-banner { height: 38px; }
  .sv-preview-brand { padding: 14px; gap: 10px; }
  .svp-logo { width: 50px; height: 50px; border-radius: 14px; }
  .svp-logo span { font-size: 26px; }
  .svp-color { width: 18px; height: 18px; }
  .svp-typo { font-size: 10px; }
  .svp-typo strong { font-size: 15px; }
  .sv-preview-video { padding: 14px; }
  .svp-video-frame { max-width: 160px; }
  .svp-play { width: 34px; height: 34px; }
  .svp-play svg { width: 14px; height: 14px; }
  .svp-video-timer { font-size: 9px; padding: 2px 6px; }
  .sv-preview-description { padding: 14px; gap: 6px; }
  .svp-desc-row { padding: 6px; gap: 8px; }
  .svp-desc-thumb { width: 32px; height: 32px; }
  .sv-preview-ad { padding: 14px; }
  .svp-ad-card { padding: 10px; gap: 10px; }
  .svp-ad-img { width: 58px; height: 58px; font-size: 22px; }
  .svp-ad-price { font-size: 16px; }
  .svp-ad-badge { font-size: 8px; padding: 3px 8px; }
  .svp-cta-icon { width: 60px; height: 60px; border-radius: 18px; }
  .svp-cta-icon svg { width: 26px; height: 26px; }

  /* Marketplaces */
  .mk-grid { gap: 12px; }
  .mk-card { padding: 22px 18px 18px; gap: 16px; border-radius: var(--r-lg); }
  .mk-card h4 { font-size: 20px; }
  .mk-logo { width: 44px; height: 44px; border-radius: 12px; }
  .mk-logo-img { padding: 6px; }
  .mk-logo-ecom svg { width: 22px; height: 22px; }
  .mk-link { padding: 9px 14px; font-size: 12px; }

  /* FAQ */
  .faq-q { padding: 16px; gap: 12px; }
  .faq-q span:first-child { font-size: 13px; }
  .faq-q .plus { font-size: 18px; }
  .faq-a-inner { padding: 0 16px 16px; font-size: 13px; line-height: 1.55; }
  .faq-aside { gap: 14px; }
  .faq-aside-card { padding: 18px 16px; }
  .faq-aside-card .qm { font-size: 32px; }
  .faq-aside-card p { font-size: 13px; }
  .faq-photo-tag { font-size: 9px; padding: 6px 10px; bottom: 10px; left: 10px; }

  /* About */
  .about-photo .frame-label { font-size: 9px; padding: 6px 10px; }
  .about-content p { font-size: 13px; line-height: 1.55; }
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .about-stat { padding: 16px 14px; }
  .about-stat .num { font-size: clamp(28px, 9vw, 40px); }
  .about-stat .label { font-size: 10px; }

  /* Closing */
  .closing { padding-block: 64px; }
  .closing h2 { font-size: clamp(28px, 11vw, 40px) !important; }
  .closing p { font-size: 14px; line-height: 1.55; }
  .closing .punch { font-size: clamp(15px, 5.5vw, 20px); padding: 14px 16px; }
  .closing .btn-giant { font-size: 13px; padding: 14px 22px; }
  .closing .btn-wrap { margin-top: 28px; }

  /* Footer */
  .footer { padding: 50px 12px 22px; }
  .footer-wordmark { margin-bottom: 48px; padding-bottom: 28px; }
  .fw-glyph { font-size: clamp(42px, 21vw, 80px); }
  .fw-orb {
    width: clamp(30px, 14vw, 54px);
    height: clamp(30px, 14vw, 54px);
    margin: 0 3px 0 5px;
  }
  .fw-tag { font-size: 8px; padding: 3px 8px; letter-spacing: 0.12em; }
  .footer-main { gap: 22px; padding-bottom: 22px; margin-bottom: 24px; }
  .footer-brand p { font-size: 12.5px; }
  .footer-col h5 { font-size: 10px; margin-bottom: 10px; }
  .footer-col a { font-size: 12.5px; padding: 4px 0; }
  .footer-bottom { font-size: 10px; }
}
