/* ═════════════════════════════════════════════
   OTOM × LIBANK — variant
   Deep navy + emerald · Manrope display · Inter body
   ═════════════════════════════════════════════ */

:root {
  --bg-0: #010402;
  --bg-1: #041618;
  --bg-2: #0A1416;
  --surface: #121A22;
  --surface-2: #1A2330;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --green-100: #17CC94;
  --green-200: #1DA578;
  --green-300: #148362;
  --green-glow: rgba(23, 204, 148, 0.35);

  --text: #FFFFFF;
  --text-2: rgba(255, 255, 255, 0.72);
  --text-3: rgba(255, 255, 255, 0.48);

  --light-bg: #FFFFFF;
  --light-surface: #F4F6F5;
  --light-text: #0B1A12;
  --light-text-2: #4A5564;
  --light-border: #E5E7EB;

  --grad-dark: linear-gradient(180deg, #072021 0%, #010A22 100%);
  --grad-green: linear-gradient(135deg, #17CC94 0%, #1DA578 100%);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --wrap: 1240px;

  --pad-section: 96px;
  --pad-section-md: 64px;
  --pad-section-sm: 48px;
}
@media (max-width: 1024px) {
  :root { --pad-section: var(--pad-section-md); }
}
@media (max-width: 640px) {
  :root { --pad-section: var(--pad-section-sm); }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, rgba(23, 204, 148, 0.04), transparent 60%),
    radial-gradient(ellipse 500px 500px at 80% 60%, rgba(20, 131, 98, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch' seed='7'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.85  0 0 0 0 0.55  0 0 0 1.2 -0.35'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 300px 300px;
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  -webkit-mask-image:
    radial-gradient(ellipse 35% 45% at 95% 5%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 40%, transparent 75%),
    radial-gradient(ellipse 35% 45% at 5% 95%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 40%, transparent 75%);
          mask-image:
    radial-gradient(ellipse 35% 45% at 95% 5%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 40%, transparent 75%),
    radial-gradient(ellipse 35% 45% at 5% 95%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 40%, transparent 75%);
}

img { max-width: 100%; display: block; }

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

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ═════ Typography ═════ */
.display, h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}

.display { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2.h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: 1.375rem; font-weight: 700; }

.accent { color: var(--green-100); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--green-100);
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--green-100);
  box-shadow: 0 0 6px var(--green-glow);
}

.kicker--light {
  color: var(--green-300);
}
.kicker--light::before { background: var(--green-300); box-shadow: none; }

.lead {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 56ch;
  margin: 16px 0 0;
}

/* ═════ Buttons ═════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
}

.btn svg { width: 16px; height: 16px; }

.btn--primary {
  background: var(--green-100);
  color: #02110A;
  box-shadow: 0 12px 30px -10px var(--green-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { transform: translateY(-2px); background: #1FE0A0; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.30); }

.btn--ghost-dark {
  background: transparent;
  color: var(--light-text);
  border: 1px solid var(--light-border);
}
.btn--ghost-dark:hover { background: var(--light-text); color: #fff; }

/* ═════ Navbar (shrink-on-scroll pill) ═════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 8px 12px;
  transition: padding .3s ease;
  background: transparent;
}
.nav__inner {
  max-width: var(--wrap);
  margin: 8px auto 0;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 0;
  border: 1px solid transparent;
  background: rgba(1, 4, 2, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  transition: max-width .3s ease, border-radius .3s ease, border-color .3s ease, padding .3s ease, background .3s ease;
}
.nav.is-scrolled .nav__inner {
  max-width: 1080px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 16, 0.72);
  padding: 10px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
body { padding-top: 80px; }
@media (max-width: 880px) {
  body { padding-top: 70px; }
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.brand__dot {
  color: var(--green-100);
  font-weight: 700;
  margin: 0 1px;
}
.nav__pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
  transition: color .15s, background .15s;
  padding: 8px 16px;
  border-radius: 999px;
}
.nav__link:hover { color: var(--text); }
.nav__link--active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.nav__cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  transition: border-color .2s, background .2s;
}
.nav__cta-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.nav__star {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: transparent;
  border: none;
  overflow: hidden;
}
.nav__star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(23, 204, 148, 0.5));
}
.nav__star svg { filter: drop-shadow(0 0 6px rgba(23, 204, 148, 0.6)); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle { display: none; }

.nav__burger {
  display: none;
  position: relative;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  position: absolute;
  left: 8px;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
  border-radius: 2px;
}
.nav__burger span:nth-child(1) { top: 11px; }
.nav__burger span:nth-child(2) { top: 17px; }
.nav__burger span:nth-child(3) { top: 23px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.nav__sheet {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 4, 2, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 112px 28px 40px;
  gap: 4px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav__sheet[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__sheet a {
  display: block;
  padding: 18px 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: -0.02em;
}
.nav__sheet a:hover { color: var(--green-100); }
.nav__sheet a.nav__sheet-cta {
  margin-top: 20px;
  text-align: center;
  background: var(--green-100);
  color: #02110A;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  padding: 16px 24px;
  box-shadow: 0 12px 30px -10px var(--green-glow);
}

@media (max-width: 880px) {
  .nav__pill { display: none; }
  .nav__cta-outline { display: none; }
  .nav__star { display: none; }
  .nav__burger { display: inline-block; }
}
@media (min-width: 881px) {
  .nav__sheet { display: none; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
}

/* ═════ Hero ═════ */
.hero {
  position: relative;
  padding: var(--pad-section) 0;
  background: transparent;
}
.hero--bleed {
  padding: 0;
  height: 92vh;
  min-height: 620px;
  max-height: 880px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0,0,0,0.4) 88%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0,0,0,0.4) 88%, transparent 100%);
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 4, 2, 0.72) 0%, rgba(1, 4, 2, 0.45) 35%, rgba(1, 4, 2, 0.55) 75%, transparent 100%),
    linear-gradient(90deg, rgba(1, 4, 2, 0.78) 0%, rgba(1, 4, 2, 0.45) 55%, rgba(1, 4, 2, 0.2) 100%),
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(23, 204, 148, 0.18), transparent 70%);
}
.hero--bleed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, var(--bg, #000) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content {
  max-width: 720px;
}
.hero--bleed .hero__title {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #ffffff;
  margin: 0 0 22px;
}
.hero--bleed .hero__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero--bleed .hero__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 56ch;
}
.hero--bleed .hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .hero--bleed { height: auto; min-height: 540px; padding: 80px 0; }
  .hero__veil { background:
    linear-gradient(180deg, rgba(1, 4, 2, 0.8) 0%, rgba(1, 4, 2, 0.6) 40%, rgba(1, 4, 2, 0.92) 100%);
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(23, 204, 148, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero__grid-bg { display: none; }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 600px;
}
.hero__title {
  margin-top: 26px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.hero__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 52ch;
  margin-top: 22px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__media {
  position: relative;
  margin: 0;
  min-height: 720px;
  display: grid;
  place-items: end center;
}
.hero__media--cutout::before {
  content: '';
  position: absolute;
  inset: -10% -20% -5% -10%;
  background:
    radial-gradient(ellipse 60% 60% at 55% 60%, rgba(23, 204, 148, 0.38), transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(12px);
}
.hero__cutout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: 0;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.7)) drop-shadow(0 0 60px rgba(23,204,148,0.22));
}
.hero__media svg { width: 100%; height: 100%; display: block; }

.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(10, 24, 40, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.hero__chip-arrow {
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  border-radius: 50%;
  color: #02110A;
  font-size: 11px;
  font-weight: 800;
}
.hero__chip--1 { top: 12%; right: -8%; }
.hero__chip--2 { top: 36%; right: -12%; }
.hero__chip--3 { bottom: 22%; right: -6%; }
.hero__chip--solo,
.hero__chip--top,
.hero__chip--bottom {
  position: absolute;
  padding: 12px 16px;
  background: rgba(10, 22, 24, 0.92);
  border: 1px solid rgba(23, 204, 148, 0.40);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.5);
  z-index: 3;
  backdrop-filter: blur(10px);
  align-items: flex-start;
}
.hero__chip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.hero__chip-text strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}
.hero__chip-text small {
  font-size: 0.6875rem;
  color: var(--text-3);
  font-weight: 400;
}
.hero__chip--top {
  top: 42%;
  right: -4%;
}
.hero__chip--bottom {
  bottom: 8%;
  left: 6%;
  transform: translateY(50%);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { aspect-ratio: 4/4; }
  .hero__chip { display: none; }
}

/* ═════ Trust strip ═════ */
.trust {
  padding: 48px 0 32px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.trust__label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.trust__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 44px;
  opacity: 0.85;
}
.trust__logo {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.5) contrast(0.8);
  opacity: 0.55;
  transition: opacity .25s, filter .25s;
}
.trust__logo:hover { opacity: 1; filter: none; }

/* ═════ Abstract organic blobs (OCTO tentacle replacement) ═════ */
.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.blob--lg { width: 600px; height: 600px; }
.blob--md { width: 400px; height: 400px; }
.blob--sm { width: 280px; height: 280px; }
.blob--green { background: radial-gradient(circle, rgba(23, 204, 148, 0.50), transparent 70%); }
.blob--dark { background: radial-gradient(circle, rgba(20, 131, 98, 0.30), transparent 70%); }

/* ═════ WE ARE (OCTO 4-card hero) ═════ */
.weare {
  position: relative;
  padding: var(--pad-section) 0;
  background: transparent;
  text-align: center;
}
.weare .wrap { position: relative; z-index: 1; }
.weare__brand {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 40px;
}
.weare__brand .brand__dot {
  color: var(--green-100);
  font-size: 0.5rem;
  vertical-align: middle;
}
.weare__title {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 auto 80px;
  max-width: 24ch;
}
.weare__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.weare__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 980px) { .weare__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .weare__grid { grid-template-columns: 1fr; } }
.weare-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 32px;
  background: #F6F6F4;
  color: #0B1A12;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  min-height: 280px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.weare-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0F7A57;
  transition: gap .2s ease;
}
.weare-card__cta svg { width: 14px; height: 14px; }
.weare-card:hover .weare-card__cta { gap: 12px; }
.weare-card__cta--light { color: #ffffff; }
.weare__grid > .weare-card:first-child {
  border-radius: 160px 32px 32px 32px;
  padding-left: 60px;
  padding-top: 80px;
}
.weare__grid > .weare-card:last-child {
  border-radius: 32px 160px 32px 32px;
  padding-right: 60px;
  padding-top: 80px;
}
@media (max-width: 980px) {
  .weare__grid > .weare-card:first-child,
  .weare__grid > .weare-card:last-child { border-radius: 32px; }
}
.weare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.40);
}
.weare-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: inherit;
  margin: 0;
}
.weare-card__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(11, 26, 18, 0.62);
  margin-top: auto;
}
.weare-card--active {
  background: linear-gradient(160deg, #17CC94 0%, #0F7A57 100%);
  color: #ffffff;
  box-shadow: 0 30px 60px -20px rgba(23, 204, 148, 0.45);
  overflow: visible;
}
.weare-card--active .weare-card__desc { color: rgba(255, 255, 255, 0.88); }
.weare-card__emerge {
  position: absolute;
  top: -90px;
  right: -10px;
  width: 200px;
  max-width: 80%;
  height: auto;
  pointer-events: none;
  z-index: 3;
  transform: rotate(-6deg);
  filter:
    drop-shadow(0 4px 4px rgba(0, 0, 0, 0.4))
    drop-shadow(0 16px 12px rgba(2, 26, 18, 0.65));
  -webkit-mask-image: linear-gradient(180deg, #000 55%, rgba(0,0,0,0.6) 72%, rgba(0,0,0,0.15) 90%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 55%, rgba(0,0,0,0.6) 72%, rgba(0,0,0,0.15) 90%, transparent 100%);
}
/* spill light wide across upper card (contained) */
.weare-card--active .weare-card__spill {
  position: absolute;
  top: -10px;
  right: -40px;
  width: 100%;
  height: 55%;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(31, 224, 164, 0.45), transparent 65%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
/* emerge point: bright crack of light where brain comes through */
.weare-card--active .weare-card__contact {
  position: absolute;
  top: 70px;
  right: 25px;
  width: 170px;
  height: 30px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.85), rgba(31, 224, 164, 0.65) 30%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
/* contact shadow below the bright crack */
.weare-card--active .weare-card__contact::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  width: 80%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(0, 26, 18, 0.55), transparent 70%);
  filter: blur(6px);
  mix-blend-mode: multiply;
}
.weare-card__check { display: none; }
.weare-card--active .weare-card__title,
.weare-card--active .weare-card__desc { position: relative; z-index: 4; }

/* ═════ Processo Bento OCTO style ═════ */
.proc {
  position: relative;
  padding: var(--pad-section) 0;
  background: transparent;
  overflow: hidden;
}
.proc--journey {
  height: 135vh;
  padding: 0;
  overflow: visible;
}
.proc--journey .proc__deco { display: none; }
.proc__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 40px;
  box-sizing: border-box;
}
.proc__pin > .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
}
.proc__pin .proc__head {
  flex: 0 0 auto;
}
.proc__pin .proc__manifesto {
  flex: 0 0 auto;
  margin: 0;
}
.site-network {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vh;
  height: 100vw;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  object-fit: cover;
  opacity: 0.10;
  filter: saturate(0.45) brightness(0.85);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: radial-gradient(circle 90px at 4% 4%, transparent 65%, #000 100%);
  mask-image: radial-gradient(circle 90px at 4% 4%, transparent 65%, #000 100%);
}
.proc::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(1100px, 90vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 55%, rgba(23, 204, 148, 0.42) 0%, rgba(23, 204, 148, 0.18) 28%, transparent 60%),
    radial-gradient(circle at 65% 45%, rgba(31, 224, 164, 0.28) 0%, transparent 55%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.proc__deco {
  position: absolute;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: transparent;
  background: linear-gradient(180deg, rgba(23, 204, 148, 0.22), rgba(23, 204, 148, 0.04));
  -webkit-background-clip: text;
          background-clip: text;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  line-height: 1;
}
.proc__deco--tr { top: 8%; right: 10%; font-size: clamp(3.75rem, 8.25vw, 6.75rem); }
.proc__deco--bl { bottom: 8%; left: 10%; font-size: clamp(3.75rem, 8.25vw, 6.75rem); }
.proc .wrap { position: relative; z-index: 1; }

/* ═════ JOURNEY — vertical scroll-trap with rail + brackets cards ═════ */
.journey {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 32px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  position: relative;
  min-height: 0;
}

/* Left visuals */
.journey__visuals {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  justify-self: center;
  color: rgba(255, 255, 255, 0.92);
}
.journey__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 12%;
  box-sizing: border-box;
  opacity: 0;
  transform: translate(-60px, 20px) scale(0.9);
  filter: blur(12px)
    drop-shadow(0 0 18px rgba(23, 204, 148, 0.55))
    drop-shadow(0 0 42px rgba(23, 204, 148, 0.3));
  transition:
    opacity .55s cubic-bezier(.2,.7,.2,1),
    transform .65s cubic-bezier(.2,.7,.2,1),
    filter .55s ease;
}
.journey__visual--prev {
  opacity: 0;
  transform: translate(60px, -20px) scale(0.9);
  filter: blur(12px);
}
.journey__visual--active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0)
    drop-shadow(0 0 22px rgba(23, 204, 148, 0.7))
    drop-shadow(0 0 48px rgba(23, 204, 148, 0.4));
  animation: journeyVisualIn .8s cubic-bezier(.2,.7,.2,1);
}
@keyframes journeyVisualIn {
  0% { opacity: 0; transform: translate(-60px, 20px) scale(0.85); filter: blur(14px); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); filter: blur(0); }
}

