/* ==========================================================================
   INTERMIDIA MANAGER — Landing Page Premium
   ========================================================================== */

:root {
  --color-orange: #FF5C00;
  --color-orange-dark: #CC4A00;
  --color-orange-soft: rgba(255, 92, 0, 0.08);
  --color-dark: #211A14;
  --color-dark-2: #1A1410;
  --color-gray: #83786F;
  --color-light: #E2DED7;
  --color-white: #FFFFFF;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Fraunces', serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset/base for manager LP only ---------- */
.manager-lp {
  font-family: var(--font-display);
  color: var(--color-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.manager-lp * { box-sizing: border-box; }
.manager-lp img { max-width: 100%; height: auto; display: block; }
.manager-lp .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   1. HERO — Bruna + Animated Mockup
   ========================================================================== */
.mgr-hero {
  position: relative;
  background: #ECECEC;
  padding: 56px 0 0;
  overflow: hidden;
}

/* Top orange strip — exatamente como em solucoes/onde-estamos */
.mgr-hero__strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-orange) 50%, transparent 100%);
  z-index: 1;
}
/* Garante que a navbar fique acima de tudo (sticky) */
.rd-navbar-wrap,
.rd-navbar {
  z-index: 1000;
}
.rd-navbar.rd-navbar-static,
.rd-navbar.rd-navbar--is-stuck,
.rd-navbar.rd-navbar-fixed {
  z-index: 1000 !important;
}
.mgr-hero__strip-pulse { display: none; }
@keyframes stripFlow {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes stripPulse {
  0% { left: -80px; }
  100% { left: 100%; }
}

/* Top headline */
.mgr-hero__head {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
  padding-top: 56px;
}

.mgr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--color-orange);
  margin: 0 0 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-out) 0.1s forwards;
}
.mgr-hero__eyebrow::before,
.mgr-hero__eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--color-orange);
}

.mgr-hero__title {
  font-size: clamp(3.4rem, 5.2vw, 5.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  margin: 0 0 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.mgr-hero__title .accent { color: var(--color-orange); }

.mgr-hero__sub {
  font-size: 1.95rem;
  line-height: 1.5;
  color: var(--color-gray);
  margin: 0 auto 36px;
  max-width: 820px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

/* ==========================================================================
   1.5. CTA BAND — Premium Parallax with City Skyline
   ========================================================================== */
.mgr-band {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  isolation: isolate;
  background: #1A1410;
}
/* Parallax background layer - mais nítida */
.mgr-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
  transform: scale(1.05);
  z-index: -2;
}
/* Overlay mais transparente — cidade visível */
.mgr-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(255, 92, 0, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(255, 92, 0, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15, 10, 7, 0.55) 0%, rgba(15, 10, 7, 0.65) 100%);
  z-index: -1;
}

/* Floating decorative orbs */
.mgr-band__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.mgr-band__orb--1 {
  width: 260px;
  height: 260px;
  background: rgba(255, 92, 0, 0.4);
  top: -80px;
  left: 8%;
  animation: bandOrb 14s ease-in-out infinite;
}
.mgr-band__orb--2 {
  width: 180px;
  height: 180px;
  background: rgba(255, 122, 51, 0.3);
  bottom: -60px;
  right: 12%;
  animation: bandOrb 18s ease-in-out infinite reverse;
}
@keyframes bandOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

/* Subtle grid pattern overlay */
.mgr-band__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.mgr-band .wrap { position: relative; z-index: 2; }

.mgr-band__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.mgr-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 18px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.mgr-band__pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.mgr-band__title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.mgr-band__title .accent {
  color: var(--color-orange);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.mgr-band__sub {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.55;
  max-width: 540px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.mgr-band__ctas {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.mgr-band__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
}
.mgr-band__trust strong {
  color: var(--color-white);
  font-weight: 700;
  margin-right: 6px;
}
.mgr-band__trust .dot-sep {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .mgr-band { padding: 56px 0; }
  .mgr-band__inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .mgr-band__ctas { justify-content: center; gap: 16px; }
}

/* Visual stage: bruna + mockup */
.mgr-hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  min-height: 480px;
  margin-bottom: 0;
}

/* Decorative blobs */
.mgr-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.mgr-hero__blob--1 {
  width: 380px;
  height: 380px;
  background: rgba(255, 92, 0, 0.18);
  top: -100px;
  right: 5%;
  animation: blobFloat 12s ease-in-out infinite;
}
.mgr-hero__blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 122, 51, 0.12);
  bottom: -80px;
  left: 30%;
  animation: blobFloat 15s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

/* Bruna photo */
.mgr-hero__bruna {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
  align-self: start;
  margin-top: -40px;
}
.mgr-hero__bruna-shadow { display: none; }
.mgr-hero__bruna-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(33, 26, 20, 0.2));
}

/* Right side: mockup with floats */
.mgr-hero__visual {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 auto;
  align-self: start;
  margin-top: -20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}
.mgr-hero__mockup-caption {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-gray);
  text-align: center;
  margin: 24px 0 32px;
  letter-spacing: 0.3px;
}

/* Hero checklist */
.mgr-hero__checklist {
  list-style: none;
  padding: 28px 24px;
  margin: 32px 0 0;
  background: var(--color-white);
  border-radius: 14px;
  border: 1px solid rgba(33, 26, 20, 0.06);
  box-shadow: 0 8px 30px rgba(33, 26, 20, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.mgr-hero__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.3;
}
.mgr-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
}
.mgr-check svg {
  width: 13px;
  height: 13px;
  display: block;
}
.mgr-hero__mockup-caption::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: dotPulse 2s ease-in-out infinite;
}

.mgr-hero__visual-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.18) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.mgr-hero__mockup-wrap {
  position: relative;
}
.mgr-hero__mockup {
  position: relative;
  background: var(--color-dark);
  border-radius: 14px;
  padding: 0;
  box-shadow:
    0 30px 80px rgba(33, 26, 20, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s var(--ease-out);
}
.mgr-hero__mockup:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.mgr-hero__mockup-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #0F0A07;
}
.mgr-hero__mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.mgr-hero__mockup-bar span:nth-child(1) { background: #FF5C57; }
.mgr-hero__mockup-bar span:nth-child(2) { background: #FFBD2E; }
.mgr-hero__mockup-bar span:nth-child(3) { background: #28C940; }
.mgr-hero__mockup-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Floating cards */
.mgr-float {
  position: absolute;
  background: var(--color-white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(33, 26, 20, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
  z-index: 3;
  font-family: var(--font-display);
}

.mgr-float--online {
  top: -16px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 4s ease-in-out infinite;
}
.mgr-float--online strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}
.mgr-float--online span:not(.mgr-float__dot) {
  font-size: 1.1rem;
  color: var(--color-gray);
  display: block;
  margin-top: 2px;
}
.mgr-float__dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.mgr-float--chart {
  bottom: 20px;
  left: -30px;
  min-width: 200px;
  animation: floatY 5s ease-in-out infinite 0.5s;
}
.mgr-float__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.mgr-float__chart-head span {
  font-size: 1.05rem;
  color: var(--color-gray);
}
.mgr-float__chart-head strong {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: -0.02em;
}
.mgr-float__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}
.mgr-float__chart-bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--color-orange) 0%, rgba(255, 92, 0, 0.5) 100%);
  border-radius: 3px 3px 0 0;
  animation: barGrow 1.2s var(--ease-out) backwards;
  transform-origin: bottom;
}
.mgr-float__chart-bars span:nth-child(1) { animation-delay: 1.0s; }
.mgr-float__chart-bars span:nth-child(2) { animation-delay: 1.1s; }
.mgr-float__chart-bars span:nth-child(3) { animation-delay: 1.2s; }
.mgr-float__chart-bars span:nth-child(4) { animation-delay: 1.3s; }
.mgr-float__chart-bars span:nth-child(5) { animation-delay: 1.4s; }
.mgr-float__chart-bars span:nth-child(6) { animation-delay: 1.5s; }
.mgr-float__chart-bars span:nth-child(7) { animation-delay: 1.6s; }
@keyframes barGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

.mgr-float--toast {
  top: 110px;
  left: -50px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastIn 0.6s var(--ease-out) 1.5s backwards, floatY 4.5s ease-in-out infinite 2s;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.mgr-float__check {
  width: 32px;
  height: 32px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mgr-float--toast strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}
.mgr-float--toast span {
  font-size: 1rem;
  color: var(--color-gray);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trust bar */
.mgr-hero__trust-wrap {
  position: relative;
  z-index: 2;
}
.mgr-hero__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1.3rem;
  color: var(--color-gray);
  padding-top: 24px;
  border-top: 1px solid rgba(33, 26, 20, 0.08);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.mgr-hero__trust strong {
  color: var(--color-dark);
  font-weight: 700;
  margin-right: 6px;
}
.mgr-hero__trust .dot-sep {
  width: 4px;
  height: 4px;
  background: var(--color-gray);
  border-radius: 50%;
  opacity: 0.4;
}

.mgr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.mgr-btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.35);
}
.mgr-btn--primary:hover {
  background: var(--color-orange-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 92, 0, 0.45);
}

.mgr-btn--outline-light {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.mgr-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.mgr-btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-dark);
}
.mgr-btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.mgr-btn .arrow {
  transition: transform 0.3s var(--ease-out);
}
.mgr-btn:hover .arrow { transform: translateX(4px); }

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

