:root {
  --green: #00c853;
  --black: #050505;
  --white: #ffffff;
  --dark-gray: #1f1f1f;
  --light-gray: #f5f5f5;
  --line: #dedede;
  --header-height: 76px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.12);
  --shadow-strong: 0 34px 110px rgba(5, 5, 5, 0.22);
  --glow: 0 0 34px rgba(0, 200, 83, 0.36);
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 200, 83, .08), transparent 28rem),
    radial-gradient(circle at 92% 42%, rgba(0, 200, 83, .06), transparent 24rem),
    var(--white);
  color: var(--black);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(5, 5, 5, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, .045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 70%, transparent);
}

body.menu-open {
  overflow: hidden;
}

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--green);
  color: var(--black);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 8px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(90deg, rgba(5,5,5,.9), rgba(8,16,11,.86));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: height .28s ease, background .28s ease, box-shadow .28s ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(5, 5, 5, .82);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.logo span {
  color: var(--green);
}

.logo-image {
  width: 150px;
  height: 42px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-image img {
  width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: 190px;
  height: auto;
}

.footer-logo img {
  max-height: none;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  font-weight: 700;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  box-shadow: var(--glow);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.46) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform .65s ease;
  pointer-events: none;
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn:focus-visible,
.main-nav a:focus-visible,
.faq-item button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 16px 38px rgba(0, 200, 83, .28);
}

.btn-primary:hover {
  box-shadow: 0 18px 52px rgba(0, 200, 83, .44);
}

.btn-outline {
  border-color: rgba(255,255,255,.42);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-black {
  color: var(--white);
  background: var(--black);
}

.btn-large {
  min-height: 58px;
  padding: 16px 25px;
  font-size: .96rem;
}

.btn svg {
  width: 20px;
  fill: currentColor;
}

.header-cta {
  min-height: 44px;
  font-size: .82rem;
  padding: 10px 17px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 30px; }
.menu-toggle.active span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.section {
  padding: 112px 0;
  position: relative;
}

.section-dark {
  background:
    radial-gradient(circle at 14% 22%, rgba(0,200,83,.16), transparent 28rem),
    radial-gradient(circle at 86% 2%, rgba(0,200,83,.1), transparent 24rem),
    linear-gradient(180deg, #050505, #070907 68%, #050505);
  color: var(--white);
}

.section-soft {
  background:
    radial-gradient(circle at 82% 18%, rgba(0,200,83,.1), transparent 24rem),
    linear-gradient(180deg, #f7f8f7, var(--light-gray));
}

.hero {
  min-height: 790px;
  padding: calc(var(--header-height) + 82px) 0 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 44%, rgba(0,200,83,.22), transparent 17rem),
    radial-gradient(circle at 72% 36%, rgba(0,200,83,.16), transparent 22rem),
    conic-gradient(from 110deg at 62% 45%, transparent, rgba(0,200,83,.14), transparent 34%);
  filter: blur(4px);
  animation: auroraDrift 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  top: 90px;
  border: 1px solid rgba(0,200,83,.46);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(0,200,83,.18), inset 0 0 70px rgba(0,200,83,.08);
  animation: orbitPulse 8s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  animation: gridSlide 18s linear infinite;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0,200,83,.13);
  animation: livePulse 1.8s ease-out infinite;
}

.hero h1 {
  max-width: 690px;
  margin: 24px 0;
  font-size: clamp(2.65rem, 5.4vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 34px rgba(0,200,83,.2);
}

.hero-copy > p {
  max-width: 635px;
  color: rgba(255,255,255,.72);
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-benefits {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
}

.hero-benefits li {
  padding-right: 10px;
}

.hero-benefits strong,
.hero-benefits span {
  display: block;
}

.hero-benefits strong {
  color: var(--green);
  font-size: .9rem;
}

.hero-benefits span {
  color: rgba(255,255,255,.6);
  font-size: .72rem;
}

.hero-visual {
  position: relative;
  transform: perspective(1600px) rotateY(-3deg);
  transform-style: preserve-3d;
  will-change: transform;
  animation: visualFloat 6s ease-in-out infinite;
}

.screen-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.screen-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 30%, rgba(255,255,255,.28) 42%, transparent 54% 100%),
    radial-gradient(circle at 20% 0%, rgba(0,200,83,.16), transparent 18rem);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity .3s ease, transform .6s ease;
}

.screen-frame:hover::after,
.showcase:hover .screen-frame::after {
  opacity: 1;
  transform: translateX(14%);
}

.screen-frame img {
  width: 100%;
  height: auto;
}

.screen-frame-dark {
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 32px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(0,200,83,.18), 0 0 60px rgba(0,200,83,.14);
}

.screen-top {
  height: 32px;
  background: #101010;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}

.screen-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #444;
}

.screen-top i:first-child {
  background: var(--green);
}

.screen-top span {
  margin-left: 10px;
  color: #777;
  font-size: .58rem;
}

.hero-float {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 10px;
  align-items: center;
  padding: 13px 15px;
  color: var(--black);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,200,83,.4);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  animation: cardFloat 4.5s ease-in-out infinite;
}

