:root {
  --ink: #061424;
  --navy: #071d31;
  --navy-2: #0b2b45;
  --graphite: #1b3146;
  --graphite-2: #243b51;
  --muted: #7f8d9a;
  --paper: #eaf6f8;
  --card: #f5fbfc;
  --line: rgba(111, 142, 163, 0.28);
  --accent: #08c7df;
  --accent-dark: #0497b5;
  --silver: #d8e5ea;
  --orange: #ff6b1a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(8, 199, 223, 0.22), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(36, 59, 81, 0.42), transparent 34rem),
    linear-gradient(135deg, #eaf6f8 0%, #dce9ee 46%, #f7fbfc 100%);
  color: var(--ink);
  font-family: "Aptos Display", "Segoe UI", sans-serif;
}

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

main > section,
main > .section {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.site-header {
  position: fixed;
  top: 0.9rem;
  left: 50%;
  right: auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.4vw, 1.8rem);
  margin: 0;
  max-width: min(94vw, 1760px);
  min-height: 92px;
  padding: 0.62rem 0.8rem 0.62rem 1.25rem;
  background:
    linear-gradient(90deg, rgba(6, 20, 36, 0.98), rgba(7, 29, 49, 0.95)),
    radial-gradient(circle at 9% 100%, rgba(8, 199, 223, 0.38), transparent 12rem);
  border: 1px solid rgba(8, 199, 223, 0.32);
  border-radius: 3rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 1.3rem 3rem rgba(6, 20, 36, 0.32), inset 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateX(-50%);
  width: min(94vw, 1760px);
}

.brand {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  height: clamp(58px, 4.8vw, 72px);
  max-width: clamp(280px, 22vw, 460px);
  overflow: visible;
  padding: 0;
  width: clamp(280px, 22vw, 460px);
}

.brand img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

nav {
  display: flex;
  flex: 1;
  gap: clamp(0.68rem, 1vw, 1.25rem);
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.78rem, 0.82vw, 0.98rem);
  font-weight: 800;
  white-space: nowrap;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: #fff;
}

.header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: clamp(0.9rem, 1.25vw, 1.35rem);
}

.header-product-link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  height: clamp(42px, 3.5vw, 58px);
  justify-content: center;
  overflow: hidden;
  padding: 0;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: clamp(156px, 10.8vw, 218px);
}

.header-product-link:hover {
  filter: drop-shadow(0 0 1rem rgba(8, 199, 223, 0.38));
  opacity: 0.96;
  transform: translateY(-1px);
}

.header-product-link img {
  display: block;
  height: 100%;
  filter: drop-shadow(0 0.45rem 0.9rem rgba(8, 199, 223, 0.18));
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.header-whatsapp {
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  gap: 0;
  line-height: 1.05;
  min-height: 54px;
  padding: 0.78rem 1.25rem;
  text-align: center;
  width: clamp(210px, 16vw, 310px);
}

.header-whatsapp span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
}

.header-whatsapp strong {
  color: var(--accent);
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  line-height: 1.18;
  white-space: normal;
}

.header-cta,
.button,
.lead-form button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #4fe3f0);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  padding: 0.95rem 1.35rem;
  box-shadow: 0 1rem 2rem rgba(8, 199, 223, 0.2);
}

.site-header .header-cta {
  background: linear-gradient(135deg, var(--orange), #ff8a2f);
  box-shadow: 0 1rem 2rem rgba(255, 107, 26, 0.28);
  color: #081626;
  font-size: clamp(0.74rem, 0.82vw, 0.95rem);
  font-weight: 950;
  justify-content: center;
  line-height: 1.16;
  min-height: 52px;
  text-align: center;
  width: clamp(180px, 14vw, 260px);
}

.button.secondary {
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  outline: 1px solid rgba(6, 20, 36, 0.34);
}

.hero .button.secondary,
.case-showcase .button.secondary,
.solutions-dark .button.secondary,
.ceo-section .button.secondary {
  color: #fff;
  outline-color: rgba(255, 255, 255, 0.34);
}

.hero,
.capture,
.page-hero,
.article {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(2rem, 4vw, 4rem);
  min-height: 68vh;
  padding: clamp(3.8rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 5vw, 4.5rem);
  align-items: center;
}

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(8, 199, 223, 0.22), transparent 28rem),
    radial-gradient(circle at 12% 84%, rgba(255, 107, 26, 0.08), transparent 24rem),
    linear-gradient(135deg, #061424 0%, #071d31 48%, #0b2b45 100%);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding-top: clamp(8rem, 10vw, 9.5rem);
  position: relative;
  overflow: hidden;
}

.home-visual-hero {
  display: flex;
  min-height: 100svh;
  padding: clamp(7rem, 8.5vw, 8.4rem) clamp(0.7rem, 2.4vw, 2.2rem) clamp(1rem, 1.8vw, 1.8rem);
}