/* ==========================================================================
   2. PROOF / STATS BAND — Clean Compact Light
   ========================================================================== */
.mgr-proof {
  position: relative;
  padding: 64px 0;
  background: var(--color-white);
  border-bottom: 1px solid #EFEBE5;
}
.mgr-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mgr-proof__item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid #EFEBE5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mgr-proof__item:last-child { border-right: none; }

.mgr-proof__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 92, 0, 0.08);
  color: var(--color-orange);
  margin-bottom: 4px;
}
.mgr-proof__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.mgr-proof__num {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.mgr-proof__num .currency,
.mgr-proof__num .plus {
  color: var(--color-orange);
  font-size: 0.7em;
}
.mgr-proof__label {
  font-size: 1.4rem;
  color: var(--color-gray);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.mgr-proof__label br { display: none; }
.mgr-proof__label strong {
  color: var(--color-orange);
  font-weight: 600;
  margin-left: 6px;
}

/* ==========================================================================
   3. ARQUITETURA — Light Split Layout
   ========================================================================== */
.mgr-arch {
  position: relative;
  padding: 72px 0;
  background: #F5F3F0;
  overflow: hidden;
}

/* Split layout: text left, diagram right */
.mgr-arch__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT — text column */
.mgr-arch__text {}
.mgr-arch__eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--color-orange);
  margin: 0 0 14px;
}
.mgr-arch__title {
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.mgr-arch__title .serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--color-orange);
}
.mgr-arch__sub {
  font-size: 1.5rem;
  color: var(--color-gray);
  line-height: 1.55;
  margin: 0 0 32px;
}

.mgr-arch__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mgr-arch__bullets li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid #EFEBE5;
}
.mgr-arch__bullets li:last-child { border-bottom: none; padding-bottom: 0; }
.mgr-arch__bullet-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--color-orange);
  line-height: 1;
  min-width: 56px;
  letter-spacing: -0.02em;
}
.mgr-arch__bullets li strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.mgr-arch__bullets li span {
  display: block;
  font-size: 1.4rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.mgr-arch__note {
  font-size: 1.4rem;
  line-height: 1.55;
  margin: 0;
  padding: 18px 22px;
  background: var(--color-white);
  border-left: 3px solid var(--color-orange);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(33, 26, 20, 0.04);
}
.mgr-arch__note .dim { color: var(--color-gray); }
.mgr-arch__note strong {
  color: var(--color-dark);
  font-weight: 700;
  margin: 0 4px;
}

/* RIGHT — Diagram (smaller) */
.mgr-arch__diagram {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1;
  margin: 0 auto;
}

/* Connection lines SVG */
.mgr-arch__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mgr-arch__lines line {
  animation: lineFlow 3s linear infinite;
}
.mgr-arch__lines line:nth-child(2) { animation-delay: 0.3s; }
.mgr-arch__lines line:nth-child(3) { animation-delay: 0.6s; }
.mgr-arch__lines line:nth-child(4) { animation-delay: 0.9s; }
.mgr-arch__lines line:nth-child(5) { animation-delay: 1.2s; }
.mgr-arch__lines line:nth-child(6) { animation-delay: 1.5s; }
@keyframes lineFlow {
  to { stroke-dashoffset: -20; }
}

/* Core (Manager) at center */
.mgr-arch__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.mgr-arch__core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 92, 0, 0.4);
  animation: coreRing 3s ease-out infinite;
}
.mgr-arch__core-ring--2 { animation-delay: 1.5s; }
@keyframes coreRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.mgr-arch__core-inner {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 122, 51, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #FF5C00, #CC4A00);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow:
    0 0 60px rgba(255, 92, 0, 0.5),
    inset 0 -16px 30px rgba(0, 0, 0, 0.2),
    inset 0 16px 30px rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.mgr-arch__core-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.18em;
}
.mgr-arch__core-inner strong {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mgr-arch__core-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

/* Satellite nodes — LIGHT theme */
.mgr-arch__node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(var(--tx), var(--ty));
  width: 170px;
  padding: 14px 16px;
  background: var(--color-white);
  border: 1px solid #EFEBE5;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(33, 26, 20, 0.07);
  transition: all 0.4s var(--ease-out);
  z-index: 3;
  cursor: default;
}
.mgr-arch__node:hover {
  border-color: rgba(255, 92, 0, 0.4);
  transform: translate(var(--tx), var(--ty)) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 92, 0, 0.18);
}
.mgr-arch__node-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 92, 0, 0.08);
  border: 1px solid rgba(255, 92, 0, 0.18);
  color: var(--color-orange);
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.mgr-arch__node-icon svg { width: 17px; height: 17px; }
.mgr-arch__node strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.mgr-arch__node span {
  display: block;
  font-size: 1.15rem;
  color: var(--color-gray);
  line-height: 1.35;
}

/* Floating data dots (energy flow) */
.mgr-arch__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-orange);
  z-index: 4;
  pointer-events: none;
}
.mgr-arch__dot--1 {
  top: 50%; left: 50%;
  animation: dotPath1 4s linear infinite;
}
.mgr-arch__dot--2 {
  top: 50%; left: 50%;
  animation: dotPath2 4s linear infinite 1.3s;
}
.mgr-arch__dot--3 {
  top: 50%; left: 50%;
  animation: dotPath3 4s linear infinite 2.6s;
}
@keyframes dotPath1 {
  0% { transform: translate(-50%, -50%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translate(-50%, calc(-50% - 280px)); opacity: 0; }
}
@keyframes dotPath2 {
  0% { transform: translate(-50%, -50%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translate(calc(-50% + 280px), calc(-50% + 100px)); opacity: 0; }
}
@keyframes dotPath3 {
  0% { transform: translate(-50%, -50%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translate(calc(-50% - 280px), calc(-50% + 100px)); opacity: 0; }
}

/* Responsive — stack split, then collapse diagram on small screens */
@media (max-width: 980px) {
  .mgr-arch { padding: 56px 0; }
  .mgr-arch__split { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 700px) {
  .mgr-arch__lines, .mgr-arch__dot { display: none; }
  .mgr-arch__diagram {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
  }
  .mgr-arch__core {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 16px;
    grid-column: 1 / -1;
  }
  .mgr-arch__node {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: 100%;
  }
  .mgr-arch__node:hover { transform: scale(1.02) !important; }
}
@media (max-width: 480px) {
  .mgr-arch__diagram { grid-template-columns: 1fr; }
}

/* Old split section kept for backwards compatibility but hidden */
.mgr-split {
  padding: 120px 0;
  background: var(--color-white);
  display: none;
}
.mgr-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.mgr-section-head__eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--color-orange);
  margin-bottom: 14px;
}
.mgr-section-head__title {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin: 0 0 16px;
}
.mgr-section-head__sub {
  font-size: 1.6rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.mgr-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.mgr-split__card {
  padding: 48px 40px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}
.mgr-split__card--neg {
  background: #F5F2EE;
  color: var(--color-gray);
}
.mgr-split__card--pos {
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 30px 60px rgba(33, 26, 20, 0.15);
  overflow: hidden;
}
.mgr-split__card--pos::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.mgr-split__card-tag {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.mgr-split__card--neg .mgr-split__card-tag {
  background: #EBE7E1;
  color: var(--color-gray);
}
.mgr-split__card--pos .mgr-split__card-tag {
  background: rgba(255, 92, 0, 0.15);
  color: var(--color-orange);
  position: relative;
  z-index: 1;
}
.mgr-split__card h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.mgr-split__card--neg h3 { color: #6B655E; }
.mgr-split__card--pos h3 { color: var(--color-white); }

.mgr-split__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.mgr-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1.45rem;
  line-height: 1.5;
}
.mgr-split__list--neg li::before {
  content: '✕';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #EBE7E1;
  color: #A09890;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 3px;
}
.mgr-split__list--pos li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 3px;
}

/* ==========================================================================
   4. FEATURES — Bento Grid Premium
   ========================================================================== */
.mgr-features {
  position: relative;
  padding: 56px 0 72px;
  background: var(--color-white);
  overflow: hidden;
}
.mgr-features .mgr-section-head { margin-bottom: 36px; }
.mgr-features::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.mgr-features::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.mgr-features .wrap { position: relative; z-index: 2; }

.mgr-features .mgr-section-head__title .serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--color-orange);
}

/* Bento grid - asymmetric layout */
.mgr-features__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 14px;
}

/* Base card — tratamento premium evidente */
.mgr-feat {
  position: relative;
  padding: 24px 24px 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 92, 0, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-white) 0%, #FBF8F3 100%);
  border: 1px solid rgba(33, 26, 20, 0.12);
  border-radius: 18px;
  transition: all 0.45s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 16px rgba(33, 26, 20, 0.06),
    0 2px 4px rgba(33, 26, 20, 0.04);
}
.mgr-feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.mgr-feat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 92, 0, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 50px rgba(33, 26, 20, 0.12),
    0 6px 16px rgba(255, 92, 0, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 92, 0, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-white) 0%, #FBF8F3 100%);
}
.mgr-feat:hover::before { opacity: 1; }

/* Number in Fraunces italic */
.mgr-feat__num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gray);
  opacity: 0.5;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out);
}
.mgr-feat:hover .mgr-feat__num {
  color: var(--color-orange);
  opacity: 1;
}

