:root {
  --black: #000000;
  --black2: #0d0d0d;
  --black3: #161616;
  --red: #f40304;
  --red-dark: #b50203;
  --red-light: #ff2526;
  --red-pale: #ff6b6b;
  --red-muted: #cc0203;
  --white: #ffffff;
  --white2: #f5f5f5;
  --gray: #888888;
  --gray-light: #cccccc;
  --border-dark: rgba(255,255,255,0.07);
  --border-red: rgba(244,3,4,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html:not([data-scroll-ready]) { scroll-behavior: auto; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
body.loaded {
  opacity: 1;
  visibility: visible;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .2s, height .2s, background .2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(244,3,4,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, width .2s, height .2s;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 56px; height: 84px;
  background: #000000 !important;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  justify-self: start;
}
.nav-logo-img {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 4px;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 3px; color: #ffffff;
}
.nav-logo-text span { color: var(--red); }
.nav-links {
  display: flex; align-items: center; gap: 40px; list-style: none;
  justify-self: center;
}
.nav-links a {
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600;
  text-decoration: none; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-right-slot {
  justify-self: end;
}
.nav-cta {
  display: inline-block;
  padding: 12px 32px;
  background: var(--red); color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--red-light); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative; overflow: hidden;
  background: var(--black);
}

/* Glow radial de fundo igual ao da referência */
.hero::before {
  content: '';
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(244,3,4,.13) 0%,
    rgba(244,3,4,.04) 40%,
    transparent 70%);
  pointer-events: none; z-index: 0;
}
/* segundo glow mais suave embaixo */
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(244,3,4,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* Badge no topo — estilo pílula com borda */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 15px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  position: relative; z-index: 2;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
body.loaded .hero-badge { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.75)} }

/* Headline centralizada — grande como na ref */
.hero h1 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -1px;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 28px;
  position: relative; z-index: 2;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
body.loaded .hero h1 { opacity: 1; transform: translateY(0); transition-delay: .08s; }
.hero h1 .red { color: var(--red); }

/* Subtítulo */
.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 620px;
  margin-bottom: 48px;
  position: relative; z-index: 2;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
body.loaded .hero-desc { opacity: 1; transform: translateY(0); transition-delay: .16s; }
.hero-desc strong { color: var(--white); font-weight: 700; }

/* Botão CTA centralizado — estilo da referência */
.hero-cta-wrap {
  position: relative; z-index: 2;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
body.loaded .hero-cta-wrap { opacity: 1; transform: translateY(0); transition-delay: .24s; }
.btn-hero-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 18px 48px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white); text-decoration: none;
  transition: all .25s; cursor: pointer;
}
.btn-hero-main strong { color: var(--red); }
.btn-hero-main:hover {
  border-color: var(--red);
  background: rgba(244,3,4,.07);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(244,3,4,.18);
}

/* Scroll indicator suave */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: fadeUp .6s .5s ease both;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(244,3,4,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* Botões globais usados no resto do site */
.btn-red {
  padding: 14px 30px;
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all .22s;
}
.btn-red:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(244,3,4,.3); }
.btn-ghost {
  padding: 13px 30px;
  background: transparent; color: rgba(255,255,255,.55);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(255,255,255,.1);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all .22s; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(244,3,4,.4); color: var(--white); }

@keyframes fadeUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft  { from{opacity:0;transform:translateX(-28px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeRight { from{opacity:0;transform:translateX(28px)}  to{opacity:1;transform:translateX(0)} }

/* ─── MARQUEE ─── */
.marquee-bar {
  background: var(--red); padding: 14px 0;
  overflow: hidden; border-top: 2px solid var(--red-dark);
  border-bottom: 2px solid var(--red-dark);
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 0 32px;
  display: flex; align-items: center; gap: 20px; white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; background: rgba(255,255,255,.5); border-radius: 50%; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── SECTION ─── */
section { padding: 100px 56px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--red);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .95; letter-spacing: 2px; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--gray-light);
  max-width: 560px; line-height: 1.65;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── WHY ─── */
.why-section { background: #ffffff; }
.why-section .section-label { color: var(--red); }
.why-section .section-title { color: #0a0a0a; }
.why-section .section-sub { color: #555555; }
.why-section .btn-red { background: var(--red); color: #fff; }
.why-section > .container > .why-inner > .reveal-left p { color: #555555; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left {}
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: var(--black3);
  border: 1px solid var(--border-dark);
  padding: 28px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--red);
  transition: height .3s;
}
.why-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.why-card:hover::before { height: 100%; }
.why-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: var(--red); line-height: 1;
  margin-bottom: 8px; opacity: .55;
}
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ─── SERVICES ─── */
.services-section { background: var(--black2); }
.services-section .section-title { color: var(--white); }
.services-section .section-label { color: var(--red); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header p {
  font-size: 16px; color: var(--gray); max-width: 500px;
  margin: 12px auto 0; line-height: 1.7;
}

/* ── Carousel ── */
.srv-carousel { overflow: hidden; }

.srv-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.srv-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: srvLoop 40s linear infinite;
}
.srv-track:hover { animation-play-state: paused; }

@keyframes srvLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Card ── */
.srv-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  width: 280px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}
.srv-icon {
  width: 46px; height: 46px;
  background: rgba(244,3,4,.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.srv-card h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 17px; font-weight: 800;
  color: #0a0a0a; margin-bottom: 10px; line-height: 1.25;
}
.srv-card p { font-size: 13px; color: #666; line-height: 1.7; }

/* ── Mobile: animação contínua igual ao desktop ── */
@media (max-width: 768px) {
  .srv-carousel { overflow: hidden; }
  .srv-track-wrapper {
    overflow: hidden;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
  }
  .srv-track-wrapper::-webkit-scrollbar { display: none; }
  .srv-track { animation: srvLoop 28s linear infinite; }
  .srv-card {
    width: 240px;
  }
}

/* ─── METHOD ─── */
/* ─── METHOD / PROCESSO ─── */
.method-section { background: var(--black2); padding-bottom: 100px; }

/* ── Funil de Perspectiva ── */
.fade-method-wrap {
  width: 100%;
  padding: 0 0 56px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fade-method-wrap::-webkit-scrollbar { display: none; }

.fade-method-svg {
  width: 100%;
  min-width: 760px;
  max-width: 1100px;
  display: block;
  margin: 0 auto;
}

/* SVG mobile: escondido no desktop */
.fade-method-svg-mobile {
  display: none;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fade-method-svg { display: none; }
  .fade-method-svg-mobile { display: block; }
  .fade-method-wrap { overflow-x: visible; padding-bottom: 24px; }
  .method-section { padding-bottom: 60px; }
}

/* ─── METHOD / PROCESSO ─── */
.method-section { background: var(--black2); padding-bottom: 100px; }

.process-carousel-wrap {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 16px 0 24px;
}
/* fade nas bordas */
.process-carousel-wrap::before,
.process-carousel-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.process-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black2), transparent);
}
.process-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black2), transparent);
}

.process-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: procScroll 30s linear infinite;
}
.process-carousel-track:hover { animation-play-state: paused; }

@keyframes procScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.proc-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 32px 28px;
  width: 300px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}