.home-seo-copy {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.home-hero-art {
  align-self: center;
  border: 1px solid rgba(8, 199, 223, 0.2);
  border-radius: 1.8rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
  height: auto;
  margin: 0 auto;
  max-height: calc(100svh - 9.2rem);
  max-width: none;
  overflow: hidden;
  width: 100%;
}

.home-hero-art img {
  display: block;
  height: auto;
  max-height: calc(100svh - 9.2rem);
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.hero::after {
  background:
    linear-gradient(135deg, transparent 0 68%, rgba(8, 199, 223, 0.58) 68% 68.5%, transparent 68.5%),
    linear-gradient(135deg, transparent 0 76%, rgba(255, 107, 26, 0.72) 76% 76.45%, transparent 76.45%);
  content: "";
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.page-hero,
.article {
  display: block;
  min-height: auto;
  max-width: 980px;
}

.hero h1,
.page-hero h1,
.capture h1,
  .article h1 {
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin: 0.5rem 0 1.5rem;
}

.hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero p,
.page-hero p,
.section p,
.capture p,
.article p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.6;
}

.about-hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  max-width: none;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.about-hero::after {
  background:
    radial-gradient(circle at 72% 28%, rgba(8, 199, 223, 0.22), transparent 20rem),
    linear-gradient(135deg, transparent 0 72%, rgba(8, 199, 223, 0.35) 72% 72.4%, transparent 72.4%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-hero > * {
  position: relative;
  z-index: 1;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.about-hero-card {
  background:
    radial-gradient(circle at 70% 20%, rgba(8, 199, 223, 0.2), transparent 16rem),
    linear-gradient(145deg, #071d31, #061424);
  border: 1px solid rgba(8, 199, 223, 0.28);
  border-radius: 1.8rem;
  box-shadow: 0 2rem 5rem rgba(6, 20, 36, 0.22);
  color: #fff;
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
}

.about-hero-card img {
  display: block;
  max-width: min(100%, 420px);
  object-fit: contain;
  width: 100%;
}

.about-hero-card strong {
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.about-hero-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.about-hero-card div,
.about-hero-card span {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-hero-card span {
  border: 1px solid rgba(8, 199, 223, 0.28);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.7rem;
  text-transform: uppercase;
}

.about-split,
.about-principles,
.about-products,
.about-leadership {
  min-height: 100svh;
  padding: clamp(5.2rem, 6vw, 6.2rem) clamp(1rem, 5vw, 5rem) clamp(1.6rem, 2.6vw, 2.6rem);
}

.about-split {
  align-items: center;
  background:
    radial-gradient(circle at 88% 16%, rgba(8, 199, 223, 0.2), transparent 24rem),
    linear-gradient(135deg, #061424, #0b2b45);
  color: #fff;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 0.9fr 1.1fr;
}

.about-split h2,
.about-products h2,
.about-leadership h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0.6rem 0 1rem;
}

.about-split p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-timeline {
  display: grid;
  gap: 1rem;
}

.about-timeline article,
.about-principles article,
.about-product-grid article {
  border: 1px solid rgba(8, 199, 223, 0.2);
  border-radius: 1.4rem;
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.about-timeline article {
  background: rgba(255, 255, 255, 0.08);
}

.about-timeline span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.about-timeline strong,
.about-product-grid strong {
  color: #fff;
  font-size: 1.35rem;
}

.about-timeline p {
  margin: 0;
}

.about-principles {
  align-content: center;
  background: #eaf6f8;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-principles article {
  background: #fff;
  border-color: rgba(6, 20, 36, 0.08);
  box-shadow: 0 1rem 2.5rem rgba(6, 20, 36, 0.08);
  min-height: min(54vh, 420px);
}

.about-principles h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0;
}

.about-principles p {
  color: var(--muted);
  line-height: 1.6;
  margin: auto 0 0;
}

.about-products {
  align-content: center;
  background:
    radial-gradient(circle at 85% 12%, rgba(8, 199, 223, 0.18), transparent 24rem),
    #061424;
  color: #fff;
  display: grid;
  gap: 1.6rem;
}

.about-products > div:first-child {
  max-width: 980px;
}

.about-products > div:first-child p,
.about-leadership p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-product-grid article {
  background: rgba(255, 255, 255, 0.06);
  min-height: min(46vh, 380px);
}

.about-product-grid img {
  background: #fff;
  border-radius: 1rem;
  display: block;
  height: clamp(130px, 16vw, 220px);
  object-fit: contain;
  padding: 0.8rem;
  width: 100%;
}

.about-product-grid article:nth-child(2) img {
  background: #061424;
  object-fit: cover;
  padding: 0;
}

.about-product-grid span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.about-leadership {
  align-items: center;
  background:
    radial-gradient(circle at 18% 8%, rgba(8, 199, 223, 0.18), transparent 22rem),
    linear-gradient(135deg, #071d31, #061424);
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.75fr 1.25fr;
}

.about-leader-strip {
  display: grid;
  gap: 1rem;
}

.about-leader-strip img {
  border: 1px solid rgba(8, 199, 223, 0.22);
  border-radius: 1.3rem;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.24);
  display: block;
  max-height: min(34vh, 310px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.compact-page {
  align-content: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(8, 199, 223, 0.12), transparent 24rem),
    linear-gradient(180deg, #eaf6f8, #f7fbfc);
  display: grid;
  gap: clamp(1.35rem, 2.4vw, 2.2rem);
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  min-height: 100svh;
  padding: clamp(6.2rem, 8vh, 7rem) clamp(1rem, 4vw, 4rem) clamp(1.4rem, 3vh, 2rem);
}

.compact-copy {
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.compact-copy h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
  margin: 0;
  text-wrap: balance;
}

.compact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

.compact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.compact-proof span {
  background: rgba(8, 199, 223, 0.08);
  border: 1px solid rgba(8, 199, 223, 0.26);
  border-radius: 999px;
  color: #007d93;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 0.56rem 0.72rem;
  text-transform: uppercase;
}

.content-cards {
  align-self: center;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.content-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(6, 20, 36, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 1rem 2.4rem rgba(6, 20, 36, 0.06);
  display: grid;
  gap: 0.72rem;
  min-height: clamp(10rem, 20vh, 13.4rem);
  padding: clamp(1rem, 1.8vw, 1.35rem);
}

.content-card span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-card h2 {
  color: var(--ink);
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}

.content-card p {
  color: var(--muted);
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  line-height: 1.52;
  margin: 0;
}

.content-card a {
  align-self: end;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.content-card a::after {
  color: var(--accent);
  content: " ->";
}

.hero p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 720px;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.hero-proof-list span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(216, 229, 234, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.7rem 1rem;
}

.eyebrow {
  color: var(--accent);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  background:
    linear-gradient(145deg, rgba(36, 59, 81, 0.95), rgba(7, 29, 49, 0.92)),
    radial-gradient(circle at top right, rgba(8, 199, 223, 0.3), transparent 20rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2.2rem;
  color: #fff;
  min-height: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.34);
}

.hero-card::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 58%);
  content: "";
  height: 22rem;
  position: absolute;
  right: -7rem;
  top: -7rem;
  width: 22rem;
}

.hero-art-card {
  background: transparent;
  border: 0;
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.32);
  min-height: auto;
  padding: 0;
}

.hero-art-card::before,
.hero-art-card::after {
  content: none;
}

.hero-art-card img {
  border-radius: 2rem;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.hero-company-card {
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(circle at 84% 18%, rgba(8, 199, 223, 0.18), transparent 18rem),
    #061424;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2.2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.34);
  display: block;
  margin: 0;
  min-height: clamp(420px, 42vw, 560px);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.hero-company-card::before {
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(8, 199, 223, 0.95) 72% 72.35%, transparent 72.35%),
    linear-gradient(135deg, transparent 0 82%, rgba(255, 107, 26, 0.8) 82% 82.35%, transparent 82.35%);
  height: auto;
  inset: 0;
  opacity: 0.42;
  width: auto;
  z-index: 2;
}

.hero-company-card::after {
  background:
    linear-gradient(90deg, rgba(6, 20, 36, 0.05), rgba(6, 20, 36, 0.12) 48%, rgba(6, 20, 36, 0.9) 78%),
    linear-gradient(180deg, rgba(6, 20, 36, 0.08), rgba(6, 20, 36, 0.28));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-company-photo {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  width: 100%;
}

.hero-company-overlay {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 229, 234, 0.35);
  border-radius: 1.4rem;
  bottom: 1.2rem;
  color: var(--ink);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 92px minmax(0, 1fr);
  left: 1.2rem;
  max-width: min(470px, calc(100% - 2.4rem));
  padding: 0.75rem 0.95rem;
  position: absolute;
  width: min(470px, calc(100% - 2.4rem));
  z-index: 3;
}

.hero-company-overlay img {
  background: #061424;
  border-radius: 1rem;
  display: block;
  height: 62px;
  object-fit: contain;
  padding: 0.3rem;
  width: 92px;
}

.hero-company-card .hero-company-overlay strong {
  color: var(--ink);
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
  position: static;
}

.hero-company-overlay span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  grid-column: 2;
  margin-top: 0.35rem;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-company-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  z-index: 3;
}

.hero-company-stats span {
  background: rgba(6, 20, 36, 0.78);
  border: 1px solid rgba(8, 199, 223, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.55rem 0.8rem;
}

.hero-card > strong {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  position: relative;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.76);
  position: relative;
}

.hero-banner-card {
  display: block;
}

.authorized-box {
  align-items: center;
  background: #fff;
  border-radius: 1.35rem 1.35rem 0.9rem 0.9rem;
  color: var(--ink);
  display: grid;
  gap: 0.7rem;
  grid-template-columns: auto minmax(210px, 330px) 1fr;
  margin-bottom: 0.9rem;
  padding: 1rem 1.2rem;
}

.authorized-box span {
  background: rgba(8, 199, 223, 0.1);
  border: 1px solid rgba(8, 199, 223, 0.22);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.authorized-box img {
  display: block;
  max-height: 92px;
  object-fit: contain;
  width: 100%;
}

.authorized-box p {
  color: #536472;
  font-size: 0.92rem;
  line-height: 1.35;
  margin: 0;
}

.hero-banner-card > img {
  aspect-ratio: 3 / 2;
  border-radius: 1.5rem;
  display: block;
  object-fit: cover;
  width: 100%;
}

.hero-banner-caption {
  padding: 1.1rem 0.4rem 0.2rem;
}

.hero-banner-caption strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}

.hero-banner-caption p {
  margin-bottom: 0;
}

.hero-logo-pill {
  align-items: center;
  background:
    radial-gradient(circle at 10% 50%, rgba(8, 199, 223, 0.18), transparent 10rem),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(216, 229, 234, 0.22);
  border-radius: 999px;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 86px minmax(170px, 1fr) minmax(190px, auto);
  justify-content: start;
  margin-bottom: 1.5rem;
  max-width: 760px;
  padding: 0.55rem 1.3rem 0.55rem 0.6rem;
  width: fit-content;
}

.hero-logo-pill img {
  background: linear-gradient(145deg, #dff7fb, #ffffff);
  border: 1px solid rgba(8, 199, 223, 0.4);
  border-radius: 1.35rem;
  box-shadow: 0 0 0 6px rgba(8, 199, 223, 0.08), 0 1rem 2.4rem rgba(8, 199, 223, 0.24);
  height: 82px;
  object-fit: cover;
  padding: 0;
  width: 82px;
}

.hero-logo-pill span,
.hero-visual-top span,
.demo-card span,
.brand-strip span,
figcaption {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-logo-pill span {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.hero-logo-pill strong {
  align-items: center;
  color: var(--accent);
  display: flex;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 900;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.hero-visual-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.hero-visual-top img {
  background: #fff;
  border-radius: 999px;
  height: 42px;
  max-width: 150px;
  object-fit: contain;
  padding: 0.45rem 0.7rem;
}

.hero-visual-top span {
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-preview {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.4rem;
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.2rem;
  position: relative;
}

.preview-line,
.preview-grid span {
  background: rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  display: block;
  height: 0.7rem;
}

.preview-line.wide {
  width: 68%;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.preview-chart {
  align-items: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  height: 8rem;
}

.preview-chart i {
  background: linear-gradient(180deg, #4fe3f0, #08c7df 55%, #243b51);
  border-radius: 999px 999px 0.4rem 0.4rem;
  display: block;
}

.preview-chart i:nth-child(1) {
  height: 46%;
}

.preview-chart i:nth-child(2) {
  height: 78%;
}

.preview-chart i:nth-child(3) {
  height: 58%;
}

.preview-chart i:nth-child(4) {
  height: 92%;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--navy);
  padding: 0 clamp(1rem, 5vw, 5rem) 3rem;
}

.brand-strip span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  padding: 1.1rem;
  text-align: center;
}

.impact-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.35vw, 1.5rem);
  background: var(--navy);
  padding: clamp(4.8rem, 5.4vw, 5.8rem) clamp(1rem, 3.2vw, 3.6rem) clamp(1.4rem, 2.2vw, 2.4rem);
  position: relative;
}

.audience-section,
.diagnostic-section,
.erp-doc-section {
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.audience-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(8, 199, 223, 0.18), transparent 24rem),
    linear-gradient(135deg, #f5fbfc 0%, #eaf6f8 100%);
  align-items: center;
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  position: relative;
}

.audience-section::after {
  background:
    linear-gradient(135deg, transparent 0 70%, rgba(8, 199, 223, 0.2) 70% 70.35%, transparent 70.35%),
    radial-gradient(circle at 90% 82%, rgba(6, 20, 36, 0.08), transparent 18rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.audience-section > * {
  position: relative;
  z-index: 1;
}

.audience-section h2,
.diagnostic-section h2,
.erp-doc-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0.6rem 0 1rem;
}

.audience-section p,
.diagnostic-section p,
.erp-doc-section p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.audience-proof {
  background:
    linear-gradient(135deg, rgba(6, 20, 36, 0.96), rgba(11, 43, 69, 0.94));
  border: 1px solid rgba(8, 199, 223, 0.28);
  border-radius: 1.3rem;
  box-shadow: 0 1.2rem 3rem rgba(6, 20, 36, 0.14);
  color: #fff;
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
  max-width: 580px;
  padding: 1.2rem;
}

.audience-proof strong {
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.audience-proof span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.audience-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-grid article {
  background:
    radial-gradient(circle at 95% 10%, rgba(8, 199, 223, 0.08), transparent 9rem),
    #fff;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: 0 1rem 2.5rem rgba(6, 20, 36, 0.08);
  display: grid;
  gap: 0.55rem;
  min-height: clamp(8.2rem, 17vh, 11.8rem);
  padding: clamp(1rem, 1.6vw, 1.25rem);
  position: relative;
}

.audience-grid article i {
  align-items: center;
  background: rgba(8, 199, 223, 0.12);
  border: 1px solid rgba(8, 199, 223, 0.3);
  border-radius: 999px;
  color: #007d93;
  display: inline-flex;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  height: 2.15rem;
  justify-content: center;
  width: 2.15rem;
}

.audience-grid strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.25vw, 1.25rem);
  line-height: 1.08;
}

.audience-grid span {
  color: var(--muted);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.45;
}

.audience-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.diagnostic-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 199, 223, 0.22), transparent 24rem),
    linear-gradient(135deg, #061424, #0b2b45);
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.diagnostic-section p {
  color: rgba(255, 255, 255, 0.72);
}

.diagnostic-list {
  display: grid;
  gap: 0.85rem;
}

.diagnostic-list span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 229, 234, 0.16);
  border-radius: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  padding: 1rem 1.1rem;
}

.method-panel {
  align-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(8, 199, 223, 0.18), transparent 28rem),
    linear-gradient(135deg, #061424, #0b2b45 56%, #061424);
  color: #fff;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 0.75fr 1.25fr;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.method-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  letter-spacing: -0.075em;
  line-height: 0.94;
  margin: 0.6rem 0 1rem;
}

.method-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.15rem;
  line-height: 1.7;
}

.method-visual {
  background:
    radial-gradient(circle at 82% 18%, rgba(8, 199, 223, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 229, 234, 0.14);
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.22);
  overflow: hidden;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

.method-dashboard {
  background:
    linear-gradient(135deg, rgba(234, 246, 248, 0.98), rgba(255, 255, 255, 0.92));
  border-radius: 1.45rem;
  color: var(--ink);
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
  min-height: 170px;
  padding: 1.2rem;
  position: relative;
}

.method-dashboard::before {
  background:
    linear-gradient(90deg, #08c7df 0 46%, #90a6b1 46% 100%);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 1.2rem;
  max-width: 310px;
  position: absolute;
  right: 1.2rem;
  top: 4.7rem;
}

.method-dashboard span {
  border-radius: 999px;
  display: inline-block;
  height: 12px;
  width: 12px;
}

.method-dashboard span:nth-child(1) {
  background: var(--accent);
}

.method-dashboard span:nth-child(2) {
  background: var(--orange);
  left: 2.2rem;
  position: absolute;
  top: 1.2rem;
}

.method-dashboard span:nth-child(3) {
  background: var(--navy-2);
  left: 3.3rem;
  position: absolute;
  top: 1.2rem;
}

.method-dashboard strong {
  align-self: end;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin-top: 4.5rem;
}

.method-dashboard em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.method-steps {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.method-steps article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 229, 234, 0.14);
  border-radius: 1.1rem;
  min-height: 160px;
  padding: 1rem;
}

.method-steps article span {
  align-items: center;
  background: rgba(8, 199, 223, 0.14);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 950;
  height: 2.35rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 2.35rem;
}

.method-steps article strong {
  color: #fff;
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.method-steps article p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem 0.35rem 0.2rem;
}

.method-tags span {
  background: rgba(8, 199, 223, 0.12);
  border: 1px solid rgba(8, 199, 223, 0.24);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 0.65rem 0.9rem;
  text-transform: uppercase;
}

.impact-box {
  border-radius: 1.4rem;
  min-height: min(62vh, 34rem);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.impact-proof {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.24), transparent 14rem),
    linear-gradient(135deg, var(--accent), #4fe3f0);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.impact-proof strong {
  display: block;
  font-size: clamp(3.2rem, 6.2vw, 6.2rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.impact-proof h3 {
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: auto 0 1rem;
  max-width: 360px;
}

.impact-proof p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: 430px;
}

.impact-proof .eyebrow {
  color: #063042;
  margin-bottom: 0.8rem;
}

.impact-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.impact-proof-tags span {
  background: rgba(6, 20, 36, 0.1);
  border: 1px solid rgba(6, 20, 36, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.7rem;
  text-transform: uppercase;
}

.impact-solution {
  background:
    radial-gradient(circle at 75% 12%, rgba(8, 199, 223, 0.18), transparent 14rem),
    linear-gradient(145deg, #0b2136, #061424);
  border: 1px solid rgba(216, 229, 234, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.26);
  gap: clamp(1rem, 1.3vw, 1.4rem);
  padding: clamp(1rem, 1.8vw, 1.5rem);
}

.impact-solution img {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 229, 234, 0.2);
  border-radius: 1rem;
  display: block;
  height: clamp(11rem, 25vh, 15.5rem);
  object-fit: contain;
  padding: 0.8rem;
  width: 100%;
}

.impact-product-logo {
  align-items: center;
  background:
    radial-gradient(circle at 48% 42%, rgba(8, 199, 223, 0.24), transparent 18rem),
    linear-gradient(135deg, #061424 0%, #0b2b45 100%);
  border: 1px solid rgba(8, 199, 223, 0.24);
  border-radius: 1.25rem;
  display: flex;
  height: clamp(14rem, 31vh, 20rem);
  justify-content: center;
  overflow: hidden;
  padding: clamp(0.95rem, 1.6vw, 1.45rem);
  position: relative;
}

.impact-product-logo::before,
.impact-product-logo::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.impact-product-logo::before {
  border: 1px solid rgba(8, 199, 223, 0.2);
  border-radius: 999px;
  height: 70%;
  inset: 15% 8%;
  opacity: 0.5;
}

.impact-product-logo::after {
  background:
    linear-gradient(135deg, transparent 0 60%, rgba(8, 199, 223, 0.42) 60% 60.7%, transparent 60.7%),
    linear-gradient(135deg, transparent 0 75%, rgba(255, 107, 26, 0.42) 75% 75.6%, transparent 75.6%);
  inset: 0;
  opacity: 0.38;
}

.impact-product-logo img {
  background: linear-gradient(180deg, #fff, #f7fbfc);
  border: 1px solid rgba(216, 229, 234, 0.58);
  border-radius: 0.95rem;
  box-shadow: 0 1.1rem 2.5rem rgba(0, 0, 0, 0.18);
  display: block;
  aspect-ratio: 3 / 1;
  height: auto;
  max-height: 86%;
  object-fit: contain;
  object-position: center;
  padding: clamp(0.28rem, 0.7vw, 0.65rem);
  position: relative;
  transform: none;
  width: min(99%, 920px);
  z-index: 1;
}

.impact-new-logo img {
  filter: drop-shadow(0 1.2rem 2.2rem rgba(0, 0, 0, 0.22));
}

.new-standard-signature {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 229, 234, 0.32);
  border-radius: 1.2rem;
  box-shadow: 0 1rem 2rem rgba(6, 20, 36, 0.12);
  display: block;
  height: clamp(74px, 7vw, 118px);
  margin: 1rem 0 1.3rem;
  max-width: 560px;
  object-fit: contain;
  padding: 0.25rem 0.45rem;
  width: min(100%, 560px);
}

.new-standard-brand-stage {
  align-items: center;
  background:
    radial-gradient(circle at 72% 42%, rgba(8, 199, 223, 0.28), transparent 18rem),
    radial-gradient(circle at 8% 100%, rgba(255, 107, 26, 0.12), transparent 16rem),
    linear-gradient(135deg, rgba(6, 20, 36, 0.98), rgba(11, 43, 69, 0.96));
  border: 1px solid rgba(8, 199, 223, 0.3);
  border-radius: 1.85rem;
  box-shadow: 0 1.6rem 3.8rem rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 0.65rem;
  justify-content: center;
  margin: 1rem 0 1.4rem;
  min-height: clamp(160px, 13vw, 220px);
  overflow: hidden;
  padding: clamp(0.9rem, 1.6vw, 1.4rem);
  position: relative;
  width: min(100%, 760px);
}

.new-standard-brand-stage::before,
.new-standard-brand-stage::after {
  background: linear-gradient(135deg, transparent 0 58%, rgba(8, 199, 223, 0.55) 58% 59%, transparent 59%);
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.new-standard-brand-stage::after {
  background: linear-gradient(135deg, transparent 0 72%, rgba(255, 107, 26, 0.55) 72% 72.7%, transparent 72.7%);
}

.new-standard-brand-stage span {
  color: var(--accent);
  font-size: clamp(0.7rem, 0.72vw, 0.86rem);
  font-weight: 950;
  letter-spacing: 0.18em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.new-standard-brand-stage img {
  background: linear-gradient(180deg, #fff, #f7fbfc);
  border: 1px solid rgba(216, 229, 234, 0.58);
  border-radius: 1rem;
  box-shadow: 0 1.1rem 2.6rem rgba(0, 0, 0, 0.22);
  display: block;
  max-height: clamp(118px, 11vw, 182px);
  object-fit: contain;
  padding: clamp(0.35rem, 0.8vw, 0.75rem);
  position: relative;
  transform: none;
  width: min(98%, 820px);
  z-index: 1;
}

.new-standard-brand-stage.compact {
  min-height: clamp(118px, 9vw, 154px);
  width: min(100%, 640px);
}

.new-standard-brand-stage.compact img {
  max-height: clamp(100px, 8.2vw, 136px);
  transform: none;
  width: min(98%, 640px);
}

.impact-gestor img {
  background: #061424;
  height: clamp(11rem, 25vh, 15.5rem);
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.impact-solution figcaption {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.impact-solution figcaption em {
  color: var(--accent);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-solution figcaption strong {
  color: #fff;
  font-size: 1.2rem;
}

.impact-solution figcaption span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.impact-solution ul {
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 0.35rem;
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
}

.impact-solution li {
  align-items: center;
  display: flex;
  font-size: 0.88rem;
  gap: 0.45rem;
}

.impact-solution li::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  flex: 0 0 0.44rem;
  height: 0.44rem;
  width: 0.44rem;
}

.solutions-dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(8, 199, 223, 0.12), transparent 28rem),
    #061424;
  color: #fff;
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 2rem;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.solutions-dark .eyebrow {
  color: var(--accent);
}

.solutions-copy {
  align-self: start;
  position: sticky;
  top: 6rem;
}

.solutions-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin: 0.6rem 0 1rem;
}

.solutions-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.7;
}

.solutions-dark .cards {
  margin-top: 0;
}

.solutions-dark .card {
  background: rgba(36, 59, 81, 0.72);
  border-color: rgba(216, 229, 234, 0.1);
  border-radius: 1.8rem;
  min-height: 19rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solutions-dark .card:hover {
  background: rgba(36, 59, 81, 0.92);
  border-color: rgba(8, 199, 223, 0.38);
  transform: translateY(-4px);
}

.solutions-dark .card p {
  color: rgba(255, 255, 255, 0.68);
}

.solutions-dark .solution-icon {
  background: rgba(8, 199, 223, 0.1);
  color: var(--accent);
  outline: 1px solid rgba(8, 199, 223, 0.26);
}

.section {
  padding: clamp(3rem, 5vw, 4.8rem) clamp(1rem, 5vw, 5rem);
  background: #eaf6f8;
  border-top: 1px solid var(--line);
}

.testimonials-section {
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(8, 199, 223, 0.2), transparent 24rem),
    #061424;
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(4rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.testimonials-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin: 0.6rem 0 1rem;
}

.testimonials-section p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.testimonial-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 229, 234, 0.16);
  border-radius: 1.4rem;
  display: grid;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.testimonial-grid blockquote {
  border-left: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
  padding-left: 0;
}

.testimonial-grid strong {
  color: #fff;
  font-size: 1.05rem;
}

.testimonial-grid span {
  color: var(--accent);
  font-weight: 900;
}

.section h2,
.capture h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0.5rem 0 1rem;
  max-width: 900px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.card,
.lead-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.4rem;
}

.card h3,
.card h2 {
  font-size: 1.45rem;
  margin-top: 0;
}

.solution-card {
  min-height: 15rem;
  overflow: hidden;
  position: relative;
}

.solution-card::after {
  background: radial-gradient(circle, rgba(8, 199, 223, 0.2), transparent 62%);
  bottom: -6rem;
  content: "";
  height: 12rem;
  position: absolute;
  right: -5rem;
  width: 12rem;
}

.solution-icon {
  align-items: center;
  background: var(--ink);
  border-radius: 1rem;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 3rem;
  justify-content: center;
  margin-bottom: 1.8rem;
  width: 3rem;
}

.case-showcase {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(6, 20, 36, 0.96), rgba(11, 43, 69, 0.94)),
    radial-gradient(circle at top right, rgba(97, 199, 223, 0.26), transparent 24rem);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.32fr);
  gap: clamp(1rem, 1.8vw, 2rem);
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(5.2rem, 5.8vw, 6.1rem) clamp(1rem, 2.7vw, 3.2rem) clamp(1rem, 1.8vw, 1.6rem);
}

.case-copy {
  align-content: center;
  display: grid;
  gap: clamp(0.55rem, 0.85vw, 0.85rem);
  min-width: 0;
}

.new-standard-sales-copy {
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 199, 223, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(8, 199, 223, 0.22);
  border-radius: 1.6rem;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.18);
  padding: clamp(1rem, 1.6vw, 1.4rem);
}

.new-standard-inline-logo {
  background: #fff;
  border: 1px solid rgba(216, 229, 234, 0.58);
  border-radius: 1rem;
  box-shadow: 0 1.1rem 2.8rem rgba(0, 0, 0, 0.22);
  display: block;
  max-height: clamp(78px, 7.2vw, 112px);
  object-fit: contain;
  padding: 0.4rem 0.7rem;
  width: 100%;
}

.case-benefits {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
  margin: 0.2rem 0 0.25rem;
}

.case-benefits article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(216, 229, 234, 0.12);
  border-radius: 1rem;
  padding: clamp(0.66rem, 0.82vw, 0.82rem);
}

.case-benefits strong {
  color: #fff;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.case-benefits span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: clamp(0.82rem, 0.84vw, 0.92rem);
  line-height: 1.38;
}

.new-standard-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.new-standard-metrics span {
  background: rgba(8, 199, 223, 0.12);
  border: 1px solid rgba(8, 199, 223, 0.32);
  border-radius: 999px;
  color: var(--accent);
  font-size: clamp(0.7rem, 0.74vw, 0.82rem);
  font-weight: 950;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.58rem;
  text-transform: uppercase;
}

.erp-doc-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(8, 199, 223, 0.16), transparent 24rem),
    #061424;
  color: #fff;
}

.new-standard-suite {
  min-height: 100svh;
  padding-top: clamp(5rem, 6vh, 5.7rem);
  padding-bottom: clamp(0.9rem, 1.6vh, 1.3rem);
}

.erp-doc-head {
  align-items: center;
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: 1fr minmax(280px, 500px);
  margin-bottom: clamp(0.9rem, 1.5vh, 1.2rem);
}

.erp-doc-head p {
  color: rgba(255, 255, 255, 0.72);
}

.erp-doc-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
}

.erp-doc-grid article {
  background:
    radial-gradient(circle at 90% 10%, rgba(8, 199, 223, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 229, 234, 0.14);
  border-radius: 1.35rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
  overflow: hidden;
  padding: 0.95rem;
}

.erp-doc-grid img {
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
  display: block;
  object-fit: cover;
  width: 100%;
}

.erp-doc-feature {
  grid-row: span 2;
}

.erp-doc-grid h3 {
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  margin: 0.7rem 0 0.35rem;
}

.erp-doc-grid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.84rem, 0.9vw, 0.92rem);
  line-height: 1.45;
  margin: 0;
}

.feature-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--accent), #4fe3f0);
  border-radius: 1rem;
  color: var(--ink);
  display: inline-flex;
  font-weight: 950;
  height: 3.2rem;
  justify-content: center;
  margin-bottom: 1.6rem;
  width: 3.2rem;
}

.product-focus {
  align-items: center;
  background:
    radial-gradient(circle at 86% 14%, rgba(8, 199, 223, 0.22), transparent 26rem),
    #dff2f6;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 100svh;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1rem, 5vw, 5rem);
}

.gestor-focus {
  gap: clamp(1rem, 2vw, 1.8rem);
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  padding: clamp(5.15rem, 5.6vw, 5.9rem) clamp(1rem, 3vw, 3.4rem) clamp(0.85rem, 1.5vw, 1.2rem);
}

.product-focus h2 {
  font-size: clamp(2.05rem, 3.6vw, 3.6rem);
  letter-spacing: -0.075em;
  line-height: 0.94;
  margin: 0.6rem 0 1rem;
}

.gestor-focus h2 {
  font-size: clamp(1.95rem, 2.8vw, 3rem);
}

.product-focus p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.gestor-focus p {
  font-size: clamp(0.98rem, 1.03vw, 1.1rem);
  line-height: 1.55;
}

.gestor-copy {
  display: grid;
  gap: clamp(0.7rem, 1vw, 0.95rem);
  max-width: 670px;
}

.gestor-selling-points {
  display: grid;
  gap: 0.65rem;
}

.gestor-selling-points article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 142, 163, 0.18);
  border-radius: 1.1rem;
  box-shadow: 0 1rem 2.4rem rgba(6, 20, 36, 0.08);
  padding: clamp(0.7rem, 0.85vw, 0.85rem) clamp(0.85rem, 1vw, 1rem);
}

.gestor-selling-points strong {
  color: var(--ink);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.gestor-selling-points span {
  color: var(--muted);
  display: block;
  font-size: clamp(0.86rem, 0.9vw, 0.95rem);
  line-height: 1.35;
}

.gestor-focus .gestor-mini-logo {
  display: none;
}

.gestor-mini-logo {
  background: #061424;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(6, 20, 36, 0.12);
  display: block;
  margin-top: 0.4rem;
  max-height: 120px;
  max-width: 190px;
  object-fit: contain;
  padding: 0.75rem;
  width: 100%;
}

.bi-art-card {
  background:
    radial-gradient(circle at 82% 14%, rgba(8, 199, 223, 0.18), transparent 18rem),
    linear-gradient(135deg, #061424, #0b2b45);
  border: 1px solid rgba(8, 199, 223, 0.18);
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(6, 20, 36, 0.2);
  color: #fff;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1.2rem, 2vw, 1.7rem);
}

.gestor-focus .bi-art-card {
  align-self: center;
  gap: 0.75rem;
  max-height: min(72vh, 640px);
}

.bi-toolbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: auto 1fr auto;
  padding: 0.9rem 1rem;
}

.bi-toolbar span {
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 18px 0 0 var(--orange), 36px 0 0 rgba(255, 255, 255, 0.36);
  display: block;
  height: 10px;
  width: 10px;
}

.bi-toolbar strong {
  font-size: 1.15rem;
}

.bi-toolbar em {
  color: var(--accent);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bi-kpis {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bi-kpis article,
.bi-line-chart,
.bi-bars,
.bi-status span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 229, 234, 0.12);
  border-radius: 1.15rem;
}

.bi-kpis article {
  padding: 1rem;
}

.bi-kpis strong {
  color: #fff;
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.bi-kpis span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
}

.bi-visual-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.bi-line-chart,
.bi-bars {
  min-height: clamp(190px, 24vw, 300px);
  position: relative;
}

.gestor-focus .bi-line-chart,
.gestor-focus .bi-bars {
  min-height: clamp(130px, 15vw, 190px);
}

.bi-line-chart::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  inset: 0;
  position: absolute;
}

.bi-line-chart i {
  border: solid var(--accent);
  border-color: transparent transparent var(--accent) var(--accent);
  border-radius: 0 0 0 5rem;
  border-width: 0 0 8px 8px;
  bottom: 28%;
  height: 38%;
  left: 12%;
  position: absolute;
  transform: skewX(-18deg);
  width: 76%;
}

.bi-bars {
  align-items: end;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.2rem;
}

.bi-bars i {
  background: linear-gradient(180deg, var(--accent), #4fe3f0);
  border-radius: 999px 999px 0.5rem 0.5rem;
  display: block;
}

.bi-bars i:nth-child(1) { height: 42%; }
.bi-bars i:nth-child(2) { height: 68%; background: linear-gradient(180deg, var(--orange), #ffb45c); }
.bi-bars i:nth-child(3) { height: 54%; }
.bi-bars i:nth-child(4) { height: 88%; }

.bi-status {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bi-status span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  padding: 0.85rem;
  text-align: center;
}

.gestor-dashboard-showcase {
  align-self: center;
  background:
    radial-gradient(circle at 82% 10%, rgba(8, 199, 223, 0.18), transparent 20rem),
    linear-gradient(145deg, #061424, #0b2238);
  border: 1px solid rgba(8, 199, 223, 0.24);
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(6, 20, 36, 0.24);
  display: grid;
  gap: 0.85rem;
  max-height: calc(100svh - 7.2rem);
  overflow: hidden;
  padding: clamp(0.9rem, 1.4vw, 1.3rem);
}

.dashboard-main-shot {
  background: #101827;
  border: 1px solid rgba(216, 229, 234, 0.14);
  border-radius: 1.45rem;
  overflow: hidden;
  position: relative;
}

.dashboard-main-shot span {
  background: rgba(6, 20, 36, 0.9);
  border: 1px solid rgba(8, 199, 223, 0.28);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
  left: 1rem;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.7rem;
  position: absolute;
  text-transform: uppercase;
  top: 1rem;
  z-index: 2;
}

.dashboard-main-shot img,
.dashboard-shot-grid img {
  display: block;
  object-fit: cover;
  width: 100%;
}

.dashboard-main-shot img {
  aspect-ratio: 16 / 6.25;
  object-position: top left;
}

.dashboard-shot-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-shot-grid figure {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 229, 234, 0.12);
  border-radius: 1.25rem;
  margin: 0;
  overflow: hidden;
}

.dashboard-shot-grid img {
  aspect-ratio: 16 / 4.8;
  object-position: top left;
}

.dashboard-shot-grid figcaption {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  font-weight: 800;
  line-height: 1.35;
  padding: 0.55rem 0.75rem 0.62rem;
}

.case-showcase h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.72rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0.35rem 0 0.45rem;
}

.case-showcase p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.94rem, 0.96vw, 1.06rem);
  line-height: 1.48;
}

.case-showcase figure {
  margin: 0;
}

.case-showcase img {
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.24);
  display: block;
  width: 100%;
}