/* Center rail */
.journey__rail {
  position: relative;
  width: 60px;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}
.journey__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(23, 204, 148, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.journey__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(23, 204, 148, 0.2) 0%, var(--green-100) 60%, var(--green-100) 100%);
  box-shadow: 0 0 18px var(--green-100), 0 0 32px rgba(23, 204, 148, 0.6);
  transition: height .35s cubic-bezier(.2,.7,.2,1);
}
.journey__steps {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.journey__step-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(23, 204, 148, 0.18);
  border: 1px solid rgba(23, 204, 148, 0.35);
  transition: all .35s ease;
}
.journey__step-mark.is-active {
  background: var(--green-100);
  box-shadow: 0 0 14px var(--green-100), 0 0 28px rgba(23, 204, 148, 0.7);
  transform: scale(1.3);
}
.journey__indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top .35s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 2;
}
.journey__indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-100);
  box-shadow: 0 0 16px var(--green-100), 0 0 32px rgba(23, 204, 148, 0.7);
}
.journey__indicator-pulse {
  position: absolute;
  inset: -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 204, 148, 0.4), transparent 70%);
  animation: journeyPulse 2.5s ease-in-out infinite;
}
@keyframes journeyPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* Right cards stack — only active visible */
.journey__cards {
  position: relative;
  max-width: 640px;
  width: 100%;
  min-height: 360px;
}
.journey__card {
  position: absolute;
  inset: 0;
  padding: 36px 40px;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(8, 16, 14, 0.7) 0%, rgba(4, 10, 8, 0.7) 100%);
  border: 1px solid rgba(23, 204, 148, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translate(80px, 30px) scale(0.92);
  filter: blur(12px);
  transition:
    opacity .45s cubic-bezier(.2,.7,.2,1),
    transform .55s cubic-bezier(.2,.7,.2,1),
    filter .45s ease;
  pointer-events: none;
}
.journey__card--prev {
  opacity: 0;
  transform: translate(-80px, -30px) scale(0.92);
  filter: blur(12px);
}
.journey__card--active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 2;
  animation: journeyCardIn .7s cubic-bezier(.2,.7,.2,1);
}

/* Color variants — alternating */
.journey__card--v1 {
  background: linear-gradient(155deg, rgba(8, 28, 22, 0.85) 0%, rgba(4, 14, 10, 0.85) 100%);
  border-color: rgba(23, 204, 148, 0.2);
}
.journey__card--v1.journey__card--active {
  border-color: rgba(23, 204, 148, 0.5);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 50px rgba(23, 204, 148, 0.22), inset 0 0 24px rgba(23, 204, 148, 0.08);
}
.journey__card--v2 {
  background: linear-gradient(155deg, rgba(23, 204, 148, 0.92) 0%, rgba(15, 122, 87, 0.92) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  color: #021A12;
}
.journey__card--v2.journey__card--active {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 60px rgba(23, 204, 148, 0.55), inset 0 0 30px rgba(255, 255, 255, 0.08);
}
.journey__card--v2 .journey__title { color: #021A12; }
.journey__card--v2 .journey__desc { color: rgba(2, 26, 18, 0.78); }
.journey__card--v2 .journey__num { color: #021A12; text-shadow: 0 0 18px rgba(255, 255, 255, 0.3); }
.journey__card--v2 .journey__bracket { border-color: #ffffff; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7)); }
.journey__card--v2.journey__card--active .journey__bracket { animation: journeyBracketWhite 2.5s ease-in-out infinite; }
@keyframes journeyBracketWhite {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7)); }
  50% { filter: drop-shadow(0 0 16px rgba(255, 255, 255, 1)) drop-shadow(0 0 28px rgba(23, 204, 148, 0.7)); }
}

.journey__card--v3 {
  background: linear-gradient(155deg, rgba(4, 22, 24, 0.88) 0%, rgba(2, 10, 12, 0.92) 100%);
  border-color: rgba(23, 204, 148, 0.16);
}
.journey__card--v3.journey__card--active {
  border-color: rgba(23, 204, 148, 0.45);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 50px rgba(23, 204, 148, 0.2), inset 0 0 30px rgba(23, 204, 148, 0.06);
}

.journey__card--v4 {
  background:
    radial-gradient(circle at 80% 20%, rgba(23, 204, 148, 0.18), transparent 50%),
    linear-gradient(155deg, rgba(6, 24, 18, 0.88) 0%, rgba(2, 12, 8, 0.92) 100%);
  border-color: rgba(23, 204, 148, 0.28);
}
.journey__card--v4.journey__card--active {
  border-color: rgba(23, 204, 148, 0.6);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 60px rgba(23, 204, 148, 0.3), inset 0 0 36px rgba(23, 204, 148, 0.1);
}

.journey__card--v5 {
  background: linear-gradient(155deg, rgba(23, 204, 148, 0.92) 0%, rgba(15, 122, 87, 0.92) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  color: #021A12;
}
.journey__card--v5.journey__card--active {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 60px rgba(23, 204, 148, 0.55), inset 0 0 30px rgba(255, 255, 255, 0.08);
}
.journey__card--v5 .journey__title { color: #021A12; }
.journey__card--v5 .journey__desc { color: rgba(2, 26, 18, 0.78); }
.journey__card--v5 .journey__num { color: #021A12; text-shadow: 0 0 18px rgba(255, 255, 255, 0.3); }
.journey__card--v5 .journey__bracket { border-color: #ffffff; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7)); }
.journey__card--v5.journey__card--active .journey__bracket { animation: journeyBracketWhite 2.5s ease-in-out infinite; }

.journey__card--v6 {
  background:
    radial-gradient(circle at 20% 80%, rgba(23, 204, 148, 0.22), transparent 55%),
    linear-gradient(155deg, rgba(8, 28, 22, 0.85) 0%, rgba(2, 12, 8, 0.92) 100%);
  border-color: rgba(23, 204, 148, 0.24);
}
.journey__card--v6.journey__card--active {
  border-color: rgba(23, 204, 148, 0.55);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 70px rgba(23, 204, 148, 0.35), inset 0 0 40px rgba(23, 204, 148, 0.12);
}
@keyframes journeyCardIn {
  0% { opacity: 0; transform: translate(80px, 30px) scale(0.92); filter: blur(12px); }
  60% { filter: blur(0); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); filter: blur(0); }
}

/* Brackets */
.journey__bracket {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--green-100);
  border-style: solid;
  border-width: 0;
  filter: drop-shadow(0 0 10px rgba(23, 204, 148, 0.85));
  opacity: 0;
  transition: opacity .35s ease;
}
.journey__card--active .journey__bracket { opacity: 1; animation: journeyBracket 2.5s ease-in-out infinite; }
.journey__card--active .journey__bracket--tr { animation-delay: 0.4s; }
.journey__card--active .journey__bracket--bl { animation-delay: 0.8s; }
.journey__card--active .journey__bracket--br { animation-delay: 1.2s; }
@keyframes journeyBracket {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(23, 204, 148, 0.85)); }
  50% { filter: drop-shadow(0 0 18px rgba(23, 204, 148, 1)) drop-shadow(0 0 30px rgba(23, 204, 148, 0.6)); }
}
.journey__bracket--tl { top: -2px; left: -2px; border-top-width: 2.5px; border-left-width: 2.5px; }
.journey__bracket--tr { top: -2px; right: -2px; border-top-width: 2.5px; border-right-width: 2.5px; }
.journey__bracket--bl { bottom: -2px; left: -2px; border-bottom-width: 2.5px; border-left-width: 2.5px; }
.journey__bracket--br { bottom: -2px; right: -2px; border-bottom-width: 2.5px; border-right-width: 2.5px; }

.journey__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.journey__num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--green-100);
  line-height: 1;
  text-shadow: 0 0 24px rgba(23, 204, 148, 0.5);
}
.journey__time {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(23, 204, 148, 0.85);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(23, 204, 148, 0.3);
  background: rgba(23, 204, 148, 0.06);
  white-space: nowrap;
}
.journey__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
}
.journey__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (max-width: 900px) {
  .proc--journey {
    height: auto;
    padding: var(--pad-section) 0;
  }
  .proc__pin {
    position: relative;
    height: auto;
    padding: 0;
  }
  .journey {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journey__rail,
  .journey__visuals { display: none; }
  .journey__cards {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .journey__card {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    filter: none;
    pointer-events: auto;
  }
}

/* ═════ MINDMAP — radial 6 nodes around central hub ═════ */
.mindmap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 56px auto 0;
  aspect-ratio: 1100 / 780;
  min-height: 720px;
}
.mindmap__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.mindmap__line {
  fill: none;
  stroke: url(#mmGrad);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  opacity: 0.7;
  filter: drop-shadow(0 0 6px rgba(23, 204, 148, 0.45));
  stroke-dashoffset: 0;
  animation: mmDash 22s linear infinite;
}
@keyframes mmDash {
  to { stroke-dashoffset: -280; }
}

.mindmap__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(23, 204, 148, 0.35), transparent 60%),
    linear-gradient(155deg, #0F2A1F 0%, #050E0A 80%);
  border: 1px solid rgba(23, 204, 148, 0.35);
  box-shadow:
    0 0 80px rgba(23, 204, 148, 0.35),
    inset 0 0 40px rgba(23, 204, 148, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  z-index: 2;
}
.mindmap__hub-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-100);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 204, 148, 0.4);
  background: rgba(23, 204, 148, 0.08);
}
.mindmap__hub-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #ffffff;
  margin: 14px 0 0;
}
.mindmap__hub-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 204, 148, 0.25), transparent 65%);
  z-index: -1;
  animation: mmHubPulse 6s ease-in-out infinite;
}
@keyframes mmHubPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.mindmap__node {
  position: absolute;
  width: 240px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(12, 26, 26, 0.95) 0%, rgba(5, 12, 10, 0.95) 100%);
  border: 1px solid rgba(23, 204, 148, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.75);
  z-index: 3;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.mindmap__node:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(23, 204, 148, 0.5);
  box-shadow:
    0 22px 60px -20px rgba(23, 204, 148, 0.5),
    0 0 30px rgba(23, 204, 148, 0.2);
}
.mindmap__node--n3:hover,
.mindmap__node--n6:hover {
  transform: translateY(calc(-50% - 4px)) scale(1.03);
}
.mindmap__num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green-100);
  display: block;
  line-height: 1;
}
.mindmap__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 8px 0 6px;
}
.mindmap__desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* Node positions — 3 left col / 3 right col, hub centered */
.mindmap__node--n1 { left: 0; top: 2%; }
.mindmap__node--n6 { left: 0; top: 50%; transform: translateY(-50%); }
.mindmap__node--n5 { left: 0; bottom: 2%; }
.mindmap__node--n2 { right: 0; top: 2%; }
.mindmap__node--n3 { right: 0; top: 50%; transform: translateY(-50%); }
.mindmap__node--n4 { right: 0; bottom: 2%; }