.proc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.proc-card--highlight {
  border-top: 3px solid var(--red);
}
.proc-icon {
  width: 40px; height: 40px;
  background: rgba(244,3,4,.08);
  border: 1px solid rgba(244,3,4,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.proc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 3px;
  color: var(--red); margin-bottom: 10px;
}
.proc-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .3px;
  color: #0a0a0a; margin-bottom: 10px;
}
.proc-card p {
  font-size: 13px; color: #666;
  line-height: 1.65;
}

.process-cta {
  text-align: center;
  margin-top: 56px;
}

/* ─── RESULTS ─── */
.results-section { background: var(--red); padding: 80px 56px; }
.results-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.result-item {
  background: rgba(0,0,0,.2); padding: 44px 36px;
  text-align: center; border: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
.result-item:hover { background: rgba(0,0,0,.35); }
.result-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; line-height: 1; color: var(--white);
  display: block;
}
.result-label { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ─── TESTIMONIALS ─── */
.testi-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
}
.testi-section::after {
  content: 'CLIENTES';
  position: absolute; bottom: -30px; right: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px; letter-spacing: 8px;
  color: rgba(0,0,0,0.025);
  pointer-events: none; user-select: none;
  white-space: nowrap; line-height: 1;
}
.testi-header {
  text-align: center;
  margin-bottom: 72px;
  padding: 0 24px;
}
.testi-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 20px;
}
.testi-eyebrow-line { display: block; height: 1px; width: 56px; }
.testi-eyebrow-line:first-child { background: linear-gradient(90deg, transparent, var(--red)); }
.testi-eyebrow-line:last-child  { background: linear-gradient(90deg, var(--red), transparent); }
.testi-eyebrow-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--red);
}
.testi-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -1.5px; color: #0a0a0a;
  margin-bottom: 18px;
}
.testi-title em { font-style: normal; color: var(--red); }
.testi-subtitle {
  font-size: 16px; color: #999; line-height: 1.65;
  max-width: 480px; margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.testi-card {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  padding: 40px 36px 32px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 1px 12px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.03);
}
.testi-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-pale));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 4px 20px rgba(244,3,4,0.05);
  border-color: rgba(244,3,4,0.18);
}
.testi-card:hover::after { transform: scaleX(1); }
.testi-card--featured {
  background: #0a0a0a;
  border: 1px solid rgba(244,3,4,0.3);
  box-shadow: 0 16px 56px rgba(0,0,0,0.25), 0 0 0 1px rgba(244,3,4,0.1);
  transform: translateY(-14px) scale(1.025);
  z-index: 2;
}
.testi-card--featured::after { transform: scaleX(1); background: linear-gradient(90deg, var(--red), #ff5a5a); }
.testi-card--featured:hover {
  transform: translateY(-20px) scale(1.025);
  box-shadow: 0 32px 80px rgba(244,3,4,0.2), 0 0 0 1px rgba(244,3,4,0.25);
}
.testi-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}
.testi-quote-svg { width: 30px; height: auto; flex-shrink: 0; }
.testi-text {
  font-size: 15px; line-height: 1.82;
  color: #444; flex: 1;
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
}
.testi-card--featured .testi-text { color: rgba(255,255,255,0.72); }
.testi-footer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 22px;
}
.testi-card--featured .testi-footer { border-top-color: rgba(255,255,255,0.08); }
.testi-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 15px;
  color: #fff; border-radius: 50%;
  box-shadow: 0 4px 12px rgba(244,3,4,0.3);
}
.testi-avatar--white {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: none; color: rgba(255,255,255,0.85);
}
.testi-info { flex: 1; min-width: 0; }
.testi-name { font-size: 13px; font-weight: 700; color: #0a0a0a; line-height: 1.3; }
.testi-card--featured .testi-name { color: #ffffff; }
.testi-biz { font-size: 11px; color: #bbb; margin-top: 3px; letter-spacing: .2px; }
.testi-card--featured .testi-biz { color: rgba(255,255,255,0.32); }
.testi-stars { color: #f5a623; font-size: 12px; letter-spacing: 2px; line-height: 1; }
.testi-stars--white { color: rgba(255,220,100,0.8); }
.testi-badge {
  display: inline-block; padding: 4px 10px;
  background: rgba(244,3,4,0.06); border: 1px solid rgba(244,3,4,0.18);
  font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--red); white-space: nowrap; border-radius: 2px; flex-shrink: 0;
}
.testi-badge--white {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
}

/* ─── CALC ─── */
.calc-section {
  background: #ffffff;
  position: relative; overflow: hidden;
}
.calc-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(244,3,4,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.calc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.calc-section .section-label { color: var(--red); }
.calc-section .section-label::before { background: var(--red); }
.calc-section .section-title { color: #0a0a0a; }
.calc-section .section-title span { color: var(--red); }
.calc-left {}
.calc-desc {
  font-size: 16px; color: #555555;
  line-height: 1.75; margin-top: 20px; max-width: 420px;
}
.calc-insight {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 32px; padding: 22px 24px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}
.calc-insight-icon {
  flex-shrink: 0; width: 34px; height: 34px;
  background: rgba(244,3,4,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.calc-insight-text {
  font-size: 14px; color: #ffffff; font-weight: 700;
  line-height: 1.75; margin: 0;
}
.calc-badges {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px;
}
.calc-badge-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}
.calc-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(244,3,4,0.5);
}
.calc-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px; position: relative;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.calc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), var(--red-pale));
  border-radius: 4px 4px 0 0;
}
.calc-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.calc-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}
.calc-card-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: #4ade80;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  padding: 4px 10px; border-radius: 2px;
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.calc-field label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.80); margin-bottom: 10px;
}
.calc-field input {
  width: 100%; padding: 15px 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  color: var(--white); font-size: 18px;
  font-family: 'Barlow', sans-serif; outline: none;
  transition: border-color .2s, background .2s;
}
.calc-field input:focus {
  border-color: var(--red);
  background: rgba(244,3,4,0.06);
}
.calc-field input::placeholder { color: rgba(255,255,255,.40); }
.calc-single { margin-bottom: 22px; }
.btn-calc {
  width: 100%; padding: 17px;
  background: var(--red); color: white;
  border: none; cursor: pointer; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; transition: all .2s;
  position: relative; overflow: hidden;
}
.btn-calc::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
.btn-calc:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,3,4,0.3); }
.btn-calc:hover::after { transform: translateX(100%); }
.calc-result {
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  display: none;
  background: #111;
}
.calc-result.show { display: block; }
.calc-result-header {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  background: rgba(74,222,128,0.10);
  border-bottom: 1px solid rgba(74,222,128,0.18);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #4ade80;
}
/* Linhas individuais */
.result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.result-row--highlight {
  background: rgba(74,222,128,0.06);
  border-left: 3px solid #4ade80;
  padding-left: 17px;
}
.result-row-info { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.result-label {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.90); letter-spacing: 0.2px;
}
.result-label em { font-style: normal; color: rgba(255,255,255,0.50); font-size: 12px; }
.result-hint { font-size: 11px; color: rgba(255,255,255,0.42); }
.result-val-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.result-val { font-family: 'Bebas Neue', sans-serif; font-size: 26px; flex-shrink: 0; }
.result-val.green { color: #4ade80; }
.result-val.white { color: #fff; }
.result-val-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  color: #4ade80; background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  padding: 2px 7px; border-radius: 2px;
  text-transform: uppercase;
}
/* Bloco duplo: ganho + crescimento lado a lado */
.result-double {
  display: flex; align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.result-double-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 18px 16px; text-align: center;
}
.result-double-item .result-hint { font-size: 10px; color: rgba(255,255,255,0.40); text-transform: uppercase; letter-spacing: 1px; }
.result-double-item .result-val { font-size: 28px; }
.result-double-divider {
  width: 1px; background: rgba(255,255,255,0.07);
  margin: 12px 0;
}
/* CTA */
.calc-result-vamos {
  margin: 20px 16px 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  color: rgba(255,255,255,0.50); text-align: center;
  text-transform: uppercase;
}
.calc-result-cta {
  display: block; margin: 0 16px 16px; padding: 18px 20px;
  background: var(--red);
  border: none; border-radius: 4px;
  font-size: 16px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff; text-decoration: none; text-align: center;
  transition: all .2s;
  box-shadow: 0 6px 24px rgba(244,3,4,0.35);
}
.calc-result-cta:hover { background: var(--red-light); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(244,3,4,0.5); }

/* ─── FAQ ─── */
.faq-section {
  background: #ffffff;
  position: relative; overflow: hidden;
}
.faq-section::before {
  content: 'FAQ';
  position: absolute; bottom: -60px; right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px; color: rgba(0,0,0,.03);
  pointer-events: none; user-select: none; line-height: 1;
}
.faq-section .section-label { color: var(--red); }
.faq-section .section-label::before { background: var(--red); }
.faq-section .section-title { color: #0a0a0a; }
.faq-inner { display: grid; grid-template-columns: 360px 1fr; gap: 100px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: background .2s;
}
.faq-item.open { background: rgba(244,3,4,0.03); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 20px; cursor: pointer; gap: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: #1a1a1a;
  transition: color .2s;
}
.faq-item.open .faq-q { color: #0a0a0a; }
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(244,3,4,0.08);
  border: 1px solid rgba(244,3,4,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red);
  transition: all .28s; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--red); color: white;
  transform: rotate(45deg);
  box-shadow: 0 4px 14px rgba(244,3,4,0.30);
}
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 15px; color: #555555;
  line-height: 1.8; padding: 0 20px;
  transition: max-height .38s ease, padding .38s;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 20px 24px; }