.case-showcase .new-standard-brand-stage img {
  background: linear-gradient(180deg, #fff, #f7fbfc);
  border: 1px solid rgba(216, 229, 234, 0.58);
  border-radius: 1rem;
  box-shadow: 0 1.1rem 2.6rem rgba(0, 0, 0, 0.2);
  height: auto;
  max-height: clamp(118px, 11.5vw, 190px);
  object-fit: contain;
  padding: clamp(0.35rem, 0.8vw, 0.75rem);
  width: min(98%, 820px);
}

.case-media {
  aspect-ratio: 16 / 9;
  background: #fff;
  border-radius: 1.6rem;
  overflow: hidden;
  padding: 1rem;
}

.case-media > img {
  border-radius: 1.1rem;
  height: calc(100% - 7.6rem);
  object-fit: cover;
  padding: 0;
  width: 100%;
}

.case-image-only {
  align-self: stretch;
  aspect-ratio: auto;
  background: transparent;
  min-height: 0;
  padding: 0;
}

.case-image-only > img {
  border-radius: 1.6rem;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  width: 100%;
}

.case-media > .authorized-box-case {
  border: 1px solid rgba(216, 229, 234, 0.65);
  border-radius: 1.1rem;
  box-shadow: none;
  grid-template-columns: auto minmax(190px, 310px) 1fr;
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
}

.case-media .authorized-box-case img {
  border-radius: 0;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  padding: 0;
}

.matcom-media {
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 199, 223, 0.08), transparent 34rem),
    #fff;
}