/* Icon - line style SVG */
.mgr-feat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 92, 0, 0.08), rgba(255, 92, 0, 0.02));
  border: 1px solid rgba(255, 92, 0, 0.15);
  color: var(--color-orange);
  margin-bottom: 14px;
  transition: all 0.4s var(--ease-out);
}
.mgr-feat__icon svg {
  width: 20px;
  height: 20px;
}
.mgr-feat:hover .mgr-feat__icon {
  background: linear-gradient(135deg, var(--color-orange), #FF7A33);
  border-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 92, 0, 0.3);
}

.mgr-feat h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.mgr-feat p {
  font-size: 1.25rem;
  color: var(--color-gray);
  line-height: 1.5;
  margin: 0;
}

/* FEATURED — Clean Orange Gradient (Stripe/Linear style) */
.mgr-feat--featured {
  grid-column: span 2;
  grid-row: span 2;
  align-self: start;
  min-height: 300px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 150, 70, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(180, 60, 0, 0.55) 0%, transparent 60%),
    linear-gradient(135deg, #FF5C00 0%, #D54200 100%);
  border-color: transparent;
  color: var(--color-white);
  padding: 28px 28px 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 20px 50px rgba(255, 92, 0, 0.3),
    0 6px 12px rgba(255, 92, 0, 0.18);
}
.mgr-feat--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}
.mgr-feat--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
}
.mgr-feat--featured:hover {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 170, 90, 0.5) 0%, transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(180, 60, 0, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, #FF5C00 0%, #D54200 100%);
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 32px 80px rgba(255, 92, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}
.mgr-feat--featured .mgr-feat__num {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
  font-weight: 500;
}
.mgr-feat--featured .mgr-feat__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}
.mgr-feat--featured:hover .mgr-feat__icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.mgr-feat--featured .mgr-feat__icon svg { width: 28px; height: 28px; }
.mgr-feat--featured h3 {
  font-size: 2.1rem;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.mgr-feat--featured p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.mgr-feat__body { position: relative; z-index: 1; }

/* Chips inside featured card */
.mgr-feat__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.mgr-feat__chips li {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-white);
  transition: all 0.3s var(--ease-out);
}
.mgr-feat__chips li::before {
  content: '✓';
  font-weight: 700;
  margin-right: 6px;
  font-size: 1.2rem;
}
.mgr-feat__chips li:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

/* WIDE — 2 columns, layout horizontal pra bater altura com 02/03 */
.mgr-feat--wide {
  grid-column: span 2;
  align-self: start;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 92, 0, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-white) 0%, #FBF8F3 100%);
}
.mgr-feat--wide .mgr-feat__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.mgr-feat--wide .mgr-feat__body {
  flex: 1;
}
.mgr-feat--wide h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.mgr-feat--wide p {
  font-size: 1.25rem;
  max-width: 100%;
  margin-right: 60px; /* libera espaço pro "04" no canto */
}

/* Decorative visualizations */
.mgr-feat__viz {
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.mgr-feat__viz--player {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}
.mgr-feat__viz--player span {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.3));
  border-radius: 2px;
  animation: playerPulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}
.mgr-feat__viz--player span:nth-child(2) { animation-delay: 0.3s; }
.mgr-feat__viz--player span:nth-child(3) { animation-delay: 0.6s; }
.mgr-feat__viz--player span:nth-child(4) { animation-delay: 0.9s; }
@keyframes playerPulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.9); }
  50% { opacity: 1; transform: scaleX(1); }
}


@media (max-width: 1100px) {
  .mgr-features__bento { grid-template-columns: repeat(2, 1fr); }
  .mgr-feat--featured, .mgr-feat--wide { grid-column: span 2; }
  .mgr-feat--featured { grid-row: span 1; }
}
@media (max-width: 600px) {
  .mgr-features { padding: 80px 0; }
  .mgr-features__bento { grid-template-columns: 1fr; }
  .mgr-feat--featured, .mgr-feat--wide { grid-column: span 1; }
}

/* ==========================================================================
   5. COMPARISON TABLE — Compact Premium
   ========================================================================== */
.mgr-compare {
  padding: 72px 0;
  background: #F5F3F0;
}
.mgr-compare .mgr-section-head { margin-bottom: 40px; max-width: 900px; }
.mgr-compare .mgr-section-head__title { font-size: clamp(2.2rem, 3vw, 3rem); }
.mgr-compare .mgr-section-head__sub { max-width: 100%; }

.mgr-table-wrap {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(33, 26, 20, 0.06);
  overflow: hidden;
  border: 1px solid #EFEBE5;
  max-width: 1080px;
  margin: 0 auto;
}
.mgr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.42rem;
}
.mgr-table th,
.mgr-table td {
  padding: 22px 28px;
  text-align: left;
  border-bottom: 1px solid #F1ECE5;
}
.mgr-table th {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-gray);
  background: #FAF8F5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 26px 28px;
}
.mgr-table th:not(:first-child),
.mgr-table td:not(:first-child) { text-align: center; }
.mgr-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-dark);
}
.mgr-table tbody tr {
  transition: background 0.2s;
}
.mgr-table tbody tr:hover {
  background: #FCFAF7;
}
.mgr-table .col-mgr {
  background: rgba(255, 92, 0, 0.06);
  color: var(--color-dark);
  position: relative;
  font-weight: 600;
}
.mgr-table thead th.col-mgr {
  background: #211A14 !important;
  color: #FFFFFF !important;
  position: relative;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  font-size: 1.22rem !important;
}
.mgr-table thead th.col-mgr::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-orange);
}
.mgr-table .check {
  color: var(--color-orange);
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1;
}
.mgr-table .cross {
  color: #C9C1B6;
  font-size: 1.65rem;
  line-height: 1;
}
.mgr-table .partial {
  color: var(--color-gray);
  font-style: italic;
  font-size: 1.18rem;
}
.mgr-table tr:last-child td { border-bottom: none; }
.mgr-table tr:last-child {
  background: #FAF8F5;
}
.mgr-table tr:last-child td:first-child { font-weight: 700; }
.mgr-table tr:last-child .col-mgr {
  background: rgba(255, 92, 0, 0.12);
}

/* ==========================================================================
   6. HOW IT WORKS — Parallax Light & Compact
   ========================================================================== */
.mgr-how {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  isolation: isolate;
  background: #F5F3F0;
}
/* Parallax background */
.mgr-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  filter: brightness(1.1) saturate(1.05);
  transform: scale(1.05);
  z-index: -2;
}
/* Light cream overlay - escurecido um pouco */
.mgr-how::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 92, 0, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(220, 215, 208, 0.88) 0%, rgba(220, 215, 208, 0.92) 100%);
  z-index: -1;
}
.mgr-how .wrap { position: relative; z-index: 2; }
.mgr-how .mgr-section-head { margin-bottom: 40px; max-width: 920px; }
.mgr-how .mgr-section-head__sub { max-width: 100%; }
.mgr-how .mgr-section-head__title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: var(--color-dark);
}
.mgr-how .mgr-section-head__sub { color: var(--color-gray); }

.mgr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.mgr-step {
  background: var(--color-white);
  border: 1px solid #EFEBE5;
  border-radius: 14px;
  padding: 26px 28px;
  position: relative;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 16px rgba(33, 26, 20, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mgr-step:hover {
  border-color: rgba(255, 92, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 92, 0, 0.12);
}
.mgr-step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.1rem;
  font-weight: 500;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.mgr-step h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.mgr-step p {
  font-size: 1.5rem;
  color: var(--color-gray);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .mgr-how { padding: 56px 0; }
  .mgr-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .mgr-steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   7. PLANS / PRICING — Premium Cinza Claro
   ========================================================================== */
.mgr-plans {
  position: relative;
  padding: 96px 0;
  background: #F5F3F0;
  overflow: hidden;
}
.mgr-plans::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.mgr-plans::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.mgr-plans .wrap { position: relative; z-index: 2; }
.mgr-plans .mgr-section-head__title { font-size: clamp(2.4rem, 3.2vw, 3.4rem); }

/* Toggle premium */
.mgr-plans__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}
.mgr-toggle {
  display: inline-flex;
  background: var(--color-white);
  padding: 5px;
  border-radius: 999px;
  position: relative;
  border: 1px solid #EFEBE5;
  box-shadow: 0 2px 8px rgba(33, 26, 20, 0.04);
}
.mgr-toggle button {
  position: relative;
  z-index: 2;
  padding: 10px 26px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gray);
  border-radius: 999px;
  transition: color 0.3s;
}
.mgr-toggle button.active { color: var(--color-white); }
.mgr-toggle__indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: linear-gradient(135deg, var(--color-orange), #CC4A00);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 92, 0, 0.3);
  transition: transform 0.4s var(--ease-out);
}
.mgr-toggle.right .mgr-toggle__indicator { transform: translateX(100%); }
.mgr-toggle__badge {
  background: rgba(255, 92, 0, 0.12);
  color: var(--color-orange);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 600;
  border: 1px solid rgba(255, 92, 0, 0.25);
}

/* Plans grid */
.mgr-plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.mgr-plan {
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 24px rgba(33, 26, 20, 0.05);
}
.mgr-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.mgr-plan:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 92, 0, 0.25);
  box-shadow: 0 24px 50px rgba(33, 26, 20, 0.1);
}
.mgr-plan:hover::before { opacity: 1; }