/* ─── CTA ─── */
.cta-section {
  background: #050505;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(244,3,4,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(244,3,4,0.04) 0%, transparent 45%);
}
.cta-bg-lines::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
/* Esquerda */
.cta-headline {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; color: #ffffff;
  margin: 16px 0 20px;
}
.cta-headline-red { color: var(--red); }
.cta-desc {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.75; max-width: 420px;
}
.cta-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px;
}
.cta-trust-line { width: 32px; height: 2px; background: var(--red); flex-shrink: 0; }
.cta-trust-text {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.cta-checks {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px;
}
.cta-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.55);
}
.cta-check-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(244,3,4,0.6);
}
/* Card formulário */
.cta-form-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.cta-form-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(244,3,4,0.06);
}
.cta-form-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
  background: rgba(244,3,4,0.12);
  border: 1px solid rgba(244,3,4,0.25);
  padding: 4px 10px; border-radius: 2px;
  margin-bottom: 10px;
}
.cta-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: #ffffff; margin: 0;
}
.cta-form-body { padding: 28px 32px; display: flex; flex-direction: column; gap: 14px; }
.cta-contacts { padding: 28px 32px; display: flex; flex-direction: column; gap: 16px; }
.cta-contact-item {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 24px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  text-decoration: none;
  transition: all .28s;
  position: relative; overflow: hidden;
}
.cta-contact-item::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  opacity: 0; transition: opacity .28s;
}
.cta-contact-wpp {
  background: rgba(37,211,102,0.05);
  border-color: rgba(37,211,102,0.15);
}
.cta-contact-wpp::after { background: #25d366; }
.cta-contact-wpp:hover {
  border-color: rgba(37,211,102,0.40);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.12);
  background: rgba(37,211,102,0.08);
}
.cta-contact-wpp:hover::after { opacity: 1; }
.cta-contact-wpp .cta-contact-icon { background: rgba(37,211,102,0.12); color: #25d366; }
.cta-contact-email {
  background: rgba(244,3,4,0.04);
  border-color: rgba(244,3,4,0.15);
}
.cta-contact-email::after { background: var(--red); }
.cta-contact-email:hover {
  border-color: rgba(244,3,4,0.40);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(244,3,4,0.12);
  background: rgba(244,3,4,0.07);
}
.cta-contact-email:hover::after { opacity: 1; }
.cta-contact-email .cta-contact-icon { background: rgba(244,3,4,0.12); color: var(--red); }
.cta-contact-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .28s;
}
.cta-contact-item:hover .cta-contact-icon { transform: scale(1.08); }
.cta-contact-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cta-contact-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.cta-contact-value {
  font-size: 17px; font-weight: 700; color: #ffffff; letter-spacing: 0.3px;
}
.cta-contact-arrow {
  font-size: 20px; color: rgba(255,255,255,0.20);
  transition: all .25s; flex-shrink: 0;
}
.cta-contact-item:hover .cta-contact-arrow { color: rgba(255,255,255,0.65); transform: translateX(5px); }
.cta-field input,
.cta-field select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: #ffffff; font-size: 15px;
  font-family: 'Barlow', sans-serif; outline: none;
  transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.cta-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.cta-field input::placeholder { color: rgba(255,255,255,0.30); }