.hero-float > span {
  width: 34px;
  height: 34px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 9px;
  font-size: .72rem;
  font-weight: 900;
}

.hero-float strong {
  font-size: .72rem;
  line-height: 1.2;
}

.hero-float small {
  color: #707070;
  font-size: .6rem;
}

.float-ai {
  left: -34px;
  bottom: 45px;
}

.float-lead {
  right: -28px;
  top: 55px;
  animation-delay: -1.4s;
}

.float-lead .pulse {
  position: relative;
}

.float-lead .pulse::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(5,5,5,.12);
}

.proof-strip {
  position: relative;
  padding: 24px 0;
  color: var(--black);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.25), transparent 18rem),
    linear-gradient(100deg, #00b84c, var(--green), #00e060);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(5,5,5,.12);
}

.proof-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,.42) 50%, transparent 55% 100%);
  transform: translateX(-70%);
  animation: bandShine 7s ease-in-out infinite;
}

.proof-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, .78fr) minmax(0, 3fr);
  overflow: hidden;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(5,5,5,.14);
  border-radius: 16px;
}

.proof-intro {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  padding: 22px 24px;
  color: var(--white);
  background: var(--black);
}

.proof-intro strong {
  max-width: 220px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.4;
}

.proof-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proof-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0,200,83,.14);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-item {
  position: relative;
  min-height: 108px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid rgba(5,5,5,.16);
  transition: background-color .25s ease;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item:hover {
  background: rgba(255,255,255,.2);
}

.proof-number {
  position: absolute;
  right: 12px;
  top: 9px;
  color: rgba(5,5,5,.2);
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.proof-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--black);
  border-radius: 11px;
  box-shadow: 0 12px 26px rgba(5,5,5,.18);
}

.proof-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item strong,
.proof-item div > span {
  display: block;
}

.proof-item strong {
  font-size: clamp(.72rem, .8vw, .84rem);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .015em;
}

.proof-item div > span {
  margin-top: 4px;
  color: rgba(5,5,5,.67);
  font-size: clamp(.68rem, .72vw, .76rem);
  font-weight: 600;
  line-height: 1.35;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.split-heading h2,
.faq-intro h2 {
  margin-top: 13px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.section-heading h2,
.split-heading h2,
.faq-intro h2,
.showcase-copy h3 {
  text-wrap: balance;
}

.section-heading p {
  margin: 18px auto 0;
  max-width: 630px;
  color: #5c5c5c;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pain-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.pain-card::before,
.resource-card::before,
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0,200,83,.16), transparent 13rem);
  opacity: 0;
  transition: opacity .25s ease;
}

.pain-card:hover,
.resource-card:hover {
  transform: translateY(-7px);
  border-color: var(--green);
  box-shadow: 0 24px 60px rgba(5,5,5,.1), 0 0 0 1px rgba(0,200,83,.12);
}

.pain-card:hover::before,
.resource-card:hover::before,
.pillar:hover::before {
  opacity: 1;
}

.pain-card span,
.benefit > span,
.audience-grid span {
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.pain-card h3 {
  margin: 22px 0 8px;
  font-size: 1.15rem;
}

.pain-card p {
  color: #666;
  font-size: .88rem;
}

.impact-line {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 18px;
  color: var(--black);
  background: rgba(0,200,83,.12);
  border-left: 4px solid var(--green);
  font-weight: 850;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0,200,83,.12);
}

.impact-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  transform: translateX(-110%);
  animation: lineScan 4.8s ease-in-out infinite;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 60px;
}

.split-heading > p {
  color: #616161;
  font-size: 1rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
    radial-gradient(circle at 80% 0%, rgba(0,200,83,.18), transparent 14rem);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
}

.pillar::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform .3s ease;
}

.pillar:hover::after {
  transform: scaleX(1);
}

.pillar:hover {
  box-shadow: 0 28px 80px rgba(5,5,5,.09);
  border-color: rgba(0,200,83,.34);
}