.mgr-plan--featured {
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 92, 0, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 0% 0%, rgba(255, 92, 0, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #211A14 0%, #0F0A07 100%);
  color: var(--color-white);
  box-shadow: 0 24px 60px rgba(33, 26, 20, 0.25), 0 0 0 1px rgba(255, 92, 0, 0.2);
  transform: scale(1.04);
  overflow: visible;
}
.mgr-plan--featured::after { display: none; }
.mgr-plan--featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 32px 70px rgba(33, 26, 20, 0.35), 0 0 0 1px rgba(255, 92, 0, 0.35);
}

.mgr-plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-orange), #CC4A00);
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(255, 92, 0, 0.4);
  z-index: 3;
}

.mgr-plan__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-orange);
  margin: 0 0 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.mgr-plan__range {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.mgr-plan--featured .mgr-plan__range { color: rgba(255, 255, 255, 0.6); }

.mgr-plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.mgr-plan__price-currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-gray);
}
.mgr-plan__price-amount {
  font-size: 4.6rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.mgr-plan--featured .mgr-plan__price-currency { color: rgba(255, 255, 255, 0.65); }
.mgr-plan--featured .mgr-plan__price-amount {
  color: var(--color-white);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mgr-plan__price-unit {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin: 8px 0 24px;
  position: relative;
  z-index: 1;
}
.mgr-plan--featured .mgr-plan__price-unit { color: rgba(255, 255, 255, 0.6); }

.mgr-plan__cta {
  width: 100%;
  text-align: center;
  margin-bottom: 22px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.mgr-plan--featured .mgr-plan__cta {
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}
.mgr-plan--featured .mgr-plan__cta:hover {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.4);
}

.mgr-plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #EFEBE5;
  padding-top: 18px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.mgr-plan--featured .mgr-plan__features { border-top-color: rgba(255, 255, 255, 0.12); }
.mgr-plan__features li {
  font-size: 1.3rem;
  color: var(--color-dark);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.mgr-plan--featured .mgr-plan__features li { color: rgba(255, 255, 255, 0.85); }
.mgr-plan__features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: rgba(255, 92, 0, 0.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5C00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.mgr-plan--featured .mgr-plan__features li::before {
  background-color: rgba(255, 92, 0, 0.25);
}
.mgr-plan__features li.disabled {
  color: #C0B8AE;
  opacity: 0.6;
}
.mgr-plan--featured .mgr-plan__features li.disabled {
  color: rgba(255, 255, 255, 0.3);
}
.mgr-plan__features li.disabled::before {
  background-color: rgba(192, 184, 174, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C0B8AE' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
.mgr-plan__features li strong {
  color: var(--color-dark);
  font-weight: 700;
}
.mgr-plan--featured .mgr-plan__features li strong { color: var(--color-white); }

.mgr-plan__setup {
  font-size: 1.15rem;
  color: var(--color-gray);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #EFEBE5;
  position: relative;
  z-index: 1;
}
.mgr-plan--featured .mgr-plan__setup {
  color: rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* ROI Calculator — Detalhe chique integrado nos Planos */
.mgr-plans__roi {
  margin: 40px auto 0;
  max-width: 920px;
}
.mgr-plans__roi-card {
  background: var(--color-white);
  border: 1px solid #EFEBE5;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 8px 32px rgba(33, 26, 20, 0.06);
  position: relative;
}
.mgr-plans__roi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
}

.mgr-plans__roi-left,
.mgr-plans__roi-right {
  flex: 1;
  min-width: 0;
}
.mgr-plans__roi-right {
  text-align: right;
}

.mgr-plans__roi-label {
  font-size: 1.05rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin: 0 0 8px;
}

.mgr-plans__roi-monitors {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin: 0 0 14px;
  font-variant-numeric: tabular-nums;
}
.mgr-plans__roi-monitors strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--color-orange);
  font-size: 2.4rem;
  margin-right: 6px;
  letter-spacing: -0.02em;
  vertical-align: -2px;
}

input[type="range"].mgr-plans__roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange) 18%, #EFEBE5 18%, #EFEBE5 100%);
  border-radius: 2px;
  outline: none;
  margin: 0;
  display: block;
}
input[type="range"].mgr-plans__roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border: 3px solid var(--color-orange);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 92, 0, 0.35);
  transition: transform 0.2s;
}
input[type="range"].mgr-plans__roi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"].mgr-plans__roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border: 3px solid var(--color-orange);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--color-orange);
  box-shadow: 0 2px 8px rgba(255, 92, 0, 0.35);
}

.mgr-plans__roi-divider {
  width: 1px;
  align-self: stretch;
  min-height: 80px;
  background: linear-gradient(180deg, transparent, #EFEBE5 50%, transparent);
  flex-shrink: 0;
}

.mgr-plans__roi-savings-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-orange);
  margin: 0 0 6px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.mgr-plans__roi-savings-value .currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-orange);
  margin-right: 3px;
}
.mgr-plans__roi-savings-value .period {
  font-size: 1.3rem;
  color: var(--color-gray);
  font-weight: 500;
  margin-left: 3px;
}
.mgr-plans__roi-savings-sub {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {
  .mgr-plans__roi-card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .mgr-plans__roi-left,
  .mgr-plans__roi-right { width: 100%; }
  .mgr-plans__roi-right { text-align: center; }
  .mgr-plans__roi-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
    background: linear-gradient(90deg, transparent, #EFEBE5, transparent);
  }
}

.mgr-plans__note {
  text-align: center;
  margin-top: 28px;
  font-size: 1.25rem;
  color: var(--color-gray);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.mgr-plans__note a {
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none;
}
.mgr-plans__note a:hover { text-decoration: underline; }

/* ==========================================================================
   8. ROI CALCULATOR — Modern Dark Premium
   ========================================================================== */
.mgr-roi {
  position: relative;
  padding: 120px 0;
  background: var(--color-dark);
  overflow: hidden;
}
.mgr-roi::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}
.mgr-roi::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.mgr-roi .wrap { position: relative; z-index: 2; }

.mgr-roi__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.mgr-roi__eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--color-orange);
  margin: 0 0 12px;
}
.mgr-roi__title {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 14px;
}
.mgr-roi__title .accent { color: var(--color-orange); }
.mgr-roi__sub {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.55;
}

.mgr-roi__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px;
  max-width: 1040px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  position: relative;
}
.mgr-roi__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 0, 0.5), transparent);
}

/* Hero number - the big savings */
.mgr-roi__hero {
  text-align: center;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mgr-roi__hero-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mgr-roi__hero-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.mgr-roi__hero-value .currency {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-orange);
}
.mgr-roi__hero-value > span[data-roi-save] {
  font-size: 7rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 60px rgba(255, 92, 0, 0.4);
  transition: transform 0.2s var(--ease-out);
}
.mgr-roi__hero-value .period {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 6px;
}
.mgr-roi__hero-sub {
  margin: 14px 0 0;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
}
.mgr-roi__hero-sub strong {
  color: var(--color-white);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Slider */
.mgr-roi__slider-wrap { margin-bottom: 40px; }
.mgr-roi__slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.mgr-roi__slider-name {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mgr-roi__slider-value {
  font-size: 1.6rem;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
}
.mgr-roi__slider-value span[data-roi-value] {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-right: 4px;
}
input[type="range"].mgr-roi__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange) 18%, rgba(255, 255, 255, 0.1) 18%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 3px;
  outline: none;
  margin: 0;
}
input[type="range"].mgr-roi__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  background: var(--color-white);
  border: 4px solid var(--color-orange);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(255, 92, 0, 0.2), 0 6px 20px rgba(255, 92, 0, 0.4);
  transition: transform 0.2s;
}
input[type="range"].mgr-roi__slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"].mgr-roi__slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  background: var(--color-white);
  border: 4px solid var(--color-orange);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(255, 92, 0, 0.2);
}
.mgr-roi__slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
}

