:root {
  --ink: #0b1020;
  --ink-soft: #30374c;
  --muted: #677087;
  --brand: #5574f7;
  --brand-dark: #3655dc;
  --brand-light: #edf1ff;
  --cyan: #6ce5dc;
  --surface: #ffffff;
  --surface-soft: #f5f7fc;
  --line: #e4e8f1;
  --success: #25d366;
  --shadow: 0 24px 70px rgba(27, 43, 94, 0.12);
  --shadow-soft: 0 14px 40px rgba(27, 43, 94, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(85, 116, 247, 0.35);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--brand);
}

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

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

.section--soft {
  background: var(--surface-soft);
}

.section--dark {
  color: #fff;
  background: var(--ink);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.section__head > :first-child {
  max-width: 760px;
}

.section__head p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section--dark .eyebrow,
.dark-card .eyebrow {
  color: #8fa4ff;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2.05rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.2em;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.text-gradient {
  color: var(--brand);
  background: linear-gradient(120deg, var(--brand-dark), #718bff 65%, #4bbcb4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(85, 116, 247, 0.28);
}

.button--primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 16px 32px rgba(85, 116, 247, 0.34);
}

.button--secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button--secondary:hover {
  border-color: #cbd3e6;
  box-shadow: var(--shadow-soft);
}

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.button--whatsapp {
  color: #072712;
  background: #6ee69a;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 74px;
  border-color: rgba(228, 232, 241, 0.88);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 35px rgba(23, 32, 66, 0.07);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  width: 184px;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 10px 10px;
  border-radius: 10px;
  color: #343b50;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.header__cta {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.is-open .nav-toggle span {
  background: transparent;
}

.is-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.is-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 176px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(108, 229, 220, 0.16), transparent 25%),
    radial-gradient(circle at 20% 5%, rgba(85, 116, 247, 0.13), transparent 30%),
    linear-gradient(180deg, #fafbff 0%, #fff 72%);
}

.hero::before {
  position: absolute;
  top: 90px;
  right: -100px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(85, 116, 247, 0.11);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 70px rgba(85, 116, 247, 0.018), inset 0 0 0 140px rgba(85, 116, 247, 0.018);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 70px;
}

.hero__copy {
  max-width: 700px;
}

.hero__copy .lead {
  max-width: 650px;
  margin-top: 25px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero__note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(108, 229, 220, 0.18);
}

.system-visual {
  position: relative;
  min-height: 510px;
}

.visual-shell {
  position: absolute;
  inset: 28px 0 24px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  backdrop-filter: blur(14px);
}

.visual-topbar {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.visual-dots {
  display: flex;
  gap: 6px;
}

.visual-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dfe4ee;
}

.visual-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 750;
}

.visual-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #4bd281;
}

.visual-content {
  display: grid;
  padding: 24px;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
}

.visual-sidebar {
  padding: 18px 14px;
  border-radius: 18px;
  background: var(--ink);
}

.visual-sidebar b {
  display: block;
  margin-bottom: 28px;
  color: #fff;
  font-size: 0.8rem;
}

