@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400 700;
  font-display: block;
  src: url("./fonts/material-symbols-rounded-home.woff2") format("woff2");
}

:root {
  --omni-ink: #17162b;
  --omni-copy: #555a70;
  --omni-brand: #2f1c67;
  --omni-brand-dark: #1b133e;
  --omni-violet: #6957ed;
  --omni-green: #2de889;
  --omni-green-dark: #087746;
  --omni-blue: #2f6df6;
  --omni-coral: #ee6a5b;
  --omni-soft: #f5f6fa;
  --omni-soft-green: #eafbf3;
  --omni-line: #e4e6ee;
  --omni-white: #ffffff;
  --omni-shadow: 0 20px 50px rgba(22, 20, 50, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--omni-white);
  color: var(--omni-ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: Poppins, Arial, sans-serif;
  letter-spacing: 0;
}

.material-symbols-rounded {
  display: inline-block;
  overflow: hidden;
  font-family: "Material Symbols Rounded";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-transform: none;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  line-height: 1;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--omni-white);
  color: var(--omni-brand);
  border: 2px solid var(--omni-brand);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--omni-green-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 18px;
  height: 3px;
  background: var(--omni-green);
  content: "";
}

.section-title {
  max-width: 760px;
  margin-top: 12px;
  color: var(--omni-ink);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 750;
}

.section-intro {
  max-width: 680px;
  margin-top: 16px;
  color: var(--omni-copy);
  font-size: 18px;
  line-height: 1.65;
}

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

.section-head-center .eyebrow {
  justify-content: center;
}

.section-head-center .section-title,
.section-head-center .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--omni-green);
  color: #10291f;
}

.button-primary:hover {
  background: #48f09b;
  color: #10291f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--omni-white);
}

.button-secondary:hover {
  border-color: var(--omni-white);
  background: rgba(255, 255, 255, 0.14);
  color: var(--omni-white);
}

.button-brand {
  background: var(--omni-brand);
  color: var(--omni-white);
}

.button-brand:hover {
  background: #3c247f;
  color: var(--omni-white);
}

.button-outline {
  border-color: #cbc6e5;
  background: var(--omni-white);
  color: var(--omni-brand);
}

.button-outline:hover {
  border-color: var(--omni-brand);
  color: var(--omni-brand);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--omni-brand);
  font-weight: 800;
}

.icon-link .material-symbols-rounded {
  font-size: 19px;
  transition: transform 160ms ease;
}

.icon-link:hover .material-symbols-rounded {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid rgba(228, 230, 238, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(23, 22, 43, 0.08);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 190px;
  flex: 0 0 190px;
}

.brand img {
  width: 190px;
  height: auto;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link,
.nav-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 9px 11px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #39364e;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  background: var(--omni-soft);
  color: var(--omni-brand);
}

.nav-trigger .material-symbols-rounded {
  font-size: 18px;
  transition: transform 160ms ease;
}

.nav-trigger[aria-expanded="true"] .material-symbols-rounded {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 690px;
  padding: 18px;
  border: 1px solid var(--omni-line);
  border-radius: 8px;
  background: var(--omni-white);
  box-shadow: var(--omni-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu,
.nav-dropdown.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mega-link {
  min-height: 68px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 7px;
}

.mega-link:hover {
  background: var(--omni-soft);
}

.mega-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #eeeafd;
  color: var(--omni-brand);
}

.mega-icon.green {
  background: var(--omni-soft-green);
  color: var(--omni-green-dark);
}

.mega-link strong,
.mega-link small {
  display: block;
}

.mega-link strong {
  color: var(--omni-ink);
  font-size: 14px;
}

.mega-link small {
  margin-top: 2px;
  color: var(--omni-copy);
  font-size: 12px;
  line-height: 1.35;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-login {
  padding: 8px 8px;
  color: var(--omni-brand);
  font-size: 14px;
  font-weight: 800;
}

.header-actions .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--omni-line);
  border-radius: 7px;
  background: var(--omni-white);
  color: var(--omni-brand);
}

.mobile-menu {
  position: fixed;
  inset: 78px 0 0;
  z-index: 99;
  display: none;
  overflow: auto;
  padding: 24px;
  background: var(--omni-white);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--omni-line);
  color: var(--omni-ink);
  font-weight: 800;
}

.mobile-menu .button {
  margin-top: 20px;
  border-bottom: 0;
  color: var(--omni-white);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--omni-brand-dark);
  color: var(--omni-white);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 5px;
  background: var(--omni-green);
  content: "";
}