@media (max-width: 900px) {
  .mindmap {
    aspect-ratio: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mindmap__lines, .mindmap__hub-glow { display: none; }
  .mindmap__hub {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 22px;
    aspect-ratio: auto;
    padding: 32px;
  }
  .mindmap__node {
    position: relative;
    inset: auto;
    width: 100%;
  }
}

.proc__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 204, 148, 0.35);
  background: rgba(23, 204, 148, 0.08);
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-100);
  margin-bottom: 18px;
}
.mindmap__node-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mindmap__time {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: rgba(23, 204, 148, 0.85);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(23, 204, 148, 0.28);
  background: rgba(23, 204, 148, 0.06);
  white-space: nowrap;
}
.proc__manifesto {
  margin: 64px auto 0;
  max-width: 56ch;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.proc__manifesto strong {
  color: #ffffff;
  font-weight: 800;
}

.proc__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 800px) {
  .proc__head { grid-template-columns: 1fr; }
}
.proc__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-top: 18px;
}
.proc__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.proc__sub {
  color: var(--text-2);
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.6;
}

.proc-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, minmax(240px, auto));
  gap: 16px;
}
@media (max-width: 900px) { .proc-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-auto-rows: minmax(200px, auto); } }
@media (max-width: 540px) { .proc-bento { grid-template-columns: 1fr; } }

/* OCTO asymmetric: same row-heights, horizontal offset */
.proc-c--p1 { grid-column: 2 / span 2; grid-row: 1; }
.proc-c--p2 { grid-column: 4 / span 3; grid-row: 1; }
.proc-c--p3 { grid-column: 1 / span 2; grid-row: 2; }
.proc-c--p4 { grid-column: 3 / span 2; grid-row: 2; }
.proc-c--p5 { grid-column: 2 / span 2; grid-row: 3; }
.proc-c--p6 { grid-column: 5 / span 2; grid-row: 3; }

@media (max-width: 900px) {
  .proc-c--p1, .proc-c--p2, .proc-c--p3, .proc-c--p4, .proc-c--p5, .proc-c--p6 {
    grid-column: auto; grid-row: auto;
  }
  .proc-c--p2 { grid-column: span 2; }
}

.proc-c {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
  isolation: isolate;
  min-height: 0;
}
.proc-c__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-end;
  margin-top: auto;
}
.proc-c::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(23, 204, 148, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: -1;
}
.proc-c:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -25px rgba(23, 204, 148, 0.35);
}
.proc-c:hover::before { opacity: 1; }

.proc-c--light {
  background: #F6F6F4;
  color: #0B1A12;
}
.proc-c--accent {
  background: linear-gradient(160deg, #17CC94 0%, #0F7A57 100%);
  color: #ffffff;
  box-shadow: 0 22px 50px -20px rgba(23, 204, 148, 0.45);
}
.proc-c--dark {
  background: #0C1A1A;
  color: #ffffff;
  border: 1px solid rgba(23, 204, 148, 0.18);
}

.proc-c__num {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green-100);
  line-height: 1;
  align-self: flex-start;
}
.proc-c__num--light { color: rgba(255, 255, 255, 0.95); }
.proc-c--accent .proc-c__num { color: #ffffff; }

.proc-c__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: inherit;
  margin: 0;
  align-self: flex-start;
}
.proc-c--p2 .proc-c__title { font-size: 1.5rem; }

.proc-c__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 4px;
}
.proc-c--light .proc-c__desc { color: rgba(11, 26, 18, 0.68); }
.proc-c--accent .proc-c__desc { color: rgba(255, 255, 255, 0.88); }
.proc-c--dark .proc-c__desc { color: rgba(255, 255, 255, 0.62); }

.proc-c__time {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(11, 26, 18, 0.06);
  border: 1px solid rgba(11, 26, 18, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-300);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.proc-c__time--light {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
.proc-c--accent .proc-c__time {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* internal blob/glow on accent card */
.proc-c__blob {
  position: absolute;
  top: -30%;
  right: -25%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.15) 40%, transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(31, 224, 164, 0.40), transparent 65%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
  animation: procPulse 7s ease-in-out infinite;
}
.proc-c__blob::before,
.proc-c__blob::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}
.proc-c__blob::before {
  inset: 35% -35% -25% 45%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 65%);
  animation: procDrift 9s ease-in-out infinite;
}
.proc-c__blob::after {
  inset: -20% 50% 40% -10%;
  background: radial-gradient(circle, rgba(31, 224, 164, 0.55), transparent 60%);
  animation: procDrift 11s ease-in-out infinite reverse;
}
@keyframes procPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12) rotate(8deg); opacity: 1; }
}
@keyframes procDrift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-8%, 5%); }
  66% { transform: translate(6%, -8%); }
}

/* neon border motion — conic gradient sweep */
@property --procAngle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.proc-c::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2.5px;
  background: conic-gradient(
    from var(--procAngle),
    transparent 0deg,
    rgba(31, 224, 164, 0.15) 15deg,
    rgba(31, 224, 164, 1) 70deg,
    rgba(31, 224, 164, 1) 130deg,
    rgba(31, 224, 164, 0.25) 190deg,
    transparent 220deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  filter:
    drop-shadow(0 0 4px rgba(31, 224, 164, 0.6))
    drop-shadow(0 0 12px rgba(31, 224, 164, 0.35));
  animation: procBorderSpin 4s linear infinite;
  pointer-events: none;
  opacity: 1;
}
.proc-c--p1::after { animation-delay: -0.0s; }
.proc-c--p2::after { animation-delay: -0.7s; opacity: 0.7; }
.proc-c--p3::after { animation-delay: -1.4s; opacity: 0.7; }
.proc-c--p4::after { animation-delay: -2.1s; }
.proc-c--p5::after { animation-delay: -2.8s; }
.proc-c--p6::after { animation-delay: -3.5s; }
.proc-c--light::after {
  background: conic-gradient(
    from var(--procAngle),
    transparent 0deg,
    rgba(15, 122, 87, 0.2) 15deg,
    rgba(15, 122, 87, 1) 70deg,
    rgba(11, 70, 50, 1) 130deg,
    rgba(11, 70, 50, 0.3) 190deg,
    transparent 220deg,
    transparent 360deg
  );
  filter:
    drop-shadow(0 0 4px rgba(15, 122, 87, 0.55))
    drop-shadow(0 0 10px rgba(15, 122, 87, 0.3));
  opacity: 1;
}
@keyframes procBorderSpin {
  to { --procAngle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .proc-c::after { animation: none; opacity: 0.35; }
}

/* reveal stagger via existing data-reveal mechanism */
.proc-c[data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.proc-c[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ═════ Workflows (OCTO data-style) ═════ */
.wf {
  position: relative;
  background: transparent;
  height: 200vh;
}
.wf__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 0 30px;
  box-sizing: border-box;
}
.wf__wrap {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) 1.4fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1100px) {
  .wf { height: auto; }
  .wf__pin { position: relative; height: auto; padding: 90px 0; }
  .wf__wrap { grid-template-columns: 1fr; gap: 40px; align-items: start; }
}
.wf__head { }
.wf__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.wf__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.wf__sub {
  margin-top: 24px;
  color: var(--text-2);
  max-width: 38ch;
  font-size: 1rem;
  line-height: 1.6;
}
.wf__carousel-wrap {
  position: relative;
  overflow: hidden;
}
.wf__track {
  display: flex;
  gap: 18px;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 6px 6px 6px;
  margin: -6px -6px 0;
}
.wf__track::-webkit-scrollbar { display: none; }
.wf-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  padding: 28px;
  border-radius: 28px;
  background: #F6F6F4;
  color: #0B1A12;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.wf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.40);
}
.wf-card--lg { flex: 0 0 380px; }
.wf-card--accent {
  background: linear-gradient(160deg, #17CC94 0%, #0F7A57 100%);
  color: #ffffff;
}
.wf-card--accent .wf-card__desc,
.wf-card--accent .wf-card__big-lbl,
.wf-card--accent .wf-step,
.wf-card--accent .wf-stat__lbl { color: rgba(255, 255, 255, 0.85); }
.wf-card--dark {
  background: #0C1A1A;
  color: #ffffff;
  border: 1px solid rgba(23, 204, 148, 0.20);
}
.wf-card--dark .wf-card__desc,
.wf-card--dark .wf-card__big-lbl,
.wf-card--dark .wf-step,
.wf-card--dark .wf-stat__lbl { color: rgba(255, 255, 255, 0.65); }
.wf-card__head { display: flex; flex-direction: column; gap: 10px; }
.wf-card__num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.30);
}
.wf-card__num--light { color: rgba(255, 255, 255, 0.45); }
.wf-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: inherit;
  margin: 0;
}
.wf-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(11, 26, 18, 0.62);
}
.wf-card__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.wf-card--accent .wf-card__stats { border-top-color: rgba(255, 255, 255, 0.20); }
.wf-card--dark .wf-card__stats { border-top-color: rgba(255, 255, 255, 0.08); }
.wf-stat { display: flex; flex-direction: column; gap: 2px; }
.wf-stat__num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: inherit;
}
.wf-stat__lbl {
  font-size: 0.6875rem;
  color: rgba(11, 26, 18, 0.55);
  line-height: 1.3;
}
.wf-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wf-chip {
  padding: 6px 12px;
  background: rgba(11, 26, 18, 0.06);
  border: 1px solid rgba(11, 26, 18, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(11, 26, 18, 0.78);
  letter-spacing: -0.005em;
}
.wf-card--accent .wf-chip,
.wf-chip--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
.wf-card--dark .wf-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
}
.wf-card__big {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: auto;
  color: inherit;
}
.wf-card__big--light { color: var(--green-100); }
.wf-card__big-lbl {
  font-size: 0.875rem;
  color: rgba(11, 26, 18, 0.62);
  margin-top: 6px;
}
.wf-card__big-lbl--light { color: rgba(255, 255, 255, 0.65); }

.wf__bar {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-top: 28px;
  overflow: hidden;
}
.wf__bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #17CC94, #1FE0A4);
  border-radius: 999px;
  transition: width .3s;
}
.wf__nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
}
.wf__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.wf__btn:hover {
  border-color: var(--green-100);
  background: rgba(23, 204, 148, 0.10);
  color: var(--green-100);
}
@media (max-width: 1100px) {
  .wf__head { position: relative; top: 0; }
  .wf__track { overflow-x: auto; scroll-snap-type: x mandatory; }
  .wf-card { flex-basis: 80vw; min-height: 320px; scroll-snap-align: center; }
  .wf-card--lg { flex-basis: 86vw; }
}