.case-showcase figcaption {
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.9rem;
}

.visual-feature,
.presentation-panel,
.ceo-section {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.86fr 1.14fr;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.visual-feature {
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 199, 223, 0.2), transparent 24rem),
    #dff2f6;
}

.visual-feature h2,
.presentation-panel h2,
.ceo-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin: 0.6rem 0 1rem;
}

.visual-feature p,
.presentation-panel p {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.visual-feature img,
.presentation-panel img,
.ceo-section > img {
  border-radius: 1.8rem;
  box-shadow: 0 2rem 5rem rgba(17, 17, 15, 0.14);
  display: block;
  width: 100%;
}

.visual-feature > img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.presentation-panel {
  background: #f5fbfc;
  grid-template-columns: 1fr;
}

.presentation-panel img {
  border: 1px solid var(--line);
}

.process-section {
  background:
    radial-gradient(circle at 82% 6%, rgba(8, 199, 223, 0.2), transparent 26rem),
    linear-gradient(135deg, #eaf6f8, #d9edf3);
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  background:
    linear-gradient(90deg, transparent 0 22px, rgba(6, 20, 36, 0.06) 22px 23px),
    linear-gradient(0deg, transparent 0 22px, rgba(6, 20, 36, 0.05) 22px 23px);
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.process-head {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.process-brand {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 20, 36, 0.08);
  border-radius: 999px;
  display: block;
  height: 68px;
  margin-bottom: 1rem;
  object-fit: cover;
  padding: 0.2rem 0.6rem;
  width: 220px;
}

.process-head h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0.6rem 0 0;
}

.process-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.process-grid::before {
  background:
    linear-gradient(90deg, rgba(8, 199, 223, 0.18), rgba(255, 107, 26, 0.24), rgba(8, 199, 223, 0.18));
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 8%;
  opacity: 0.72;
  position: absolute;
  right: 8%;
  top: calc(50% - 3px);
  z-index: 0;
}

.process-grid article {
  background:
    linear-gradient(90deg, rgba(6, 20, 36, 0.92), rgba(6, 20, 36, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(8, 199, 223, 0.26), transparent 16rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  box-shadow: 0 1.2rem 2.6rem rgba(6, 20, 36, 0.18);
  color: #fff;
  min-height: 14rem;
  overflow: hidden;
  padding: 1.8rem;
  position: relative;
  z-index: 1;
}

.process-grid article::after {
  background:
    linear-gradient(135deg, rgba(8, 199, 223, 0.16), transparent),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 255, 255, 0.05) 22px 23px);
  content: "";
  inset: 0;
  opacity: 0.55;
  position: absolute;
}

.process-grid article > * {
  position: relative;
  z-index: 1;
}

.process-icon {
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 4px, transparent 5px),
    conic-gradient(from 90deg, var(--accent), #4fe3f0, var(--orange), var(--accent));
  border-radius: 1.1rem;
  display: flex;
  height: 4.6rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  width: 4.6rem;
}

.process-icon::before,
.process-icon::after {
  background: #061424;
  content: "";
  display: block;
  position: absolute;
}

.capture-card .process-icon::before {
  border: 3px solid #061424;
  border-radius: 0.4rem;
  height: 1.35rem;
  width: 1.8rem;
}

.capture-card .process-icon::after {
  border-radius: 999px;
  height: 0.55rem;
  transform: translate(1.2rem, -1rem);
  width: 0.55rem;
}

.data-card .process-icon::before {
  border-radius: 0.25rem;
  box-shadow: 0.75rem -0.55rem 0 #061424, 1.5rem -1.05rem 0 #061424;
  height: 1.3rem;
  transform: translateX(-0.75rem);
  width: 0.34rem;
}

.data-card .process-icon::after {
  background: transparent;
  border: 3px solid #061424;
  border-radius: 999px;
  height: 1.55rem;
  transform: translate(0.58rem, 0.2rem);
  width: 1.55rem;
}

.integration-card .process-icon::before {
  border-radius: 999px;
  box-shadow: -1.2rem 0 0 #061424, 1.2rem 0 0 #061424, 0 -1.2rem 0 #061424, 0 1.2rem 0 #061424;
  height: 0.55rem;
  width: 0.55rem;
}

.integration-card .process-icon::after {
  height: 2.6rem;
  transform: rotate(45deg);
  width: 0.18rem;
}

.mobile-card .process-icon::before {
  border: 3px solid #061424;
  border-radius: 0.55rem;
  height: 2.1rem;
  width: 1.35rem;
}

.mobile-card .process-icon::after {
  border-radius: 999px;
  height: 0.26rem;
  transform: translateY(0.78rem);
  width: 0.58rem;
}

.process-grid article h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin: 0 0 1rem;
}

.process-grid article p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.ceo-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(8, 199, 223, 0.16), transparent 25rem),
    radial-gradient(circle at 86% 12%, rgba(255, 107, 26, 0.1), transparent 22rem),
    linear-gradient(135deg, rgba(7, 29, 49, 0.98), rgba(6, 20, 36, 0.96));
  color: #fff;
}