/* Bar comparison */
.mgr-roi__bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.mgr-roi__bar-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
}
.mgr-roi__bar-label { display: flex; flex-direction: column; gap: 4px; }
.mgr-roi__bar-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
}
.mgr-roi__bar-tag {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.4);
}
.mgr-roi__bar-track {
  position: relative;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.mgr-roi__bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 8px;
  transition: width 0.5s var(--ease-out);
}
.mgr-roi__bar-fill--gray {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18));
}
.mgr-roi__bar-fill--orange {
  background: linear-gradient(90deg, var(--color-orange), #FF8533);
  box-shadow: 0 0 30px rgba(255, 92, 0, 0.4);
}
.mgr-roi__bar-price {
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding-right: 18px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
}

.mgr-roi__cta {
  text-align: center;
  margin-top: 8px;
}

/* ==========================================================================
   9. CASE — Faixa colada ao Plans (mesmo cinza)
   ========================================================================== */
.mgr-case {
  padding: 0 0 64px;
  background: #F5F3F0;
  margin-top: -32px;
}
.mgr-case__strip {
  background: linear-gradient(135deg, #211A14 0%, #0F0A07 100%);
  border-radius: 14px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(33, 26, 20, 0.15);
}
.mgr-case__strip::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40%;
  background: radial-gradient(ellipse at right, rgba(255, 92, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.mgr-case__strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 0, 0.5), transparent);
}

.mgr-case__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.mgr-case__quote-mark {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: 600;
  margin-right: 4px;
}
.mgr-case__quote strong {
  color: var(--color-white);
  font-weight: 600;
  font-style: normal;
}

.mgr-case__pills {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.mgr-case__pills span {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.mgr-case__pills strong {
  color: var(--color-orange);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-right: 4px;
}
.mgr-case__pills .dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  padding: 0;
}

@media (max-width: 900px) {
  .mgr-case__strip {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 18px 22px;
  }
  .mgr-case__pills { justify-content: center; }
}
@media (max-width: 560px) {
  .mgr-case__pills { font-size: 1.15rem; gap: 12px; }
}

/* ==========================================================================
   10. FAQ — 2 colunas
   ========================================================================== */
.mgr-faq {
  padding: 64px 0 40px;
  background: var(--color-light);
}
.mgr-faq .mgr-section-head { margin-bottom: 40px; }
.mgr-faq__list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.mgr-faq__item {
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.mgr-faq__item:hover {
  border-color: rgba(255, 92, 0, 0.2);
}
.mgr-faq__item[open] {
  box-shadow: 0 8px 24px rgba(33, 26, 20, 0.06);
  border-color: rgba(255, 92, 0, 0.3);
}
.mgr-faq__q {
  padding: 18px 22px;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  gap: 14px;
  line-height: 1.3;
}
.mgr-faq__q::-webkit-details-marker { display: none; }
.mgr-faq__q::after {
  content: '+';
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-orange);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.mgr-faq__item[open] .mgr-faq__q::after {
  transform: rotate(45deg);
}
.mgr-faq__a {
  padding: 0 22px 20px;
  font-size: 1.2rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .mgr-faq__list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   11. FINAL CTA — Igual ao estilo de Soluções (#E2DED7 cinza claro)
   ========================================================================== */
.mgr-final {
  padding: 56px 0 80px;
  background: #E2DED7;
  color: var(--color-dark);
  text-align: center;
  position: relative;
}
.mgr-final .wrap { position: relative; z-index: 1; max-width: 720px; }
.mgr-final h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #211A14;
}
.mgr-final h2 .accent { color: var(--color-orange); }
.mgr-final p {
  font-size: 1.5rem;
  color: #83786F;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.mgr-final__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Botões no estilo de Soluções */
.mgr-final .mgr-btn--primary {
  background: #FF5C00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: none;
}
.mgr-final .mgr-btn--primary:hover {
  background: #e65200;
  transform: none;
  box-shadow: none;
}
.mgr-final .mgr-btn--outline-light {
  background: transparent;
  color: #211A14;
  border: 1.5px solid #211A14;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  backdrop-filter: none;
}
.mgr-final .mgr-btn--outline-light:hover {
  background: #211A14;
  color: #fff;
  border-color: #211A14;
}

/* ==========================================================================
   MODAL (Demo form)
   ========================================================================== */
.mgr-modal {
  position: fixed;
  inset: 0;
  background: rgba(33, 26, 20, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mgr-modal.active {
  display: flex;
  opacity: 1;
}
.mgr-modal__box {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s var(--ease-out);
}
.mgr-modal.active .mgr-modal__box {
  transform: scale(1) translateY(0);
}
.mgr-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-size: 2rem;
  color: var(--color-gray);
  transition: background 0.2s;
}
.mgr-modal__close:hover { background: var(--color-light); color: var(--color-dark); }

.mgr-modal h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.mgr-modal p.lead {
  font-size: 1.3rem;
  color: var(--color-gray);
  margin: 0 0 28px;
  line-height: 1.5;
}

.mgr-field {
  margin-bottom: 16px;
}
.mgr-field label {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.mgr-field input,
.mgr-field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--color-dark);
  background: #FAF8F5;
  border: 1.5px solid transparent;
  border-radius: 8px;
  outline: none;
  transition: border 0.2s, background 0.2s;
}
.mgr-field input:focus,
.mgr-field select:focus {
  border-color: var(--color-orange);
  background: var(--color-white);
}

.mgr-modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.mgr-modal__success {
  text-align: center;
  padding: 20px 0;
}
.mgr-modal__success-icon {
  width: 64px;
  height: 64px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 20px;
}

/* "Em breve" state */
.mgr-modal__soon {
  text-align: center;
  padding: 8px 0;
}
.mgr-modal__soon-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 92, 0, 0.1);
  color: var(--color-orange);
  border: 1.5px solid rgba(255, 92, 0, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.mgr-modal__soon-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 92, 0, 0.12);
  color: var(--color-orange);
  border: 1px solid rgba(255, 92, 0, 0.25);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.mgr-modal__soon h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 12px;
}
.mgr-modal__soon .lead {
  font-size: 1.25rem;
  color: var(--color-gray);
  line-height: 1.55;
  margin: 0 0 24px;
}
.mgr-modal__soon-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mgr-modal__soon-ctas .mgr-btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .mgr-hero__stage { grid-template-columns: 1fr; gap: 60px; }
  .mgr-hero__bruna { max-width: 360px; margin: 0 auto; }
  .mgr-hero__visual { max-width: 600px; margin: 0 auto; min-height: auto; }
  .mgr-float--toast { left: -20px; }
  .mgr-float--chart { left: -10px; }
  .mgr-float--online { right: -10px; }
  .mgr-proof__grid { grid-template-columns: 1fr 1fr; }
  .mgr-proof__item { border-right: none; border-bottom: 1px solid var(--color-light); }
  .mgr-proof__item:nth-child(odd) { border-right: 1px solid var(--color-light); }
  .mgr-proof__item:nth-last-child(-n+2) { border-bottom: none; }
  .mgr-powers__grid { grid-template-columns: repeat(2, 1fr); }
  .mgr-steps { grid-template-columns: repeat(2, 1fr); }
  .mgr-plans__grid { grid-template-columns: repeat(2, 1fr); }
  .mgr-plan--featured { transform: none; }
  .mgr-case__card { grid-template-columns: 1fr; }
  .mgr-roi__results { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .mgr-hero { padding: 40px 0 60px; }
  .mgr-hero__head { padding-top: 32px; margin-bottom: 40px; }
  .mgr-hero__sub { font-size: 1.4rem; }
  .mgr-hero__eyebrow { font-size: 1.4rem; }
  .mgr-hero__eyebrow::before, .mgr-hero__eyebrow::after { width: 24px; }
  .mgr-hero__stage { gap: 40px; min-height: auto; margin-bottom: 32px; }
  .mgr-hero__bruna { max-width: 280px; }
  .mgr-hero__mockup { transform: none; }
  .mgr-float--online { top: -10px; right: 0; padding: 10px 14px; }
  .mgr-float--online strong { font-size: 1.4rem; }
  .mgr-float--chart { left: 0; min-width: 160px; padding: 10px 14px; }
  .mgr-float--toast { top: 80px; left: 0; padding: 10px 14px; }
  .mgr-hero__trust { font-size: 1.1rem; gap: 12px; }
  .mgr-hero__trust .dot-sep { display: none; }
  .mgr-proof, .mgr-split, .mgr-powers, .mgr-compare, .mgr-how, .mgr-plans, .mgr-roi, .mgr-case, .mgr-faq, .mgr-final { padding: 80px 0; }
  .mgr-split__grid { grid-template-columns: 1fr; }
  .mgr-powers__grid { grid-template-columns: 1fr; }
  .mgr-steps { grid-template-columns: 1fr; }
  .mgr-plans__grid { grid-template-columns: 1fr; }
  .mgr-table { font-size: 1.15rem; }
  .mgr-table th, .mgr-table td { padding: 14px 10px; }
  .mgr-case__card { padding: 32px 24px; }
  .mgr-case__quote { font-size: 1.8rem; }
  .mgr-roi__panel { padding: 32px 24px; }
  .mgr-modal__box { padding: 28px 24px; }
}

/* ==========================================================================
   NOVOS COMPONENTES PREMIUM
   ========================================================================== */

/* --- Live Activity Ticker (hero) --- */
.mgr-live-ticker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(33, 26, 20, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(33, 26, 20, 0.04);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.mgr-live-ticker__pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.mgr-live-ticker__text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-dark);
  font-variant-numeric: tabular-nums;
}
.mgr-live-ticker__num {
  color: var(--color-orange);
  font-weight: 700;
  margin-right: 2px;
  transition: color 0.3s;
}
.mgr-live-ticker__dot {
  width: 4px;
  height: 4px;
  background: var(--color-gray);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

/* --- Trust badges (após o hero) --- */
.mgr-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding: 0 0 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}
.mgr-trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(33, 26, 20, 0.08);
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-gray);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-out);
}
.mgr-trust__chip:hover {
  background: var(--color-white);
  border-color: rgba(255, 92, 0, 0.3);
  color: var(--color-dark);
  transform: translateY(-1px);
}
.mgr-trust__chip svg {
  color: var(--color-orange);
}

/* --- Multi-screen mockup slideshow --- */
.mgr-hero__mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  margin-left: 12px;
}
.mgr-hero__mockup-slides {
  position: relative;
  width: 100%;
  background: #FAF8F5;
}
.mgr-hero__mockup-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mgr-hero__mockup-slide.active {
  opacity: 1;
  position: relative;
}
.mgr-hero__mockup-slide img,
.mgr-hero__mockup-svg svg {
  width: 100%;
  height: auto;
  display: block;
}
.mgr-hero__mockup-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(33, 26, 20, 0.85);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 2;
}