.hero-inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 48px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #d9d4f5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-kicker .material-symbols-rounded {
  color: var(--omni-green);
  font-size: 17px;
}

.hero h1 {
  max-width: 650px;
  margin-top: 22px;
  color: var(--omni-white);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 760;
}

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

.hero-lead {
  max-width: 590px;
  margin-top: 20px;
  color: #d7d4e7;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ebe9f4;
  font-size: 13px;
  font-weight: 750;
}

.hero-points .material-symbols-rounded {
  color: var(--omni-green);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-screen {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.34));
}

.channel-chip {
  position: absolute;
  z-index: 4;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: #2a2056;
  color: var(--omni-white);
  box-shadow: 0 14px 30px rgba(8, 5, 25, 0.25);
  font-size: 12px;
  font-weight: 800;
}

.channel-chip .material-symbols-rounded {
  font-size: 18px;
  color: var(--omni-green);
}

.chip-whatsapp {
  top: 16%;
  left: 3%;
}

.chip-voice {
  top: 18%;
  right: 1%;
}

.chip-crm {
  bottom: 18%;
  left: 8%;
}

.chip-workflow {
  right: 3%;
  bottom: 16%;
}

/* Customer strip */
.customer-strip {
  border-bottom: 1px solid var(--omni-line);
  background: var(--omni-white);
}

.customer-strip-inner {
  min-height: 105px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.customer-strip p {
  color: var(--omni-copy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.customer-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.customer-logos img {
  max-width: 100%;
  max-height: 44px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.64;
  transition: filter 160ms ease, opacity 160ms ease;
}

.customer-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Continuity */
.continuity-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: center;
}

.continuity-copy strong {
  color: var(--omni-brand);
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.journey::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: calc(100% - 78px);
  background: var(--omni-line);
  content: "";
  transform: translate(-50%, -50%);
}

.journey-step {
  position: relative;
  z-index: 1;
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--omni-line);
  border-radius: 8px;
  background: var(--omni-white);
}

.journey-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #eeeafd;
  color: var(--omni-brand);
}

.journey-step:nth-child(2) .journey-icon,
.journey-step:nth-child(3) .journey-icon {
  background: var(--omni-soft-green);
  color: var(--omni-green-dark);
}

.journey-step h3 {
  margin-top: 14px;
  color: var(--omni-ink);
  font-size: 16px;
}

.journey-step p {
  margin-top: 6px;
  color: var(--omni-copy);
  font-size: 13px;
  line-height: 1.5;
}

/* Modules */
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.module-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--omni-line);
  border-radius: 8px;
  background: var(--omni-white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.module-card:hover {
  border-color: #bcb4e5;
  box-shadow: 0 16px 36px rgba(27, 19, 62, 0.1);
  transform: translateY(-3px);
}

.module-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eeeafd;
  color: var(--omni-brand);
}

.module-card:nth-child(2) .module-icon,
.module-card:nth-child(5) .module-icon {
  background: var(--omni-soft-green);
  color: var(--omni-green-dark);
}

.module-card:nth-child(3) .module-icon {
  background: #eaf1ff;
  color: var(--omni-blue);
}

.module-card:nth-child(6) .module-icon {
  background: #fff0ed;
  color: var(--omni-coral);
}

.module-card h3 {
  margin-top: 18px;
  color: var(--omni-ink);
  font-size: 19px;
}

.module-card p {
  margin: 8px 0 20px;
  color: var(--omni-copy);
  font-size: 14px;
  line-height: 1.6;
}

.module-card .icon-link {
  margin-top: auto;
  font-size: 14px;
}

/* Product proof */
.product-band {
  overflow: hidden;
  background: var(--omni-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  color: #3d4052;
  font-weight: 700;
}

.check-list .material-symbols-rounded {
  color: var(--omni-green-dark);
  font-size: 21px;
}

.product-visual {
  position: relative;
  min-width: 0;
}

.product-visual img {
  width: 100%;
  height: auto;
  border: 1px solid #dcdfea;
  border-radius: 8px;
  background: var(--omni-white);
  box-shadow: var(--omni-shadow);
}

#ia .product-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
}

#ia .product-visual {
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.product-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--omni-copy);
  font-size: 12px;
  font-weight: 750;
}

.product-caption .material-symbols-rounded {
  color: var(--omni-green-dark);
  font-size: 17px;
}

/* Automation */
.automation-band {
  overflow: hidden;
  background: #211747;
  color: var(--omni-white);
}

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

.automation-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 38px rgba(7, 4, 20, 0.34));
}

.automation-band .eyebrow {
  color: var(--omni-green);
}

.automation-band .section-title {
  color: var(--omni-white);
}