.ceo-leaders-section {
  align-content: center;
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100svh;
  padding: clamp(5.4rem, 6vw, 6.2rem) clamp(1rem, 4vw, 4rem) clamp(1.2rem, 2.2vw, 2rem);
}

.leader-card {
  background:
    linear-gradient(145deg, rgba(10, 34, 55, 0.96), rgba(3, 13, 24, 0.98)),
    radial-gradient(circle at 18% 10%, rgba(8, 199, 223, 0.18), transparent 22rem);
  border: 1px solid rgba(8, 199, 223, 0.24);
  border-radius: 1.6rem;
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-rows: minmax(250px, 38vh) minmax(300px, 1fr);
  min-height: min(80vh, 740px);
  overflow: hidden;
}

.leader-card-diego {
  grid-template-rows: minmax(250px, 38vh) minmax(300px, 1fr);
}

.leader-photo {
  background: #061424;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.leader-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  width: 100%;
}

.leader-photo-banner img {
  object-fit: cover;
  object-position: center;
}

.leader-card-diego .leader-photo::after {
  background: linear-gradient(180deg, transparent 0%, rgba(6, 20, 36, 0.72) 58%, #061424 100%);
  bottom: 0;
  content: "";
  height: 32%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.leader-photo-generated {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 20, 36, 0.24), rgba(6, 20, 36, 0.88)),
    radial-gradient(circle at 18% 24%, rgba(8, 199, 223, 0.42), transparent 12rem),
    linear-gradient(135deg, #0d2d44, #061424);
  display: grid;
  justify-items: center;
}

.leader-photo-generated::before {
  background:
    linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.05) 28px 29px),
    linear-gradient(0deg, transparent 0 28px, rgba(255, 255, 255, 0.05) 28px 29px);
  background-size: 29px 29px;
  content: "";
  inset: 0;
  opacity: 0.65;
  position: absolute;
}