/* ═════ Stats KPI block (OCTO style) ═════ */
.stats {
  position: relative;
  padding: 100px 0;
  background: transparent;
}
.stats .blob--1 { top: -10%; right: -8%; }
.stats .blob--2 { bottom: -20%; left: -10%; }
.stats__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(23, 204, 148, 0.09);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.stats .wrap { position: relative; z-index: 1; }
.stats__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.stats__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  margin-top: 18px;
  letter-spacing: -0.03em;
}
.stats__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .stats__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .stats__grid { grid-template-columns: 1fr; } }
.stat-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0C1A1A 0%, #061110 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 240px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(23, 204, 148, 0.20), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 204, 148, 0.40);
  box-shadow: 0 30px 70px -30px rgba(23, 204, 148, 0.40);
}
.stat-card--accent::before { background: none; }
.stat-card--accent {
  box-shadow: 0 30px 60px -25px rgba(23, 204, 148, 0.55);
}
.stat-card--accent {
  background: linear-gradient(135deg, #17CC94 0%, #0F7A57 100%);
  color: #021A12;
  border: 0;
}
.stat-card--dark {
  background: #010402;
  border: 1px solid rgba(23, 204, 148, 0.18);
}
.stat-card__value {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card__value sup { font-size: 0.6em; vertical-align: super; }
.stat-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-top: auto;
}
.stat-card__value, .stats__title em { color: inherit; }
.stat-card--accent .stat-card__label { color: #021A12; }
.stat-card__sub {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 4px;
}
.stat-card--accent .stat-card__sub { color: rgba(2, 26, 18, 0.7); }
.stats__cta { display: flex; justify-content: center; margin-top: 44px; }

/* ═════ Bento 01-06 services (OCTO style) ═════ */
.bento-section {
  position: relative;
  background: transparent;
}
.bento-deco {
  position: absolute;
  bottom: -3%;
  left: -8%;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(23, 204, 148, 0.09);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.bento-section .wrap { position: relative; z-index: 1; }
.bento-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
}
.bento-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  margin-top: 18px;
  letter-spacing: -0.03em;
}
.bento-title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.bento-sub {
  color: var(--text-2);
  max-width: 36ch;
  font-size: 0.9375rem;
}
@media (max-width: 760px) {
  .bento-head { grid-template-columns: 1fr; }
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 18px;
}
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .bento { grid-template-columns: 1fr; } }
.bento-card {
  position: relative;
  padding: 36px;
  border-radius: 28px;
  background: var(--light-bg);
  color: var(--light-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.bento-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 204, 148, 0.18), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -30px rgba(23, 204, 148, 0.40);
}
.bento-card:hover::after { opacity: 1; }
.bento-card--lg { grid-column: span 2; grid-row: span 2; }
.bento-card--tall { grid-row: span 2; }
.bento-card--wide { grid-column: span 2; }
@media (max-width: 900px) {
  .bento-card--lg, .bento-card--tall, .bento-card--wide {
    grid-column: auto;
    grid-row: auto;
  }
}
.bento-card--accent {
  background: linear-gradient(135deg, #17CC94 0%, #0F7A57 100%);
  color: #021A12;
}
.bento-card--dark {
  background: #0C1A1A;
  color: var(--text);
  border: 1px solid rgba(23, 204, 148, 0.18);
}
.bento-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
}
.bento-card--accent .bento-num { color: rgba(2, 26, 18, 0.6); }
.bento-card--dark .bento-num { color: rgba(255, 255, 255, 0.4); }
.bento-card__title {
  font-size: clamp(1.4rem, 2.2vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 4px 0 8px;
  color: inherit;
}
.bento-card__desc {
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.5;
  max-width: 36ch;
}
.bento-card--accent .bento-card__desc { color: rgba(2, 26, 18, 0.8); }
.bento-card--dark .bento-card__desc { color: var(--text-2); }
.bento-card__chip {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--light-text);
}
.bento-card--accent .bento-card__chip {
  background: rgba(2, 26, 18, 0.15);
  color: #021A12;
}
.bento-card--dark .bento-card__chip {
  background: rgba(23, 204, 148, 0.10);
  color: var(--green-100);
}

/* ═════ Phones stacked sticky scroll ═════ */
.phones-section {
  position: relative;
  background: transparent;
}
.phones-deco {
  position: absolute;
  top: 8%;
  left: -8%;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(23, 204, 148, 0.09);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.phones-section .wrap { position: relative; z-index: 1; }
.phones-head { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.phones-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 18px;
}
.phones-title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.phones-sub { margin: 18px auto 0; max-width: 50ch; }
.phones-stack {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
}
.phone-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 60px;
  position: sticky;
  top: 100px;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(12, 26, 26, 0.95) 0%, rgba(6, 17, 16, 0.95) 100%);
  border: 1px solid rgba(23, 204, 148, 0.14);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.phone-card:nth-child(even) {
  grid-template-columns: 320px 1fr;
}
.phone-card:nth-child(even) .phone-card__head { order: 2; }
.phone-card:nth-child(even) .phone-mock { order: 1; }
.phone-card__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(23, 204, 148, 0.10);
  border: 1px solid rgba(23, 204, 148, 0.28);
  color: var(--green-100);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.phone-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 18px 0 16px;
}
.phone-card__desc {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 44ch;
}
.phone-mock {
  width: 100%;
  height: auto;
  max-width: 320px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(23, 204, 148, 0.18));
}
.phone-card--1 { z-index: 1; }
.phone-card--2 { z-index: 2; transform: translateY(0); }
.phone-card--3 { z-index: 3; }
@media (max-width: 900px) {
  .phone-card,
  .phone-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
    position: relative;
    top: 0;
  }
  .phone-card:nth-child(even) .phone-card__head { order: 1; }
  .phone-card:nth-child(even) .phone-mock { order: 2; }
  .phones-stack { gap: 32px; }
}

/* ═════ Sections base ═════ */
.section {
  padding: var(--pad-section) 0;
  position: relative;
}
.section--light {
  background: transparent;
  color: var(--text);
}
.section--light .lead { color: var(--text-2); }
.section--light h2,
.section--light h3 { color: var(--text); }
.section--green {
  background: linear-gradient(135deg, #1DA578 0%, #148362 100%);
  color: #fff;
}

.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section__head .lead { margin: 16px auto 0; }

/* ═════ Pensado pra você (split) ═════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.split__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.split__list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.split__list li::before {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-100);
  display: grid;
  place-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23021A12' 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-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* ═════ Vantagens (light cards 2x2) ═════ */
.vant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.vant-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px -30px rgba(20, 131, 98, 0.32);
  border-color: rgba(23, 204, 148, 0.40);
}
.vant-card__top { display: flex; flex-direction: column; gap: 14px; }
.vant-card__title { font-size: 1.5rem; line-height: 1.2; }
.vant-card__desc { color: var(--light-text-2); font-size: 0.9375rem; max-width: 38ch; }
.vant-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-300);
}
.vant-card__visual {
  margin-top: auto;
  height: 140px;
  border-radius: 14px;
  background: linear-gradient(180deg, #F6FAF8 0%, #ECF5F0 100%);
  position: relative;
  overflow: hidden;
}
.vant-card__visual svg { width: 100%; height: 100%; }

@media (max-width: 760px) { .vant-grid { grid-template-columns: 1fr; } }

/* ═════ Depoimentos light ═════ */
.depo {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.depo__videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.depo__video {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #E5E7EB 0%, #CFD3D9 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.depo__video svg.depo__play {
  width: 56px; height: 56px;
}
.depo__avatars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}
.depo__avatars-stack {
  display: flex;
}
.depo__avatars-stack .av {
  margin-left: -10px;
  border: 2px solid var(--light-bg);
}
.depo__avatars-stack .av:first-child { margin-left: 0; }
.depo__count {
  font-size: 0.875rem;
  color: var(--light-text-2);
  font-weight: 600;
  margin-left: 6px;
}

@media (max-width: 860px) {
  .depo { grid-template-columns: 1fr; gap: 32px; }
}

/* ═════ Avatares SVG genéricos ═════ */
.av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #02110A;
  flex-shrink: 0;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #17CC94, #148362);
}
.av--lg { width: 96px; height: 96px; font-size: 1.5rem; }

/* ═════ Beneficios (dark with portrait) ═════ */
.benef {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.benef__media {
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}
.benef__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.benef__chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.benef__chip-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.benef__chip-desc {
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.5;
}

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

/* ═════ Banco hecho para ti (5 dark feature cards + phone center) ═════ */
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  margin-top: 56px;
}
.serv-card {
  background: linear-gradient(180deg, #0C1A1A 0%, #061110 100%);
  border: 1px solid rgba(23, 204, 148, 0.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.serv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 204, 148, 0.5), transparent);
}
.serv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 204, 148, 0.4);
  box-shadow: 0 22px 60px -22px rgba(23, 204, 148, 0.20);
}
.serv-card__visual {
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  position: relative;
}
.serv-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(23, 204, 148, 0.35), transparent 70%);
  filter: blur(10px);
}
.serv-card__visual::after {
  content: '';
  position: absolute;
  inset: auto 25% -2px 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 204, 148, 0.6), transparent);
}
.serv-card__title { font-size: 1.125rem; margin-bottom: 8px; }
.serv-card__desc { font-size: 0.875rem; color: var(--text-3); line-height: 1.55; }

.serv-card--center {
  grid-row: span 2;
  background: var(--grad-dark);
  border: 1px solid rgba(23, 204, 148, 0.28);
  display: grid;
  place-items: center;
  padding: 32px;
}
.serv-card--center .serv-card__phone {
  width: 100%;
  max-width: 240px;
}