.pillar-number,
.journey-step {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.pillar h3 {
  margin: 40px 0 20px;
  font-size: 1.45rem;
}

.pillar ul,
.check-list {
  list-style: none;
}

.pillar li,
.check-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #5e5e5e;
}

.pillar li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.product-story {
  overflow: hidden;
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 68px;
  margin: 90px 0 140px;
  perspective: 1600px;
}

.showcase:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 98px;
  left: 18px;
  bottom: -119px;
  background: var(--green);
  opacity: .7;
}

.showcase-reverse {
  grid-template-columns: 1.28fr .72fr;
}

.showcase-reverse .showcase-copy {
  order: 2;
}

.showcase-copy h3 {
  margin: 25px 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.showcase-copy > p {
  color: #626262;
}

.check-list {
  margin-top: 22px;
}

.showcase .screen-frame {
  transform: translateZ(0);
  transition: transform .36s ease, box-shadow .36s ease, border-color .36s ease;
}

.showcase:hover .screen-frame {
  transform: translateY(-8px) rotateX(1.2deg) rotateY(-1.2deg);
  border-color: rgba(0,200,83,.42);
  box-shadow: var(--shadow-strong), 0 0 54px rgba(0,200,83,.12);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.resource-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.resource-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 11px;
  font-size: .68rem;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(0,200,83,.22);
}

.resource-card h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.resource-card p {
  color: #666;
  font-size: .82rem;
  line-height: 1.5;
}

.benefits .split-heading {
  align-items: end;
}

.benefits .split-heading h2 {
  max-width: 760px;
}

.benefits .section-kicker {
  color: var(--green);
}

.text-link {
  color: var(--green);
  font-weight: 850;
}

.text-link span {
  margin-left: 7px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit {
  position: relative;
  min-height: 180px;
  padding: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-right: 1px solid rgba(255,255,255,.18);
}

.benefit::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  box-shadow: var(--glow);
}

.benefit:hover::after {
  transform: scaleX(1);
}

.benefit:nth-child(3n) {
  border-right: 0;
}

.benefit h3 {
  max-width: 280px;
  margin-top: 34px;
  font-size: 1.3rem;
  line-height: 1.28;
}

.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 30px;
}

.steps-list::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 27px;
  border-top: 1px dashed var(--green);
}

.steps-list li {
  position: relative;
  text-align: center;
}

.steps-list li > span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  color: var(--black);
  background: var(--green);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--green);
  font-size: .72rem;
  font-weight: 900;
}

.steps-list li:hover > span {
  animation: stepPop .55s ease;
  box-shadow: 0 0 0 1px var(--green), 0 0 34px rgba(0,200,83,.36);
}

.steps-list h3 {
  font-size: 1.05rem;
}

.steps-list p {
  margin-top: 8px;
  color: #666;
  font-size: .85rem;
}

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

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}

.audience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  transition: background .2s ease, color .2s ease;
}

.audience-grid article::before {
  content: "";
  position: absolute;
  inset: auto -30% -80% -30%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,200,83,.38), transparent 68%);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.audience-grid article:hover {
  color: var(--white);
  background: var(--black);
}

.audience-grid article:hover::before {
  opacity: 1;
  transform: translateY(-20%);
}

.audience-grid h3 {
  margin-top: 48px;
  font-size: 1rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro p {
  margin: 20px 0 28px;
  color: #666;
}

.dark-link {
  color: var(--black);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 1rem;
}

.faq-item button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--black);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
  transition: color .2s ease, padding-left .2s ease;
}

.faq-item button:hover {
  color: var(--green);
  padding-left: 8px;
}

.faq-item i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 10px;
  height: 1px;
  background: var(--black);
  transition: transform .2s;
}

.faq-item i::after {
  transform: rotate(90deg);
}

.faq-item.open i {
  background: var(--green);
  border-color: var(--green);
}

.faq-item.open i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-answer p {
  overflow: hidden;
  color: #5f5f5f;
  padding-right: 50px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 25px;
}

.final-cta {
  padding: 76px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,255,255,.38), transparent 20rem),
    radial-gradient(circle at 86% 64%, rgba(5,5,5,.18), transparent 18rem),
    linear-gradient(110deg, #00b84c, var(--green), #02df61);
  color: var(--black);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(5,5,5,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,5,5,.25) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridSlide 18s linear infinite;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 80px;
}

.final-cta .section-kicker {
  color: var(--black);
}

.final-cta h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.final-cta p {
  max-width: 740px;
}

.cta-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.cta-action span {
  font-size: .78rem;
  font-weight: 750;
}

.site-footer {
  padding: 72px 0 20px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 80px;
  padding-bottom: 55px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 20px;
  color: rgba(255,255,255,.55);
}

