:root {
  --navy: #071827;
  --navy-2: #0b2135;
  --navy-3: #102c45;
  --blue: #1268e8;
  --blue-light: #3f8cff;
  --green: #19b978;
  --green-light: #42d99a;
  --ink: #102235;
  --muted: #617185;
  --line: #dfe7ef;
  --surface: #f4f7fa;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7,24,39,.12);
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }

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

.narrow { max-width: 900px; }
.center { text-align: center; }

.header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 10px;
  letter-spacing: .19em;
  color: #9cb2c8;
  margin-bottom: 5px;
}

.brand b {
  font-size: 14px;
  letter-spacing: .06em;
}

.brand-mark {
  position: relative;
  width: 35px;
  height: 35px;
  display: block;
}

.brand-mark i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(25,185,120,.45);
}

.brand-mark i:nth-child(1){left:13px;top:1px}
.brand-mark i:nth-child(2){left:1px;top:21px}
.brand-mark i:nth-child(3){right:1px;top:21px}
.brand-mark i:nth-child(4){left:13px;bottom:1px;background:var(--blue-light)}

.brand-mark:before,
.brand-mark:after {
  content:"";
  position:absolute;
  left:8px;
  top:17px;
  width:21px;
  height:1px;
  background:#61809d;
  transform:rotate(55deg);
}

.brand-mark:after { transform:rotate(-55deg); }

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: #bdcada;
}

.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  border: 0;
  font-weight: 750;
  transition: .2s ease;
}

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

.btn-small {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.22);
  font-size: 12px;
}