@media (max-width: 900px) {
  .serv-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .serv-card--center { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 600px) {
  .serv-grid { grid-template-columns: 1fr; }
  .serv-card--center { grid-column: auto; }
}

/* ═════ Diferencial cards 4 portraits ═════ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.diff-card {
  background: var(--surface);
  border: 1px solid rgba(23, 204, 148, 0.18);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease;
}
.diff-card:hover { transform: translateY(-4px); }
.diff-card__media {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
}
.diff-card__title { font-size: 1.0625rem; }
.diff-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-100);
}

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

/* ═════ Comissões / cases isométricos (light) ═════ */
.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.comm-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comm-card__visual {
  margin-top: auto;
  height: 200px;
  display: grid;
  place-items: center;
}

@media (max-width: 700px) { .comm-grid { grid-template-columns: 1fr; } }

/* ═════ Green section ═════ */
.green-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.green-split__media {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section--green .btn--primary {
  background: #02261A;
  color: var(--green-100);
  box-shadow: none;
}
.section--green .btn--primary:hover {
  background: #021A12;
}

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

/* ═════ Processo (light, 3 cards portraits) ═════ */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.proc-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.proc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px -25px rgba(20, 131, 98, 0.30);
}
.proc-card__head {
  padding: 28px 28px 18px;
}
.proc-card__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #17CC94, #1DA578);
  display: grid;
  place-items: center;
  color: #02110A;
  margin-bottom: 14px;
}
.proc-card--alt { background: linear-gradient(135deg, #17CC94 0%, #1DA578 100%); color: #fff; }
.proc-card--alt h3 { color: #fff; }
.proc-card--alt .proc-card__desc { color: rgba(255,255,255,0.85); }
.proc-card--alt .proc-card__icon { background: rgba(255,255,255,0.18); color: #fff; }
.proc-card__title { font-size: 1.25rem; margin-bottom: 8px; }
.proc-card__desc { font-size: 0.875rem; color: var(--light-text-2); line-height: 1.5; }
.proc-card__media {
  height: 220px;
  background: linear-gradient(180deg, #E5E7EB 0%, #CFD3D9 100%);
  overflow: hidden;
}

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

/* ═════ FAQ light ═════ */
.faq--light {
  background: #F5F4EF;
  color: #0B1A12;
  position: relative;
  z-index: 1;
}
.faq--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 20%, rgba(23, 204, 148, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.faq--light .wrap { position: relative; z-index: 1; }
.faq--light .faq__title { color: #0B1A12; }
.faq--light .faq__intro { color: rgba(11, 26, 18, 0.62); }
.faq--light .faq__item { border-bottom-color: rgba(11, 26, 18, 0.10); }
.faq--light .faq__item:hover { border-bottom-color: rgba(15, 122, 87, 0.4); }
.faq--light .faq__item[open] { border-bottom-color: rgba(15, 122, 87, 0.55); }
.faq--light .faq__q { color: rgba(11, 26, 18, 0.92); }
.faq--light .faq__q:hover { color: #0B1A12; }
.faq--light .faq__icon {
  background: rgba(15, 122, 87, 0.08);
  border-color: rgba(15, 122, 87, 0.3);
  color: var(--green-300);
}
.faq--light .faq__item:hover .faq__icon {
  background: rgba(15, 122, 87, 0.18);
  color: var(--green-300);
}
.faq--light .faq__a {
  color: rgba(11, 26, 18, 0.65);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.faq__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #ffffff;
  margin: 0;
}
.faq__intro {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}
.faq__list { display: grid; gap: 0; }
.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  transition: border-color .25s ease;
}
.faq__item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.faq__item:hover { border-bottom-color: rgba(23, 204, 148, 0.25); }
.faq__item[open] { border-bottom-color: rgba(23, 204, 148, 0.4); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  list-style: none;
  transition: color .25s ease;
}
.faq__q:hover { color: #ffffff; }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 204, 148, 0.08);
  border: 1px solid rgba(23, 204, 148, 0.25);
  color: var(--green-100);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--grad-green, linear-gradient(135deg, #17CC94, #0F7A57));
  color: #021A12;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(23, 204, 148, 0.5);
}
.faq__item:hover .faq__icon {
  background: rgba(23, 204, 148, 0.18);
  color: #ffffff;
}
.faq__a {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 68ch;
}

@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ═════ CTA final dark + floating chips ═════ */
.cta-final {
  position: relative;
  padding: 140px 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(23, 204, 148, 0.08), transparent 70%);
  text-align: center;
  overflow: hidden;
}
.cta-final .wrap { position: relative; z-index: 2; max-width: 720px; }
.cta-final__title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  max-width: 22ch;
  margin: 0 auto;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cta-final__sub {
  margin: 20px auto 36px;
  color: var(--text-2);
  max-width: 50ch;
  font-size: 1.0625rem;
}
.cta-final .hero__chip {
  position: absolute;
  display: inline-flex;
  width: auto;
  max-width: max-content;
  background: #0A1416;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
  white-space: nowrap;
  box-shadow: none;
  color: var(--text);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.cta-final .hero__chip--1 { top: 28%; left: 12%; transform: rotate(-3deg); }
.cta-final .hero__chip--2 { top: 24%; right: 12%; transform: rotate(2deg); }
.cta-final .hero__chip--3 { bottom: 28%; left: 16%; transform: rotate(2deg); }
.cta-final .hero__chip--4 { bottom: 24%; right: 16%; transform: rotate(-2deg); }

@media (max-width: 1100px) {
  .cta-final .hero__chip--1 { top: 18%; left: 4%; }
  .cta-final .hero__chip--2 { top: 14%; right: 4%; }
  .cta-final .hero__chip--3 { bottom: 18%; left: 6%; }
  .cta-final .hero__chip--4 { bottom: 14%; right: 6%; }
}
@media (max-width: 900px) {
  .cta-final { padding: 80px 0; }
  .cta-final .hero__chip { display: none; }
}

/* ═════ Last testimonial split ═════ */
.last-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.last-split__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.last-split__chip {
  position: absolute;
}
.last-split__chip--1 { top: 14%; right: 8%; }
.last-split__chip--2 { bottom: 22%; left: -8%; }
.last-split__chip--3 { bottom: 12%; right: 6%; }

@media (max-width: 900px) {
  .last-split { grid-template-columns: 1fr; }
  .last-split__chip { display: none; }
}

/* ═════ Footer ═════ */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  color: var(--text-2);
  font-size: 0.875rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 204, 148, 0.3), transparent);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__brand p {
  color: var(--text-3);
  font-size: 0.875rem;
  margin-top: 14px;
  max-width: 36ch;
}
.footer__col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin: 0 0 14px;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: var(--text-2);
}
.footer__col a:hover { color: var(--green-100); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 0.8125rem;
}

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ═════ COMPARE — Sistema bom opera junto ═════ */
.compare {
  position: relative;
  padding: var(--pad-section) 0;
  background: transparent;
  overflow: hidden;
}
.compare--light {
  background: #F5F4EF;
  color: #0B1A12;
  z-index: 1;
}
.compare--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(23, 204, 148, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.compare--light .wrap { position: relative; z-index: 1; }
.compare--light .compare__title { color: #0B1A12; }
.compare--light .compare__title em {
  background: linear-gradient(135deg, #0F7A57 0%, #148362 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.compare--light .compare__sub { color: rgba(11, 26, 18, 0.72); }
.compare--light .compare__manifesto em {
  background: linear-gradient(135deg, #0F7A57 0%, #148362 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.compare--light .compare__col--bad {
  background: linear-gradient(155deg, rgba(11, 26, 18, 0.05) 0%, rgba(11, 26, 18, 0.08) 100%);
  border-color: rgba(11, 26, 18, 0.12);
  color: rgba(11, 26, 18, 0.78);
}
.compare--light .compare__col--bad .compare__list li {
  color: rgba(11, 26, 18, 0.78);
}
.compare--light .compare__col--bad .compare__list li:hover {
  color: rgba(11, 26, 18, 0.95);
}
.compare--light .compare__col--good {
  background: linear-gradient(155deg, rgba(23, 204, 148, 0.92) 0%, rgba(15, 122, 87, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: 0 24px 60px -28px rgba(15, 122, 87, 0.45);
}
.compare--light .compare__col--good .compare__tag--good {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.compare--light .compare__col--good .compare__sub-tag,
.compare--light .compare__col--good .compare__sub-tag--good {
  color: rgba(255, 255, 255, 0.85);
}
.compare--light .compare__col--good .compare__col-head {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
.compare--light .compare__col--good .compare__list li {
  color: #ffffff;
}
.compare--light .compare__col--good .compare__icon--good {
  background: #ffffff;
  color: #0F7A57;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}
.compare--light .compare__col--bad .compare__col-head {
  border-bottom-color: rgba(11, 26, 18, 0.1);
}
.compare--light .compare__tag--bad { color: rgba(11, 26, 18, 0.72); }
.compare--light .compare__sub-tag { color: rgba(11, 26, 18, 0.5); }
.compare--light .compare__icon--bad {
  background: rgba(180, 60, 60, 0.08);
  border-color: rgba(180, 60, 60, 0.3);
  color: rgba(180, 60, 60, 0.95);
}
.compare--light .compare__divider-line {
  background: linear-gradient(180deg, transparent 0%, rgba(15, 122, 87, 0.4) 50%, transparent 100%);
}
.compare--light .compare__manifesto { color: #0B1A12; }
.compare--light .compare__cta {
  background: linear-gradient(135deg, #17CC94 0%, #0F7A57 100%);
  border-color: transparent;
  color: #02110A;
  padding: 16px 30px;
  font-size: 0.95rem;
  box-shadow: 0 14px 32px -10px rgba(15, 122, 87, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.compare--light .compare__cta:hover {
  background: linear-gradient(135deg, #1FE0A0 0%, #148362 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(15, 122, 87, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.compare__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.compare__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 204, 148, 0.35);
  background: rgba(23, 204, 148, 0.08);
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-100);
  margin-bottom: 22px;
}
.compare__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 18px;
}
.compare__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.compare__sub {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 auto;
}

.compare__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.compare__col {
  padding: 36px 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.compare__col--bad {
  background: linear-gradient(155deg, rgba(28, 18, 18, 0.7) 0%, rgba(12, 10, 10, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
}
.compare__col--good {
  background: linear-gradient(155deg, rgba(15, 122, 87, 0.18) 0%, rgba(5, 12, 10, 0.6) 100%);
  border: 1px solid rgba(23, 204, 148, 0.28);
  color: #ffffff;
  box-shadow: 0 24px 60px -28px rgba(23, 204, 148, 0.45);
}
.compare__col-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.compare__col--good .compare__col-head {
  border-bottom-color: rgba(23, 204, 148, 0.22);
}
.compare__tag {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.compare__tag--bad { color: rgba(255, 255, 255, 0.55); }
.compare__tag--good { color: var(--green-100); }
.compare__sub-tag {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}
.compare__sub-tag--good { color: rgba(23, 204, 148, 0.7); }

.compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
  padding: 6px 0;
  transition: color .25s ease, transform .25s ease;
}
.compare__col--bad .compare__list li {
  color: rgba(255, 255, 255, 0.55);
}
.compare__col--good .compare__list li {
  color: rgba(255, 255, 255, 0.92);
}
.compare__list li:hover {
  transform: translateX(2px);
}
.compare__col--bad .compare__list li:hover { color: rgba(255, 255, 255, 0.75); }
.compare__col--good .compare__list li:hover { color: #ffffff; }
.compare__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 1px;
}
.compare__icon--bad {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 100, 100, 0.7);
}
.compare__icon--good {
  background: var(--grad-green);
  color: #021A12;
  box-shadow: 0 0 18px rgba(23, 204, 148, 0.5);
}

.compare__divider {
  position: relative;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__divider-line {
  position: absolute;
  inset: 20% 50% 20% 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(23, 204, 148, 0.45) 50%, transparent 100%);
}
.compare__divider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad-green);
  box-shadow: 0 0 24px rgba(23, 204, 148, 0.7);
  animation: compareDot 3s ease-in-out infinite;
}
@keyframes compareDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); box-shadow: 0 0 30px rgba(23, 204, 148, 0.9); }
}

.compare__footer {
  margin-top: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.compare__manifesto {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #ffffff;
  max-width: 28ch;
  margin: 0;
}
.compare__manifesto em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.compare__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(23, 204, 148, 0.5);
  background: rgba(23, 204, 148, 0.08);
  color: var(--green-100);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}
.compare__cta:hover {
  background: rgba(23, 204, 148, 0.16);
  transform: translateY(-2px);
}
.compare__cta-arrow { transition: transform .25s ease; }
.compare__cta:hover .compare__cta-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .compare__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .compare__divider {
    width: 100%;
    height: 40px;
    flex-direction: row;
  }
  .compare__divider-line {
    inset: 50% 20% 50% 20%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(23, 204, 148, 0.45) 50%, transparent 100%);
  }
}

/* ═════ Portrait (Unsplash + duotone SVG filter) ═════ */
.portrait {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #041618;
  isolation: isolate;
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: url(#duo-green) contrast(1.15) brightness(0.95);
  transition: transform .6s ease;
}
/* light sections want softer duotone */
.section--light .portrait img,
.proc-card .portrait img,
.depo__video .portrait img {
  filter: url(#duo-green-light) contrast(1.1) brightness(1.02);
}
.portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(23, 204, 148, 0.45), transparent 60%),
    linear-gradient(180deg, transparent 35%, rgba(1,10,34,0.45) 75%, rgba(1,10,34,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,204,148,0.08), transparent 50%, rgba(1,10,34,0.20));
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}
.section--light .portrait::before {
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(23, 204, 148, 0.30), transparent 60%),
    linear-gradient(180deg, transparent 50%, rgba(20,131,98,0.20) 100%);
}
.section--light .portrait::after { display: none; }
.portrait--natural img {
  filter: contrast(1.05) brightness(1.02) saturate(1.05) !important;
  object-fit: cover;
  object-position: center 18%;
  transform: none;
}
.portrait--natural {
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #1a2a28 0%, #061212 70%, #020807 100%);
}
.portrait--natural::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 0%, rgba(23, 204, 148, 0.22), transparent 60%),
    linear-gradient(180deg, transparent 55%, rgba(1, 10, 18, 0.55) 90%, rgba(1, 10, 18, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}
.portrait--natural::after { display: none; }
/* big hero portrait keeps face brighter at top */
.hero__media .portrait img,
.benef__media .portrait img,
.last-split__media .portrait img,
.green-split__media .portrait img {
  object-position: center 25%;
}
.benef__media .portrait--natural img {
  object-position: center top;
  transform: none;
}

/* ═════ ROOTS section — sistemas que trabalham por você ═════ */
.roots {
  position: relative;
  padding: var(--pad-section) 0;
  background: transparent;
  overflow: hidden;
}
.roots__bg {
  position: absolute;
  inset: -8% -4%;
  width: 108%;
  height: 116%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.92;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: radial-gradient(ellipse 78% 70% at 50% 55%, #000 30%, rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0.25) 85%, transparent 100%);
          mask-image: radial-gradient(ellipse 78% 70% at 50% 55%, #000 30%, rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0.25) 85%, transparent 100%);
  animation: rootsBgBreathe 14s ease-in-out infinite;
}
@keyframes rootsBgBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.roots::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 70%, transparent 0%, rgba(5, 9, 8, 0.35) 55%, rgba(5, 9, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 9, 8, 0.55) 0%, transparent 22%, transparent 65%, rgba(5, 9, 8, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}
.roots__tentacle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 0 90px rgba(23, 204, 148, 0.45))
    drop-shadow(0 0 35px rgba(0, 0, 0, 0.7));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, rgba(0,0,0,0.6) 80%, transparent 100%);
          mask-image: radial-gradient(ellipse at center, #000 55%, rgba(0,0,0,0.6) 80%, transparent 100%);
}
.roots__tentacle--1 {
  top: -14%;
  right: 8%;
  width: 48%;
  max-width: 680px;
  transform: rotate(-22deg);
  animation: rootsTentDrift1 18s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0.85;
}
.roots__tentacle--2 {
  top: 28%;
  left: 4%;
  width: 36%;
  max-width: 520px;
  transform: rotate(-10deg);
  animation: rootsTentDrift2 22s ease-in-out infinite alternate;
  z-index: 4;
  opacity: 0.95;
}
.roots__tentacle--3 {
  bottom: 4%;
  right: 4%;
  width: 30%;
  max-width: 440px;
  transform: rotate(25deg);
  animation: rootsTentDrift3 20s ease-in-out infinite alternate;
  z-index: 4;
  opacity: 0.95;
}
.roots__tentacle--4 {
  bottom: -18%;
  left: 18%;
  width: 50%;
  max-width: 720px;
  transform: rotate(-18deg);
  animation: rootsTentDrift4 24s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0.85;
}
@keyframes rootsTentDrift1 {
  0%   { transform: rotate(-22deg) translate(0, 0); }
  100% { transform: rotate(-19deg) translate(-1%, 1%); }
}
@keyframes rootsTentDrift2 {
  0%   { transform: rotate(-10deg) translate(0, 0); }
  100% { transform: rotate(-7deg) translate(1%, -0.8%); }
}
@keyframes rootsTentDrift3 {
  0%   { transform: rotate(25deg) translate(0, 0); }
  100% { transform: rotate(21deg) translate(-0.8%, -1%); }
}
@keyframes rootsTentDrift4 {
  0%   { transform: rotate(-18deg) translate(0, 0); }
  100% { transform: rotate(-15deg) translate(0.8%, 0.8%); }
}
@media (max-width: 900px) {
  .roots__tentacle--1, .roots__tentacle--3 { width: 70%; }
  .roots__tentacle--2, .roots__tentacle--4 { width: 65%; }
}

.roots__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 55%, rgba(23, 204, 148, 0.14) 0%, transparent 50%);
  mix-blend-mode: screen;
  animation: rootsAtmoPulse 9s ease-in-out infinite;
}
@keyframes rootsAtmoPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.roots__fog {
  position: absolute;
  inset: -10%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(ellipse 50% 30% at 30% 45%, rgba(31, 224, 164, 0.12), transparent 70%),
    radial-gradient(ellipse 55% 35% at 70% 60%, rgba(31, 224, 164, 0.10), transparent 70%),
    radial-gradient(ellipse 40% 25% at 50% 80%, rgba(31, 224, 164, 0.15), transparent 70%);
  filter: blur(40px);
  mix-blend-mode: screen;
  animation: rootsFogDrift 22s ease-in-out infinite alternate;
}
@keyframes rootsFogDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-3%, 2%) scale(1.06); }
  100% { transform: translate(3%, -2%) scale(1.03); }
}
.roots__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(2px 2px at 18% 28%, rgba(31, 224, 164, 0.85), transparent 60%),
    radial-gradient(1.5px 1.5px at 72% 18%, rgba(31, 224, 164, 0.65), transparent 60%),
    radial-gradient(1px 1px at 38% 78%, rgba(31, 224, 164, 0.75), transparent 60%),
    radial-gradient(2px 2px at 85% 62%, rgba(31, 224, 164, 0.7), transparent 60%),
    radial-gradient(1px 1px at 12% 65%, rgba(31, 224, 164, 0.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 56% 42%, rgba(31, 224, 164, 0.6), transparent 60%),
    radial-gradient(1px 1px at 92% 88%, rgba(31, 224, 164, 0.55), transparent 60%);
  background-size: 360px 360px;
  background-repeat: repeat;
  animation: rootsParticles 38s linear infinite;
}
@keyframes rootsParticles {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 360px -360px, -200px 360px, 280px 200px, -360px -180px, 200px 360px, -240px 240px, 360px -240px; }
}
.roots__deco {
  position: absolute;
  right: 4%;
  top: 12%;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  background: linear-gradient(180deg, rgba(23, 204, 148, 0.18), rgba(23, 204, 148, 0.04));
  -webkit-background-clip: text;
          background-clip: text;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  white-space: nowrap;
  line-height: 1;
  font-size: clamp(3rem, 7vw, 6rem);
}
.roots__wrap {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 32px;
}
.roots__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.roots__title {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #ffffff;
  max-width: 14ch;
  margin: 0;
}
.roots__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.roots__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  background: #ffffff;
  color: #0B1A12;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  align-self: flex-start;
  margin-top: 12px;
}
.roots__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -15px rgba(23, 204, 148, 0.5);
}
.roots__cta-arrow {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-green, linear-gradient(135deg, #17CC94, #0F7A57));
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform .25s ease;
}
.roots__cta:hover .roots__cta-arrow { transform: translateX(4px); }

.roots__phones {
  position: relative;
  min-height: 420px;
  width: 100%;
}
.roots__phone {
  position: absolute;
  top: 50%;
  width: 230px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 50px rgba(23, 204, 148, 0.25));
  transition:
    left .7s cubic-bezier(.6, .2, .2, 1),
    transform .7s cubic-bezier(.6, .2, .2, 1),
    opacity .5s ease,
    filter .5s ease;
  cursor: pointer;
}
.roots__phone--left {
  left: 18%;
  transform: translate(-50%, -45%) rotate(-5deg) scale(0.82);
  z-index: 1;
  opacity: 0.75;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 30px rgba(23, 204, 148, 0.18));
}
.roots__phone--center {
  left: 50%;
  transform: translate(-50%, -55%) scale(1.08);
  z-index: 3;
  opacity: 1;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 70px rgba(23, 204, 148, 0.35));
  animation: rootsPhonePulse 5s ease-in-out infinite;
}
@keyframes rootsPhonePulse {
  0%, 100% { filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 70px rgba(23, 204, 148, 0.35)); }
  50% { filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 95px rgba(23, 204, 148, 0.55)); }
}
.roots__phone--right {
  left: 82%;
  transform: translate(-50%, -45%) rotate(5deg) scale(0.82);
  z-index: 1;
  opacity: 0.75;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 30px rgba(23, 204, 148, 0.18));
}