.cta-field select option { background: #1a1a1a; color: #fff; }
.cta-field input:focus,
.cta-field select:focus { border-color: var(--red); background: rgba(244,3,4,0.05); }
.cta-form-btn {
  width: 100%; padding: 18px;
  background: var(--red); color: #fff;
  border: none; border-radius: 4px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all .2s; margin-top: 4px;
  box-shadow: 0 6px 24px rgba(244,3,4,0.35);
}
.cta-form-btn:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(244,3,4,0.5); }
.cta-form-note {
  font-size: 11px; color: rgba(255,255,255,0.25);
  text-align: center; margin: 0; letter-spacing: 0.3px;
}
/* Mobile */
@media(max-width:900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-headline { font-size: clamp(30px, 8vw, 44px); }
  .cta-desc { max-width: 100%; }
}
@media(max-width:600px) {
  .cta-section { padding: 60px 20px; }
  .cta-left { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .cta-headline {
    font-size: clamp(32px, 9vw, 46px);
    letter-spacing: -1px;
    line-height: 1.12;
    margin: 12px 0 24px;
  }
  .section-label { justify-content: center; }
  .cta-left .btn-red { width: 100%; text-align: center; padding: 18px 24px; font-size: 15px; }
  .cta-form-header { padding: 22px 20px 18px; }
  .cta-form-body { padding: 20px; gap: 12px; }
  .cta-form-btn { font-size: 14px; padding: 16px; }
  .cta-contact-item { padding: 16px; }
  .cta-contact-value { font-size: 14px; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 64px 56px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand {}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 3px; color: white; margin-bottom: 14px;
}
.footer-logo span { color: var(--red); }
.footer-tagline { font-size: 13px; color: var(--gray); line-height: 1.65; }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: var(--gray);
  text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border-dark);
  font-size: 13px; color: var(--gray);
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--black2); border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none; color: var(--gray);
  transition: all .2s;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.social-link:hover { background: var(--red); border-color: var(--red); color: white; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  nav {
    padding: 0 20px;
    grid-template-columns: auto 1fr auto;
    height: 64px;
    background: #000000 !important;
  }
  .nav-links { display: none; }
  .nav-logo { justify-self: start; }
  .nav-logo-img { width: 36px; height: 36px; }
  .nav-logo-text { font-size: 17px; letter-spacing: 2px; }
  .nav-right-slot { display: none; }
  .hamburger { margin-left: auto; }
  section { padding: 80px 28px; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero h1 { font-size: clamp(34px, 9vw, 56px); }
  .hero-desc { font-size: 15px; }
  .results-section { padding: 60px 28px; }
  .results-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card--featured { transform: none; box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
  .testi-card--featured:hover { transform: translateY(-6px); }
  .testi-section { padding: 72px 24px; }
  .testi-header { margin-bottom: 48px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-inner .reveal-left { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .why-section .section-label { text-align: center; }
  .why-section .section-title { text-align: center; }
  .why-section .section-sub { text-align: center; }
  .method-inner { grid-template-columns: 1fr; }
  .method-visual { position: relative; top: 0; }
  .calc-inner { grid-template-columns: 1fr; gap: 48px; }
  .calc-desc { max-width: 100%; }
  .calc-insight { padding: 18px 20px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-side-cta { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}
@media(max-width:600px){
  nav {
    padding: 0 16px;
    height: 60px;
    background: #000000 !important;
  }
  .nav-logo-img { width: 34px; height: 34px; }
  .nav-logo-text { font-size: 16px; letter-spacing: 1.5px; }
  .nav-cta { padding: 8px 16px; font-size: 12px; }
  section { padding: 60px 20px; }
  .hero {
    padding: 110px 20px 120px;
    min-height: auto;
    justify-content: flex-start;
  }
  .hero h1 {
    font-size: clamp(25px, 8.5vw, 36px);
    line-height: 1.18;
  }
  .hero h1 br { display: none; }
  .hero h1 .h1-br  { display: inline; }
  .hero h1 .h1-br2 { display: none; }
  .hero h1 .h1-line1 { white-space: nowrap; }
  .hero-desc { font-size: 14px; margin-top: 20px; }
  .hero-badge { font-size: 9px; padding: 7px 14px; letter-spacing: 1.5px; }
  .btn-hero-main { padding: 14px 28px; font-size: 15px; }
  .hero-proof { flex-wrap: wrap; gap: 10px; }
  .proof-sep { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .results-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-col ul { text-align: center; }
  .footer-bottom { text-align: center; justify-content: center; }
  .calc-row { grid-template-columns: 1fr; }
  .results-section { padding: 50px 20px; }
  /* FAQ mobile */
  .faq-section { padding: 60px 20px; }
  .faq-q { font-size: 14px; padding: 18px 14px; letter-spacing: 0.3px; }
  .faq-a { font-size: 14px; padding: 0 14px; }
  .faq-item.open .faq-a { padding: 0 14px 20px; }
  .faq-icon { width: 26px; height: 26px; font-size: 16px; }
  .calc-section { padding: 60px 20px; }
  .calc-left .section-label { justify-content: center; }
  .calc-left .section-title { text-align: center; }
  .calc-desc { font-size: 14px; margin-top: 14px; text-align: center; max-width: 100%; }
  .calc-insight { display: none; }
  .calc-card { padding: 24px 20px; border-radius: 6px; }
  .calc-card-header { margin-bottom: 20px; padding-bottom: 14px; }
  .calc-card-title { font-size: 12px; letter-spacing: 1.5px; }
  .calc-row { gap: 12px; margin-bottom: 12px; }
  .calc-field label { font-size: 11px; letter-spacing: 1.2px; margin-bottom: 8px; }
  .calc-field input { padding: 14px 16px; font-size: 16px; }
  .calc-single { margin-bottom: 16px; }
  .btn-calc { padding: 16px; font-size: 14px; letter-spacing: 2px; }
  .calc-result { padding: 16px; margin-top: 16px; }
  .result-label { font-size: 10px; }
  .result-val { font-size: 20px; }
  .calc-result-cta { font-size: 11px; padding: 12px 16px; margin-top: 14px; }
  /* Testimonials mobile */
  .testi-section { padding: 60px 20px; }
  .testi-title { font-size: clamp(28px, 8vw, 38px); letter-spacing: -0.5px; }
  .testi-subtitle { font-size: 14px; }
  .testi-eyebrow-line { width: 32px; }
  .testi-grid { gap: 14px; }
  .testi-card { padding: 28px 24px 24px; border-radius: 6px; }
  .testi-card--featured {
    order: -1;
    border-left: 3px solid var(--red);
    border-radius: 6px;
  }
  .testi-top { margin-bottom: 14px; }
  .testi-quote-svg { width: 24px; }
  .testi-text { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
  .testi-footer { padding-top: 16px; gap: 10px; }
  .testi-avatar { width: 36px; height: 36px; font-size: 13px; }
  .testi-name { font-size: 13px; }
  .testi-biz { font-size: 10px; }
  .testi-stars { font-size: 11px; letter-spacing: 1.5px; }
  .testi-badge { font-size: 8px; padding: 3px 8px; }
}
/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE DROPDOWN ─── */
.mobile-dropdown {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.mobile-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-dropdown ul {
  list-style: none;
  padding: 8px 0 12px;
}
.mobile-dropdown ul li a {
  display: block;
  padding: 14px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color .2s, background .2s;
}
.mobile-dropdown ul li:last-child a { border-bottom: none; }
.mobile-dropdown ul li a:hover { color: var(--red); background: rgba(244,3,4,0.05); }

@media(max-width:1024px) {
  .hamburger { display: flex; }
  .mobile-dropdown { display: block; top: 64px; }
  .nav-right-slot { display: none; }
}
@media(max-width:600px) {
  .mobile-dropdown { top: 60px; }
}