.automation-band .section-intro {
  color: #d3cfe4;
}

.automation-band .check-list li {
  color: #eeecf5;
}

.automation-band .check-list .material-symbols-rounded {
  color: var(--omni-green);
}

/* Team tabs */
.team-tabs {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-button {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--omni-copy);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.tab-button:hover {
  background: var(--omni-soft);
  color: var(--omni-brand);
}

.tab-button[aria-selected="true"] {
  border-color: #cfc8ec;
  background: #eeeafd;
  color: var(--omni-brand);
}

.tab-button .material-symbols-rounded {
  font-size: 21px;
}

.tab-panels {
  min-width: 0;
}

.tab-panel {
  min-height: 460px;
  display: none;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--omni-line);
  border-radius: 8px;
  background: var(--omni-white);
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel h3 {
  color: var(--omni-ink);
  font-size: 25px;
  line-height: 1.25;
}

.tab-panel p {
  margin-top: 12px;
  color: var(--omni-copy);
}

.tab-panel .check-list {
  margin-top: 18px;
}

.tab-panel figure {
  min-width: 0;
  margin: 0;
}

.tab-panel img {
  width: 100%;
  height: 390px;
  max-height: 390px;
  object-fit: contain;
}

/* Numbers */
.numbers {
  border-top: 1px solid var(--omni-line);
  border-bottom: 1px solid var(--omni-line);
}

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

.number-item {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
  border-right: 1px solid var(--omni-line);
}

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

.number-value {
  color: var(--omni-brand);
  font-family: Poppins, Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.number-label {
  margin-top: 4px;
  color: var(--omni-copy);
  font-size: 14px;
  font-weight: 700;
}

/* Testimonials and guides */
.testimonial-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--omni-line);
  border-radius: 8px;
  background: var(--omni-white);
}

.stars {
  display: flex;
  gap: 2px;
  color: #e99b16;
}

.stars .material-symbols-rounded {
  font-size: 18px;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 18;
}

.testimonial blockquote {
  margin: 18px 0 24px;
  color: #3d4052;
  font-size: 15px;
  line-height: 1.7;
}

.testimonial footer {
  margin-top: auto;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: var(--omni-ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
}

.testimonial span {
  margin-top: 2px;
  color: var(--omni-copy);
  font-size: 13px;
}

.guide-grid {
  margin-top: 36px;
}

.guide-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--omni-line);
  border-radius: 8px;
  background: var(--omni-white);
  transition: border-color 160ms ease, transform 160ms ease;
}

.guide-card:hover {
  border-color: #bcb4e5;
  transform: translateY(-3px);
}

.guide-tag {
  color: var(--omni-green-dark);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.guide-card h3 {
  margin-top: 12px;
  color: var(--omni-ink);
  font-size: 19px;
  line-height: 1.35;
}

.guide-card p {
  margin: 8px 0 18px;
  color: var(--omni-copy);
  font-size: 14px;
}

.guide-card .icon-link {
  margin-top: auto;
}

.guide-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

/* FAQ */
.faq-list {
  width: 100%;
  min-width: 0;
  max-width: 850px;
  display: grid;
  gap: 10px;
  margin: 36px auto 0;
}

.faq-item {
  min-width: 0;
  border: 1px solid var(--omni-line);
  border-radius: 8px;
  background: var(--omni-white);
}

.faq-item summary {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: var(--omni-ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .material-symbols-rounded {
  color: var(--omni-brand);
  transition: transform 160ms ease;
}

.faq-item[open] summary .material-symbols-rounded {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--omni-copy);
  line-height: 1.7;
}

/* Contact */
.contact-band {
  background: var(--omni-brand);
  color: var(--omni-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: center;
}

.contact-grid > * {
  min-width: 0;
}

.contact-band .eyebrow {
  color: var(--omni-green);
}

.contact-band .section-title {
  color: var(--omni-white);
}

.contact-band .section-intro {
  color: #d9d5e8;
}

.contact-channels {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--omni-white);
}

.contact-channel > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
}

.contact-channel strong,
.contact-channel small {
  display: block;
  overflow-wrap: anywhere;
}

.contact-channel strong {
  font-size: 15px;
}

.contact-channel small {
  color: #cec9e1;
}

.contact-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--omni-white);
  color: var(--omni-ink);
  box-shadow: 0 24px 55px rgba(10, 6, 31, 0.25);
}

.contact-card h3 {
  font-size: 21px;
}

.contact-card > p {
  margin-top: 5px;
  color: var(--omni-copy);
  font-size: 14px;
}

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