.roots__nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.roots__nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  backdrop-filter: blur(6px);
}
.roots__nav-btn:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.12);
}
.roots__nav-btn--accent {
  background: var(--grad-green, linear-gradient(135deg, #17CC94, #0F7A57));
  border-color: transparent;
  box-shadow: 0 14px 30px -12px rgba(23, 204, 148, 0.6);
}
.roots__nav-btn--accent:hover {
  background: var(--grad-green, linear-gradient(135deg, #17CC94, #0F7A57));
  box-shadow: 0 18px 40px -12px rgba(23, 204, 148, 0.7);
}

@media (max-width: 900px) {
  .roots { padding: var(--pad-section) 0; }
  .roots__head { flex-direction: column; }
  .roots__phones { min-height: 460px; }
  .roots__phone { width: 220px; }
  .roots__phone--left { left: 22%; transform: translate(-50%, -45%) rotate(-5deg) scale(0.7); }
  .roots__phone--center { left: 50%; transform: translate(-50%, -55%) scale(1); }
  .roots__phone--right { left: 78%; transform: translate(-50%, -45%) rotate(5deg) scale(0.7); }
}

/* ═════ CLIENTES — carrossel coverflow ═════ */
.clients {
  position: relative;
  padding: var(--pad-section) 0;
  background: transparent;
  overflow: hidden;
}
.clients__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 55%, rgba(23, 204, 148, 0.12) 0%, transparent 70%);
  mix-blend-mode: screen;
  animation: rootsAtmoPulse 11s ease-in-out infinite;
}
.clients__deco {
  position: absolute;
  right: 10%;
  top: 6%;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  background: linear-gradient(180deg, rgba(23, 204, 148, 0.16), rgba(23, 204, 148, 0.04));
  -webkit-background-clip: text;
          background-clip: text;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  white-space: nowrap;
  line-height: 1;
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.clients__wrap {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 32px;
}
.clients__head { text-align: center; }
.clients__title {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #ffffff;
  margin: 0 auto;
  max-width: 22ch;
}
.clients__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.clients__marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.clients__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: clientsMarquee 60s linear infinite;
}
@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; }
}

.client-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 90px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  opacity: 0.55;
  pointer-events: none;
}
.client-logo::before {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  z-index: 0;
}
.client-logo--has-logo::before { display: none; }
.client-logo img {
  position: relative;
  z-index: 1;
  max-width: 86%;
  max-height: 82%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.4) contrast(0.85);
}

.clients__nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.clients__nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  backdrop-filter: blur(6px);
}
.clients__nav-btn:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.12);
}
.clients__nav-btn--accent {
  background: var(--grad-green, linear-gradient(135deg, #17CC94, #0F7A57));
  border-color: transparent;
  box-shadow: 0 14px 30px -12px rgba(23, 204, 148, 0.6);
}
.clients__nav-btn--accent:hover {
  background: var(--grad-green, linear-gradient(135deg, #17CC94, #0F7A57));
  box-shadow: 0 18px 40px -12px rgba(23, 204, 148, 0.7);
}
.clients__counter {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  min-width: 80px;
  text-align: center;
}

@media (max-width: 900px) {
  .clients { padding: var(--pad-section) 0; }
  .client-logo { width: 160px; height: 110px; }
  .clients__track { gap: 18px; animation-duration: 45s; }
}

/* ═════ Site-wide ambient wash (unified atmosphere) ═════ */
.site-wash {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 45% at 50% 8%, rgba(15, 122, 87, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 75% 60% at 25% 32%, rgba(15, 122, 87, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 65% 55% at 80% 55%, rgba(15, 122, 87, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 85% 45% at 50% 92%, rgba(15, 122, 87, 0.09) 0%, transparent 70%);
  mix-blend-mode: screen;
  animation: siteWashDrift 26s ease-in-out infinite alternate;
}
@keyframes siteWashDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -1.5%) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .site-wash { animation: none; }
}

/* ═════ Site-wide particles overlay ═════ */
.site-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(2px 2px at 14% 22%, rgba(31, 224, 164, 0.85), transparent 60%),
    radial-gradient(2px 2px at 72% 18%, rgba(31, 224, 164, 0.7), transparent 60%),
    radial-gradient(2px 2px at 38% 78%, rgba(31, 224, 164, 0.75), transparent 60%),
    radial-gradient(2px 2px at 85% 62%, rgba(31, 224, 164, 0.7), transparent 60%),
    radial-gradient(2px 2px at 8% 65%, rgba(31, 224, 164, 0.6), transparent 60%),
    radial-gradient(2px 2px at 56% 42%, rgba(31, 224, 164, 0.65), transparent 60%),
    radial-gradient(2px 2px at 92% 88%, rgba(31, 224, 164, 0.55), transparent 60%),
    radial-gradient(2px 2px at 28% 6%, rgba(31, 224, 164, 0.6), transparent 60%),
    radial-gradient(2px 2px at 64% 92%, rgba(31, 224, 164, 0.55), transparent 60%),
    radial-gradient(2px 2px at 46% 30%, rgba(31, 224, 164, 0.7), transparent 60%),
    radial-gradient(2px 2px at 18% 88%, rgba(31, 224, 164, 0.6), transparent 60%);
  background-size: 420px 420px;
  background-repeat: repeat;
  animation: siteParticles 48s linear infinite;
}
@keyframes siteParticles {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 420px -420px, -240px 420px, 320px 240px, -420px -200px, 240px 420px, -280px 280px, 420px -280px, 200px -200px, -320px 320px, 360px 360px, -200px -360px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-particles { animation: none; opacity: 0.25; }
}

/* ═════ Reveal animations — scroll driven ═════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity .9s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1),
    filter .9s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
  filter: none;
}
[data-reveal-from="left"]  { transform: translateX(-60px); }
[data-reveal-from="right"] { transform: translateX(60px); }
[data-reveal-from="scale"] { transform: scale(0.85); }
[data-reveal-from="blur"]  { filter: blur(14px); transform: translateY(24px); }
[data-reveal-from="rise"]  { transform: translateY(80px); }
[data-reveal-from="left"].in,
[data-reveal-from="right"].in,
[data-reveal-from="scale"].in,
[data-reveal-from="blur"].in,
[data-reveal-from="rise"].in { transform: none; filter: none; }

/* Parallax decos */
.proc__deco,
.roots__deco,
.clients__deco {
  transition: transform .15s linear;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .proc__deco, .roots__deco, .clients__deco { transform: none !important; }
  * { animation: none !important; transition: none !important; }
}

/* ═════════════════════════════════════════════
   MEGA-MENU (HubSpot-style)
   ═════════════════════════════════════════════ */
.nav__pill { position: static; }
.has-mega { position: relative; }
.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .15s, background .15s;
  font-family: inherit;
}
.nav__trigger:hover,
.nav__trigger[aria-expanded="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}
.nav__caret {
  width: 10px; height: 10px;
  transition: transform .2s ease;
}
.nav__trigger[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #0A1416 0%, #061010 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(23,204,148,.06);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 90;
  max-width: 1080px;
  margin: 0 auto;
}
.mega[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.mega--simple .mega__grid { grid-template-columns: 1fr 1fr; }
.mega__col h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  margin: 0 0 16px;
}
.mega__items {
  display: grid;
  gap: 4px;
}
.mega__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  transition: background .15s;
}
.mega__item:hover { background: rgba(23, 204, 148, 0.06); }
.mega__icon { display: none; }
.mega__feature { display: none; }
.mega__col:has(.mega__feature) { display: none; }
.mega__grid { grid-template-columns: 1fr 1fr !important; }
.mega__icon-legacy {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(23, 204, 148, 0.10);
  color: var(--green-100);
}
.mega__icon svg { width: 18px; height: 18px; }
.mega__item-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega__item-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.mega__item-desc {
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.45;
}
.mega__feature {
  background: linear-gradient(160deg, rgba(23,204,148,.10), rgba(23,204,148,.02));
  border: 1px solid rgba(23, 204, 148, 0.18);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.mega__feature-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-100);
}
.mega__feature-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.mega__feature-desc {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}
.mega__feature-link {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-100);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega__divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0 0;
}
.mega__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.mega__bottom a {
  color: var(--green-100);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .mega { display: none; }
}

/* ═════════════════════════════════════════════
   SERVICE PAGE
   ═════════════════════════════════════════════ */
.svc-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 80% 20%, rgba(23, 204, 148, 0.14), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 70%, rgba(23, 204, 148, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.svc-hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .svc-hero { padding: 80px 0 60px; }
  .svc-hero .wrap { grid-template-columns: 1fr; gap: 40px; }
}
.svc-hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 20px 0 22px;
}
.svc-hero__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.svc-hero__lead {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 28px;
}
.svc-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.svc-hero__stats {
  display: grid;
  gap: 16px;
}
.svc-hero__stat {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.svc-hero__stat-val {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-100);
  letter-spacing: -0.02em;
  line-height: 1;
}
.svc-hero__stat-lbl {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-top: 8px;
}