/* --- Client logos marquee --- */
.mgr-logos {
  position: relative;
  padding: 28px 0 24px;
  background: var(--color-white);
  border-bottom: 1px solid #F1ECE5;
  overflow: hidden;
}
.mgr-logos__label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
}
.mgr-logos__track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.mgr-logos__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.mgr-logos__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--color-gray);
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}
.mgr-logos__item em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}
.mgr-logos__item:hover {
  opacity: 1;
  color: var(--color-dark);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Sticky CTA floating --- */
.mgr-sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--color-orange), #CC4A00);
  color: var(--color-white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(255, 92, 0, 0.4), 0 0 0 1px rgba(255, 92, 0, 0.2);
  z-index: 999;
  transition: all 0.3s var(--ease-out);
  transform: translateY(80px);
  opacity: 0;
}
.mgr-sticky-cta.visible {
  display: inline-flex;
  transform: translateY(0);
  opacity: 1;
}
.mgr-sticky-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 40px rgba(255, 92, 0, 0.5);
}

/* --- ROI smart recommendation styling --- */
.mgr-plans__roi-savings-sub strong {
  color: var(--color-orange);
  font-weight: 700;
}
.mgr-plans__roi-savings-sep {
  margin: 0 8px;
  color: var(--color-gray);
  opacity: 0.4;
}

/* --- Section dividers SVG fluidos --- */
.mgr-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: -1px 0;
  position: relative;
  z-index: 2;
}
.mgr-divider--curve {
  fill: var(--color-white);
}

/* ==========================================================================
   MOBILE COMPLETE — Atualização final
   ========================================================================== */
@media (max-width: 1100px) {
  .mgr-hero__head { padding-top: 40px; }
  .mgr-hero__title { font-size: clamp(2.6rem, 5vw, 4rem); }
  .mgr-trust { margin-top: 24px; gap: 8px; padding: 0 16px 16px; }
  .mgr-trust__chip { font-size: 1rem; padding: 6px 12px; }
  .mgr-live-ticker { font-size: 1.05rem; padding: 7px 14px; }
  .mgr-logos__item { font-size: 1.4rem; }
  .mgr-logos__track { gap: 40px; }
}

@media (max-width: 900px) {
  /* HERO MOBILE — focada no produto, sem Bruna */
  .mgr-hero { padding: 24px 0 40px; }
  .mgr-hero__head { padding-top: 32px; margin-bottom: 28px; padding-left: 16px; padding-right: 16px; }
  .mgr-hero__eyebrow { font-size: 1.4rem; }
  .mgr-hero__eyebrow::before, .mgr-hero__eyebrow::after { width: 24px; }
  .mgr-hero__title { font-size: 2.4rem; line-height: 1.12; margin-bottom: 14px; }
  .mgr-hero__sub { font-size: 1.3rem; padding: 0; max-width: 100%; }

  /* Esconde Bruna e blobs no mobile */
  .mgr-hero__bruna { display: none; }
  .mgr-hero__blob { display: none; }

  /* Visual centralizado focado */
  .mgr-hero__stage {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 16px;
    min-height: auto;
    margin-bottom: 0;
  }
  .mgr-hero__visual {
    margin: 0 auto;
    margin-top: 0;
    max-width: 100%;
  }
  .mgr-hero__visual-glow { display: none; }
  .mgr-hero__mockup { transform: none !important; }
  .mgr-hero__mockup-wrap { padding-top: 20px; }

  /* Checklist compacta */
  .mgr-hero__checklist {
    grid-template-columns: 1fr 1fr;
    padding: 16px 18px;
    margin-top: 24px;
    gap: 10px 16px;
  }
  .mgr-hero__checklist li { font-size: 1.1rem; gap: 8px; }
  .mgr-check { width: 18px; height: 18px; }
  .mgr-check svg { width: 11px; height: 11px; }

  /* Floats reposition for mobile — escala menor */
  .mgr-float--online {
    top: -6px;
    right: 6px;
    padding: 7px 11px;
    transform: scale(0.8);
    transform-origin: top right;
  }
  .mgr-float--online strong { font-size: 1.3rem; }
  .mgr-float--online span:not(.mgr-float__dot) { font-size: 0.95rem; }
  .mgr-float--chart {
    bottom: 10px;
    left: 4px;
    min-width: 130px;
    padding: 8px 10px;
    transform: scale(0.78);
    transform-origin: bottom left;
  }
  .mgr-float--chart .mgr-float__chart-head span { font-size: 0.9rem; }
  .mgr-float--chart .mgr-float__chart-head strong { font-size: 1.3rem; }
  .mgr-float--chart .mgr-float__chart-bars { height: 28px; }
  .mgr-float--toast {
    top: 60px;
    left: -4px;
    padding: 7px 10px;
    transform: scale(0.78);
    transform-origin: center left;
  }
  .mgr-float--toast strong { font-size: 1.05rem; }
  .mgr-float--toast span { font-size: 0.85rem; }
  .mgr-float__check { width: 24px; height: 24px; font-size: 1.1rem; }

  /* Logos marquee mobile */
  .mgr-logos { padding: 20px 0 16px; }
  .mgr-logos__label { font-size: 0.95rem; margin-bottom: 12px; }
  .mgr-logos__item { font-size: 1.25rem; }
  .mgr-logos__track { gap: 32px; animation-duration: 25s; }

  /* CTA Band */
  .mgr-band { padding: 36px 0; }
  .mgr-band__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; padding-bottom: 16px; }
  .mgr-band__ctas {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 8px;
  }
  .mgr-band__ctas .mgr-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1.3rem;
  }
  .mgr-band__eyebrow { font-size: 1rem; }
  .mgr-band__title { font-size: 2.2rem; }
  .mgr-band__sub { font-size: 1.2rem; }
  .mgr-band__orb { display: none; }

  /* Proof */
  .mgr-proof { padding: 40px 0; }
  .mgr-proof__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .mgr-proof__item {
    border-right: none;
    border-bottom: 1px solid #EFEBE5;
    padding: 20px 12px;
  }
  .mgr-proof__item:nth-child(odd) { border-right: 1px solid #EFEBE5; }
  .mgr-proof__item:nth-last-child(-n+2) { border-bottom: none; }
  .mgr-proof__num { font-size: 2.6rem; }
  .mgr-proof__label { font-size: 1.15rem; }

  /* Arch */
  .mgr-arch { padding: 48px 0; }
  .mgr-arch__split { grid-template-columns: 1fr; gap: 32px; }
  .mgr-arch__title { font-size: 2.4rem; }
  .mgr-arch__bullets li strong { font-size: 1.5rem; }
  .mgr-arch__bullet-num { font-size: 2.6rem; min-width: 44px; }

  /* Features */
  .mgr-features { padding: 40px 0 56px; }
  .mgr-features__bento { grid-template-columns: 1fr 1fr; }
  .mgr-feat--featured { grid-column: span 2; grid-row: span 1; padding: 22px 22px 18px; }
  .mgr-feat--featured h3 { font-size: 1.8rem; }
  .mgr-feat--featured p { font-size: 1.2rem; }
  .mgr-feat--wide { grid-column: span 2; }
  .mgr-feat__chips li { font-size: 1rem; padding: 5px 10px; }

  /* Compare table — transforma em cards verticais no mobile */
  .mgr-compare { padding: 48px 0; }
  .mgr-compare .mgr-section-head__sub { font-size: 1.2rem; }
  .mgr-table-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }
  .mgr-table {
    display: block;
    border-collapse: separate;
    border-spacing: 0;
  }
  .mgr-table thead { display: none; }
  .mgr-table tbody { display: block; }
  .mgr-table tbody tr {
    display: block;
    background: var(--color-white);
    border: 1px solid #EFEBE5;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(33, 26, 20, 0.03);
  }
  .mgr-table tbody tr:hover { background: var(--color-white); }
  .mgr-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border: none;
    text-align: left !important;
    font-size: 1.1rem;
  }
  .mgr-table tbody td:first-child {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-dark);
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid #F1ECE5;
  }
  .mgr-table tbody td:not(:first-child)::before {
    content: attr(data-label);
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
  }
  .mgr-table tbody td.col-mgr {
    background: transparent;
    padding-top: 6px;
    margin-top: 2px;
    border-top: 1px solid #F1ECE5;
  }
  .mgr-table tbody td.col-mgr::before {
    color: var(--color-orange);
    font-weight: 700;
  }
  .mgr-table .check, .mgr-table .cross, .mgr-table .partial {
    font-size: 1.25rem;
  }
  .mgr-table tbody tr:last-child td.col-mgr {
    background: rgba(255, 92, 0, 0.06);
    margin: 2px -8px 0;
    padding: 8px 8px 6px;
    border-radius: 6px;
  }

  /* How it works */
  .mgr-how { padding: 40px 0; }
  .mgr-how .mgr-section-head__sub { font-size: 1.2rem; }
  .mgr-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mgr-step { padding: 18px 18px; }
  .mgr-step__num { font-size: 2.4rem; }
  .mgr-step h4 { font-size: 1.4rem; }
  .mgr-step p { font-size: 1.2rem; }

  /* Plans */
  .mgr-plans { padding: 56px 0; }
  .mgr-plans__grid { grid-template-columns: 1fr; gap: 24px; }
  .mgr-plan--featured { transform: none; margin-top: 12px; }
  .mgr-plan--featured:hover { transform: translateY(-4px); }
  .mgr-plan { padding: 26px 22px; }
  .mgr-plan__price-amount { font-size: 3.8rem; }
  .mgr-toggle button { padding: 8px 18px; font-size: 1.15rem; }

  /* ROI compact */
  .mgr-plans__roi-card {
    flex-direction: column;
    gap: 18px;
    padding: 20px 22px;
  }
  .mgr-plans__roi-left, .mgr-plans__roi-right { width: 100%; text-align: center; }
  .mgr-plans__roi-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
    background: linear-gradient(90deg, transparent, #EFEBE5, transparent);
  }

  /* Case strip */
  .mgr-case { padding: 0 0 40px; margin-top: -20px; }
  .mgr-case__strip {
    flex-direction: column;
    gap: 12px;
    padding: 18px 22px;
    text-align: center;
  }
  .mgr-case__quote { font-size: 1.25rem; }
  .mgr-case__pills { justify-content: center; gap: 12px; font-size: 1.1rem; }
  .mgr-case__pills span { font-size: 1.1rem; }
  .mgr-case__pills .dot { display: none; }

  /* FAQ */
  .mgr-faq { padding: 48px 0 32px; }
  .mgr-faq__list { grid-template-columns: 1fr; gap: 10px; }
  .mgr-faq__q { font-size: 1.25rem; padding: 16px 18px; }
  .mgr-faq__a { font-size: 1.15rem; padding: 0 18px 16px; }

  /* Final CTA */
  .mgr-final { padding: 48px 0 64px; }
  .mgr-final h2 { font-size: 2.4rem; }
  .mgr-final p { font-size: 1.3rem; }
  .mgr-final__ctas {
    flex-direction: column;
    gap: 10px;
    padding: 0 16px;
  }
  .mgr-final__ctas .mgr-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1.3rem;
  }

  /* Sticky CTA mobile */
  .mgr-sticky-cta {
    bottom: 88px;
    right: 16px;
    padding: 12px 18px;
    font-size: 1.2rem;
  }
  .mgr-sticky-cta svg { width: 16px; height: 16px; }

  /* Section heads */
  .mgr-section-head { margin-bottom: 32px; }
  .mgr-section-head__title { font-size: 2.2rem !important; }
  .mgr-section-head__eyebrow { font-size: 1.6rem; }
  .mgr-section-head__sub { font-size: 1.25rem; }
}