.field {
  display: grid;
  gap: 5px;
}

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

.field label {
  color: #3d4052;
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d7d9e2;
  border-radius: 6px;
  outline: none;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--omni-violet);
  box-shadow: 0 0 0 3px rgba(105, 87, 237, 0.14);
}

.form-status {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 750;
}

.form-status.is-error {
  display: block;
  background: #fff0ed;
  color: #9c2c20;
}

.form-status.is-success {
  display: block;
  background: var(--omni-soft-green);
  color: #08673d;
}

.contact-card .button {
  width: 100%;
  margin-top: 16px;
}

.form-consent {
  margin-top: 10px;
  color: #7b7f91;
  font-size: 11px;
  text-align: center;
}

.form-consent a {
  color: #51458d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */
.site-footer {
  padding: 58px 0 24px;
  background: #15112e;
  color: var(--omni-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 42px;
}

.footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  margin-top: 18px;
  color: #bcb7d0;
  font-size: 14px;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--omni-white);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #bcb7d0;
  font-size: 14px;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  color: var(--omni-white);
}

.social-link:hover {
  border-color: var(--omni-green);
  color: var(--omni-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9690ad;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-consent-link {
  appearance: none;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.footer-bottom a:hover,
.footer-consent-link:hover {
  color: var(--omni-green);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--omni-white);
  border-radius: 50%;
  background: #19b866;
  color: var(--omni-white);
  box-shadow: 0 14px 28px rgba(8, 95, 51, 0.28);
}

.whatsapp-float:hover {
  background: #109e55;
  color: var(--omni-white);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-toggle {
    display: grid;
  }

  .hero-inner {
    min-height: 590px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 24px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .continuity-grid {
    gap: 40px;
  }

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

  .product-grid,
  .automation-grid {
    gap: 36px;
  }

  .team-tabs {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .tab-panel img {
    height: 270px;
    max-height: 270px;
  }
}

@media (max-width: 900px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), 680px);
  }

  .section {
    padding: 68px 0;
  }

  .section-title {
    font-size: 33px;
  }

  .header-actions .button,
  .header-login {
    display: none;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-screen {
    max-width: 650px;
  }

  .customer-strip-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .customer-strip p {
    text-align: center;
  }

  .customer-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .continuity-grid,
  .product-grid,
  .automation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #ia .product-grid {
    grid-template-columns: 1fr;
  }

  #ia .product-visual {
    max-width: 360px;
    justify-self: center;
  }

  .product-copy {
    order: 1;
  }

  .product-visual {
    order: 2;
  }

  .automation-copy {
    order: 1;
  }

  .automation-visual {
    order: 2;
  }

  .team-tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

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

  .number-item:nth-child(2) {
    border-right: 0;
  }

  .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--omni-line);
  }

  .testimonial-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    min-height: 0;
  }

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

@media (max-width: 560px) {
  .container {
    width: calc(100% - 32px);
  }

  .site-header,
  .header-inner {
    height: 70px;
  }

  .brand,
  .brand img {
    width: 158px;
  }

  .brand {
    flex-basis: 158px;
  }

  .mobile-menu {
    inset: 70px 0 0;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 29px;
  }

  .section-intro {
    font-size: 16px;
  }

  .hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 220px;
  }

  .channel-chip {
    display: none;
  }

  .customer-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .journey,
  .module-grid {
    grid-template-columns: 1fr;
  }

  #ia .product-visual {
    max-width: 320px;
  }

  .journey::before {
    display: none;
  }

  .journey-step,
  .module-card {
    min-height: 0;
  }

  .module-card:nth-child(n + 7) {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    padding: 16px;
  }

  .module-card:nth-child(n + 7) .module-icon {
    width: 44px;
    height: 44px;
    grid-row: 1 / 3;
  }

  .module-card:nth-child(n + 7) h3 {
    align-self: end;
    margin-top: 0;
    font-size: 16px;
  }

  .module-card:nth-child(n + 7) p {
    display: none;
  }

  .module-card:nth-child(n + 7) .icon-link {
    grid-column: 2;
    align-self: start;
    margin-top: 0;
    font-size: 13px;
  }

  .tab-panel {
    min-height: 0;
    padding: 20px;
  }

  .tab-panel h3 {
    font-size: 22px;
  }

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

  .number-item,
  .number-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--omni-line);
  }

  .number-item:last-child {
    border-bottom: 0;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 420px) {
  .brand,
  .brand img {
    width: 150px;
  }

  .brand {
    flex-basis: 150px;
  }

  .hero-inner {
    gap: 28px;
    padding-top: 32px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 180px;
  }
}