.svc-features {
  position: relative;
  padding: var(--pad-section) 0;
  z-index: 1;
}
.svc-features__head {
  max-width: 720px;
  margin: 0 0 56px;
}
.svc-features__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 12px;
}
.svc-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  counter-reset: svcfeat;
}
@media (max-width: 760px) {
  .svc-features__grid { grid-template-columns: 1fr; }
}
.svc-feat {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s, background .2s;
  counter-increment: svcfeat;
}
.svc-feat::before {
  content: counter(svcfeat, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.625rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--green-100);
  opacity: 0.35;
  line-height: 1;
  transition: opacity .25s ease, transform .25s ease;
}
.svc-feat:hover {
  border-color: rgba(23, 204, 148, 0.45);
  background: linear-gradient(180deg, rgba(23,204,148,.05), rgba(255,255,255,.01));
  transform: translateY(-4px);
}
.svc-feat:hover::before {
  opacity: 0.9;
  transform: scale(1.08);
}
.svc-feat__icon { display: none; }
.svc-feat__icon-legacy {
  transition: transform .25s ease, background .25s ease;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(23, 204, 148, 0.12);
  color: var(--green-100);
  margin-bottom: 18px;
}
.svc-feat__icon svg { width: 22px; height: 22px; }
.svc-feat__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.svc-feat__desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

.svc-midcta {
  padding: 0 0 var(--pad-section);
  position: relative;
  z-index: 1;
}
.svc-midcta__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #0A1416 0%, #061010 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 36px;
}
.svc-midcta__text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
  max-width: 60ch;
}
.svc-midcta__text em {
  font-style: normal;
  color: var(--green-100);
}
@media (max-width: 720px) {
  .svc-midcta__bar { padding: 24px; flex-direction: column; align-items: flex-start; }
}

.svc-proof {
  position: relative;
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, transparent, rgba(23, 204, 148, 0.04), transparent);
  z-index: 1;
}
.svc-proof__head {
  max-width: 720px;
  margin: 0 0 48px;
}
.svc-proof__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) { .svc-proof__grid { grid-template-columns: 1fr; } }
.svc-proof__case {
  padding: 32px;
  border-radius: 24px;
  background: var(--grad-green);
  color: #02110A;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.svc-proof__client {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  opacity: .65;
}
.svc-proof__quote {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
.svc-proof__metric {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.svc-proof__metric-lbl {
  font-size: 0.875rem;
  font-weight: 600;
}
.svc-proof__stack {
  padding: 32px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.svc-proof__stack h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}
.svc-stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.svc-stack-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.svc-stack-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-100);
  box-shadow: 0 0 8px var(--green-glow);
  flex-shrink: 0;
}

.svc-cta {
  padding: var(--pad-section) 0;
  position: relative;
  z-index: 1;
}
.svc-cta__inner {
  background: linear-gradient(135deg, #061010 0%, #0A1A18 100%);
  border: 1px solid rgba(23, 204, 148, 0.22);
  border-radius: 32px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(23,204,148,.18), transparent 70%);
  pointer-events: none;
}
.svc-cta__inner > * { position: relative; z-index: 1; }
.svc-cta__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto 16px;
}
.svc-cta__sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin: 0 auto 28px;
  max-width: 48ch;
}
@media (max-width: 760px) {
  .svc-cta__inner { padding: 36px 24px; }
}

/* ═════════════════════════════════════════════
   BLOG
   ═════════════════════════════════════════════ */
.blog-hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(23, 204, 148, 0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.blog-hero .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.blog-hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 16px 0 18px;
}
.blog-hero__lead {
  font-size: 1.125rem;
  color: var(--text-2);
  max-width: 56ch;
  margin: 0 auto;
}

.blog-featured {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.blog-featured__card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(23,204,148,.10), rgba(23,204,148,.02));
  border: 1px solid rgba(23, 204, 148, 0.22);
  align-items: center;
}
@media (max-width: 900px) { .blog-featured__card { grid-template-columns: 1fr; padding: 24px; } }
.blog-featured__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-100);
}
.blog-featured__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 12px 0 14px;
}
.blog-featured__title a { color: var(--text); }
.blog-featured__title a:hover { color: var(--green-100); }
.blog-featured__excerpt {
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 0.9375rem;
}
.blog-featured__meta {
  font-size: 0.8125rem;
  color: var(--text-3);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}
.blog-featured__meta span { display: inline-flex; }
.blog-featured__visual {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 204, 148, 0.15);
  background-color: #0B1A12;
  background-size: cover;
  background-position: center;
}
.blog-featured__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 4, 2, 0.15) 0%, rgba(1, 4, 2, 0.6) 60%, rgba(1, 4, 2, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(23, 204, 148, 0.18), transparent 70%);
  z-index: 1;
}
.blog-featured__visual::after { display: none; }
.blog-featured__visual span {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(1, 4, 2, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.blog-featured__visual span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-100);
  box-shadow: 0 0 8px var(--green-glow);
}

.blog-grid-section {
  padding: 60px 0 var(--pad-section);
  position: relative;
  z-index: 1;
}
.blog-grid-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-grid-section__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.blog-card:hover {
  border-color: rgba(23, 204, 148, 0.35);
  transform: translateY(-4px);
}
.blog-card__visual {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background-color: #0B1A12;
  background-size: cover;
  background-position: center;
}
.blog-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 4, 2, 0.10) 0%, rgba(1, 4, 2, 0.55) 60%, rgba(1, 4, 2, 0.9) 100%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(23, 204, 148, 0.18), transparent 70%);
  z-index: 1;
}
.blog-card__visual::after { display: none; }
.blog-card__visual span {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(1, 4, 2, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #FFFFFF;
}
.blog-card__visual span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-100);
  box-shadow: 0 0 6px var(--green-glow);
}
.blog-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-100);
}
.blog-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
.blog-card__title a { color: var(--text); }
.blog-card__title a:hover { color: var(--green-100); }
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
.blog-card__meta {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.blog-newsletter {
  padding: var(--pad-section) 0;
  position: relative;
  z-index: 1;
}
.blog-newsletter__inner {
  background: linear-gradient(135deg, #061010 0%, #0A1A18 100%);
  border: 1px solid rgba(23, 204, 148, 0.22);
  border-radius: 28px;
  padding: 48px;
  text-align: center;
}
.blog-newsletter__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.blog-newsletter__sub {
  color: var(--text-2);
  max-width: 50ch;
  margin: 0 auto 28px;
}
@media (max-width: 600px) { .blog-newsletter__inner { padding: 32px 22px; } }

/* ═════════════════════════════════════════════
   ARTICLE (blog post)
   ═════════════════════════════════════════════ */
.art-hero {
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.art-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(23, 204, 148, 0.08), transparent 60%);
  z-index: 0;
}
.art-hero .wrap {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.art-hero__back {
  font-size: 0.8125rem;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.art-hero__back:hover { color: var(--green-100); }
.art-hero__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-100);
}
.art-hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 14px 0 18px;
}
.art-hero__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.art-hero__meta strong { color: var(--text-2); font-weight: 600; }

.art-body {
  padding: 40px 0 var(--pad-section);
  position: relative;
  z-index: 1;
}
.art-body .wrap { max-width: 760px; }
.art-body p,
.art-body ul,
.art-body ol,
.art-body blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0 0 20px;
}
.art-body h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 40px 0 16px;
  color: var(--text);
}
.art-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}
.art-body strong { color: var(--text); }
.art-body ul, .art-body ol { padding-left: 22px; }
.art-body li { margin-bottom: 10px; }
.art-body blockquote {
  border-left: 3px solid var(--green-100);
  padding: 14px 0 14px 24px;
  font-style: italic;
  color: var(--text);
  background: linear-gradient(90deg, rgba(23, 204, 148, .06), transparent);
  border-radius: 0 12px 12px 0;
}
.art-body .callout {
  padding: 22px 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(23, 204, 148, .10), rgba(23, 204, 148, .02));
  border: 1px solid rgba(23, 204, 148, .22);
  margin: 28px 0;
}
.art-body .callout strong { color: var(--green-100); display: block; margin-bottom: 6px; font-family: 'Manrope', sans-serif; }
.art-body .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
@media (max-width: 600px) { .art-body .stat-row { grid-template-columns: 1fr; } }
.art-body .stat-row > div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}
.art-body .stat-row strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 6px;
}
.art-body .stat-row span {
  font-size: 0.8125rem;
  color: var(--text-3);
}

.art-related {
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.art-related__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.art-cta {
  padding: 40px 0 var(--pad-section);
  position: relative;
  z-index: 1;
}

/* ═════════════════════════════════════════════
   CASE-STUDY ARTICLE (success story style)
   ═════════════════════════════════════════════ */
.cs-hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 30% 0%, rgba(23, 204, 148, 0.12), transparent 65%);
  z-index: 0;
}
.cs-hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .cs-hero .wrap { grid-template-columns: 1fr; gap: 40px; } }
.cs-hero__back {
  font-size: 0.8125rem;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.cs-hero__back:hover { color: var(--green-100); }
.cs-hero__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-100);
}
.cs-hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 14px 0 16px;
}
.cs-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 52ch;
}
.cs-hero__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.cs-hero__meta strong { color: var(--text-2); font-weight: 600; }

.cs-bigmetric {
  background: var(--grad-green);
  color: #02110A;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-bigmetric__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: .7;
}
.cs-bigmetric__num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.cs-bigmetric__desc {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.cs-kpis {
  padding: 20px 0 40px;
  position: relative;
  z-index: 1;
}
.cs-kpis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .cs-kpis__grid { grid-template-columns: 1fr; } }
.cs-kpi {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(23, 204, 148, 0.08), rgba(23, 204, 148, 0.02));
  border: 1px solid rgba(23, 204, 148, 0.20);
}
.cs-kpi__val {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-100);
  letter-spacing: -0.025em;
  line-height: 1;
}
.cs-kpi__lbl {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-top: 10px;
  line-height: 1.45;
}

.cs-body {
  padding: 40px 0 var(--pad-section);
  position: relative;
  z-index: 1;
}
.cs-body .wrap { max-width: 820px; }
.cs-body h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 44px 0 8px;
}
.cs-body h2 .cs-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-100);
  background: rgba(23, 204, 148, 0.10);
  padding: 4px 10px;
  border-radius: 999px;
  vertical-align: middle;
  margin-right: 12px;
  position: relative;
  top: -3px;
}
.cs-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 10px;
}
.cs-body p,
.cs-body ul,
.cs-body ol {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0 0 20px;
}
.cs-body strong { color: var(--text); }
.cs-body ul, .cs-body ol { padding-left: 22px; }
.cs-body li { margin-bottom: 10px; }
.cs-body blockquote {
  margin: 32px 0;
  padding: 28px 32px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(23, 204, 148, 0.08), rgba(23, 204, 148, 0.02));
  border-left: 3px solid var(--green-100);
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
}
.cs-body blockquote footer {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0;
}
.cs-body .callout {
  padding: 22px 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(23, 204, 148, .10), rgba(23, 204, 148, .02));
  border: 1px solid rgba(23, 204, 148, .22);
  margin: 28px 0;
}
.cs-body .callout strong { color: var(--green-100); display: block; margin-bottom: 6px; font-family: 'Manrope', sans-serif; }
.cs-body .source {
  display: block;
  margin-top: 36px;
  font-size: 0.8125rem;
  color: var(--text-3);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.cs-body .source a { color: var(--green-100); }

/* ═════════════════════════════════════════════
   SCREENS (variant-b roots replacement)
   ═════════════════════════════════════════════ */
.screens {
  padding: var(--pad-section) 0;
  position: relative;
  z-index: 1;
}
.screens__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.screens__title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text);
}
.screens__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.screens__sub {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 52ch;
}
.screens__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  perspective: 1400px;
}
@media (max-width: 1024px) { .screens__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; perspective: none; } }