.leader-photo-generated span {
  align-items: center;
  background: linear-gradient(135deg, var(--accent), #2d78ff);
  border-radius: 50%;
  box-shadow: 0 0 3rem rgba(8, 199, 223, 0.5);
  color: #fff;
  display: inline-flex;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 950;
  height: clamp(130px, 16vw, 220px);
  justify-content: center;
  letter-spacing: -0.08em;
  position: relative;
  width: clamp(130px, 16vw, 220px);
  z-index: 1;
}

.leader-photo-generated i {
  border: 1px solid rgba(8, 199, 223, 0.36);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.8rem;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.leader-photo-generated i:nth-of-type(1) {
  left: 11%;
  top: 22%;
}

.leader-photo-generated i:nth-of-type(2) {
  right: 12%;
  top: 28%;
}

.leader-photo-generated i:nth-of-type(3) {
  bottom: 18%;
  right: 18%;
}

.leader-content {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: clamp(1rem, 1.8vw, 1.45rem);
}

.ceo-leaders-section .leader-content h2 {
  font-size: clamp(1.45rem, 2.05vw, 2.25rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
  max-width: 780px;
}

.ceo-leaders-section blockquote {
  border-left-color: #61c7df;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.2vw, 1.14rem);
  line-height: 1.45;
  margin: 0.2rem 0;
  padding-left: 1rem;
}

.ceo-leaders-section strong {
  color: #fff;
  font-size: clamp(1.1rem, 1.35vw, 1.38rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ceo-section small {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  margin-top: 0.35rem;
}

.demo-layout {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
}

.demo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
}

.demo-card img {
  height: 122px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.demo-card strong {
  font-size: 1.6rem;
}

.card.tall {
  min-height: 16rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1rem 1.2rem;
}

blockquote {
  border-left: 0.4rem solid var(--accent);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  max-width: 900px;
  padding-left: 1.5rem;
}

@media (min-width: 821px) and (max-width: 1180px) {
  .site-header {
    border-radius: 2rem;
    gap: 0.7rem;
    min-height: 76px;
    padding: 0.55rem 0.65rem 0.55rem 0.85rem;
    width: min(96vw, 1120px);
  }

  .brand {
    height: 56px;
    width: clamp(220px, 24vw, 300px);
  }

  nav {
    gap: 0.48rem;
    font-size: 0.72rem;
  }

  .header-product-link {
    height: 40px;
    padding: 0.25rem 0.5rem;
    width: 122px;
  }

  .header-whatsapp {
    padding: 0.62rem 0.75rem;
    width: 174px;
  }

  .header-whatsapp strong,
  .site-header .header-cta {
    font-size: 0.86rem;
  }

  .site-header .header-cta {
    padding: 0.78rem 0.95rem;
    width: 168px;
  }
}

@media (min-width: 821px) {
  main > section,
  main > .section {
    min-height: 100svh;
    overflow: visible;
  }

  main > .home-visual-hero {
    min-height: 100svh;
    overflow: hidden;
  }

  .impact-gallery,
  .audience-section,
  .diagnostic-section,
  .method-panel,
  .case-showcase,
  .erp-doc-section,
  .product-focus,
  .ceo-section,
  .testimonials-section,
  .capture,
  .section {
    align-content: center;
    padding-top: clamp(5.1rem, 5.6vw, 6rem);
    padding-bottom: clamp(1.5rem, 2.4vw, 2.4rem);
  }

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

  .impact-box {
    min-height: min(62vh, 560px);
  }

  .impact-gestor img,
  .impact-product-logo {
    height: clamp(13.5rem, 30vh, 19rem);
  }

  .erp-doc-grid article {
    padding: 0.8rem;
  }

  .erp-doc-grid img {
    aspect-ratio: 16 / 8.6;
  }

  .ceo-banner-section > img {
    max-height: calc(100svh - 11rem);
  }

  .erp-doc-grid,
  .method-steps,
  .testimonial-grid {
    align-items: stretch;
  }

  .erp-doc-section h2,
  .method-panel h2,
  .ceo-section h2,
  .testimonials-section h2 {
    font-size: clamp(2rem, 3.4vw, 3.35rem);
  }

  .case-showcase h2 {
    font-size: clamp(1.72rem, 2.5vw, 2.72rem);
  }

  .gestor-focus {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  }
}

.lead-form {
  display: grid;
  gap: 0.9rem;
  box-shadow: 0 1.5rem 4rem rgba(6, 20, 36, 0.14);
}

.lead-form input,
.lead-form select {
  background: #fff;
  border: 1px solid rgba(111, 142, 163, 0.3);
  border-radius: 0.9rem;
  font: inherit;
  padding: 1rem;
  width: 100%;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(8, 199, 223, 0.16);
  outline: none;
}

.capture {
  background:
    radial-gradient(circle at 92% 16%, rgba(8, 199, 223, 0.14), transparent 28rem),
    #f5fbfc;
}

.form-status {
  font-size: 0.95rem;
  margin: 0;
}

.final-brand-section {
  align-items: center;
  background:
    radial-gradient(circle at 24% 24%, rgba(8, 199, 223, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(255, 107, 26, 0.11), transparent 22rem),
    linear-gradient(135deg, #061424, #0b2b45);
  color: #fff;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 100svh;
  padding: clamp(5rem, 5.8vw, 6.2rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 3vw, 3rem);
}

.final-brand-logo {
  align-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 199, 223, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(8, 199, 223, 0.24);
  border-radius: 2rem;
  display: flex;
  min-height: clamp(260px, 42vh, 430px);
  justify-content: center;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 2rem);
}

.final-brand-logo img {
  display: block;
  filter: drop-shadow(0 1.4rem 3rem rgba(0, 0, 0, 0.35));
  max-height: 100%;
  object-fit: contain;
  width: min(100%, 760px);
}

.final-brand-copy h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.3rem);
  letter-spacing: -0.075em;
  line-height: 0.95;
  margin: 0.8rem 0 1.1rem;
}

.final-brand-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.22vw, 1.2rem);
  line-height: 1.65;
  max-width: 860px;
}

.footer {
  align-items: start;
  background:
    linear-gradient(135deg, #030d18, #061424);
  border-top: 1px solid rgba(8, 199, 223, 0.18);
  color: #fff;
  display: grid;
  gap: clamp(1.2rem, 3vw, 3rem);
  grid-template-columns: 1.3fr 0.85fr 0.7fr;
  padding: clamp(2rem, 3.2vw, 3rem) clamp(1rem, 5vw, 5rem);
}

.footer div,
.footer address {
  display: grid;
  gap: 0.35rem;
}

.footer address {
  font-style: normal;
  text-align: left;
}

.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  font-weight: 800;
}

.footer-brand img {
  display: block;
  max-width: 310px;
  width: min(100%, 310px);
}

.footer b,
.footer strong {
  color: #fff;
}

.floating-cta {
  background: linear-gradient(135deg, var(--accent), #4fe3f0);
  border-radius: 999px;
  bottom: 1.2rem;
  box-shadow: 0 1rem 2rem rgba(8, 199, 223, 0.28);
  color: #fff;
  font-weight: 900;
  padding: 0.95rem 1.2rem;
  position: fixed;
  right: 1.2rem;
  z-index: 20;
}

@media (max-width: 820px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    position: sticky;
    top: 0.75rem;
    transform: none;
    right: auto;
    left: auto;
    margin: 0.75rem auto 0;
    width: calc(100% - 1.5rem);
  }

  nav {
    flex-wrap: wrap;
  }

  .brand {
    height: 72px;
    width: min(78vw, 330px);
  }

  .header-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .header-product-link {
    height: 46px;
    justify-content: flex-start;
    width: min(100%, 220px);
  }

  .header-whatsapp,
  .site-header .header-cta {
    justify-content: center;
    width: 100%;
  }

  .hero,
  .capture,
  .case-showcase,
  .final-brand-section,
  .demo-layout,
  .solutions-dark,
  .method-panel,
  .product-focus,
  .impact-gallery,
  .audience-section,
  .diagnostic-section,
  .visual-feature,
  .ceo-section,
  .process-head,
  .process-grid,
  .erp-doc-head,
  .erp-doc-grid,
  .testimonials-section,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-visual-hero {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .home-hero-art {
    max-height: none;
  }

  .home-hero-art img {
    max-height: none;
  }

  .solutions-copy {
    position: static;
  }

  .stat-dark {
    grid-column: auto;
    justify-self: stretch;
    margin-bottom: 0;
    width: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .compact-page {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 8rem;
  }

  .content-cards,
  .solutions-cards {
    grid-template-columns: 1fr;
  }

  .compact-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    grid-template-columns: 1fr 1fr;
  }

  .erp-doc-feature {
    grid-row: auto;
  }

  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-focus {
    min-height: auto;
  }

  .gestor-focus {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .ceo-leaders-section {
    padding-top: 1.5rem;
  }

  .leader-card {
    grid-template-rows: minmax(190px, 32vh) auto;
    min-height: auto;
  }

  .leader-card-diego {
    grid-template-rows: minmax(190px, 32vh) auto;
  }

  .ceo-leaders-section .leader-content h2 {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .bi-visual-grid,
  .bi-kpis,
  .bi-status {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer address {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand-strip {
    grid-template-columns: 1fr;
  }

  .hero-logo-pill {
    align-items: flex-start;
    border-radius: 1rem;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
  }

  .authorized-box {
    grid-template-columns: 1fr;
  }

  .authorized-box img {
    max-width: 220px;
  }

  .hero-company-card {
    aspect-ratio: 4 / 5;
    min-height: 420px;
  }

  .hero-art-card {
    border-radius: 1.2rem;
  }

  .hero-art-card img {
    border-radius: 1.2rem;
  }

  .hero-company-photo {
    transform: scale(1.35);
  }

  .hero-company-overlay {
    grid-template-columns: 1fr;
    left: 0.8rem;
    right: 0.8rem;
  }

  .hero-company-overlay img {
    height: 58px;
    object-fit: contain;
    width: 150px;
  }

  .hero-company-stats {
    left: 0.8rem;
    right: 0.8rem;
  }

  .method-panel,
  .product-focus,
  .erp-doc-section {
    padding-inline: 0.9rem;
  }

  .method-visual,
  .gestor-visual-stack img {
    border-radius: 1.1rem;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps article {
    min-height: auto;
  }

  .bi-toolbar {
    grid-template-columns: 1fr;
  }
}