@media (max-width: 560px) {
  .mgr-hero__title { font-size: 2.2rem; }
  .mgr-features__bento { grid-template-columns: 1fr; }
  .mgr-feat--featured, .mgr-feat--wide { grid-column: span 1; }
  .mgr-feat__chips { gap: 6px; }
  .mgr-table { display: block; overflow-x: auto; white-space: nowrap; }
  .mgr-steps { grid-template-columns: 1fr; }
  .mgr-arch__bullets li { gap: 12px; }
  .mgr-arch__bullet-num { font-size: 2.2rem; min-width: 38px; }
  .mgr-section-head__title { font-size: 2rem !important; }
}

/* ============================================================
   HERO LIGHT — Editorial v2026 (claro premium com foto à direita)
   ============================================================ */
.mgr-hero.mgr-hero--light {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  padding: clamp(70px, 9vh, 110px) 0 clamp(60px, 10vh, 100px);
  overflow: hidden;
  background: #FAF7F2;
  isolation: isolate;
}
/* Faixa laranja no topo (padrão do site, idêntica à de /solucoes/) */
.mgr-hero--light .mgr-hero__accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 5;
  background: linear-gradient(90deg, transparent 0%, #FF5C00 50%, transparent 100%);
  pointer-events: none;
}
/* Radiais quentes ambient */
.mgr-hero--light .mgr-hero__amb {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 50% at 85% 30%, rgba(255, 92, 0, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(255, 122, 51, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 50% 10%, rgba(33, 26, 20, 0.025) 0%, transparent 50%);
  pointer-events: none;
}
.mgr-hero--light .mgr-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.13 0 0 0 0 0.10 0 0 0 0 0.08 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.mgr-hero--light .mgr-hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.mgr-hero--light .mgr-hero__col {
  max-width: 640px;
}
.mgr-hero--light .mgr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(33, 26, 20, 0.04);
  border: 1px solid rgba(33, 26, 20, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #83786F;
  margin-bottom: 28px;
}
.mgr-hero--light .mgr-hero__pulse {
  width: 8px;
  height: 8px;
  background: #FF5C00;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.7);
  animation: heroLightPulse 2s cubic-bezier(0.66, 0, 0, 1) infinite;
}
@keyframes heroLightPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.7); }
  60%, 100% { box-shadow: 0 0 0 14px rgba(255, 92, 0, 0); }
}
.mgr-hero--light .mgr-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #211A14;
  margin: 0 0 24px;
}
.mgr-hero--light .mgr-hero__title .serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #FF5C00;
  letter-spacing: -0.01em;
}
.mgr-hero--light .mgr-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  line-height: 1.55;
  color: #5C5249;
  max-width: 560px;
  margin: 0 0 36px;
}
.mgr-hero--light .mgr-hero__sub strong {
  color: #211A14;
  font-weight: 700;
}
.mgr-hero--light .mgr-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.mgr-hero--light .mgr-btn--lg {
  padding: 16px 28px;
  font-size: 1.1rem;
}
.mgr-hero--light .mgr-btn--lg svg { margin-left: 6px; transition: transform 0.3s; }
.mgr-hero--light .mgr-btn--lg:hover svg { transform: translateX(4px); }
/* Trust */
.mgr-hero--light .mgr-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  padding-top: 28px;
  border-top: 1px solid rgba(33, 26, 20, 0.10);
}
.mgr-hero--light .mgr-hero__trust-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 700;
  color: #211A14;
  letter-spacing: -0.02em;
  line-height: 1;
}
.mgr-hero--light .mgr-hero__trust-item span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #83786F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.mgr-hero--light .mgr-hero__trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(33, 26, 20, 0.12);
}

/* === RIGHT — Product device slideshow === */
.mgr-hero--light .mgr-hero__device {
  position: relative;
  width: 100%;
  z-index: 2;
}
.mgr-hero--light .mgr-hero__device-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 92, 0, 0.28), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(255, 122, 51, 0.22), transparent 55%);
  filter: blur(50px);
  z-index: -1;
  animation: heroDeviceGlow 8s ease-in-out infinite alternate;
}
@keyframes heroDeviceGlow {
  0%   { transform: scale(0.92); opacity: 0.85; }
  100% { transform: scale(1.08); opacity: 1; }
}
.mgr-hero--light .mgr-hero__device-frame {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 70px rgba(33, 26, 20, 0.18),
    0 8px 16px rgba(33, 26, 20, 0.06),
    0 0 0 1px rgba(33, 26, 20, 0.06);
  display: flex;
  flex-direction: column;
}
/* Browser chrome */
.mgr-hero--light .mgr-hero__device-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #F5F1EB;
  border-bottom: 1px solid #EFEBE5;
}
.mgr-hero--light .mgr-hero__device-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.mgr-hero--light .mgr-hero__device-dot--r { background: #FF5F57; }
.mgr-hero--light .mgr-hero__device-dot--y { background: #FFBD2E; }
.mgr-hero--light .mgr-hero__device-dot--g { background: #28C940; }
.mgr-hero--light .mgr-hero__device-url {
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1px solid #E5DFD6;
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  color: #5C5249;
  flex: 1;
  max-width: 320px;
}
.mgr-hero--light .mgr-hero__device-url svg { color: #22c55e; flex-shrink: 0; }
/* Stage = slides container */
.mgr-hero--light .mgr-hero__device-stage {
  position: relative;
  aspect-ratio: 1280 / 800;
  background: #FAF8F5;
  overflow: hidden;
}
.mgr-hero--light .mgr-hero__device-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mgr-hero--light .mgr-hero__device-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.mgr-hero--light .mgr-hero__device-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Tabs / indicators bar */
.mgr-hero--light .mgr-hero__device-tabs {
  display: flex;
  gap: 0;
  padding: 0;
  background: #FFFFFF;
  border-top: 1px solid #EFEBE5;
}
.mgr-hero--light .mgr-hero__device-tabs button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #83786F;
  background: transparent;
  border: 0;
  border-top: 2px solid transparent;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.mgr-hero--light .mgr-hero__device-tabs button span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(33, 26, 20, 0.18);
  transition: all 0.3s;
}
.mgr-hero--light .mgr-hero__device-tabs button.is-active {
  color: #211A14;
  border-top-color: #FF5C00;
}
.mgr-hero--light .mgr-hero__device-tabs button.is-active span {
  background: #FF5C00;
  box-shadow: 0 0 8px rgba(255, 92, 0, 0.55);
  animation: tabPulse 1.6s ease-in-out infinite;
}
@keyframes tabPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.4); }
}
.mgr-hero--light .mgr-hero__device-tabs button:hover {
  color: #211A14;
}

/* Mobile: hide tab labels, keep dots */
@media (max-width: 600px) {
  .mgr-hero--light .mgr-hero__device-url { display: none; }
  .mgr-hero--light .mgr-hero__device-tabs button {
    font-size: 0;
    padding: 14px 4px;
  }
  .mgr-hero--light .mgr-hero__device-tabs button span {
    width: 9px;
    height: 9px;
  }
}