.screens__card {
  position: relative;
  border-radius: 28px;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, rgba(23, 204, 148, 0.06) 0%, rgba(23, 204, 148, 0.02) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.screens__card:hover {
  border-color: rgba(23, 204, 148, 0.4);
  transform: translateY(-6px);
}
.screens__card--featured {
  background: linear-gradient(180deg, rgba(23, 204, 148, 0.12) 0%, rgba(15, 122, 87, 0.06) 100%);
  border-color: rgba(23, 204, 148, 0.30);
}
.screens__phone-wrap {
  position: relative;
  height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.screens__phone-wrap::before {
  content: '';
  position: absolute;
  inset: auto 0 -20% 0;
  height: 60%;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(23, 204, 148, 0.30), transparent 70%);
  filter: blur(20px);
}
.screens__phone-wrap img {
  position: relative;
  z-index: 1;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.screens__grid > .screens__card:nth-child(1) .screens__phone-wrap img {
  transform: perspective(1200px) rotateY(18deg) rotateX(2deg) translateZ(-30px) scale(0.92);
}
.screens__grid > .screens__card:nth-child(2) .screens__phone-wrap img {
  transform: perspective(1200px) rotateY(0) translateZ(40px) scale(1.06);
  filter: drop-shadow(0 32px 56px rgba(23, 204, 148, 0.25)) drop-shadow(0 12px 22px rgba(0, 0, 0, 0.5));
}
.screens__grid > .screens__card:nth-child(3) .screens__phone-wrap img {
  transform: perspective(1200px) rotateY(-18deg) rotateX(2deg) translateZ(-30px) scale(0.92);
}
.screens__card:hover .screens__phone-wrap img {
  transform: perspective(1200px) rotateY(0) translateZ(70px) scale(1.10);
  filter: drop-shadow(0 36px 60px rgba(23, 204, 148, 0.35)) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.55));
}
@media (max-width: 1024px) {
  .screens__grid > .screens__card:nth-child(n) .screens__phone-wrap img {
    transform: none;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
  }
}
.screens__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.screens__title-card {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.screens__desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 8px;
}
.screens__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-100);
  margin-top: auto;
  transition: gap .2s ease;
}
.screens__link svg { width: 14px; height: 14px; }
.screens__card:hover .screens__link { gap: 14px; }

/* ═════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px -6px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 42px -6px rgba(37, 211, 102, 0.65), 0 6px 16px rgba(0, 0, 0, 0.3);
}
.wa-float svg {
  width: 30px;
  height: 30px;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.4; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (max-width: 640px) {
  .wa-float { right: 18px; bottom: 18px; width: 54px; height: 54px; }
  .wa-float svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* ═════════════════════════════════════════════
   MOBILE COMPACT — reduzir altura site
   ═════════════════════════════════════════════ */
@media (max-width: 760px) {
  :root { --pad-section: 56px; --pad-section-md: 48px; }
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }

  /* Hero: limita altura, evita full viewport */
  .hero--bleed { min-height: 480px; height: auto; padding: 60px 0; }
  .hero--bleed .hero__title { font-size: clamp(2rem, 7vw, 2.6rem); line-height: 1.08; }
  .hero--bleed .hero__lead { font-size: 0.95rem; line-height: 1.5; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { padding: 12px 18px; font-size: 0.875rem; }

  /* WeAre: 2 colunas mobile, cards menores */
  .weare { padding: 60px 0; }
  .weare__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .weare__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .weare-card { padding: 22px 18px; min-height: 0; gap: 8px; }
  .weare-card__title { font-size: 1.125rem; }
  .weare-card__desc { font-size: 0.8125rem; line-height: 1.4; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .weare-card__cta { font-size: 0.6875rem; margin-top: 6px; }
  /* 2x2 mobile: cantos externos arredondados, internos sharp */
  .weare__grid > .weare-card:nth-child(1) { border-radius: 60px 12px 12px 12px !important; padding: 24px 20px !important; }
  .weare__grid > .weare-card:nth-child(2) { border-radius: 12px 60px 12px 12px !important; padding: 24px 20px !important; }
  .weare__grid > .weare-card:nth-child(3) { border-radius: 12px 12px 12px 60px !important; padding: 24px 20px !important; }
  .weare__grid > .weare-card:nth-child(4) { border-radius: 12px 12px 60px 12px !important; padding: 24px 20px !important; }
  .weare-card--active .weare-card__emerge {
    width: 110px;
    top: -50px;
    right: -10px;
    display: block;
  }

  /* Integrações: marquee pills menores */
  .ihero { padding: 56px 0 48px; }
  .ihero__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .ihero__rails { margin-top: 32px; padding: 16px 0; }
  .ihero__rail + .ihero__rail { margin-top: 12px; }
  .ihero__pill { padding: 10px 18px; font-size: 0.8125rem; }
  .ihero__track { gap: 24px; }

  /* Screens (variant-b): cards compactos, phone menor */
  .screens { padding: 60px 0; }
  .screens__head { margin-bottom: 32px; }
  .screens__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .screens__sub { font-size: 0.9375rem; }
  .screens__grid { gap: 14px; max-width: 100%; }
  .screens__card { padding: 18px 18px 18px; gap: 10px; border-radius: 22px; }
  .screens__phone-wrap { height: 220px; }
  .screens__title-card { font-size: 1.0625rem; }
  .screens__desc { font-size: 0.875rem; line-height: 1.4; }

  /* Workflows: cards menores */
  .wf { padding: 60px 0; }
  .wf-card { padding: 24px 20px; }
  .wf-card__title { font-size: 1.125rem; line-height: 1.2; }
  .wf-card__desc { font-size: 0.875rem; line-height: 1.5; }
  .wf-card__big { font-size: 2.5rem; }

  /* Processo: cards journey 2-col compactos */
  .proc { padding: 60px 0; }
  .proc__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .journey__cards { display: grid !important; grid-template-columns: 1fr 1fr; gap: 10px !important; }
  .journey__card { padding: 16px 14px; gap: 8px; }
  .journey__num { font-size: 1.5rem; }
  .journey__title { font-size: 0.9375rem; line-height: 1.15; }
  .journey__desc { font-size: 0.75rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .journey__bracket { display: none; }

  /* Compare: side-by-side mesmo mobile */
  .compare { padding: 56px 0; }
  .compare__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .compare__grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .compare__col { padding: 16px 12px; gap: 12px; }
  .compare__col-head { padding-bottom: 12px; gap: 4px; }
  .compare__tag { font-size: 0.75rem; }
  .compare__sub-tag { font-size: 0.625rem; }
  .compare__list { gap: 8px; }
  .compare__list li { font-size: 0.75rem; line-height: 1.3; gap: 8px; align-items: flex-start; }
  .compare__icon { flex: 0 0 16px; width: 16px; height: 16px; font-size: 0.625rem; }
  .compare__divider { display: none !important; }

  /* Clients marquee menor */
  .clients { padding: 48px 0; }
  .clients__title { font-size: clamp(1.6rem, 5.5vw, 2rem); }
  .client-logo { height: 48px; }

  /* Sobre */
  .benef { gap: 32px; }
  .benef__media { aspect-ratio: 4 / 3; }
  .h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* FAQ */
  .faq { padding: 56px 0; }
  .faq__q { font-size: 0.9375rem; padding: 16px 0; }
  .faq__a { font-size: 0.875rem; }

  /* CTA final compacto */
  .cta-final { padding: 56px 0; }
  .cta-final__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-final__sub { font-size: 0.9375rem; }
}

@media (max-width: 480px) {
  /* Ainda mais compacto small phones */
  .screens__phone-wrap { height: 200px; }
  .weare-card { padding: 18px 14px; }
  .weare-card__title { font-size: 1rem; }
  .weare-card__desc { font-size: 0.75rem; -webkit-line-clamp: 4; }
}


/* ═════════════════════════════════════════════
   LIGHT SECTION VARIANT (contraste)
   ═════════════════════════════════════════════ */
.section-light {
  background: #F5F4EF;
  color: #0B1A12;
  position: relative;
  z-index: 1;
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: #0B1A12; }
.section-light p,
.section-light ul,
.section-light ol,
.section-light li,
.section-light .lead { color: rgba(11, 26, 18, 0.72); }
.section-light .lead strong,
.section-light p strong,
.section-light li strong { color: #0B1A12; }
.section-light .kicker { color: #0F7A57; }
.section-light .kicker::before { background: #0F7A57; box-shadow: none; }
.section-light em.accent,
.section-light em {
  background: linear-gradient(135deg, #0F7A57 0%, #148362 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: normal;
}

/* svc-features no light */
.section-light .svc-feat {
  background: #FFFFFF;
  border-color: rgba(11, 26, 18, 0.08);
  box-shadow: 0 1px 0 rgba(11, 26, 18, 0.04);
}
.section-light .svc-feat:hover {
  border-color: rgba(15, 122, 87, 0.45);
  background: #FFFFFF;
  box-shadow: 0 18px 38px -16px rgba(11, 26, 18, 0.15);
}
.section-light .svc-feat::before { color: #0F7A57; }
.section-light .svc-feat__title { color: #0B1A12; }
.section-light .svc-feat__desc { color: rgba(11, 26, 18, 0.66); }

/* blog-card no light */
.section-light .blog-card {
  background: #FFFFFF;
  border-color: rgba(11, 26, 18, 0.08);
  box-shadow: 0 1px 0 rgba(11, 26, 18, 0.04);
}
.section-light .blog-card:hover {
  border-color: rgba(15, 122, 87, 0.45);
  box-shadow: 0 18px 38px -16px rgba(11, 26, 18, 0.15);
}
.section-light .blog-card__title a { color: #0B1A12; }
.section-light .blog-card__title a:hover { color: #0F7A57; }
.section-light .blog-card__tag { color: #0F7A57; }
.section-light .blog-card__excerpt { color: rgba(11, 26, 18, 0.66); }
.section-light .blog-card__meta { color: rgba(11, 26, 18, 0.48); border-top-color: rgba(11, 26, 18, 0.08); }

/* art-body no light (leitura confortável) */
.section-light blockquote {
  background: linear-gradient(160deg, rgba(15, 122, 87, .06), rgba(15, 122, 87, .02)) !important;
  border-left-color: #0F7A57 !important;
  color: #0B1A12 !important;
}
.section-light blockquote footer { color: rgba(11, 26, 18, 0.55) !important; }
.section-light .callout {
  background: linear-gradient(160deg, rgba(15, 122, 87, .08), rgba(15, 122, 87, .02)) !important;
  border-color: rgba(15, 122, 87, .25) !important;
  color: #0B1A12 !important;
}
.section-light .callout strong { color: #0F7A57 !important; }
.section-light code {
  background: rgba(11, 26, 18, 0.06);
  color: #0B1A12;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
}
.section-light h1 em,
.section-light h2 em,
.section-light h3 em { color: transparent; }
.section-light .cs-tag {
  background: rgba(15, 122, 87, 0.10);
  color: #0F7A57;
}
.section-light .source {
  color: rgba(11, 26, 18, 0.55);
  border-top-color: rgba(11, 26, 18, 0.10);
}
.section-light .source a { color: #0F7A57; }
.section-light .stat-row > div {
  background: #FFFFFF;
  border-color: rgba(11, 26, 18, 0.08);
}
.section-light .stat-row span { color: rgba(11, 26, 18, 0.55); }
.section-light .blog-card__visual span { color: rgba(11, 26, 18, 0.50); }

/* mid-cta dentro de light section */
.section-light .svc-midcta__bar {
  background: linear-gradient(135deg, #0B1A12 0%, #061010 100%);
  border-color: rgba(11, 26, 18, 0.15);
}
.section-light .svc-midcta__text { color: #FFFFFF; }


/* ═════════════════════════════════════════════
   INTEGRATIONS HERO (marquee 2 linhas)
   ═════════════════════════════════════════════ */
.ihero {
  position: relative;
  padding: 128px 0 96px;
  background: transparent;
  overflow: hidden;
}
.ihero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 80%);
  pointer-events: none;
}
.ihero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ihero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 500;
}
.ihero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
.ihero__title em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.ihero__sub {
  margin: 18px auto 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.55;
}
.ihero__cta {
  margin-top: 32px;
}

.ihero__rails {
  position: relative;
  margin-top: 56px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
  padding: 24px 0;
}
.ihero__rails::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(23, 204, 148, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.ihero__rail { position: relative; z-index: 1; }
.ihero__rail {
  overflow: hidden;
  white-space: nowrap;
}
.ihero__rail + .ihero__rail { margin-top: 24px; }
.ihero__track {
  display: inline-flex;
  gap: 40px;
  width: max-content;
}
.ihero__track--left {
  animation: ihero-scroll-left 30s linear infinite;
}
.ihero__track--right {
  animation: ihero-scroll-right 30s linear infinite;
}
.ihero__icon {
  flex-shrink: 0;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  background: #D6D6D6;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.ihero__pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
}
.ihero__pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-100);
  box-shadow: 0 0 6px var(--green-glow);
  margin-right: 10px;
}
.ihero__icon img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.ihero__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.ihero__fade--l {
  left: 0;
  background: linear-gradient(to right, #010402 10%, rgba(1,4,2,0.6) 60%, transparent);
}
.ihero__fade--r {
  right: 0;
  background: linear-gradient(to left, #010402 10%, rgba(1,4,2,0.6) 60%, transparent);
}

@keyframes ihero-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ihero-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ihero__track--left,
  .ihero__track--right { animation: none; }
}

@media (max-width: 720px) {
  .ihero { padding: 80px 0 64px; }
  .ihero__icon { height: 56px; width: 56px; }
  .ihero__icon img { height: 32px; width: 32px; }
  .ihero__rail + .ihero__rail { margin-top: 18px; }
}