.btn-primary {
  min-height: 54px;
  padding: 0 24px;
  background: linear-gradient(135deg,var(--green),#14a66c);
  color: #fff;
  box-shadow: 0 14px 35px rgba(25,185,120,.22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 165px 0 0;
  min-height: 850px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 40%, rgba(18,104,232,.13), transparent 27%),
    linear-gradient(135deg,#061522 0%,#091e30 58%,#071827 100%);
}

.hero-grid {
  position:absolute;
  inset:0;
  opacity:.14;
  background-image:
    linear-gradient(rgba(120,164,201,.12) 1px,transparent 1px),
    linear-gradient(90deg,rgba(120,164,201,.12) 1px,transparent 1px);
  background-size:54px 54px;
  mask-image:linear-gradient(to bottom,#000,transparent 90%);
}

.hero-glow {
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none;
}

.hero-glow-a {
  width:400px;height:400px;
  right:-130px;top:100px;
  background:rgba(18,104,232,.12);
}

.hero-glow-b {
  width:300px;height:300px;
  left:-120px;bottom:0;
  background:rgba(25,185,120,.08);
}

.hero-layout {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:75px;
}

.eyebrow, .section-tag {
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--blue);
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
  letter-spacing:.17em;
}

.eyebrow { color:#8eabc5; }

.pulse {
  width:7px;height:7px;border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 5px rgba(25,185,120,.11);
}

.hero h1 {
  margin:24px 0;
  max-width:750px;
  font-size:clamp(43px,4.8vw,67px);
  line-height:1.03;
  letter-spacing:-.045em;
}

.hero h1 span { color:var(--green-light); }

.hero-lead {
  max-width:650px;
  color:#b5c6d5;
  font-size:18px;
  line-height:1.7;
}

.hero-actions {
  margin-top:34px;
  display:flex;
  align-items:center;
  gap:28px;
}

.text-link {
  color:#c8d4df;
  font-size:13px;
  border-bottom:1px solid #5a7186;
  padding-bottom:3px;
}

.hero-proof {
  display:flex;
  gap:0;
  margin-top:46px;
  color:#8099af;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.hero-proof span {
  padding-right:15px;
  margin-right:15px;
  border-right:1px solid #2c465c;
}

.hero-proof span:last-child { border:0; }

.network-card {
  position:relative;
  height:510px;
  border:1px solid rgba(128,173,211,.15);
  border-radius:30px;
  background:
    radial-gradient(circle at center,rgba(18,104,232,.12),transparent 40%),
    rgba(7,24,39,.35);
  box-shadow:inset 0 0 80px rgba(0,0,0,.18);
}

.network-label {
  position:absolute;
  top:24px;left:27px;
  color:#66839c;
  font-size:9px;
  font-weight:800;
  letter-spacing:.18em;
}

.network-lines {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.network-lines line {
  stroke:#1b6e9b;
  stroke-width:1;
  stroke-dasharray:5 7;
  opacity:.6;
}

.node {
  position:absolute;
  width:105px;
  height:66px;
  padding:12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid #21455e;
  border-radius:12px;
  background:#0b2133;
  box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.node span {
  font-size:8px;
  color:var(--green);
  margin-bottom:5px;
}

.node strong {
  font-size:11px;
  line-height:1.25;
}

.node-main {
  width:145px;height:145px;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  text-align:center;
  align-items:center;
  border-color:rgba(25,185,120,.55);
  background:radial-gradient(circle,#113a3a,#0a2431 70%);
  box-shadow:0 0 0 10px rgba(25,185,120,.04),0 0 60px rgba(25,185,120,.12);
}

.node-logo {
  width:43px;height:43px;
  display:grid;place-items:center;
  margin-bottom:8px;
  border-radius:50%;
  background:var(--green);
  font-size:12px;
  font-weight:900;
}

.node-main strong { font-size:12px; }
.node-a{left:8%;top:14%}
.node-b{right:7%;top:12%}
.node-c{right:3%;top:58%}
.node-d{right:28%;bottom:3%}
.node-e{left:5%;bottom:11%}

.pillars {
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:75px;
  border-top:1px solid rgba(255,255,255,.09);
}

.pillars > div {
  position:relative;
  padding:28px 25px 32px;
  border-right:1px solid rgba(255,255,255,.09);
}

.pillars > div:first-child { border-left:1px solid rgba(255,255,255,.09); }

.pillars span {
  color:var(--green);
  font-size:9px;
  letter-spacing:.12em;
}

.pillars strong,
.pillars small { display:block; }

.pillars strong {
  margin-top:6px;
  font-size:15px;
}

.pillars small {
  margin-top:3px;
  color:#8197aa;
  font-size:11px;
}

.section { padding:110px 0; }

.section h2 {
  margin:16px 0 20px;
  color:var(--ink);
  font-size:clamp(35px,4vw,52px);
  line-height:1.08;
  letter-spacing:-.04em;
}

.section h2 em {
  color:var(--blue);
  font-style:normal;
}

.section-intro {
  margin:0 auto;
  max-width:760px;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}

.section-intro.left { margin-left:0; }

.problem { background:#fff; }

.statement {
  position:relative;
  margin:55px auto 0;
  padding:38px 55px;
  max-width:820px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fafcfe;
  text-align:left;
}

.statement .quote {
  position:absolute;
  left:24px;top:12px;
  color:#c7d9e8;
  font:700 60px Georgia,serif;
}

.statement p {
  margin:0;
  padding-left:22px;
  color:#52677b;
  font-size:18px;
  line-height:1.6;
}

.statement strong { color:var(--ink); }

.how { background:var(--surface); }

.section-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:50px;
  margin-bottom:55px;
}

.section-head h2 {
  max-width:690px;
  margin-bottom:0;
}

.section-head > p {
  max-width:410px;
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.steps {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid #d7e1ea;
  border-left:1px solid #d7e1ea;
}

.step {
  position:relative;
  min-height:260px;
  padding:34px;
  background:#fff;
  border-right:1px solid #d7e1ea;
  border-bottom:1px solid #d7e1ea;
}

.step-number {
  position:absolute;
  top:25px;right:27px;
  color:#a9b9c7;
  font-size:10px;
}

.step-icon {
  width:42px;height:42px;
  display:grid;place-items:center;
  margin-bottom:28px;
  border-radius:10px;
  color:var(--blue);
  background:#edf4fe;
  font-size:20px;
}

.step h3 {
  margin:0 0 12px;
  font-size:19px;
}

.step p {
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.manifesto {
  padding:80px 0;
  color:#fff;
  background:linear-gradient(120deg,#0a2338,#0b3150);
}

.manifesto-inner {
  display:grid;
  grid-template-columns:260px 1fr;
  align-items:center;
  gap:65px;
}

.manifesto h2 { color:#fff; }
.manifesto h2 span { color:var(--green-light); }
.manifesto p { color:#9fb5c7; max-width:680px;line-height:1.7; }
.section-tag.light { color:#73d7ac; }

.manifesto-symbol {
  position:relative;
  width:220px;height:160px;
}

.manifesto-symbol span {
  position:absolute;
  width:75px;height:75px;
  border:1px solid #1c6c73;
  border-radius:50%;
}

.manifesto-symbol span:nth-child(1){left:0;top:45px}
.manifesto-symbol span:nth-child(2){left:75px;top:0;border-color:#1e6ba0}
.manifesto-symbol span:nth-child(3){left:75px;bottom:0;border-color:#299a72}

.ecosystem { background:#fff; }
.section-title-block { margin-bottom:55px; }

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

.engine-card {
  position:relative;
  padding:40px 35px;
  min-height:350px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}

.engine-card.featured {
  color:#fff;
  background:var(--navy);
  border-color:var(--navy);
  box-shadow:var(--shadow);
}

.engine-index {
  position:absolute;
  right:25px;top:22px;
  color:#a5b5c2;
  font-size:10px;
}

.engine-icon {
  width:50px;height:50px;
  display:grid;place-items:center;
  margin-bottom:28px;
  border-radius:12px;
  background:#edf4fe;
  color:var(--blue);
  font-size:24px;
}

.featured .engine-icon {
  background:rgba(25,185,120,.13);
  color:var(--green);
}

.engine-card h3 { font-size:23px;margin:0 0 15px; }
.engine-card p { color:var(--muted);line-height:1.7;font-size:14px; }
.featured p { color:#9fb1c1; }

.engine-line {
  margin:30px 0 16px;
  height:1px;background:var(--line);
}

.featured .engine-line { background:#274157; }

.engine-card small {
  font-size:9px;
  font-weight:800;
  letter-spacing:.13em;
  color:#8193a3;
}

.cycle {
  margin-top:40px;
  padding:22px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  border-radius:12px;
  background:var(--surface);
  color:#54687a;
  font-size:12px;
  font-weight:700;
}

.cycle i { color:var(--green);font-style:normal; }

.solutions { background:var(--surface); }

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

.solution-grid article {
  min-height:150px;
  padding:25px;
  display:flex;
  flex-direction:column;
  justify-content:end;
  border:1px solid #dce5ed;
  border-radius:14px;
  background:#fff;
  transition:.2s ease;
}

.solution-grid article:hover {
  transform:translateY(-3px);
  border-color:#b6cce0;
  box-shadow:0 15px 30px rgba(15,42,66,.07);
}

.solution-grid span {
  margin-bottom:auto;
  color:var(--green);
  font-size:9px;
}

.solution-grid b { font-size:15px; }
.solution-grid small { color:#738598;margin-top:4px; }

.accounting {
  color:#fff;
  background:
    radial-gradient(circle at 80% 20%,rgba(18,104,232,.18),transparent 27%),
    var(--navy);
}

.accounting-layout {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:100px;
  align-items:center;
}

.accounting h2 { color:#fff; }
.accounting h2 span { color:var(--green-light); }

.accounting-copy > p {
  color:#9eb2c4;
  line-height:1.75;
  max-width:620px;
}

.accounting-copy strong { color:#fff; }

.btn-outline-light {
  margin-top:22px;
  padding:15px 20px;
  color:#fff;
  border:1px solid #315069;
}

.accounting-flow {
  padding:30px;
  border:1px solid #29475f;
  border-radius:22px;
  background:rgba(255,255,255,.025);
}

.accounting-flow > div {
  display:flex;
  align-items:center;
  gap:15px;
  padding:13px 17px;
  border:1px solid #29455b;
  border-radius:9px;
  color:#c3d0dc;
  background:#0c2436;
}

.accounting-flow div.active {
  border-color:rgba(25,185,120,.65);
  color:#fff;
  background:rgba(25,185,120,.11);
}

.accounting-flow span {
  color:var(--green);
  font-size:9px;
}

.accounting-flow b { font-size:13px; }

.accounting-flow > i {
  display:block;
  margin:3px 0;
  text-align:center;
  color:#46647b;
  font-style:normal;
}

.competency { background:#fff; }

.split {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:85px;
  align-items:center;
}

.dual-cards {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:35px;
}

.dual-cards div {
  padding:23px;
  border-radius:12px;
  background:var(--surface);
  border:1px solid var(--line);
}

.dual-cards span {
  display:block;
  color:var(--blue);
  font-size:9px;
  font-weight:900;
  letter-spacing:.15em;
  margin-bottom:10px;
}

.dual-cards strong {
  font-size:13px;
  line-height:1.5;
}

.marketplace-card {
  padding:45px;
  min-height:420px;
  border-radius:24px;
  color:#fff;
  background:linear-gradient(145deg,#0b2135,#0a2c42);
  box-shadow:var(--shadow);
}

.marketplace-card > small {
  color:#6f8ca4;
  letter-spacing:.15em;
  font-size:9px;
}

.marketplace-card h3 {
  margin:18px 0;
  font-size:27px;
}

.marketplace-card h3 span { color:var(--green); }

.marketplace-card p {
  color:#9eb1c1;
  line-height:1.7;
  font-size:14px;
}

.marketplace-visual {
  height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:25px;
}

.mv-left,.mv-right {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.marketplace-visual i {
  display:block;
  width:90px;height:15px;
  border-radius:10px;
  background:#173b55;
}

.mv-right i { background:#15513e; }

.mv-center {
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:50%;
  background:var(--green);
  font-size:22px;
  font-weight:900;
}

.academy { background:var(--surface); }

.academy-layout {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:center;
}

.academy-layout p {
  color:var(--muted);
  line-height:1.75;
}

.academy-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.academy-grid span {
  position:relative;
  padding:17px 18px 17px 38px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  font-size:12px;
  font-weight:700;
}

.academy-grid span:before {
  content:"";
  position:absolute;
  left:17px;top:50%;
  width:7px;height:7px;
  transform:translateY(-50%);
  border-radius:50%;
  background:var(--green);
}

.technology { background:#fff; }

.technology-layout {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:90px;
  align-items:center;
}

.tech-panel {
  overflow:hidden;
  min-height:350px;
  border:1px solid #d9e4ec;
  border-radius:18px;
  background:#f7fafc;
  box-shadow:0 25px 60px rgba(7,24,39,.09);
}

.tech-top {
  display:flex;
  align-items:center;
  gap:5px;
  height:45px;
  padding:0 18px;
  border-bottom:1px solid #dce5ec;
}

.tech-top > span {
  width:7px;height:7px;border-radius:50%;background:#c3d1dc;
}

.tech-top small {
  margin-left:auto;
  color:#8194a4;
  font-size:8px;
  letter-spacing:.15em;
}

.pipeline {
  display:flex;
  align-items:center;
  padding:55px 25px 35px;
}

.pipe-card {
  flex:1;
  min-width:0;
  padding:18px;
  border:1px solid #d9e4ec;
  border-radius:10px;
  background:#fff;
}

.pipe-card small {
  display:block;
  color:#8b9dab;
  font-size:7px;
  letter-spacing:.12em;
}

.pipe-card b {
  display:block;
  margin:8px 0 15px;
  font-size:11px;
}

.pipe-card span {
  color:#648096;
  font-size:8px;
}

.pipe-card.active {
  border-color:rgba(25,185,120,.6);
  box-shadow:0 10px 25px rgba(25,185,120,.08);
}

.pipe-card.active span { color:var(--green); }
.pipe-arrow { padding:0 8px;color:#9eb1bf; }

.tech-stats {
  display:flex;
  justify-content:center;
  gap:24px;
  color:#718698;
  font-size:9px;
}

.tech-stats i {
  display:inline-block;
  width:6px;height:6px;
  margin-right:5px;
  border-radius:50%;
  background:var(--green);
}

.technology-layout > div:last-child p {
  color:var(--muted);
  line-height:1.75;
}

.future {
  padding-left:16px;
  border-left:2px solid var(--green);
  font-size:13px;
}

.lead-section {
  position:relative;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(135deg,#071827,#0a2941);
}

.lead-glow {
  position:absolute;
  width:500px;height:500px;
  left:-200px;bottom:-200px;
  border-radius:50%;
  background:rgba(18,104,232,.12);
  filter:blur(90px);
}

.lead-layout {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:85px;
  align-items:start;
}

.lead-copy { padding-top:35px; }
.lead-copy h2 { color:#fff; }
.lead-copy h2 span { color:var(--green-light); }

.lead-copy > p {
  color:#9fb3c4;
  line-height:1.75;
}

.lead-benefits {
  display:grid;
  gap:13px;
  margin-top:35px;
}

.lead-benefits div {
  display:flex;
  gap:11px;
  align-items:center;
  color:#c3d0db;
  font-size:13px;
}

.lead-benefits i {
  width:22px;height:22px;
  display:grid;place-items:center;
  border-radius:50%;
  background:rgba(25,185,120,.12);
  color:var(--green);
  font-style:normal;
  font-size:11px;
}

.privacy-note {
  display:flex;
  gap:12px;
  margin-top:45px;
  padding-top:22px;
  border-top:1px solid #274157;
  color:#718a9f;
  font-size:11px;
  line-height:1.5;
}

.privacy-note p { margin:0; }

.form-card {
  padding:38px;
  border-radius:22px;
  background:#fff;
  color:var(--ink);
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.form-heading { margin-bottom:28px; }
.form-heading small {
  color:var(--blue);
  font-size:9px;
  font-weight:900;
  letter-spacing:.15em;
}
.form-heading h3 { margin:8px 0 5px;font-size:26px; }
.form-heading p { margin:0;color:#77899a;font-size:13px; }

.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.field { margin-bottom:15px; }

.field label {
  display:block;
  margin-bottom:7px;
  color:#43586b;
  font-size:11px;
  font-weight:750;
}

.field input,
.field select,
.field textarea {
  width:100%;
  border:1px solid #d9e3eb;
  border-radius:8px;
  outline:none;
  color:var(--ink);
  background:#fbfcfd;
  transition:.15s ease;
}

.field input,.field select { height:46px;padding:0 13px; }
.field textarea { padding:12px 13px;resize:vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color:#77a9ec;
  box-shadow:0 0 0 3px rgba(18,104,232,.08);
  background:#fff;
}

.consent {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:6px 0 18px;
  color:#6d7f8e;
  font-size:10px;
  line-height:1.5;
}

.consent input { margin-top:2px;accent-color:var(--green); }

.btn-submit {
  width:100%;
  min-height:53px;
  color:#fff;
  background:linear-gradient(135deg,var(--green),#13a86c);
  font-size:13px;
}

.btn-submit:disabled {
  opacity:.65;
  cursor:wait;
  transform:none;
}

.form-security {
  display:block;
  margin-top:12px;
  text-align:center;
  color:#99a8b4;
  font-size:9px;
}

.form-error {
  display:none;
  margin:0 0 15px;
  padding:11px 13px;
  border-radius:8px;
  color:#a23c3c;
  background:#fff0f0;
  font-size:11px;
  line-height:1.45;
}

.form-error.visible { display:block; }

.hp-field {
  position:absolute!important;
  left:-99999px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}

.success-card {
  padding:30px 5px;
  text-align:center;
}

.success-icon {
  width:62px;height:62px;
  display:grid;place-items:center;
  margin:0 auto 22px;
  border-radius:50%;
  color:#fff;
  background:var(--green);
  font-size:25px;
  box-shadow:0 0 0 9px rgba(25,185,120,.1);
}

.success-card small {
  color:var(--green);
  font-size:9px;
  font-weight:900;
  letter-spacing:.15em;
}

.success-card h3 {
  margin:12px auto;
  max-width:450px;
  font-size:27px;
  line-height:1.2;
}

.success-card p {
  max-width:430px;
  margin:0 auto 25px;
  color:var(--muted);
  line-height:1.65;
}

.btn-whatsapp {
  padding:16px 23px;
  color:#fff;
  background:#17aa69;
}

.closing {
  padding:95px 0;
  color:#fff;
  background:#06131f;
}

.closing-mark {
  width:50px;height:50px;
  display:grid;place-items:center;
  margin:0 auto 28px;
  border:1px solid #24506a;
  border-radius:50%;
  color:var(--green);
  font-size:11px;
  font-weight:900;
}

.closing h2 {
  margin:0 0 30px;
  font-size:clamp(32px,4vw,50px);
  line-height:1.2;
  letter-spacing:-.035em;
}

.closing h2 span { color:var(--green-light); }

footer {
  padding:30px 0;
  color:#778da0;
  background:#040f18;
  border-top:1px solid #152c3d;
}

.footer-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.footer-brand {
  display:flex;
  flex-direction:column;
  gap:4px;
}

.footer-brand strong { color:#c1cfda;font-size:10px;letter-spacing:.08em; }
.footer-brand span, footer p, footer small { font-size:9px; }

.floating-whatsapp {
  position:fixed;
  z-index:60;
  right:22px;
  bottom:22px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 14px 9px 9px;
  border-radius:30px;
  color:#fff;
  background:#16a96a;
  box-shadow:0 12px 30px rgba(0,0,0,.2);
  font-size:11px;
}

.floating-whatsapp span {
  width:30px;height:30px;
  display:grid;place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  font-size:8px;
  font-weight:900;
}

@media (max-width: 980px) {
  .nav-links { display:none; }
  .hero { padding-top:140px; }
  .hero-layout,
  .accounting-layout,
  .split,
  .academy-layout,
  .technology-layout,
  .lead-layout {
    grid-template-columns:1fr;
    gap:55px;
  }
  .network-card { max-width:600px;width:100%;margin:auto; }
  .steps { grid-template-columns:1fr 1fr; }
  .solution-grid { grid-template-columns:1fr 1fr; }
  .manifesto-inner { grid-template-columns:180px 1fr;gap:35px; }
  .engine-grid { grid-template-columns:1fr; }
  .engine-card { min-height:0; }
}

@media (max-width: 680px) {
  .container { width:min(calc(100% - 28px),var(--container)); }
  .section { padding:75px 0; }
  .header .btn-small { display:none; }
  .nav { height:72px; }
  .hero { padding-top:120px;min-height:0; }
  .hero h1 { font-size:42px; }
  .hero-lead { font-size:16px; }
  .hero-actions { align-items:stretch;flex-direction:column;gap:17px; }
  .hero-actions .text-link { align-self:flex-start; }
  .hero-proof { display:none; }
  .network-card { height:390px; }
  .node { transform:scale(.8);transform-origin:center; }
  .node-main { transform:translate(-50%,-50%) scale(.8); }
  .node-a{left:1%;top:12%}
  .node-b{right:0;top:11%}
  .node-c{right:-3%;top:56%}
  .node-d{right:22%;bottom:0}
  .node-e{left:-2%;bottom:9%}
  .pillars { grid-template-columns:1fr 1fr;margin-top:45px; }
  .pillars > div:nth-child(3) { border-left:1px solid rgba(255,255,255,.09); }
  .section-head { display:block;margin-bottom:35px; }
  .section-head > p { margin-top:18px; }
  .steps { grid-template-columns:1fr; }
  .manifesto-inner { grid-template-columns:1fr; }
  .manifesto-symbol { display:none; }
  .cycle { flex-wrap:wrap; }
  .solution-grid { grid-template-columns:1fr 1fr; }
  .solution-grid article { min-height:135px;padding:18px; }
  .dual-cards { grid-template-columns:1fr; }
  .marketplace-card { padding:30px; }
  .academy-grid { grid-template-columns:1fr; }
  .pipeline { padding:40px 12px 30px; }
  .pipe-card { padding:11px 8px; }
  .pipe-arrow { padding:0 3px; }
  .tech-stats { flex-wrap:wrap;gap:10px; }
  .form-card { padding:25px 18px; }
  .form-row { grid-template-columns:1fr;gap:0; }
  .footer-inner { flex-direction:column;text-align:center; }
  .floating-whatsapp b { display:none; }
  .floating-whatsapp { padding:8px;right:14px;bottom:14px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size:36px; }
  .network-card { height:350px; }
  .solution-grid { grid-template-columns:1fr; }
}

/* =========================================================
   CLUBE DE OPORTUNIDADES — V2 EXPERIENCE
   ========================================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

section[id] {
  scroll-margin-top: 105px;
}

/* Mais profundidade visual */
.problem,
.ecosystem,
.competency,
.technology {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(18,104,232,.055), transparent 26%),
    linear-gradient(180deg,#ffffff 0%,#f5f9fc 100%);
}

.how,
.academy {
  position: relative;
  background:
    radial-gradient(circle at 88% 18%,rgba(25,185,120,.08),transparent 25%),
    linear-gradient(135deg,#eef5fa,#f7fafc);
}

.solutions {
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 80% 0%,rgba(18,104,232,.25),transparent 35%),
    radial-gradient(circle at 15% 100%,rgba(25,185,120,.12),transparent 30%),
    linear-gradient(135deg,#061725,#0a2a43);
}

.solutions:before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.24;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,black,transparent 85%);
}

.solutions .container {
  position:relative;
  z-index:1;
}

.solutions h2 {
  color:#fff;
}

.solutions .section-head > p {
  color:#a9bdcc;
}

.solutions .section-tag {
  color:#5ce0a6;
}

.solutions .solution-grid article {
  position:relative;
  overflow:hidden;
  border-color:rgba(255,255,255,.11);
  color:#fff;
  background:
    linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
}

.solutions .solution-grid article:after {
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg,var(--green),var(--blue));
  transition:transform .25s ease;
}

.solutions .solution-grid article:hover {
  border-color:rgba(80,213,160,.35);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.solutions .solution-grid article:hover:after {
  transform:scaleX(1);
}

.solutions .solution-grid small {
  color:#8fa9bb;
}

/* Destaques mais fortes */
.manifesto,
.accounting,
.lead-section {
  background:
    radial-gradient(circle at 85% 15%,rgba(18,104,232,.2),transparent 30%),
    radial-gradient(circle at 10% 90%,rgba(25,185,120,.11),transparent 30%),
    linear-gradient(135deg,#061725,#092c45);
}

.engine-card,
.solution-grid article,
.dual-cards div,
.academy-grid span,
.tech-panel {
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.engine-card:not(.featured):hover,
.dual-cards div:hover,
.academy-grid span:hover {
  transform:translateY(-4px);
  border-color:#b6d2e7;
  box-shadow:0 18px 45px rgba(7,24,39,.08);
}

/* CTA flutuante de conversão */
.floating-whatsapp {
  right:22px;
  bottom:22px;
  min-height:58px;
  padding:7px 20px 7px 8px;
  gap:11px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background:
    linear-gradient(135deg,#17b978,#0e9d63);
  box-shadow:
    0 18px 50px rgba(3,30,20,.28),
    0 0 0 5px rgba(25,185,120,.09);
  cursor:pointer;
  transition:.2s ease;
}

.floating-whatsapp:hover {
  transform:translateY(-3px);
  box-shadow:
    0 22px 55px rgba(3,30,20,.34),
    0 0 0 7px rgba(25,185,120,.1);
}

.floating-whatsapp span {
  width:42px;
  height:42px;
  font-size:0;
  background:rgba(255,255,255,.15);
}

.floating-whatsapp span:before {
  content:"↗";
  font-size:18px;
  font-weight:900;
}

.floating-whatsapp b {
  display:flex;
  flex-direction:column;
  line-height:1.15;
  font-size:12px;
}

.floating-whatsapp b:before {
  content:"QUERO PARTICIPAR";
  font-size:11px;
  letter-spacing:.04em;
}

.floating-whatsapp b {
  font-size:0;
}

.floating-whatsapp b:after {
  content:"Cadastre-se e fale conosco";
  margin-top:4px;
  color:rgba(255,255,255,.75);
  font-size:9px;
  font-weight:600;
}

/* Modal */
.lead-modal {
  position:fixed;
  z-index:1000;
  inset:0;
  display:none;
}

.lead-modal.is-open {
  display:block;
}

.lead-modal-backdrop {
  position:absolute;
  inset:0;
  background:rgba(2,13,22,.76);
  backdrop-filter:blur(8px);
}

.lead-modal-dialog {
  position:absolute;
  top:50%;
  left:50%;
  width:min(760px,calc(100% - 32px));
  max-height:calc(100vh - 40px);
  transform:translate(-50%,-50%);
  overflow:auto;
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  background:#fff;
  box-shadow:0 40px 100px rgba(0,0,0,.4);
}

.lead-modal-top {
  position:sticky;
  z-index:5;
  top:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 20px;
  color:#fff;
  background:linear-gradient(135deg,#071827,#0b3150);
  border-bottom:1px solid rgba(255,255,255,.1);
}

.lead-modal-top div {
  display:flex;
  flex-direction:column;
  gap:3px;
}

.lead-modal-top strong {
  font-size:14px;
}

.lead-modal-top small {
  color:#8fa9bc;
  font-size:10px;
}

.lead-modal-close {
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.09);
  cursor:pointer;
  font-size:22px;
}

.lead-modal-body {
  padding:22px;
}

.lead-modal-body .form-card {
  padding:0;
  box-shadow:none;
}

body.modal-open {
  overflow:hidden;
}

/* Form mais premium */
.form-card {
  border:1px solid rgba(7,24,39,.06);
}

.field input,
.field select,
.field textarea {
  border-radius:11px;
}

.btn-submit {
  border-radius:11px;
  box-shadow:0 12px 28px rgba(25,185,120,.18);
}

/* Mobile */
@media (max-width:680px) {
  html {
    scroll-padding-top:82px;
  }

  section[id] {
    scroll-margin-top:82px;
  }

  body {
    padding-bottom:76px;
  }

  .floating-whatsapp {
    left:12px;
    right:12px;
    bottom:10px;
    width:auto;
    justify-content:center;
    min-height:58px;
    padding:8px 16px;
  }

  .floating-whatsapp span {
    width:34px;
    height:34px;
  }

  .floating-whatsapp b {
    display:flex;
  }

  .lead-modal-dialog {
    top:auto;
    bottom:0;
    left:0;
    width:100%;
    max-height:94dvh;
    transform:none;
    border-radius:22px 22px 0 0;
  }

  .lead-modal-body {
    padding:16px;
  }

  .solutions .solution-grid {
    grid-template-columns:1fr;
  }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *,*:before,*:after {
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}

/* =========================================================
   V2.1 — RITMO VISUAL + NAVEGAÇÃO DE SEÇÕES
   ========================================================= */

/*
 * O header não ocupa o fluxo da página durante toda a rolagem.
 * Uma compensação pequena é suficiente e evita "buracos"
 * acima dos títulos das seções.
 */
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}

section[id] {
  scroll-margin-top:24px;
}

/* ---------- COMO FUNCIONA ---------- */

.how {
  background:
    radial-gradient(circle at 88% 12%,
      rgba(25,185,120,.13),
      transparent 28%),
    radial-gradient(circle at 8% 85%,
      rgba(18,104,232,.08),
      transparent 30%),
    linear-gradient(135deg,#eaf3f8 0%,#f3f8f8 48%,#eaf6f2 100%);
}

/* ---------- ECOSSISTEMA ---------- */

.ecosystem {
  background:
    radial-gradient(circle at 8% 20%,
      rgba(18,104,232,.10),
      transparent 30%),
    radial-gradient(circle at 90% 80%,
      rgba(25,185,120,.08),
      transparent 30%),
    linear-gradient(145deg,#f2f7fb 0%,#ffffff 48%,#eef8f5 100%);
}

.ecosystem .engine-card:not(.featured) {
  background:rgba(255,255,255,.88);
  box-shadow:0 14px 38px rgba(7,24,39,.045);
}

/* ---------- COMPETÊNCIAS ---------- */

.competency {
  background:
    radial-gradient(circle at 85% 20%,
      rgba(18,104,232,.075),
      transparent 28%),
    linear-gradient(135deg,#f5f9fc 0%,#eef7f5 100%);
}

/* ---------- ACADEMIA ---------- */

.academy {
  background:
    radial-gradient(circle at 12% 15%,
      rgba(18,104,232,.08),
      transparent 28%),
    radial-gradient(circle at 88% 80%,
      rgba(25,185,120,.09),
      transparent 30%),
    linear-gradient(135deg,#edf5fa,#f2f8f5);
}

.academy-grid span {
  background:rgba(255,255,255,.9);
}

/* ---------- TECNOLOGIA ---------- */

.technology {
  background:
    radial-gradient(circle at 85% 25%,
      rgba(18,104,232,.10),
      transparent 30%),
    linear-gradient(145deg,#f5f9fc 0%,#edf6f7 100%);
}

/* ---------- CARDS ---------- */

.steps article {
  background:rgba(255,255,255,.92);
}

.steps article:hover {
  background:#fff;
  box-shadow:0 18px 45px rgba(7,24,39,.08);
}

/*
 * Pequena linha de cor para quebrar a aparência excessivamente
 * corporativa/cinza sem transformar a página em algo chamativo.
 */
.steps article,
.engine-card:not(.featured),
.dual-cards div,
.academy-grid span {
  position:relative;
  overflow:hidden;
}

.steps article:before,
.engine-card:not(.featured):before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  opacity:.65;
  background:linear-gradient(90deg,var(--blue),var(--green));
}

/* ---------- RITMO ENTRE SEÇÕES ---------- */

.problem,
.how,
.ecosystem,
.solutions,
.accounting,
.competency,
.academy,
.technology,
.lead-section {
  border-top:1px solid rgba(7,24,39,.045);
}

/* mantém o CTA acima do conteúdo sem cobrir demais os cards */
.floating-whatsapp {
  bottom:20px;
}

/* ---------- MOBILE ---------- */

@media (max-width:680px) {
  html {
    scroll-padding-top:14px;
  }

  section[id] {
    scroll-margin-top:14px;
  }

  .how,
  .ecosystem,
  .competency,
  .academy,
  .technology {
    background-attachment:scroll;
  }
}

/* =========================================================
   V2.2 — ENQUADRAMENTO DAS SEÇÕES
   Deixa respiro antes do início do tópico ao navegar pelo menu
   ========================================================= */

html {
  scroll-padding-top: 78px;
}

section[id] {
  scroll-margin-top: 78px;
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 64px;
  }

  section[id] {
    scroll-margin-top: 64px;
  }
}

/* =========================================================
   V2.3 — ÂNCORA EDITORIAL
   O JS posiciona o section-tag, não a borda da seção.
   ========================================================= */

html {
  scroll-padding-top: 0;
}

section[id] {
  scroll-margin-top: 0;
}