.footer-grid h2 {
  margin-bottom: 17px;
  color: var(--green);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.64);
  font-size: .88rem;
}

.footer-grid a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border: 2px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0,0,0,.25), 0 0 0 0 rgba(0,200,83,.34);
  transition: transform .2s ease;
  animation: whatsappPulse 2.8s ease-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp svg {
  width: 27px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes auroraDrift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-2deg) scale(1); }
  to { transform: translate3d(2%, 2%, 0) rotate(3deg) scale(1.05); }
}

@keyframes orbitPulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.08); opacity: .55; }
}

@keyframes gridSlide {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(0,200,83,.28); }
  70% { box-shadow: 0 0 0 9px rgba(0,200,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,200,83,0); }
}

@keyframes visualFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

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

@keyframes bandShine {
  0%, 35% { transform: translateX(-90%); }
  70%, 100% { transform: translateX(90%); }
}

@keyframes lineScan {
  0%, 55% { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

@keyframes stepPop {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.12); }
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 14px 32px rgba(0,0,0,.25), 0 0 0 0 rgba(0,200,83,.36); }
  75%, 100% { box-shadow: 0 14px 32px rgba(0,0,0,.25), 0 0 0 18px rgba(0,200,83,0); }
}

@media (max-width: 1100px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .75rem; }
  .header-cta { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 880px; margin: 20px auto 0; transform: none; }
  .hero { padding-top: calc(var(--header-height) + 64px); }
  .resource-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase, .showcase-reverse { grid-template-columns: 1fr; gap: 35px; }
  .showcase-reverse .showcase-copy { order: 0; }
  .showcase-copy { max-width: 650px; }
  .showcase:not(:last-of-type)::after { display: none; }
  .faq-layout { gap: 50px; }
}

@media (max-width: 980px) {
  .proof-wrap {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .proof-intro strong {
    max-width: none;
    text-align: right;
  }

  .proof-item {
    padding-inline: 18px;
  }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 15px 28px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav a {
    padding: 15px 10px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(2.7rem, 10vw, 4rem); }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .float-ai { left: -5px; bottom: -30px; }
  .float-lead { right: -5px; top: -25px; }
  .proof-strip { padding: 18px 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .proof-intro strong { text-align: left; }
  .proof-item {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(5,5,5,.15);
  }
  .proof-item:last-child { border-bottom: 0; }
  .pain-grid, .pillar-grid, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .split-heading, .final-cta-inner, .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .pillar-grid .pillar:last-child { grid-column: 1 / -1; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .steps-list::before { display: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 68px 0; }
  .hero { padding-bottom: 80px; }
  .logo-image { width: 132px; height: 38px; }
  .footer-logo { width: 175px; height: auto; }
  .proof-strip { padding: 12px 0; }
  .proof-wrap { border-radius: 12px; }
  .proof-intro { padding: 15px 17px; }
  .proof-label { font-size: .6rem; }
  .proof-intro strong { font-size: .72rem; }
  .proof-item {
    min-height: 86px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 17px;
  }
  .proof-icon { width: 38px; height: 38px; border-radius: 10px; }
  .proof-icon svg { width: 19px; height: 19px; }
  .proof-item strong { font-size: .72rem; }
  .proof-item div > span { font-size: .68rem; }
  .hero h1 { font-size: 2.65rem; }
  .hero-copy > p { font-size: .94rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-benefits { margin-top: 35px; }
  .hero-visual { margin-top: 44px; }
  .screen-top { height: 23px; }
  .hero-float { display: none; }
  .section-heading { margin-bottom: 38px; text-align: left; }
  .section-heading h2, .split-heading h2, .faq-intro h2 { font-size: 2.25rem; }
  .section-heading p { margin-left: 0; }
  .pain-grid, .pillar-grid, .benefit-grid { grid-template-columns: 1fr; }
  .pillar-grid .pillar:last-child { grid-column: auto; }
  .pillar { min-height: auto; }
  .showcase { margin: 65px 0 90px; }
  .showcase-copy h3 { font-size: 2rem; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .resource-card { min-height: 190px; padding: 18px; }
  .benefit { border-right: 0; min-height: 145px; }
  .steps-list { grid-template-columns: 1fr; }
  .steps-list li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; text-align: left; }
  .steps-list li > span { margin: 0; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid article { min-height: 135px; padding: 18px; }
  .audience-grid h3 { margin-top: 30px; font-size: .88rem; }
  .faq-answer p { padding-right: 0; }
  .final-cta h2 { font-size: 2.35rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