/* === Legado: classes mgr-hero__art (mantidas inertes pra não quebrar) === */
.mgr-hero--light .mgr-hero__art {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 620px;
  border-radius: 24px;
  overflow: visible;
  z-index: 2;
  display: none;
}
.mgr-hero--light .mgr-hero__art-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 40%, rgba(255, 92, 0, 0.25), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: artGlow 6s ease-in-out infinite alternate;
}
@keyframes artGlow {
  0%   { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 1; }
}
.mgr-hero--light .mgr-hero__art-photo {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 30px 70px rgba(33, 26, 20, 0.22),
    0 8px 16px rgba(33, 26, 20, 0.08);
}
.mgr-hero--light .mgr-hero__art-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  animation: artPan 24s ease-in-out infinite alternate;
}
/* Overlay suave pra leitura do HUD */
.mgr-hero--light .mgr-hero__art-fade {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15,10,7,0.0) 0%, rgba(15,10,7,0.35) 100%),
    radial-gradient(ellipse 60% 50% at 50% 50%, transparent 30%, rgba(15,10,7,0.25) 100%);
  pointer-events: none;
  z-index: 1;
}
/* HUD — Cidades sobre a foto */
.mgr-hero--light .mgr-hero__hud {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  pointer-events: none;
}
.mgr-hero--light .mgr-hud-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.mgr-hud-city {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.mgr-hud-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF5C00;
  box-shadow:
    0 0 0 3px rgba(255, 92, 0, 0.18),
    0 0 12px rgba(255, 92, 0, 0.7);
}
.mgr-hud-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid #FF5C00;
  animation: hudPing 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.mgr-hud-city--mgf .mgr-hud-dot::after { animation-delay: 0.6s; }
.mgr-hud-city--bca .mgr-hud-dot::after { animation-delay: 1.2s; }
.mgr-hud-city--ita .mgr-hud-dot::after { animation-delay: 1.8s; }
@keyframes hudPing {
  0%   { transform: scale(1); opacity: 1; }
  80%, 100% { transform: scale(3); opacity: 0; }
}
.mgr-hud-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}
@keyframes artPan {
  0%   { transform: scale(1.04) translate(-1%, 0); }
  100% { transform: scale(1.10) translate(1%, -1%); }
}
/* Floating tags sobre a foto */
.mgr-hero--light .mgr-hero__tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow:
    0 16px 40px rgba(33, 26, 20, 0.18),
    0 4px 10px rgba(33, 26, 20, 0.08);
  z-index: 3;
  animation: tagFloat 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.mgr-hero--light .mgr-hero__tag div { display: flex; flex-direction: column; }
.mgr-hero--light .mgr-hero__tag strong {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #211A14;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.mgr-hero--light .mgr-hero__tag span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #83786F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 2px;
}
.mgr-hero--light .mgr-hero__tag--live {
  top: 24px;
  left: -20px;
  animation-delay: 0s;
}
.mgr-hero--light .mgr-hero__tag--metric {
  top: 28px;
  right: -24px;
  animation-delay: 1.5s;
}
/* Live activity feed (bottom card) */
.mgr-hero--light .mgr-hero__feed {
  position: absolute;
  left: -28px;
  right: 28px;
  bottom: -22px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 44px rgba(33, 26, 20, 0.18),
    0 4px 10px rgba(33, 26, 20, 0.08);
  z-index: 4;
}
.mgr-hero--light .mgr-hero__feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: #83786F;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mgr-hero--light .mgr-hero__feed-pulse {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: heroLightPulse 2s cubic-bezier(0.66, 0, 0, 1) infinite;
}
.mgr-hero--light .mgr-hero__feed ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mgr-hero--light .mgr-hero__feed li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.3;
  color: #211A14;
  animation: feedIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.mgr-hero--light .mgr-hero__feed li:nth-child(1) { animation-delay: 0.2s; }
.mgr-hero--light .mgr-hero__feed li:nth-child(2) { animation-delay: 0.5s; }
.mgr-hero--light .mgr-hero__feed li:nth-child(3) { animation-delay: 0.8s; }
.mgr-hero--light .mgr-hero__feed li strong {
  font-weight: 700;
  color: #211A14;
  letter-spacing: -0.005em;
}
.mgr-hero--light .mgr-hero__feed li span {
  color: #83786F;
  font-weight: 500;
}
@keyframes feedIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mgr-hero--light .mgr-hero__tag-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: heroLightPulse 2s cubic-bezier(0.66, 0, 0, 1) infinite;
}
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Mobile */
@media (max-width: 992px) {
  .mgr-hero--light .mgr-hero__split {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .mgr-hero--light .mgr-hero__art {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .mgr-hero.mgr-hero--light {
    padding: 70px 0 60px;
    min-height: auto;
  }
  .mgr-hero--light .mgr-hero__title { font-size: 2.4rem; }
  .mgr-hero--light .mgr-hero__sub { font-size: 1.1rem; }
  .mgr-hero--light .mgr-hero__ctas { flex-direction: column; }
  .mgr-hero--light .mgr-hero__ctas a { width: 100%; justify-content: center; }
  .mgr-hero--light .mgr-hero__trust { gap: 16px; }
  .mgr-hero--light .mgr-hero__trust-sep { display: none; }
  .mgr-hero--light .mgr-hero__trust-item { flex: 1 1 40%; }
  .mgr-hero--light .mgr-hero__tag--live { left: 12px; bottom: 12px; }
  .mgr-hero--light .mgr-hero__tag--metric { right: 12px; top: 12px; }
}

/* ============================================================
   ARCH MAGAZINE — Editorial 6-card grid (kills hub diagram)
   ============================================================ */
.mgr-arch.mgr-arch--mag {
  padding: clamp(80px, 12vh, 140px) 0;
  background: #FAF7F2;
  position: relative;
}
.mgr-arch--mag .mgr-arch__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 6vh, 72px);
}
.mgr-arch--mag .mgr-arch__eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #FF5C00;
  margin-bottom: 16px;
}
.mgr-arch--mag .mgr-arch__title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #211A14;
  margin: 0 0 20px;
}
.mgr-arch--mag .mgr-arch__title .serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #FF5C00;
}
.mgr-arch--mag .mgr-arch__sub {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.55;
  color: #83786F;
  margin: 0;
}
/* Magazine grid — asymmetric layout */
.mgr-mag__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 18px;
}
.mgr-mag__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #211A14;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  cursor: default;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  box-shadow: 0 4px 14px rgba(33, 26, 20, 0.08);
}
.mgr-mag__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(33, 26, 20, 0.18);
}
.mgr-mag__card--big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 660px;
}
.mgr-mag__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.mgr-mag__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.mgr-mag__card:hover .mgr-mag__img img {
  transform: scale(1.06);
}
.mgr-mag__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 30%, rgba(15, 10, 7, 0.55) 65%, rgba(15, 10, 7, 0.92) 100%),
    linear-gradient(135deg, rgba(255, 92, 0, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.mgr-mag__body {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: #fff;
}
.mgr-mag__card--big .mgr-mag__body { padding: 40px; }
.mgr-mag__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}
.mgr-mag__card--big .mgr-mag__num { font-size: 1.8rem; }
.mgr-mag__body h3 {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.mgr-mag__card--big .mgr-mag__body h3 { font-size: 2.4rem; }
.mgr-mag__body p {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 36ch;
}
.mgr-mag__card--big .mgr-mag__body p { font-size: 1.3rem; max-width: 44ch; }
.mgr-mag__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 16px;
  background: rgba(255, 92, 0, 0.2);
  border: 1px solid rgba(255, 92, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 999px;
}
.mgr-mag__stat strong {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FF7A33;
  letter-spacing: -0.01em;
}
.mgr-mag__stat span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Compare strip */
.mgr-arch--mag .mgr-arch__compare {
  margin-top: clamp(40px, 6vh, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  padding: 28px 32px;
  background: #fff;
  border: 1px solid rgba(33, 26, 20, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(33, 26, 20, 0.04);
  flex-wrap: wrap;
}
.mgr-arch--mag .mgr-arch__compare-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
}
.mgr-arch--mag .mgr-arch__compare-side strong {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #83786F;
  letter-spacing: -0.03em;
  line-height: 1;
}
.mgr-arch--mag .mgr-arch__compare-side--win strong {
  color: #FF5C00;
}
.mgr-arch--mag .mgr-arch__compare-side span {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #83786F;
  letter-spacing: 0.04em;
}
.mgr-arch--mag .mgr-arch__compare-arrow {
  color: #FF5C00;
}

/* Mobile arch mag */
@media (max-width: 992px) {
  .mgr-mag__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mgr-mag__card--big {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 420px;
  }
}
@media (max-width: 600px) {
  .mgr-mag__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mgr-mag__card,
  .mgr-mag__card--big {
    grid-column: span 1;
    min-height: 340px;
  }
  .mgr-mag__card--big .mgr-mag__body h3 { font-size: 1.8rem; }
  .mgr-mag__card--big .mgr-mag__body p { font-size: 1.15rem; }
  .mgr-arch--mag .mgr-arch__compare {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .mgr-arch--mag .mgr-arch__compare-arrow {
    transform: rotate(90deg);
  }
}