.visual-sidebar span {
  display: block;
  height: 8px;
  margin: 0 0 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.visual-sidebar span:first-of-type {
  width: 88%;
  background: var(--brand);
}

.visual-main {
  min-width: 0;
}

.visual-title {
  width: 42%;
  height: 11px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #cdd5e5;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.visual-metric {
  min-height: 86px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.visual-metric small {
  display: block;
  width: 65%;
  height: 6px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #e6eaf2;
}

.visual-metric strong {
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.visual-chart {
  position: relative;
  height: 160px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(#fff, #fafbff);
}

.visual-chart::before,
.visual-chart::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: #edf0f5;
}

.visual-chart::before {
  top: 33%;
  box-shadow: 0 52px 0 #edf0f5;
}

.chart-line {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  height: 100px;
}

.chart-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(30, 44, 93, 0.14);
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.float-card i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-style: normal;
}

.float-card--one {
  top: 0;
  right: -15px;
}

.float-card--two {
  bottom: 0;
  left: 0;
  animation-delay: -2s;
}

.float-card--three {
  right: -18px;
  bottom: 75px;
  animation-delay: -3.5s;
}

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

.signal-bar {
  border-block: 1px solid var(--line);
  background: #fff;
}

.signal-bar__inner {
  display: grid;
  min-height: 102px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.89rem;
  font-weight: 720;
}

.signal-item:first-child {
  padding-left: 0;
}

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

.signal-item .icon {
  color: var(--brand);
}

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

.split--reverse > :first-child {
  order: 2;
}

.split__copy h2 {
  margin-bottom: 25px;
}

.split__copy > p {
  color: var(--muted);
}

.quote-card {
  position: relative;
  padding: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #f5f7ff);
  box-shadow: var(--shadow-soft);
}

.quote-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 40px solid rgba(85, 116, 247, 0.06);
  border-radius: 50%;
  content: "";
}

.quote-card__mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.quote-card p {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  border-color: #cfd7ec;
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.service-card__icon,
.feature-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--brand-light);
  color: var(--brand-dark);
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.card-link span {
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

.service-card--featured {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.service-card--featured p {
  color: #aeb6ca;
}

.service-card--featured .service-card__icon {
  background: rgba(85, 116, 247, 0.18);
  color: #91a6ff;
}

.service-card--featured .card-link {
  color: #91a6ff;
}

.whatsapp-panel {
  position: relative;
  display: grid;
  padding: 72px;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 87% 15%, rgba(37, 211, 102, 0.19), transparent 30%),
    linear-gradient(135deg, #0b1020 0%, #111b3a 100%);
  box-shadow: var(--shadow);
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
}

.whatsapp-panel::before {
  position: absolute;
  top: -100px;
  right: -40px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(110, 230, 154, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 50px rgba(110, 230, 154, 0.02), inset 0 0 0 100px rgba(110, 230, 154, 0.02);
}

.whatsapp-panel__copy {
  position: relative;
  z-index: 1;
}

.whatsapp-panel h2 {
  margin-bottom: 24px;
}

.whatsapp-panel__copy > p {
  color: #bdc5d7;
}

.message-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.message-bubble {
  max-width: 92%;
  padding: 15px 18px;
  border-radius: 18px 18px 18px 5px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 700;
}

.message-bubble:nth-child(2) {
  align-self: end;
  border-radius: 18px 18px 5px;
  background: #dff7e7;
}

.message-bubble:nth-child(3) {
  margin-left: 24px;
}

.process-grid {
  display: grid;
  counter-reset: process;
  grid-template-columns: repeat(5, 1fr);
}

.process-step {
  position: relative;
  padding: 0 26px;
  counter-increment: process;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step::before {
  display: grid;
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid #ced6ea;
  border-radius: 50%;
  content: "0" counter(process);
  background: #fff;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 0;
  left: 48px;
  height: 1px;
  content: "";
  background: #ced6ea;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.sector-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  transition: background 180ms ease, transform 180ms ease;
}

.sector-card:hover {
  background: #fff;
  transform: translateY(-3px);
}

.sector-card .icon {
  margin-bottom: 28px;
  color: var(--brand);
}

.sector-card h3 {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

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

.benefit-item {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.benefit-item__check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.benefit-item h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.benefit-item p {
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  padding: 90px 0;
}

.final-cta__box {
  position: relative;
  padding: 72px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(125deg, var(--brand-dark), var(--brand) 65%, #6d84ef);
  color: #fff;
}

.final-cta__box::after {
  position: absolute;
  top: -150px;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 60px rgba(255, 255, 255, 0.035), inset 0 0 0 120px rgba(255, 255, 255, 0.025);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.final-cta h2 {
  margin-bottom: 22px;
}

.final-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(108, 229, 220, 0.14), transparent 25%),
    radial-gradient(circle at 15% 0%, rgba(85, 116, 247, 0.13), transparent 28%),
    var(--surface-soft);
}

.page-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
}

.page-hero h1 {
  max-width: 830px;
  font-size: clamp(2.7rem, 5.8vw, 4.75rem);
}

.page-hero .lead {
  max-width: 700px;
  margin-top: 26px;
}

.page-visual {
  position: relative;
  min-height: 410px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.page-visual__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-visual__nodes {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
}

.page-visual__nodes::before,
.page-visual__nodes::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, transparent, #bfc9e5, transparent);
}

.page-visual__nodes::before {
  right: 12%;
  left: 12%;
  height: 1px;
}

.page-visual__nodes::after {
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(transparent, #bfc9e5, transparent);
}

.node {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--brand-dark);
}

.node--main {
  width: 110px;
  height: 110px;
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.node--top { top: 0; left: 0; }
.node--right { right: 0; bottom: 10px; }
.node--bottom { bottom: 0; left: 18%; }
.node--left { top: 8px; right: 4%; }

.node .icon {
  width: 28px;
  height: 28px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

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

.intro-grid__aside h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.intro-grid__body > p {
  color: var(--muted);
  font-size: 1.12rem;
}

.feature-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.feature-card__icon {
  margin-bottom: 36px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.outcome-list {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.outcome-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 670;
}

.outcome-list__item .benefit-item__check {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  font-size: 0.7rem;
}

.dark-card {
  position: relative;
  padding: 58px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
}

.dark-card p {
  color: #b8c0d2;
}

.case-flow {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-flow__item {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.case-flow__item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -28px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  content: "→";
  background: var(--brand);
  color: #fff;
  transform: translateY(-50%);
}

.case-flow__item small {
  display: block;
  margin-bottom: 18px;
  color: #8ea3ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-flow__item h3 {
  margin-bottom: 11px;
}

.case-flow__item p {
  margin: 0;
  font-size: 0.88rem;
}

.plain-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  gap: 16px;
}

.plain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
}

.plain-list li::before {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.69rem;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
}

.contact-info {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 2.1rem;
}

.contact-info > p {
  color: #b8c0d2;
}

.contact-list {
  display: grid;
  margin-top: 40px;
  gap: 14px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-list .icon {
  color: #91a6ff;
}

.contact-list small {
  display: block;
  color: #929caf;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 0.95rem;
}

.contact-form {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #d8deeb;
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(85, 116, 247, 0.11);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--brand);
}

.checkbox-field a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.form-note,
.form-status {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  background: #e8f8ee;
  color: #176b37;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 {
  margin: 52px 0 18px;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.site-footer {
  color: #c1c8d8;
  background: #080c18;
}

.footer__main {
  display: grid;
  padding: 74px 0 52px;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 50px;
}

.footer__brand img {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer__brand p {
  max-width: 330px;
  color: #929bad;
  font-size: 0.9rem;
}

.footer__company-data {
  display: grid;
  margin-top: 24px;
  color: #9ea7b9;
  font-size: 0.82rem;
  gap: 3px;
}

.footer__col h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__col ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.footer__col a {
  color: #9ea7b9;
  font-size: 0.87rem;
  transition: color 180ms ease;
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #7f899d;
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 800;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 10px 28px rgba(15, 80, 39, 0.25);
  color: #fff;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float .icon {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-ready [data-reveal].is-visible,
.reveal-ready .hero [data-reveal],
.reveal-ready .page-hero [data-reveal] {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1100px) {
  :root { --header-height: 76px; }
  .header__cta { display: none; }
  .main-nav { gap: 2px; }
  .main-nav a { padding-inline: 8px; font-size: 0.79rem; }
  .brand { width: 160px; }
  .hero__grid { grid-template-columns: 1fr 0.85fr; gap: 38px; }
  .service-card { min-height: 360px; }
  .page-hero__grid { gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .nav-toggle { display: flex; margin-left: auto; }
  .main-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 3px;
    padding: 20px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .is-open .main-nav { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { padding: 14px 16px; font-size: 1rem; }
  .hero { min-height: auto; padding: 140px 0 78px; }
  .hero__grid,
  .page-hero__grid,
  .split,
  .intro-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .hero__copy { max-width: 760px; }
  .system-visual { max-width: 600px; min-height: 480px; }
  .signal-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .signal-item:nth-child(2) { border-right: 0; }
  .signal-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .signal-item:nth-child(3) { padding-left: 0; }
  .split--reverse > :first-child { order: initial; }
  .section__head { display: block; }
  .section__head p { margin-top: 22px; }
  .service-grid,
  .benefit-grid,
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-panel { padding: 54px; grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .process-step:nth-child(3)::after { display: none; }
  .process-step:nth-child(4) { padding-left: 0; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 145px 0 85px; }
  .page-hero__copy { max-width: 800px; }
  .page-visual { max-width: 600px; width: 100%; }
  .intro-grid__aside { position: static; }
  .footer__main { grid-template-columns: 1.2fr 0.8fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 68px 0; }
  .brand { width: 150px; }
  .hero { padding-top: 126px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero__note { align-items: flex-start; }
  .hero__note span { margin-top: 7px; }
  .system-visual { min-height: 395px; }
  .visual-shell { inset: 28px 2px 18px 12px; }
  .visual-content { padding: 16px; grid-template-columns: 0.56fr 1.44fr; gap: 10px; }
  .visual-sidebar { padding: 14px 10px; }
  .visual-metrics { gap: 5px; }
  .visual-metric { min-height: 72px; padding: 9px; }
  .visual-metric strong { font-size: 0.92rem; }
  .visual-chart { height: 125px; }
  .float-card { padding: 10px 12px; }
  .float-card i { width: 30px; height: 30px; }
  .float-card--one { right: 0; }
  .float-card--three { display: none; }
  .signal-bar__inner { grid-template-columns: 1fr; }
  .signal-item { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal-item:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .signal-item:last-child { border-bottom: 0; }
  .quote-card { padding: 34px 28px; }
  .quote-card__mark { margin-bottom: 30px; }
  .service-grid,
  .benefit-grid,
  .feature-grid,
  .sector-grid,
  .outcome-list { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 27px; }
  .service-card__icon { margin-bottom: 34px; }
  .whatsapp-panel { padding: 38px 24px; border-radius: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 0 0 0 66px; }
  .process-step:first-child,
  .process-step:nth-child(4) { padding-left: 66px; }
  .process-step::before { position: absolute; top: 0; left: 0; }
  .process-step:not(:last-child)::after { top: 48px; bottom: -48px; left: 24px; width: 1px; height: auto; }
  .process-step:nth-child(3)::after { display: block; }
  .final-cta { padding: 64px 0; }
  .final-cta__box { padding: 42px 25px; border-radius: 26px; }
  .page-hero { padding: 130px 0 70px; }
  .page-visual { min-height: 340px; padding: 24px; }
  .node { width: 66px; height: 66px; border-radius: 18px; }
  .node--main { width: 90px; height: 90px; }
  .dark-card { padding: 38px 25px; }
  .case-flow { grid-template-columns: 1fr; }
  .case-flow__item:not(:last-child)::after { top: auto; right: auto; bottom: -27px; left: 50%; transform: translateX(-50%) rotate(90deg); }
  .contact-info,
  .contact-form { padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 38px 22px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}
