﻿:root {
  --navy: #173f67;
  --navy-2: #205080;
  --blue: #205080;
  --blue-dark: #123a5f;
  --cyan: #40b0a0;
  --mint: #6fd3c4;
  --orange: #5090c0;
  --ink: #142438;
  --muted: #5d6c7d;
  --line: #dce6ef;
  --surface: #f4f8fc;
  --white: #fff;
  --success: #108070;
  --shadow-sm: 0 10px 30px rgba(9, 29, 52, .08);
  --shadow-lg: 0 24px 70px rgba(9, 29, 52, .15);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --brand-teal: #40b0a0;
  --brand-teal-dark: #108070;
  --brand-blue: #205080;
  --brand-sky: #5090c0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 10% -10%, rgba(18, 104, 232, .055), transparent 30rem),
    radial-gradient(circle at 90% 6%, rgba(66, 217, 178, .07), transparent 28rem),
    var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.35rem);
  letter-spacing: -.055em;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.045em;
}
h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}
p {
  color: var(--muted);
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.section-sm {
  padding: 75px 0;
}
.surface {
  background: var(--surface);
}
.dark {
  color: var(--white);
  background: var(--navy);
}
.dark h1,
.dark h2,
.dark h3,
.dark p {
  color: var(--white);
}
.dark p {
  opacity: .76;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}
.dark .eyebrow {
  color: var(--mint);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.1rem;
}
.section-heading.center p {
  margin-inline: auto;
}
.lead {
  max-width: 690px;
  font-size: clamp(1.08rem, 2vw, 1.26rem);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 800;
}
.text-link i {
  transition: transform .2s ease;
}
.text-link:hover i {
  transform: translateX(4px);
}
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(18, 104, 232, .24);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(18, 104, 232, .3);
}
.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}
.btn-secondary:hover {
  border-color: var(--blue);
}
.btn-light {
  color: var(--navy);
  background: var(--white);
}
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
}
.btn-sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: .9rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 230, 239, .75);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
}
.navbar {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}
.brand img {
  width: 164px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links > a,
.nav-dropdown > button {
  padding: 8px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 750;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown > button:hover {
  color: var(--blue);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 7px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  width: 250px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  visibility: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(8px);
  transition: .2s ease;
}
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}
.dropdown-menu a:hover {
  color: var(--blue);
  background: var(--surface);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 1.15rem;
}
.hero {
  min-height: 710px;
  padding: 90px 0 80px;
  background: radial-gradient(circle at 80% 20%, rgba(66, 217, 178, .18), transparent 26%),
    radial-gradient(circle at 10% 70%, rgba(18, 104, 232, .12), transparent 32%),
    linear-gradient(180deg, #fbfdff, #f4f8fc);
}
.hero-grid,
.split {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 span {
  color: var(--blue);
}
.hero-copy .lead {
  max-width: 620px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: .91rem;
  font-weight: 700;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-points i {
  color: var(--success);
}
.hero-visual {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
}
.hero-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(18, 104, 232, .2);
  border-radius: 50%;
}
.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(18, 104, 232, .13);
  border-radius: inherit;
  content: "";
  inset: 55px;
}
.hero-orbit::after {
  inset: 112px;
}
.hero-device {
  position: relative;
  z-index: 2;
  width: 330px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.hero-device img {
  max-height: 350px;
  margin: auto;
  object-fit: contain;
}
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  max-width: 220px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(220, 230, 239, .8);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  font-size: .83rem;
  font-weight: 800;
}
.floating-card i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--blue);
  background: #eaf2ff;
}
.float-one {
  top: 70px;
  left: 0;
}
.float-two {
  right: 0;
  bottom: 70px;
}
.trust-bar {
  padding: 24px 0;
  border-block: 1px solid var(--line);
  background: var(--white);
}
.trust-grid {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
}
.trust-item i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #edf4ff;
}
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(9, 29, 52, .04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  border-color: rgba(18, 104, 232, .38);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}
.card p:last-child {
  margin-bottom: 0;
}
.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 17px;
  color: var(--blue);
  background: #edf4ff;
  font-size: 1.35rem;
}
.icon-box.mint {
  color: #087d63;
  background: #e4fbf5;
}
.icon-box.orange {
  color: #c65c17;
  background: #fff0e6;
}
.feature-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.feature-card .icon-box {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  margin: 0;
  border-radius: 14px;
}
.feature-card h3 {
  font-size: 1.05rem;
}
.feature-card p {
  margin-bottom: 0;
  font-size: .92rem;
}
.evolution {
  position: relative;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}
.evolution::before {
  position: absolute;
  z-index: 0;
  top: 30px;
  right: 11%;
  left: 11%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  content: "";
}
.evolution-step {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
}
.evolution-number {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  place-items: center;
  border: 7px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--line);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.evolution-step:nth-child(3) .evolution-number,
.evolution-step:nth-child(4) .evolution-number {
  background: #0aa98c;
}
.showcase {
  position: relative;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow-lg);
}
.showcase::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(18, 185, 207, .15);
  content: "";
  filter: blur(10px);
  right: -80px;
  top: -90px;
}
.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 45px;
  grid-template-columns: 1fr 1fr;
}
.showcase h2,
.showcase h3,
.showcase p {
  color: var(--white);
}
.showcase p {
  opacity: .76;
}
.showcase-image {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .24);
}
.showcase-image img {
  width: 100%;
}
.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
}
.check-list i {
  margin-top: 5px;
  color: var(--success);
}
.dark .check-list li {
  color: rgba(255, 255, 255, .78);
}
.process-list {
  display: grid;
  gap: 18px;
  counter-reset: steps;
}
.process-item {
  position: relative;
  padding: 25px 25px 25px 84px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  counter-increment: steps;
}
.process-item::before {
  position: absolute;
  top: 23px;
  left: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  content: counter(steps, decimal-leading-zero);
  font-family: "Manrope", sans-serif;
  font-size: .84rem;
  font-weight: 800;
}
.process-item h3 {
  font-size: 1.05rem;
}
.process-item p {
  margin-bottom: 0;
  font-size: .92rem;
}
.industry-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--navy);
  transition: transform .25s ease;
}
.industry-card::before {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--industry-color, var(--blue));
  content: "";
  filter: blur(2px);
  opacity: .34;
  right: -65px;
  top: -55px;
}
.industry-card::after {
  position: absolute;
  right: 28px;
  top: 28px;
  color: rgba(255, 255, 255, .9);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.industry-card:hover {
  transform: translateY(-6px);
}
.industry-card i {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  font-size: 2.1rem;
}
.industry-card h3,
.industry-card p {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.industry-card p {
  margin-bottom: 0;
  opacity: .7;
}
.page-hero {
  padding: 85px 0 75px;
  background: radial-gradient(circle at 80% 10%, rgba(66, 217, 178, .18), transparent 25%),
    linear-gradient(180deg, #f9fcff, #eef5fb);
}
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 4.55rem);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 700;
}
.breadcrumbs i {
  font-size: .65rem;
  opacity: .55;
}
.stat-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
}
.stat span {
  color: var(--muted);
  font-size: .88rem;
}
.price-grid {
  display: grid;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.price-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  border: 2px solid var(--blue);
}
.price-label {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 11px;
  border-radius: 99px;
  color: var(--blue);
  background: #eaf2ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 22px 0 7px;
}
.price strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 3.4rem;
  letter-spacing: -.06em;
  line-height: 1;
}
.price span {
  padding-bottom: 5px;
  color: var(--muted);
}
.price-note {
  color: var(--muted);
  font-size: .84rem;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.comparison th,
.comparison td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.comparison th {
  color: var(--navy);
  background: var(--surface);
  font-family: "Manrope", sans-serif;
}
.comparison td:not(:first-child),
.comparison th:not(:first-child) {
  text-align: center;
}
.comparison i.fa-check {
  color: var(--success);
}
.comparison i.fa-minus {
  color: #a3afba;
}
.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.case-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.case-top img {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}
.case-top h3 {
  margin-bottom: 3px;
  font-size: 1.02rem;
}
.case-top span {
  color: var(--muted);
  font-size: .82rem;
}
.case-body {
  padding: 24px;
}
.case-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 99px;
  color: var(--blue);
  background: #edf4ff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.quote {
  position: relative;
  padding: 30px;
  border-left: 4px solid var(--blue);
  border-radius: 0 18px 18px 0;
  background: var(--surface);
}
.quote p {
  margin-bottom: 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.resource-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.resource-card .resource-meta {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.resource-card .text-link {
  margin-top: auto;
}
.faq {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
.faq-question i {
  color: var(--blue);
  transition: transform .2s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer > div {
  padding: 0 24px 22px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.contact-grid {
  display: grid;
  align-items: start;
  gap: 52px;
  grid-template-columns: .8fr 1.2fr;
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item i {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: #edf4ff;
}
.contact-item strong {
  display: block;
  color: var(--navy);
}
.contact-item span,
.contact-item a {
  color: var(--muted);
}
.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-group {
  display: grid;
  gap: 7px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 104, 232, .1);
}
.form-feedback {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #08755a;
  background: #e4fbf5;
  font-size: .9rem;
  font-weight: 700;
}
.form-feedback.show {
  display: block;
}
.legal {
  max-width: 850px;
}
.legal h2 {
  margin-top: 52px;
  font-size: 1.75rem;
}
.legal h3 {
  margin-top: 34px;
}
.legal li {
  margin-bottom: 9px;
  color: var(--muted);
}
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 55px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(125deg, var(--blue-dark), var(--blue) 58%, var(--cyan));
}
.cta-band::after {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
  right: -90px;
  top: -140px;
}
.cta-band-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.cta-band h2,
.cta-band p {
  color: var(--white);
}
.cta-band h2 {
  max-width: 690px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.cta-band p {
  max-width: 680px;
  margin-bottom: 0;
  opacity: .78;
}
.site-footer {
  padding: 78px 0 25px;
  color: rgba(255, 255, 255, .72);
  background: #071727;
}
.footer-grid {
  display: grid;
  gap: 45px;
  grid-template-columns: 1.35fr .8fr .8fr 1fr;
}
.footer-brand img {
  width: 170px;
  margin-bottom: 22px;
  padding: 8px;
  border-radius: 10px;
  background: var(--white);
}
.footer-brand p {
  max-width: 350px;
  color: rgba(255, 255, 255, .6);
}
.footer-col h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: .94rem;
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}
.footer-col a:hover {
  color: var(--white);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}
.socials a:hover {
  border-color: var(--mint);
  color: var(--mint);
}
.footer-bottom {
  display: flex;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .8rem;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
}
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .32);
  font-size: 1.55rem;
  transition: transform .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(18, 104, 232, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 104, 232, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 78%);
}
.hero::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 185, 207, .24), transparent 65%);
  content: "";
  filter: blur(8px);
  right: -120px;
  bottom: -120px;
}
.hero-grid {
  position: relative;
  z-index: 1;
}
.hero-copy h1 span {
  background: linear-gradient(105deg, var(--blue), var(--cyan), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,.36), transparent 58%);
  content: "";
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover::before {
  transform: translateX(120%);
}
.capability-marquee {
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f8fbff, #eef7fb, #f8fbff);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: capabilityMarquee 28s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(18, 104, 232, .13);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(9, 29, 52, .05);
  font-size: .82rem;
  font-weight: 850;
}
.marquee-track span:nth-child(3n) {
  color: #087d63;
  border-color: rgba(66, 217, 178, .24);
  background: rgba(228, 251, 245, .82);
}
.marquee-track span:nth-child(4n) {
  color: var(--blue);
  border-color: rgba(18, 104, 232, .18);
  background: rgba(237, 244, 255, .82);
}
@keyframes capabilityMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.bento-grid {
  align-items: stretch;
}
.bento-grid .card {
  position: relative;
  overflow: hidden;
}
.bento-grid .card::after {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 104, 232, .13), transparent 70%);
  content: "";
  right: -70px;
  top: -70px;
}
.bento-grid .bento-large {
  grid-row: span 2;
  background: radial-gradient(circle at 90% 8%, rgba(18, 185, 207, .18), transparent 28%),
    linear-gradient(145deg, #fff, #f4f9ff);
}
.spotlight-grid > .card,
.spotlight-grid > .feature-card,
.spotlight-grid > .case-card {
  position: relative;
  overflow: hidden;
}
.spotlight-grid > .card::before,
.spotlight-grid > .feature-card::before,
.spotlight-grid > .case-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(18, 185, 207, .16), transparent 34%);
  content: "";
  opacity: 0;
  transition: opacity .25s ease;
}
.spotlight-grid > .card:hover::before,
.spotlight-grid > .feature-card:hover::before,
.spotlight-grid > .case-card:hover::before {
  opacity: 1;
}
.spotlight-grid > .card > *,
.spotlight-grid > .feature-card > *,
.spotlight-grid > .case-card > * {
  position: relative;
  z-index: 1;
}
.feature-card,
.case-card,
.stat {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-card:hover,
.case-card:hover,
.stat:hover {
  border-color: rgba(18, 104, 232, .32);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.hero {
  background: radial-gradient(circle at 82% 18%, rgba(64, 176, 160, .22), transparent 27%),
    radial-gradient(circle at 12% 72%, rgba(32, 80, 128, .14), transparent 34%),
    linear-gradient(180deg, #fbfdff, #edf7f7 56%, #f7fbff);
}
.hero-orbit {
  border-color: rgba(64, 176, 160, .26);
  box-shadow: inset 0 0 60px rgba(64, 176, 160, .06);
}
.hero-orbit::before,
.hero-orbit::after {
  border-color: rgba(32, 80, 128, .14);
}
.hero-device {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    radial-gradient(circle at 20% 10%, rgba(64,176,160,.18), transparent 45%);
  box-shadow: 0 34px 90px rgba(32, 80, 128, .18);
}
.hero-product-panel {
  position: absolute;
  z-index: 4;
  right: 16px;
  top: 28px;
  width: 225px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 24px 70px rgba(32,80,128,.16);
  backdrop-filter: blur(18px);
}
.panel-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--brand-blue);
  font-size: .74rem;
  font-weight: 900;
}
.panel-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-teal);
}
.panel-top span:nth-child(2) {
  background: var(--brand-sky);
}
.panel-top span:nth-child(3) {
  background: var(--brand-blue);
}
.panel-top strong {
  margin-left: auto;
}
.panel-metric small,
.panel-metric strong {
  display: block;
}
.panel-metric small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}
.panel-metric strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -.03em;
}
.panel-bars {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}
.panel-bars span {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(32,80,128,.09);
}
.panel-bars span::before {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
  content: "";
}
.hero-module-cloud {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 470px;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  gap: 190px 120px;
  pointer-events: none;
}
.hero-module-cloud span {
  padding: 8px 12px;
  border: 1px solid rgba(64,176,160,.2);
  border-radius: 999px;
  color: var(--brand-blue);
  background: rgba(255,255,255,.62);
  box-shadow: 0 12px 34px rgba(32,80,128,.08);
  font-size: .72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.floating-card {
  border-color: rgba(64,176,160,.18);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
}
.floating-card i,
.trust-item i,
.icon-box {
  color: var(--brand-blue);
  background: #eaf4f6;
}
.icon-box.mint {
  color: var(--brand-teal-dark);
  background: #e4f7f4;
}
.icon-box.orange {
  color: var(--brand-blue);
  background: #e8f1f6;
}
.brand-depth {
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(64,176,160,.13), transparent 28rem),
    linear-gradient(180deg, #ffffff, #f0f8f8);
}
.method-grid {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
}
.method-visual {
  position: sticky;
  top: 110px;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(32,80,128,.12);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 20% 20%, rgba(64,176,160,.28), transparent 32%),
    radial-gradient(circle at 88% 76%, rgba(80,144,192,.25), transparent 28%),
    linear-gradient(145deg, #173f67, #102d4d);
  box-shadow: var(--shadow-lg);
}
.method-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .78;
}
.orb-one {
  width: 210px;
  height: 210px;
  left: -56px;
  top: 40px;
  background: rgba(64,176,160,.48);
}
.orb-two {
  width: 140px;
  height: 140px;
  right: 42px;
  top: 84px;
  background: rgba(80,144,192,.48);
}
.orb-three {
  width: 280px;
  height: 110px;
  right: -70px;
  bottom: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}
.method-stack {
  position: absolute;
  inset: 58px 42px;
  display: grid;
  place-items: center;
  perspective: 900px;
}
.method-window {
  position: absolute;
  width: min(86%, 360px);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.06));
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.method-window strong,
.method-window span {
  display: block;
}
.method-window strong {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}
.method-window span {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}
.window-main {
  z-index: 3;
  transform: translateY(-6px) rotateX(6deg) rotateY(-8deg);
}
.window-mid {
  z-index: 2;
  transform: translate(34px, 96px) rotateX(9deg) rotateY(-16deg) scale(.93);
  opacity: .84;
}
.window-back {
  z-index: 1;
  transform: translate(-34px, -102px) rotateX(10deg) rotateY(14deg) scale(.88);
  opacity: .72;
}
.method-copy .lead {
  margin-bottom: 28px;
}
.method-steps {
  display: grid;
  gap: 16px;
}
.method-step {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: 58px 1fr;
  padding: 22px;
  border: 1px solid rgba(32,80,128,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 40px rgba(32,80,128,.07);
}
.method-step > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  font-family: "Manrope", sans-serif;
  font-weight: 900;
}
.method-step h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.method-step p {
  margin-bottom: 0;
  font-size: .94rem;
}
.cta-band,
.price-card.featured,
.showcase {
  position: relative;
  isolation: isolate;
}
.cta-band::before,
.price-card.featured::before,
.showcase::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.65), rgba(64,176,160,.52), rgba(80,144,192,.48), rgba(255,255,255,.24));
  content: "";
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.cta-band {
  background: linear-gradient(125deg, var(--brand-blue), #256f87 58%, var(--brand-teal));
}
@media (max-width: 1050px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
  .method-visual {
    position: relative;
    top: auto;
  }
  .bento-grid .bento-large {
    grid-row: auto;
  }
  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-links.mobile-open {
    position: absolute;
    z-index: 120;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    min-height: calc(100dvh - 78px);
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 26px 30px 60px;
    background: var(--white);
  }
  body.menu-open .site-header {
    position: fixed;
    overflow-y: auto;
    width: 100%;
    height: 100dvh;
    background: var(--white);
  }
  .nav-links.mobile-open > a,
  .nav-links.mobile-open .nav-dropdown > button {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .nav-links.mobile-open .nav-dropdown > button {
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 10px 0 10px 15px;
    border: 0;
    visibility: visible;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }
  .hero-grid,
  .split,
  .showcase-grid,
  .contact-grid {
    gap: 45px;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .lead {
    margin-inline: auto;
  }
  .hero-copy .actions,
  .hero-points {
    justify-content: center;
  }
  .hero-visual {
    min-height: 450px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}
@media (max-width: 780px) {
  .hero-product-panel {
    right: 0;
    top: 12px;
    width: 190px;
  }
  .hero-module-cloud {
    display: none;
  }
  .method-visual {
    min-height: 430px;
  }
  .section {
    padding: 78px 0;
  }
  .section-sm {
    padding: 58px 0;
  }
  .hero {
    min-height: auto;
    padding: 70px 0 60px;
  }
  .page-hero {
    padding: 64px 0 55px;
  }
  .trust-grid,
  .grid-3,
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .evolution {
    gap: 22px;
    grid-template-columns: 1fr;
  }
  .evolution::before {
    top: 30px;
    bottom: 30px;
    left: 30px;
    width: 2px;
    height: auto;
  }
  .evolution-step {
    display: grid;
    align-items: start;
    padding: 0;
    text-align: left;
    grid-template-columns: 64px 1fr;
    column-gap: 18px;
  }
  .evolution-number {
    margin: 0;
  }
  .evolution-step h3,
  .evolution-step p {
    grid-column: 2;
  }
  .evolution-step h3 {
    margin-top: 8px;
  }
  .showcase,
  .cta-band {
    padding: 34px 26px;
  }
  .cta-band-content {
    align-items: flex-start;
    flex-direction: column;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .comparison-wrap {
    overflow-x: auto;
  }
  .comparison {
    min-width: 680px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .hero-product-panel {
    display: none;
  }
  .method-visual {
    min-height: 360px;
  }
  .method-stack {
    inset: 38px 20px;
  }
  .method-window {
    width: 92%;
    padding: 18px;
  }
  .method-step {
    grid-template-columns: 1fr;
  }
  .capability-marquee {
    padding: 14px 0;
  }
  .marquee-track {
    animation-duration: 42s;
  }
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .navbar {
    min-height: 70px;
  }
  .brand img {
    width: 142px;
  }
  .nav-actions .btn-primary {
    display: none;
  }
  .nav-links.mobile-open {
    top: 70px;
    min-height: calc(100dvh - 70px);
  }
  h1 {
    font-size: 2.65rem;
  }
  h2 {
    font-size: 2rem;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
  }
  .actions .btn {
    width: 100%;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-orbit {
    width: 330px;
    height: 330px;
  }
  .hero-device {
    width: 245px;
    padding: 22px;
  }
  .floating-card {
    max-width: 170px;
    padding: 11px;
    font-size: .72rem;
  }
  .float-one {
    top: 35px;
  }
  .float-two {
    bottom: 30px;
  }
  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .stat-row,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    justify-content: flex-start;
  }
  .card,
  .price-card,
  .form-card {
    padding: 25px;
  }
  .showcase,
  .cta-band {
    border-radius: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.site-header {
  border-bottom: 1px solid rgba(32,80,128,.12);
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 42px rgba(32,80,128,.06);
}
.hero {
  min-height: 780px;
  padding: 105px 0 95px;
  color: #fff;
  background: radial-gradient(circle at 72% 20%, rgba(64,176,160,.36), transparent 28rem),
    radial-gradient(circle at 16% 78%, rgba(80,144,192,.22), transparent 34rem),
    linear-gradient(135deg, #0b2239 0%, #173f67 48%, #0f4f55 100%);
}
.hero::before {
  opacity: .44;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
}
.hero h1,
.hero h2,
.hero h3,
.hero .lead,
.hero p {
  color: #fff;
}
.hero-copy h1 {
  max-width: 760px;
  text-wrap: balance;
}
.hero-copy h1 span {
  background: linear-gradient(105deg, #fff, #6fd3c4 35%, #9bded6 68%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .eyebrow {
  color: #90e4d9;
}
.hero-copy .lead {
  color: rgba(255,255,255,.78);
}
.hero-points span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.hero-points i {
  color: #6fd3c4;
}
.hero .btn-primary {
  color: #0b2239;
  background: #6fd3c4;
  box-shadow: 0 18px 44px rgba(64,176,160,.28);
}
.hero .btn-primary:hover {
  background: #94e5dc;
}
.hero .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.hero-dashboard-wrap {
  align-items: center;
  min-height: 560px;
  perspective: 1200px;
}
.product-dashboard {
  position: relative;
  z-index: 3;
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.075));
  box-shadow: 0 42px 110px rgba(0,0,0,.32);
  backdrop-filter: blur(22px);
  transform: rotateX(8deg) rotateY(-10deg) rotateZ(1deg);
}
.product-dashboard::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(111,211,196,.32), transparent 30%), radial-gradient(circle at 100% 90%, rgba(80,144,192,.24), transparent 34%);
  content: "";
}
.dashboard-topbar,
.dashboard-layout {
  position: relative;
  z-index: 1;
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: #fff;
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6fd3c4;
}
.window-dots span:nth-child(2) {
  background: #5090c0;
}
.window-dots span:nth-child(3) {
  background: rgba(255,255,255,.42);
}
.dashboard-topbar strong {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.02em;
}
.dashboard-topbar small {
  margin-left: auto;
  color: rgba(255,255,255,.62);
  font-weight: 800;
}
.dashboard-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: 150px 1fr 145px;
  padding: 18px;
}
.dashboard-sidebar,
.dashboard-sale,
.dashboard-metrics > div {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(7,24,40,.32);
}
.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px;
}
.dashboard-sidebar span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  color: rgba(255,255,255,.66);
  font-size: .78rem;
  font-weight: 850;
}
.dashboard-sidebar span.active {
  color: #0b2239;
  background: #6fd3c4;
}
.dashboard-sale {
  padding: 16px;
}
.sale-head,
.sale-row,
.sale-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.sale-head {
  margin-bottom: 16px;
  align-items: flex-start;
}
.sale-head span,
.sale-row span,
.sale-total span {
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  font-weight: 800;
}
.sale-head strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.72rem;
  letter-spacing: -.04em;
}
.sale-row {
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.sale-row strong,
.sale-total strong {
  color: #fff;
  font-size: .86rem;
}
.sale-total {
  margin-top: 12px;
  padding: 13px;
  border-radius: 16px;
  background: rgba(111,211,196,.14);
}
.dashboard-metrics {
  display: grid;
  gap: 12px;
}
.dashboard-metrics > div {
  padding: 14px;
}
.dashboard-metrics small,
.dashboard-metrics span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  font-weight: 800;
}
.dashboard-metrics strong {
  display: block;
  color: #6fd3c4;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}
.dashboard-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  width: 230px;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  font-size: .78rem;
  font-weight: 850;
}
.dashboard-badge i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 13px;
  color: #0b2239;
  background: #6fd3c4;
}
.badge-inventory {
  left: -8px;
  top: 68px;
}
.badge-custom {
  right: 4px;
  bottom: 72px;
}
.trust-bar {
  margin-top: -1px;
  padding: 0;
  border: 0;
  background: #0b2239;
}
.trust-grid {
  gap: 1px;
  border-inline: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.08);
}
.trust-item {
  padding: 24px;
  color: #fff;
  background: rgba(255,255,255,.035);
}
.trust-item i {
  color: #0b2239;
  background: #6fd3c4;
}
.trust-item span {
  display: grid;
  gap: 2px;
}
.trust-item strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.trust-item small {
  color: rgba(255,255,255,.58);
  font-size: .76rem;
  font-weight: 750;
}
.capability-marquee {
  border: 0;
  background: linear-gradient(90deg, #0b2239, #173f67, #0b2239);
}
.marquee-track span {
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}
.marquee-track span:nth-child(3n),
.marquee-track span:nth-child(4n) {
  color: #6fd3c4;
  border-color: rgba(111,211,196,.22);
  background: rgba(111,211,196,.08);
}
#inicio-diferenciador {
  background: linear-gradient(180deg, #ffffff, #f0f8f8);
}
.card,
.feature-card,
.case-card,
.price-card,
.resource-card,
.stat,
.form-card {
  border-color: rgba(32,80,128,.12);
  box-shadow: 0 18px 54px rgba(32,80,128,.07);
}
.card:hover,
.feature-card:hover,
.case-card:hover,
.price-card:hover,
.resource-card:hover,
.stat:hover {
  box-shadow: 0 28px 80px rgba(32,80,128,.13);
}
@media (max-width: 1050px) {
  .product-dashboard {
    transform: none;
  }
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    grid-template-columns: repeat(4, 1fr);
  }
  .dashboard-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 780px) {
  .hero {
    padding-top: 78px;
  }
  .dashboard-badge {
    display: none;
  }
  .product-dashboard {
    border-radius: 26px;
  }
  .dashboard-sidebar,
  .dashboard-metrics {
    display: none;
  }
}
.everyday-hero {
  min-height: 760px;
  padding: 92px 0 86px;
  color: var(--ink);
  background: radial-gradient(circle at 18% 12%, rgba(64,176,160,.18), transparent 28rem),
    radial-gradient(circle at 86% 68%, rgba(80,144,192,.16), transparent 30rem),
    linear-gradient(180deg, #fffaf1 0%, #f3fbf9 48%, #eef6fb 100%);
}
.everyday-hero h1,
.everyday-hero h2,
.everyday-hero h3 {
  color: var(--navy);
}
.everyday-hero .lead,
.everyday-hero p {
  color: #41566c;
}
.everyday-hero .eyebrow {
  color: var(--brand-teal-dark);
}
.everyday-hero .hero-copy h1 {
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(2.8rem, 6.4vw, 5.75rem);
  letter-spacing: -.065em;
}
.everyday-hero .hero-copy h1::after {
  display: block;
  width: 130px;
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-blue));
  content: "";
}
.plain-definition {
  max-width: 620px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px dashed rgba(32,80,128,.24);
  border-radius: 20px;
  color: #365066;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 40px rgba(32,80,128,.06);
}
.plain-definition strong {
  color: var(--brand-blue);
}
.everyday-hero .btn-primary {
  color: #fff;
  background: var(--brand-blue);
}
.everyday-hero .btn-secondary {
  color: var(--brand-blue);
  border-color: rgba(32,80,128,.18);
  background: rgba(255,255,255,.76);
}
.everyday-hero .hero-points span {
  color: var(--brand-blue);
  border-color: rgba(64,176,160,.2);
  background: rgba(255,255,255,.68);
}
.counter-scene {
  min-height: 590px;
  isolation: isolate;
}
.counter-board {
  position: absolute;
  z-index: 1;
  inset: 20px 34px auto auto;
  width: 78%;
  height: 330px;
  border: 1px solid rgba(32,80,128,.14);
  border-radius: 34px;
  background: linear-gradient(rgba(32,80,128,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,80,128,.04) 1px, transparent 1px),
    #fffef7;
  background-size: 28px 28px;
  box-shadow: 0 28px 80px rgba(32,80,128,.12);
  transform: rotate(-2deg);
}
.board-note {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(32,80,128,.12);
}
.board-note span,
.board-note small,
.board-note strong {
  display: block;
}
.board-note span {
  margin-bottom: 7px;
  color: var(--brand-teal-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.board-note strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.board-note small {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.35;
}
.note-question {
  left: -18px;
  top: 34px;
  transform: rotate(-3deg);
}
.note-stock {
  right: 24px;
  top: 92px;
  transform: rotate(4deg);
}
.note-credit {
  left: 118px;
  bottom: 24px;
  transform: rotate(2deg);
}
.counter-pos {
  position: relative;
  z-index: 3;
  width: min(440px, 86%);
  margin: 160px auto 0;
  padding: 22px;
  border: 1px solid rgba(32,80,128,.14);
  border-radius: 34px;
  background: linear-gradient(145deg, #173f67, #0f314f);
  box-shadow: 0 36px 100px rgba(32,80,128,.24);
  transform: rotate(2deg);
}
.pos-screen {
  padding: 20px;
  border-radius: 24px;
  background: #f7fbfa;
}
.screen-header,
.screen-line,
.screen-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.screen-header {
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-weight: 900;
}
.screen-header span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 20px 0 0 var(--brand-sky), 40px 0 0 rgba(32,80,128,.25);
}
.screen-line {
  padding: 12px 0;
  border-top: 1px solid rgba(32,80,128,.1);
  color: var(--muted);
  font-size: .9rem;
}
.screen-line strong {
  color: var(--navy);
}
.screen-total {
  margin-top: 14px;
  padding: 15px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}
.screen-total span,
.screen-total strong {
  color: #fff;
}
.receipt-card {
  position: absolute;
  right: -34px;
  bottom: -32px;
  width: 170px;
  padding: 16px;
  border-radius: 18px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 20px 54px rgba(0,0,0,.16);
  transform: rotate(-6deg);
}
.receipt-card span,
.receipt-card strong {
  display: block;
}
.receipt-card span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
}
.counter-result {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 28px;
  display: flex;
  max-width: 295px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(64,176,160,.28);
  border-radius: 22px;
  color: var(--brand-blue);
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 60px rgba(32,80,128,.13);
  backdrop-filter: blur(14px);
  font-size: .88rem;
  font-weight: 900;
}
.counter-result i {
  color: var(--brand-teal-dark);
  font-size: 1.35rem;
}
.everyday-trust {
  background: #fff;
  border-block: 1px solid rgba(32,80,128,.11);
}
.everyday-trust .trust-grid {
  border: 0;
  background: transparent;
}
.everyday-trust .trust-item {
  border-right: 1px solid rgba(32,80,128,.08);
  color: var(--navy);
  background: #fff;
}
.everyday-trust .trust-item:last-child {
  border-right: 0;
}
.everyday-trust .trust-item strong {
  color: var(--navy);
}
.everyday-trust .trust-item small {
  color: var(--muted);
}
.everyday-trust .trust-item i {
  color: #fff;
  background: var(--brand-blue);
}
.everyday-marquee {
  background: #f2faf8;
}
.everyday-marquee .marquee-track span {
  color: var(--brand-blue);
  border-color: rgba(64,176,160,.2);
  background: rgba(255,255,255,.84);
}
#inicio-diferenciador .card h3 {
  font-size: 1.25rem;
}
#inicio-diferenciador .bento-large {
  background: #fffef7;
}
@media (max-width: 1050px) {
  .counter-scene {
    min-height: 560px;
  }
  .counter-board {
    right: 50%;
    width: min(640px, 92%);
    transform: translateX(50%) rotate(-2deg);
  }
}
@media (max-width: 780px) {
  .everyday-hero {
    padding: 68px 0 64px;
  }
  .counter-scene {
    min-height: 520px;
  }
  .board-note {
    width: 190px;
  }
  .note-credit {
    left: 70px;
  }
  .counter-pos {
    width: 90%;
    margin-top: 175px;
  }
  .receipt-card,
  .counter-result {
    display: none;
  }
}
@media (max-width: 560px) {
  .plain-definition {
    padding: 15px;
  }
  .counter-scene {
    min-height: 440px;
  }
  .counter-board {
    display: none;
  }
  .counter-pos {
    margin-top: 20px;
    transform: none;
  }
}
.growth-hero {
  min-height: 780px;
  overflow: hidden;
  padding: 98px 0 92px;
  background: linear-gradient(rgba(32,80,128,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,80,128,.045) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(64,176,160,.18), transparent 28rem),
    radial-gradient(circle at 90% 72%, rgba(80,144,192,.18), transparent 30rem),
    #fffdf6;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}
.growth-hero::before,
.growth-hero::after {
  display: none;
}
.growth-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
}
.growth-copy h1 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(3.2rem, 7vw, 6.35rem);
  letter-spacing: -.075em;
  text-wrap: balance;
}
.growth-copy .lead {
  max-width: 720px;
  color: #40576c;
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}
.boss-insight {
  display: grid;
  max-width: 690px;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  margin-top: 26px;
  padding: 20px;
  border: 2px solid rgba(64,176,160,.28);
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  box-shadow: 10px 10px 0 rgba(64,176,160,.14);
}
.boss-insight i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  font-size: 1.2rem;
}
.boss-insight p {
  margin: 0;
  color: #334b62;
}
.boss-insight strong {
  color: var(--brand-blue);
}
.growth-map {
  min-height: 580px;
}
.map-paper {
  position: relative;
  width: min(100%, 640px);
  min-height: 540px;
  margin-inline: auto;
  border: 2px solid rgba(32,80,128,.14);
  border-radius: 42px;
  background: linear-gradient(rgba(32,80,128,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,80,128,.045) 1px, transparent 1px),
    #fffef8;
  background-size: 30px 30px;
  box-shadow: 18px 18px 0 rgba(32,80,128,.08), 0 32px 90px rgba(32,80,128,.14);
  transform: rotate(-1.5deg);
}
.map-paper::before {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(32,80,128,.16);
  border-radius: 30px;
  content: "";
}
.map-stamp {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 28px;
  padding: 9px 14px;
  border: 2px solid rgba(16,128,112,.38);
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: rgba(228,247,244,.8);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(4deg);
}
.map-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-lines path {
  fill: none;
  stroke: rgba(32,80,128,.28);
  stroke-width: 3;
  stroke-dasharray: 8 10;
  stroke-linecap: round;
}
.map-lines .special-line {
  stroke: rgba(64,176,160,.58);
  stroke-width: 4;
}
.map-node {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 148px;
  gap: 2px;
  padding: 16px;
  border: 2px solid rgba(32,80,128,.13);
  border-radius: 24px;
  color: var(--navy);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 46px rgba(32,80,128,.12);
}
.map-node i {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 7px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--brand-blue);
}
.map-node span,
.map-node strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  line-height: 1.05;
}
.map-node small {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 750;
}
.node-core {
  top: 220px;
  left: 50%;
  min-width: 170px;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-blue), #256f87 58%, var(--brand-teal));
  transform: translateX(-50%) rotate(1deg);
}
.node-core small,
.node-core strong {
  color: #fff;
}
.node-pos {
  top: 54px;
  left: 38px;
  transform: rotate(-4deg);
}
.node-inventory {
  top: 50px;
  right: 44px;
  transform: rotate(3deg);
}
.node-cloud {
  bottom: 52px;
  left: 42px;
  transform: rotate(3deg);
}
.node-support {
  right: 34px;
  bottom: 48px;
  transform: rotate(-3deg);
}
.node-custom {
  top: 30px;
  left: 50%;
  min-width: 190px;
  border-color: rgba(64,176,160,.4);
  background: #f0fbf8;
  transform: translateX(-50%) rotate(-1deg);
}
.node-custom i {
  background: var(--brand-teal-dark);
}
.growth-proof {
  padding: 0;
  border-block: 2px solid rgba(32,80,128,.1);
  background: #fff;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-grid article {
  min-height: 185px;
  padding: 28px;
  border-right: 1px solid rgba(32,80,128,.1);
  background: linear-gradient(180deg, #fff, #f7fbfb);
}
.proof-grid article:last-child {
  border-right: 0;
}
.proof-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--brand-teal-dark);
  font-family: "Manrope", sans-serif;
  font-size: .88rem;
  font-weight: 950;
}
.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}
.proof-grid p {
  margin: 0;
  font-size: .92rem;
}
.growth-marquee {
  border: 0;
  background: var(--brand-blue);
}
.growth-marquee .marquee-track span {
  color: #fff;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}
.growth-difference {
  background: radial-gradient(circle at 8% 20%, rgba(64,176,160,.12), transparent 28rem),
    #fffdf6;
}
.growth-quote {
  padding: 44px;
  border: 2px solid rgba(32,80,128,.12);
  border-radius: 38px;
  background: #fff;
  box-shadow: 16px 16px 0 rgba(64,176,160,.14), 0 30px 80px rgba(32,80,128,.1);
  transform: rotate(1.5deg);
}
.growth-quote p {
  margin-bottom: 22px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.06em;
}
.growth-quote span {
  color: var(--brand-teal-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.growth-path {
  background: linear-gradient(180deg, #173f67, #0e304e);
}
.growth-path h2,
.growth-path h3,
.growth-path p {
  color: #fff;
}
.growth-path .eyebrow {
  color: #8ee3d8;
}
.growth-path .section-heading p {
  color: rgba(255,255,255,.7);
}
.path-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: path;
}
.path-step {
  position: relative;
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.path-step::before {
  position: absolute;
  top: 42px;
  right: -28px;
  width: 56px;
  height: 2px;
  background: rgba(142,227,216,.5);
  content: "";
}
.path-step:last-child::before {
  display: none;
}
.path-step span {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0e304e;
  background: #8ee3d8;
  font-size: .78rem;
  font-weight: 950;
}
.path-step p {
  color: rgba(255,255,255,.7);
}
@media (max-width: 1050px) {
  .growth-hero-grid {
    grid-template-columns: 1fr;
  }
  .growth-copy {
    text-align: left;
  }
  .growth-copy .actions,
  .growth-copy .hero-points {
    justify-content: flex-start;
  }
  .map-paper {
    transform: none;
  }
  .proof-grid,
  .path-steps {
    grid-template-columns: 1fr 1fr;
  }
  .path-step::before {
    display: none;
  }
}
@media (max-width: 780px) {
  .growth-map {
    min-height: auto;
  }
  .map-paper {
    display: grid;
    min-height: auto;
    gap: 14px;
    padding: 24px;
  }
  .map-lines,
  .map-stamp,
  .map-paper::before {
    display: none;
  }
  .map-node,
  .node-core,
  .node-pos,
  .node-inventory,
  .node-cloud,
  .node-support,
  .node-custom {
    position: relative;
    inset: auto;
    min-width: 0;
    transform: none;
  }
  .proof-grid,
  .path-steps {
    grid-template-columns: 1fr;
  }
  .proof-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(32,80,128,.1);
  }
  .growth-quote {
    padding: 30px;
    transform: none;
  }
}
.pos-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 92px;
  background: radial-gradient(circle at 82% 12%, rgba(64,176,160,.2), transparent 30%),
    radial-gradient(circle at 10% 18%, rgba(80,144,192,.16), transparent 28%),
    linear-gradient(135deg, #f7fcfb 0%, #eef8f7 48%, #ffffff 100%);
}
.pos-hero::before,
.pos-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.pos-hero::before {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 74px;
  background: rgba(64,176,160,.16);
}
.pos-hero::after {
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: -120px;
  background: rgba(32,80,128,.1);
}
.pos-hero-bg span {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.pos-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 0 10px rgba(64,176,160,.12);
}
.pos-dot-one {
  top: 155px;
  left: 8%;
}
.pos-dot-two {
  right: 10%;
  bottom: 120px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 10px rgba(32,80,128,.12);
}
.pos-ring {
  width: 92px;
  height: 92px;
  border: 14px solid rgba(64,176,160,.18);
  border-radius: 50%;
}
.pos-ring-one {
  top: 90px;
  right: 34%;
}
.pos-ring-two {
  left: 42%;
  bottom: 72px;
  border-color: rgba(32,80,128,.12);
}
.pos-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 78px;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
}
.pos-hero-copy h1 {
  max-width: 760px;
  color: var(--brand-blue);
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.085em;
}
.pos-hero-copy .lead {
  max-width: 650px;
  color: #3c5871;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}
.plain-proof {
  display: grid;
  max-width: 680px;
  margin: 28px 0;
  padding: 20px 22px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border: 1px solid rgba(64,176,160,.32);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 50px rgba(32,80,128,.1);
  backdrop-filter: blur(10px);
}
.plain-proof i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}
.plain-proof p {
  margin: 0;
  color: var(--muted);
}
.plain-proof strong {
  color: var(--navy);
}
.pos-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pos-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(32,80,128,.12);
  border-radius: 999px;
  color: var(--brand-blue);
  background: #fff;
  font-weight: 850;
  text-transform: capitalize;
  box-shadow: 0 12px 30px rgba(32,80,128,.08);
}
.pos-hero-pills i {
  color: var(--brand-teal-dark);
}
.pos-hero-visual {
  position: relative;
  min-height: 610px;
}
.pos-hero-visual::before {
  content: "";
  position: absolute;
  inset: 42px 0 28px 34px;
  border-radius: 46% 54% 48% 52% / 42% 38% 62% 58%;
  background: linear-gradient(135deg, rgba(64,176,160,.36), rgba(32,80,128,.16));
  transform: rotate(-8deg);
}
.pos-main-screen {
  position: relative;
  z-index: 2;
  margin: 54px 0 0 auto;
  max-width: 610px;
  padding: 16px;
  border: 1px solid rgba(32,80,128,.12);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(32,80,128,.18), 18px 18px 0 rgba(64,176,160,.14);
}
.screen-toolbar {
  display: flex;
  gap: 7px;
  padding: 4px 4px 14px;
}
.screen-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9e9ef;
}
.screen-toolbar span:nth-child(2) {
  background: #b9e7df;
}
.screen-toolbar span:nth-child(3) {
  background: #8fb8d5;
}
.pos-main-screen img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 24px;
}
.pos-ticket-card,
.pos-stock-card,
.pos-custom-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(32,80,128,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 70px rgba(32,80,128,.16);
  backdrop-filter: blur(10px);
}
.pos-ticket-card {
  left: 0;
  top: 70px;
  width: 188px;
  padding: 22px;
}
.pos-ticket-card span,
.pos-ticket-card small,
.pos-custom-card span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.pos-ticket-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--brand-blue);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  letter-spacing: -.06em;
}
.pos-stock-card {
  left: 8px;
  bottom: 108px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 230px;
  padding: 18px;
}
.pos-stock-card i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--brand-teal-dark);
}
.pos-stock-card strong,
.pos-stock-card span,
.pos-custom-card strong {
  display: block;
}
.pos-stock-card strong,
.pos-custom-card strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  letter-spacing: -.04em;
}
.pos-stock-card span {
  color: var(--muted);
  font-size: .86rem;
}
.pos-custom-card {
  right: 6px;
  bottom: 34px;
  width: 220px;
  padding: 18px 20px;
  border-color: rgba(64,176,160,.26);
}
.pos-custom-card::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  right: 18px;
  top: -22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  box-shadow: 0 12px 30px rgba(32,80,128,.2);
}
.pos-benefits {
  padding: 74px 0 92px;
  background: #fff;
}
.pos-benefits-head {
  display: grid;
  align-items: end;
  gap: 22px;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .56fr);
  margin-bottom: 34px;
}
.pos-benefits-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.075em;
}
.pos-benefits-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.pos-benefit-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pos-benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 28px;
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f7fbfb);
  box-shadow: 0 18px 55px rgba(32,80,128,.08);
}
.pos-benefit-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 128px;
  height: 128px;
  border-radius: 40px;
  background: rgba(64,176,160,.1);
  transform: rotate(18deg);
}
.benefit-number {
  position: absolute;
  right: 24px;
  bottom: 16px;
  color: rgba(32,80,128,.08);
  font-family: "Manrope", sans-serif;
  font-size: 4.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}
.pos-benefit-card h3 {
  margin: 26px 0 12px;
  color: var(--navy);
  font-size: 1.35rem;
}
.pos-benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}
.pos-difference {
  overflow: hidden;
  background: radial-gradient(circle at 12% 20%, rgba(64,176,160,.14), transparent 28%),
    linear-gradient(135deg, #173f67 0%, #205080 52%, #108070 100%);
}
.pos-difference .eyebrow,
.pos-difference h2,
.pos-difference .lead,
.pos-difference .text-link {
  color: #fff;
}
.pos-difference .lead {
  color: rgba(255,255,255,.82);
}
.pos-difference-grid {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, .86fr) minmax(470px, 1.14fr);
}
.pos-difference-copy h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: .95;
  letter-spacing: -.08em;
}
.boss-quote {
  display: grid;
  max-width: 620px;
  margin: 28px 0 22px;
  padding: 22px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px;
  background: rgba(255,255,255,.1);
}
.boss-quote i {
  color: #9ff0e4;
  font-size: 1.45rem;
}
.boss-quote p {
  margin: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.26rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.pos-formula {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pos-formula article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(5,20,35,.2);
}
.pos-formula article:nth-child(even) {
  transform: translateY(24px);
}
.formula-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}
.pos-formula h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}
.pos-formula p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 1120px) {
  .pos-hero-grid,
  .pos-difference-grid,
  .pos-benefits-head {
    grid-template-columns: 1fr;
  }
  .pos-hero-visual {
    min-height: 560px;
  }
  .pos-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .pos-hero {
    padding: 108px 0 62px;
  }
  .pos-hero-grid {
    gap: 42px;
  }
  .pos-hero-copy h1 {
    font-size: clamp(2.85rem, 18vw, 4rem);
  }
  .plain-proof,
  .boss-quote {
    grid-template-columns: 1fr;
  }
  .pos-hero-visual {
    display: grid;
    min-height: auto;
    gap: 14px;
  }
  .pos-hero-visual::before {
    inset: 20px;
  }
  .pos-main-screen,
  .pos-ticket-card,
  .pos-stock-card,
  .pos-custom-card {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    margin: 0;
  }
  .pos-main-screen {
    order: -1;
    padding: 10px;
    border-radius: 24px;
  }
  .pos-main-screen img {
    border-radius: 18px;
  }
  .pos-benefits {
    padding: 58px 0 68px;
  }
  .pos-benefit-grid,
  .pos-formula {
    grid-template-columns: 1fr;
  }
  .pos-benefit-card {
    min-height: 250px;
  }
  .pos-formula article:nth-child(even) {
    transform: none;
  }
}
.pos-section-row {
  display: grid;
  align-items: end;
  gap: 28px;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .54fr);
  margin-bottom: 38px;
}
.pos-section-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.7vw, 4.9rem);
  line-height: .95;
  letter-spacing: -.08em;
}
.pos-section-row p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.pos-journey {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.pos-journey::before {
  content: "";
  position: absolute;
  inset: 90px auto auto -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(64,176,160,.12);
}
.pos-journey-board {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pos-journey-board::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 62px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32,80,128,.1), rgba(64,176,160,.45), rgba(32,80,128,.1));
}
.pos-journey-step {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 34px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 60px rgba(32,80,128,.08);
}
.pos-journey-step:nth-child(even) {
  margin-top: 44px;
}
.pos-journey-step.special {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal-dark));
}
.journey-count {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(32,80,128,.22);
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.07em;
}
.pos-journey-step.special .journey-count {
  color: rgba(255,255,255,.32);
}
.pos-journey-step i {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}
.pos-journey-step.special i {
  color: var(--brand-blue);
  background: #fff;
}
.pos-journey-step h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.28rem;
}
.pos-journey-step.special h3,
.pos-journey-step.special p {
  color: #fff;
}
.pos-journey-step p {
  margin: 0;
  color: var(--muted);
}
.pos-modules {
  background: radial-gradient(circle at 86% 8%, rgba(64,176,160,.14), transparent 26%),
    linear-gradient(180deg, #f6fbfb, #ffffff);
}
.pos-module-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr repeat(2, minmax(0, .74fr));
}
.pos-module-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(32,80,128,.08);
}
.pos-module-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border-radius: 42px;
  background: rgba(64,176,160,.1);
  transform: rotate(18deg);
}
.pos-module-card.featured {
  grid-row: span 2;
  min-height: 520px;
  color: #fff;
  background: linear-gradient(145deg, #173f67, var(--brand-blue) 48%, var(--brand-teal-dark));
}
.pos-module-card.featured::after {
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: -90px;
  background: rgba(255,255,255,.1);
}
.pos-module-card.accent {
  background: #eefaf7;
}
.module-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}
.pos-module-card.featured .module-icon {
  color: var(--brand-blue);
  background: #fff;
}
.pos-module-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.38rem;
}
.pos-module-card.featured h3 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.pos-module-card p,
.pos-module-card span {
  position: relative;
  z-index: 1;
}
.pos-module-card p {
  margin: 0;
  color: var(--muted);
}
.pos-module-card.featured p,
.pos-module-card.featured span {
  color: rgba(255,255,255,.86);
}
.pos-module-card.featured span {
  display: inline-flex;
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  font-weight: 850;
}
.pos-center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.pos-live-demo {
  background: #fff;
}
.pos-live-grid {
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
}
.pos-live-copy h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.08em;
}
.pos-live-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}
.live-checks {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.live-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
}
.live-checks i {
  color: var(--brand-teal-dark);
}
.pos-live-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 38px;
  background: #112f4e;
  box-shadow: 0 30px 90px rgba(17,47,78,.22);
}
.pos-live-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(64,176,160,.24);
}
.live-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.live-panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}
.live-lane {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  color: #fff;
  background: rgba(255,255,255,.07);
}
.live-lane.active {
  background: rgba(64,176,160,.24);
}
.live-lane strong,
.live-lane span {
  position: relative;
  z-index: 1;
}
.live-lane span {
  color: rgba(255,255,255,.74);
}
.live-meter {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 12px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.live-meter span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee3d8, #fff);
}
.pos-product-shot {
  background: linear-gradient(180deg, #f4fbfa, #ffffff);
}
.pos-shot-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: 46px;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 26px 82px rgba(32,80,128,.1);
}
.pos-shot-card::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(64,176,160,.13);
}
.pos-shot-copy,
.pos-shot-visual {
  position: relative;
  z-index: 1;
}
.pos-shot-copy h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.07em;
}
.pos-shot-copy p {
  color: var(--muted);
}
.shot-window {
  padding: 14px;
  border: 1px solid rgba(32,80,128,.12);
  border-radius: 32px;
  background: #fff;
  box-shadow: 18px 18px 0 rgba(64,176,160,.14), 0 28px 80px rgba(32,80,128,.14);
}
.shot-window img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.shot-badge {
  position: absolute;
  left: -26px;
  bottom: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(32,80,128,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(32,80,128,.14);
}
.shot-badge strong,
.shot-badge span {
  display: block;
}
.shot-badge strong {
  color: var(--brand-blue);
}
.shot-badge span {
  color: var(--muted);
}
.pos-industries {
  background: #fff;
}
.pos-industry-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.pos-industry-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 30px;
  color: var(--navy);
  background: linear-gradient(180deg, #fff, #f7fbfb);
  box-shadow: 0 18px 52px rgba(32,80,128,.08);
}
.pos-industry-card:nth-child(1),
.pos-industry-card:nth-child(2),
.pos-industry-card:nth-child(6) {
  grid-column: span 2;
}
.pos-industry-card:nth-child(3),
.pos-industry-card:nth-child(4),
.pos-industry-card:nth-child(5) {
  grid-column: span 2;
}
.pos-industry-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border-radius: 42px;
  background: rgba(64,176,160,.12);
  transform: rotate(20deg);
}
.pos-industry-card.all {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal-dark));
}
.pos-industry-card i {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}
.pos-industry-card.all i {
  color: var(--brand-blue);
  background: #fff;
}
.pos-industry-card h3,
.pos-industry-card p {
  position: relative;
  z-index: 1;
}
.pos-industry-card h3 {
  margin: 0 0 10px;
  color: inherit;
}
.pos-industry-card p {
  margin: 0;
  color: var(--muted);
}
.pos-industry-card.all p {
  color: rgba(255,255,255,.82);
}
.pos-cases {
  background: radial-gradient(circle at 12% 12%, rgba(80,144,192,.13), transparent 25%),
    #f6fbfb;
}
.pos-case-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pos-case-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(32,80,128,.09);
}
.pos-case-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(32,80,128,.14);
}
.pos-case-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: rgba(64,176,160,.12);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pos-case-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.38rem;
}
.pos-case-card p {
  margin: 0;
  color: var(--muted);
}
.pos-plans {
  background: #fff;
}
.pos-plans-grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
}
.pos-plans-copy h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4.5vw, 4.7rem);
  line-height: .95;
  letter-spacing: -.08em;
}
.pos-plans-copy p {
  color: var(--muted);
}
.pos-price-stack {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 36px;
  background: #f7fbfb;
}
.pos-price-stack article {
  display: grid;
  align-items: center;
  gap: 16px;
  grid-template-columns: 1fr auto;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(32,80,128,.08);
}
.pos-price-stack article.highlight {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal-dark));
}
.pos-price-stack span,
.pos-price-stack p {
  grid-column: 1;
  margin: 0;
}
.pos-price-stack span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.pos-price-stack article.highlight span,
.pos-price-stack article.highlight p {
  color: rgba(255,255,255,.82);
}
.pos-price-stack strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--brand-blue);
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -.08em;
}
.pos-price-stack article.highlight strong {
  color: #fff;
}
.pos-price-stack small {
  color: var(--muted);
  text-align: center;
}
.pos-final {
  background: #fff;
}
.pos-final-band {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 1fr auto;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 40px;
  color: #fff;
  background: radial-gradient(circle at 82% 18%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(135deg, #173f67, var(--brand-blue) 46%, var(--brand-teal-dark));
  box-shadow: 0 30px 90px rgba(32,80,128,.2);
}
.pos-final-band .eyebrow,
.pos-final-band h2,
.pos-final-band p {
  color: #fff;
}
.pos-final-band h2 {
  max-width: 780px;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.075em;
}
.pos-final-band p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
}
@media (max-width: 1120px) {
  .pos-section-row,
  .pos-live-grid,
  .pos-shot-card,
  .pos-plans-grid,
  .pos-final-band {
    grid-template-columns: 1fr;
  }
  .pos-journey-board,
  .pos-module-layout,
  .pos-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pos-module-card.featured {
    grid-row: auto;
    min-height: 360px;
  }
  .pos-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pos-industry-card:nth-child(n) {
    grid-column: auto;
  }
}
@media (max-width: 760px) {
  .pos-section-row h2,
  .pos-live-copy h2,
  .pos-shot-copy h2,
  .pos-plans-copy h2,
  .pos-final-band h2 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }
  .pos-journey-board,
  .pos-module-layout,
  .pos-industry-grid,
  .pos-case-grid {
    grid-template-columns: 1fr;
  }
  .pos-journey-board::before {
    display: none;
  }
  .pos-journey-step:nth-child(even) {
    margin-top: 0;
  }
  .live-lane,
  .pos-price-stack article {
    grid-template-columns: 1fr;
  }
  .live-lane {
    display: grid;
  }
  .pos-price-stack strong,
  .pos-price-stack span,
  .pos-price-stack p {
    grid-column: auto;
    grid-row: auto;
  }
  .shot-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
  }
  .pos-final-band {
    border-radius: 30px;
  }
}
.pos-use-moment {
  display: grid;
  align-items: center;
  gap: 26px;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 36px;
  background: #f7fbfb;
  box-shadow: 0 20px 62px rgba(32,80,128,.08);
}
.pos-use-photo,
.pos-shot-photo,
.pos-final-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: #123455;
}
.pos-use-photo {
  min-height: 330px;
}
.pos-use-photo img,
.pos-shot-photo img,
.pos-final-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pos-use-photo img {
  position: absolute;
  inset: 0;
}
.pos-use-copy {
  padding: clamp(18px, 3vw, 34px);
}
.pos-use-copy h3 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.065em;
}
.pos-use-copy p {
  margin: 0;
  color: var(--muted);
}
.pos-shot-visual {
  display: grid;
  gap: 16px;
}
.pos-shot-photo {
  min-height: 220px;
  box-shadow: 0 18px 52px rgba(32,80,128,.12);
}
.pos-shot-photo::after,
.pos-final-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,42,0) 35%, rgba(7,24,42,.78) 100%);
}
.pos-shot-photo figcaption,
.pos-final-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}
.pos-final-band {
  grid-template-columns: minmax(0, .95fr) minmax(300px, .48fr);
}
.pos-final-side {
  display: grid;
  gap: 16px;
  justify-items: stretch;
}
.pos-final-side .btn {
  justify-content: center;
}
.pos-final-photo {
  min-height: 250px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 56px rgba(5,20,35,.18);
}
@media (max-width: 980px) {
  .pos-use-moment,
  .pos-final-band {
    grid-template-columns: 1fr;
  }
  .pos-use-photo,
  .pos-final-photo {
    min-height: 300px;
  }
}
.pos-use-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: #fff;
  background: rgba(10,31,52,.66);
  backdrop-filter: blur(10px);
  font-weight: 850;
  line-height: 1.35;
}
.pos-use-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,42,0) 42%, rgba(7,24,42,.78) 100%);
}
.pos-support-proof {
  position: relative;
  overflow: hidden;
  margin: 28px 0 0;
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: #123455;
  box-shadow: 0 20px 60px rgba(5,20,35,.2);
}
.pos-support-proof img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pos-support-proof::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,42,0) 35%, rgba(7,24,42,.84) 100%);
}
.pos-support-proof figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}
.pos-final-band {
  grid-template-columns: 1fr auto;
}
@media (max-width: 980px) {
  .pos-final-band {
    grid-template-columns: 1fr;
  }
}
.pos-growth-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pos-growth-steps article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(32,80,128,.1);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #f6fbfb);
  box-shadow: 0 20px 60px rgba(32,80,128,.08);
}
.pos-growth-steps article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border-radius: 38px;
  background: rgba(64,176,160,.1);
  transform: rotate(18deg);
}
.pos-growth-steps span {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(32,80,128,.18);
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.07em;
}
.pos-growth-steps i {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}
.pos-growth-steps h3,
.pos-growth-steps p {
  position: relative;
  z-index: 1;
}
.pos-growth-steps h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.28rem;
}
.pos-growth-steps p {
  margin: 0;
  color: var(--muted);
}
.pos-shot-visual.single {
  display: block;
}
.shot-window figcaption {
  margin-top: 14px;
  padding: 0 4px 4px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .pos-growth-steps {
    grid-template-columns: 1fr;
  }
  .pos-growth-steps article {
    min-height: auto;
  }
}
.home-refresh {
  overflow: hidden;
  color: #07142e;
  background: #fff;
}
.home-refresh h1,
.home-refresh h2,
.home-refresh h3 {
  color: #07142e;
  letter-spacing: 0;
}
.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 86px) 0 118px;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(244,249,255,.94) 45%, rgba(238,246,255,.84) 100%),
    url("../imagenes/foto-caja-cliente.jpg") center right / cover no-repeat;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 22%, rgba(8, 102, 255, .12), transparent 28rem);
  pointer-events: none;
}
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
}
.home-badge {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #005ee8;
  background: #ddebff;
  font-size: .79rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}
.home-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: #07142e;
  font-size: clamp(2.85rem, 5.3vw, 5.45rem);
  line-height: 1.02;
  font-weight: 900;
}
.home-hero h1 span {
  color: #0866ff;
}
.home-hero .lead {
  max-width: 620px;
  margin-bottom: 0;
  color: #10233d;
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}
.home-hero-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.home-hero-tools span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 9px 14px;
  border: 1px solid rgba(8,102,255,.1);
  border-radius: 999px;
  color: #07142e;
  background: rgba(255,255,255,.9);
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(7, 20, 46, .08);
}
.home-hero-tools i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: #eef5ff;
}
.home-hero-actions {
  margin-top: 40px;
}
.home-refresh .btn-primary {
  background: #0866ff;
  box-shadow: 0 16px 34px rgba(8,102,255,.24);
}
.home-refresh .btn-primary:hover {
  background: #0053d6;
}
.home-refresh .btn-secondary {
  color: #0866ff;
  border-color: rgba(8,102,255,.12);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,20,46,.08);
}
.home-hero-visual {
  position: relative;
  min-height: 560px;
}
.home-device {
  position: absolute;
  z-index: 2;
  right: 8px;
  top: 34px;
  width: min(100%, 650px);
  padding: 14px;
  border: 1px solid rgba(7,20,46,.1);
  border-radius: 28px;
  background: #101928;
  box-shadow: 0 30px 80px rgba(7,20,46,.25);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
}
.device-top {
  display: flex;
  gap: 7px;
  padding: 2px 2px 12px;
}
.device-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9e8ff;
}
.device-top span:nth-child(2) {
  background: #50d2a0;
}
.device-top span:nth-child(3) {
  background: #ffb33e;
}
.home-device img {
  width: 100%;
  border-radius: 18px;
  background: #fff;
}
.phone-device {
  position: absolute;
  z-index: 4;
  left: 20px;
  bottom: 52px;
  width: 164px;
  height: 300px;
  padding: 16px 12px 12px;
  border: 8px solid #0c1730;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(7,20,46,.24);
}
.phone-speaker {
  display: block;
  width: 48px;
  height: 5px;
  margin: 0 auto 13px;
  border-radius: 999px;
  background: #c9d6e8;
}
.phone-screen strong {
  display: block;
  margin-bottom: 14px;
  color: #0866ff;
  font-size: .86rem;
}
.phone-icons {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.phone-icons span {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef5ff, #d8e9ff);
  border: 1px solid #c9dcff;
}
.ticket-printer {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 84px;
  width: 150px;
  height: 92px;
  border-radius: 18px 18px 26px 26px;
  background: linear-gradient(180deg, #252f3e, #121a26);
  box-shadow: 0 22px 48px rgba(7,20,46,.2);
}
.ticket-printer span {
  position: absolute;
  left: 25px;
  right: 25px;
  top: -20px;
  height: 42px;
  border-radius: 10px 10px 3px 3px;
  background: repeating-linear-gradient(180deg, #fff 0 8px, #eaf1fa 8px 10px);
}
.hero-wave {
  position: absolute;
  z-index: 1;
  left: -8%;
  right: -8%;
  bottom: -74px;
  height: 170px;
  border-top: 10px solid #0866ff;
  border-radius: 50% 50% 0 0 / 62% 62% 0 0;
  background: #fff;
  transform: rotate(-3deg);
}
.home-value {
  padding: 54px 0 48px;
  background: #fff;
}
.home-section-title {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}
.home-section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 58px 16px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.16;
  font-weight: 900;
}
.home-section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: #0866ff;
  transform: translateX(-50%);
}
.home-value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #d9e5f4;
  border-bottom: 1px solid #d9e5f4;
}
.home-value-item {
  min-height: 210px;
  padding: 28px 24px;
  text-align: center;
}
.home-value-item + .home-value-item {
  border-left: 1px solid #d9e5f4;
}
.home-value-item i {
  color: #0866ff;
  font-size: 2.35rem;
}
.home-value-item h3 {
  margin: 20px 0 10px;
  font-size: 1.07rem;
  line-height: 1.25;
  font-weight: 900;
}
.home-value-item p {
  margin: 0;
  color: #31445f;
  font-size: .94rem;
  line-height: 1.45;
}
.home-insights {
  padding: 36px 0 48px;
  background: #fff;
}
.home-insights-panel {
  display: grid;
  align-items: center;
  gap: 34px;
  grid-template-columns: minmax(240px, .38fr) minmax(0, 1fr);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #dceaff;
  border-radius: 24px;
  background: linear-gradient(135deg, #f2f8ff, #e7f2ff);
}
.home-insights-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.06;
  font-weight: 900;
}
.home-insights-copy p {
  color: #10233d;
  font-size: 1.05rem;
}
.home-dashboard {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.metric-card,
.chart-card {
  border: 1px solid rgba(8,102,255,.09);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7,20,46,.08);
}
.metric-card {
  min-height: 104px;
  padding: 18px;
}
.metric-card span,
.metric-card small {
  display: block;
  color: #5d6c7d;
  font-size: .82rem;
  font-weight: 800;
}
.metric-card strong {
  display: block;
  margin-top: 6px;
  color: #0866ff;
  font-family: "Manrope", sans-serif;
  font-size: 1.42rem;
  line-height: 1;
}
.metric-card:nth-child(2) strong {
  color: #0f9f6e;
}
.metric-card:nth-child(3) strong {
  color: #743fe8;
}
.metric-card:nth-child(4) strong {
  color: #07142e;
}
.chart-card {
  padding: 20px;
}
.line-chart-card {
  grid-column: span 2;
}
.donut-chart-card {
  grid-column: span 2;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: #07142e;
  font-size: .9rem;
}
.chart-head span {
  color: #0866ff;
  font-size: .82rem;
  font-weight: 800;
}
.line-chart {
  position: relative;
  display: grid;
  height: 164px;
  align-items: end;
  gap: 12px;
  grid-template-columns: repeat(6, 1fr);
  padding: 8px 6px 0;
  background: repeating-linear-gradient(180deg, transparent 0 31px, #edf3fb 32px 33px);
}
.line-chart::before {
  content: "";
  position: absolute;
  inset: 24px 20px 34px;
  background: linear-gradient(135deg, transparent 0 12%, #0866ff 12% 14%, transparent 14% 28%, #0866ff 28% 30%, transparent 30% 47%, #0866ff 47% 49%, transparent 49% 65%, #0866ff 65% 67%, transparent 67% 84%, #0866ff 84% 86%, transparent 86%);
  opacity: .9;
}
.line-chart span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: rgba(8,102,255,.12);
}
.line-chart span:nth-child(1) {
  height: 34%;
}
.line-chart span:nth-child(2) {
  height: 56%;
}
.line-chart span:nth-child(3) {
  height: 42%;
}
.line-chart span:nth-child(4) {
  height: 70%;
}
.line-chart span:nth-child(5) {
  height: 62%;
}
.line-chart span:nth-child(6) {
  height: 82%;
}
.donut-layout {
  display: grid;
  align-items: center;
  gap: 18px;
  grid-template-columns: 168px 1fr;
}
.donut-chart {
  display: grid;
  width: 160px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#0866ff 0 34%, #00a3ff 34% 58%, #ffd43b 58% 75%, #34c759 75% 88%, #ff4d4d 88% 100%);
}
.donut-chart::before {
  content: "";
  position: absolute;
}
.donut-chart span {
  display: grid;
  width: 72px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: #fff;
  font-size: .72rem;
  font-weight: 900;
}
.donut-layout ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #31445f;
  font-size: .9rem;
  font-weight: 750;
  list-style: none;
}
.donut-layout li::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #0866ff;
  content: "";
}
.donut-layout li:nth-child(2)::before {
  background: #00a3ff;
}
.donut-layout li:nth-child(3)::before {
  background: #ffd43b;
}
.donut-layout li:nth-child(4)::before {
  background: #34c759;
}
.home-industries {
  padding: 54px 0 34px;
  background: #fff;
}
.home-industry-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-industry-card {
  position: relative;
  overflow: hidden;
  min-height: 276px;
  padding: 0 18px 24px;
  border: 1px solid #e0e9f5;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 15px 38px rgba(7,20,46,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(7,20,46,.12);
}
.home-industry-card img {
  width: calc(100% + 36px);
  height: 122px;
  margin: 0 -18px;
  object-fit: cover;
}
.home-industry-card span {
  display: grid;
  width: 62px;
  height: 62px;
  margin: -31px auto 14px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #0866ff;
  background: #eef5ff;
  box-shadow: 0 10px 26px rgba(8,102,255,.18);
}
.home-industry-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 900;
}
.home-industry-card p {
  margin: 0;
  color: #31445f;
  font-size: .92rem;
  line-height: 1.35;
}
.home-final {
  padding: 24px 0 68px;
  background: #fff;
}
.home-final-band {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #08295d, #075be8 70%, #0866ff);
  box-shadow: 0 22px 54px rgba(7,20,46,.18);
}
.calendar-illustration {
  display: grid;
  width: clamp(92px, 12vw, 132px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  transform: rotate(-7deg);
}
.calendar-illustration i {
  color: #ddecff;
  font-size: 4.4rem;
}
.home-final h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.25rem, 2.6vw, 2.05rem);
  line-height: 1.18;
  font-weight: 900;
}
.home-final-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.home-final-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.86);
  font-size: .88rem;
  font-weight: 800;
}
.home-final .btn-primary {
  background: #0b78ff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2), 0 14px 28px rgba(0,0,0,.18);
}
@media (max-width: 1120px) {
  .home-hero-grid,
  .home-insights-panel,
  .home-final-band {
    grid-template-columns: 1fr;
  }
  .home-hero-visual {
    min-height: 520px;
  }
  .home-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-value-item + .home-value-item {
    border-left: 0;
  }
  .home-value-item {
    border-left: 1px solid #d9e5f4;
  }
  .home-dashboard,
  .home-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-final-band {
    justify-items: start;
  }
}
@media (max-width: 760px) {
  .home-hero {
    padding: 42px 0 82px;
  }
  .home-badge {
    font-size: .7rem;
  }
  .home-hero-tools {
    gap: 10px;
  }
  .home-hero-tools span {
    min-height: 44px;
    font-size: .88rem;
  }
  .home-hero-visual {
    display: grid;
    min-height: auto;
    gap: 14px;
  }
  .home-device,
  .phone-device,
  .ticket-printer {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    transform: none;
  }
  .phone-device {
    display: none;
  }
  .ticket-printer {
    min-height: 80px;
    margin: 0 24px;
  }
  .hero-wave {
    bottom: -92px;
    height: 142px;
    border-top-width: 7px;
  }
  .home-section-title h2 {
    padding-inline: 0;
  }
  .home-value-grid,
  .home-dashboard,
  .home-industry-grid,
  .donut-layout {
    grid-template-columns: 1fr;
  }
  .home-value-grid {
    border: 0;
  }
  .home-value-item {
    min-height: auto;
    border: 1px solid #d9e5f4;
    border-radius: 18px;
  }
  .line-chart-card,
  .donut-chart-card {
    grid-column: auto;
  }
  .donut-chart {
    width: 150px;
    margin-inline: auto;
  }
  .home-final-band {
    text-align: left;
  }
}
.counter-hero-visual {
  display: grid;
  min-height: 560px;
  align-items: center;
}
.counter-hero-visual .counter-scene {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border: 1px solid rgba(8, 102, 255, .12);
  border-radius: 30px;
  background: #eef5ff;
  box-shadow: 0 34px 86px rgba(7, 20, 46, .18);
}
.counter-hero-visual .counter-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.34) 38%, rgba(255,255,255,.08) 100%),
    linear-gradient(180deg, rgba(7,20,46,0) 40%, rgba(7,20,46,.34) 100%);
  pointer-events: none;
}
.counter-hero-visual .counter-scene-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.counter-hero-visual .counter-pos-terminal {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 6vw, 72px);
  right: clamp(14px, 3vw, 36px);
  top: 54px;
  display: grid;
  justify-items: center;
}
.counter-hero-visual .counter-monitor {
  width: min(100%, 560px);
  padding: 12px;
  border: 10px solid #0b1425;
  border-bottom-width: 18px;
  border-radius: 24px;
  background: #111c2f;
  box-shadow: 0 26px 62px rgba(7,20,46,.34);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center bottom;
}
.counter-hero-visual .counter-monitor .device-top {
  padding: 0 0 10px;
}
.counter-hero-visual .counter-monitor img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
}
.counter-hero-visual .counter-stand {
  width: 82px;
  height: 74px;
  margin-top: -2px;
  background: linear-gradient(180deg, #172236, #0b1425);
  clip-path: polygon(30% 0, 70% 0, 86% 100%, 14% 100%);
  box-shadow: 0 18px 28px rgba(7,20,46,.22);
}
.counter-hero-visual .counter-base {
  width: 210px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #263449, #0b1425);
  box-shadow: 0 16px 28px rgba(7,20,46,.24);
}
.counter-hero-visual .counter-payment {
  position: absolute;
  z-index: 4;
  left: clamp(20px, 4vw, 48px);
  bottom: 74px;
  width: 150px;
  padding: 16px 14px 18px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(160deg, #15243a, #0b1425);
  box-shadow: 0 22px 42px rgba(7,20,46,.28);
}
.counter-hero-visual .counter-payment span {
  display: block;
  width: 46px;
  height: 7px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}
.counter-hero-visual .counter-payment strong,
.counter-hero-visual .counter-payment small {
  display: block;
}
.counter-hero-visual .counter-payment strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  line-height: 1;
}
.counter-hero-visual .counter-payment small {
  margin-top: 8px;
  color: #79f0b3;
  font-weight: 850;
}
.counter-hero-visual .counter-printer {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4vw, 48px);
  bottom: 68px;
  width: 160px;
  height: 100px;
  border-radius: 18px 18px 28px 28px;
  background: linear-gradient(180deg, #273344, #111a28);
  box-shadow: 0 24px 44px rgba(7,20,46,.28);
}
.counter-hero-visual .counter-printer::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 20px;
  height: 10px;
  border-radius: 999px;
  background: #060b14;
}
.counter-hero-visual .counter-printer span {
  position: absolute;
  left: 30px;
  right: 30px;
  top: -46px;
  height: 64px;
  border-radius: 10px 10px 3px 3px;
  background: repeating-linear-gradient(180deg, #fff 0 9px, #e9f1fb 9px 11px);
  box-shadow: 0 10px 20px rgba(7,20,46,.12);
}
.counter-hero-visual .counter-scene figcaption {
  position: absolute;
  z-index: 5;
  left: 24px;
  right: 24px;
  bottom: 20px;
  max-width: 560px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 16px;
  color: #fff;
  background: rgba(7,20,46,.58);
  backdrop-filter: blur(10px);
  font-weight: 850;
  line-height: 1.35;
}
@media (max-width: 1120px) {
  .counter-hero-visual {
    min-height: 520px;
  }
  .counter-hero-visual .counter-scene {
    min-height: 500px;
  }
}
@media (max-width: 760px) {
  .counter-hero-visual {
    min-height: auto;
  }
  .counter-hero-visual .counter-scene {
    min-height: 430px;
    border-radius: 24px;
  }
  .counter-hero-visual .counter-pos-terminal {
    left: 18px;
    right: 18px;
    top: 44px;
  }
  .counter-hero-visual .counter-monitor {
    border-width: 7px;
    border-bottom-width: 13px;
    border-radius: 18px;
    transform: none;
  }
  .counter-hero-visual .counter-payment {
    left: 18px;
    bottom: 78px;
    width: 122px;
    padding: 13px;
    border-radius: 16px;
  }
  .counter-hero-visual .counter-payment strong {
    font-size: 1rem;
  }
  .counter-hero-visual .counter-printer {
    right: 18px;
    bottom: 82px;
    width: 116px;
    height: 78px;
  }
  .counter-hero-visual .counter-printer span {
    left: 24px;
    right: 24px;
    top: -34px;
    height: 48px;
  }
  .counter-hero-visual .counter-scene figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: .86rem;
  }
}
.counter-hero-visual .counter-scene {
  background: transparent;
}
.counter-hero-visual .counter-scene::before {
  background: linear-gradient(180deg, rgba(7,20,46,0) 52%, rgba(7,20,46,.22) 100%);
}
.counter-hero-visual .counter-scene-photo {
  transform: none;
}
.counter-hero-visual .counter-scene figcaption.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.counter-hero-visual .counter-scene {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.counter-hero-visual .counter-scene::before,
.counter-hero-visual .counter-scene-photo {
  display: none;
}
.counter-hero-visual .counter-scene figcaption {
  position: absolute;
  z-index: 5;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  bottom: 18px;
  max-width: 640px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 18px;
  color: #fff;
  background: rgba(7,20,46,.72);
  box-shadow: 0 18px 38px rgba(7,20,46,.18);
  backdrop-filter: blur(10px);
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .counter-hero-visual .counter-scene figcaption {
    left: 0;
    right: 0;
    bottom: 0;
    font-size: .86rem;
  }
}
.counter-hero-visual .realistic-pos-scene {
  display: grid;
  min-height: 560px;
  align-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.counter-hero-visual .realistic-pos-scene::before {
  display: none;
}
.counter-hero-visual .realistic-pos-image {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  margin: 0 auto 54px;
  filter: drop-shadow(0 32px 36px rgba(7,20,46,.22));
}
.counter-hero-visual .realistic-pos-scene figcaption {
  position: absolute;
  z-index: 5;
  left: clamp(16px, 4vw, 42px);
  right: clamp(16px, 4vw, 42px);
  bottom: 16px;
  max-width: 660px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 18px;
  color: #fff;
  background: rgba(7,20,46,.78);
  box-shadow: 0 18px 38px rgba(7,20,46,.16);
  backdrop-filter: blur(10px);
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .counter-hero-visual .realistic-pos-scene {
    min-height: 430px;
  }
  .counter-hero-visual .realistic-pos-image {
    width: min(112%, 520px);
    margin: 0 -6% 76px;
  }
  .counter-hero-visual .realistic-pos-scene figcaption {
    left: 0;
    right: 0;
    bottom: 0;
    font-size: .86rem;
  }
}
.counter-hero-visual .realistic-pos-scene {
  isolation: isolate;
  padding: 34px 20px 0;
}
.counter-hero-visual .realistic-pos-scene::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 54px 16px 92px;
  display: block;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.18) 48%, rgba(8,102,255,.12)),
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.86), transparent 30%),
    radial-gradient(circle at 86% 84%, rgba(8,102,255,.18), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75),
    inset 0 -28px 54px rgba(255,255,255,.12),
    0 28px 80px rgba(7,20,46,.15);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}
.counter-hero-visual .realistic-pos-scene::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 78px;
  left: 58px;
  width: 46%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,0));
  pointer-events: none;
}
.counter-hero-visual .realistic-pos-image {
  z-index: 3;
  transform: translateY(-8px);
}
.counter-hero-visual .realistic-pos-scene figcaption {
  z-index: 4;
}
@media (max-width: 760px) {
  .counter-hero-visual .realistic-pos-scene {
    padding: 20px 0 0;
  }
  .counter-hero-visual .realistic-pos-scene::before {
    inset: 36px 0 90px;
    border-radius: 24px;
  }
  .counter-hero-visual .realistic-pos-scene::after {
    top: 54px;
    left: 24px;
    width: 58%;
  }
  .counter-hero-visual .realistic-pos-image {
    transform: translateY(-4px);
  }
}
.counter-hero-visual .realistic-pos-scene {
  position: relative;
  min-height: 590px;
  padding: 42px 26px 0;
}
.counter-hero-visual .realistic-pos-scene::before,
.counter-hero-visual .realistic-pos-scene::after {
  display: none;
}
.counter-hero-visual .liquid-glass-card {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.54);
  background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.18) 46%, rgba(8,102,255,.13)),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.92), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 88% 92%, rgba(8,102,255,.2), rgba(8,102,255,0) 38%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -34px 70px rgba(255,255,255,.14),
    0 30px 90px rgba(7,20,46,.16);
  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
}
.counter-hero-visual .liquid-glass-main {
  z-index: 1;
  inset: 48px 18px 100px;
  border-radius: 38px;
}
.counter-hero-visual .liquid-glass-main::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.5), rgba(255,255,255,0) 38%);
}
.counter-hero-visual .liquid-glass-accent {
  z-index: 2;
  right: 34px;
  bottom: 118px;
  width: min(42%, 280px);
  height: 138px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.42), rgba(255,255,255,.12)),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.72), rgba(255,255,255,0) 35%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72),
    0 22px 54px rgba(7,20,46,.12);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
}
.counter-hero-visual .realistic-pos-image {
  z-index: 4;
  margin-bottom: 66px;
  filter: drop-shadow(0 34px 38px rgba(7,20,46,.25));
  transform: translateY(-14px);
}
.counter-hero-visual .realistic-pos-scene figcaption {
  z-index: 5;
  background: rgba(8,18,38,.58);
  border-color: rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28),
    0 18px 42px rgba(7,20,46,.18);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
@media (max-width: 760px) {
  .counter-hero-visual .realistic-pos-scene {
    min-height: 450px;
    padding: 24px 0 0;
  }
  .counter-hero-visual .liquid-glass-main {
    inset: 34px 0 94px;
    border-radius: 26px;
  }
  .counter-hero-visual .liquid-glass-accent {
    right: 10px;
    bottom: 112px;
    width: 48%;
    height: 92px;
    border-radius: 22px;
  }
  .counter-hero-visual .realistic-pos-image {
    margin-bottom: 86px;
    transform: translateY(-8px);
  }
}
.counter-hero-visual .realistic-pos-scene {
  min-height: 570px;
  padding: 40px 18px 0;
}
.counter-hero-visual .liquid-glass-main {
  inset: 72px 22px 118px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,.42), rgba(255,255,255,.13) 52%, rgba(8,102,255,.1)),
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.72), rgba(255,255,255,0) 32%),
    radial-gradient(circle at 84% 86%, rgba(8,102,255,.18), rgba(8,102,255,0) 36%);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
}
.counter-hero-visual .liquid-glass-accent {
  right: 42px;
  bottom: 126px;
  opacity: .72;
}
.counter-hero-visual .realistic-pos-image {
  width: min(108%, 690px);
  max-width: none;
  margin: -14px -4% 74px;
  object-fit: contain;
  filter: drop-shadow(0 36px 34px rgba(7,20,46,.28));
  transform: none;
}
.counter-hero-visual .realistic-pos-scene figcaption {
  bottom: 18px;
}
@media (max-width: 760px) {
  .counter-hero-visual .realistic-pos-scene {
    min-height: 420px;
    padding: 22px 0 0;
  }
  .counter-hero-visual .liquid-glass-main {
    inset: 54px 0 98px;
  }
  .counter-hero-visual .liquid-glass-accent {
    right: 8px;
    bottom: 112px;
  }
  .counter-hero-visual .realistic-pos-image {
    width: min(124%, 560px);
    margin: -8px -12% 86px;
  }
}
.counter-hero-visual .liquid-glass-accent {
  display: none;
}
.home-hero-grid {
  align-items: start;
}
.counter-hero-visual {
  min-height: 640px;
  align-items: start;
  margin-top: -28px;
}
.counter-hero-visual .realistic-pos-scene {
  min-height: 640px;
  padding: 18px 0 0;
}
.counter-hero-visual .liquid-glass-main {
  inset: 18px -12px 112px;
  border-radius: 42px;
}
.counter-hero-visual .realistic-pos-image {
  width: min(122%, 820px);
  margin: -24px -11% 78px;
  filter: drop-shadow(0 42px 42px rgba(7,20,46,.3));
}
.counter-hero-visual .realistic-pos-scene figcaption {
  bottom: 18px;
  max-width: 720px;
}
@media (max-width: 1120px) {
  .counter-hero-visual {
    margin-top: 0;
    min-height: 590px;
  }
  .counter-hero-visual .realistic-pos-scene {
    min-height: 590px;
  }
  .counter-hero-visual .liquid-glass-main {
    inset: 30px 0 108px;
  }
  .counter-hero-visual .realistic-pos-image {
    width: min(112%, 760px);
    margin: -12px -6% 78px;
  }
}
@media (max-width: 760px) {
  .counter-hero-visual {
    min-height: 440px;
  }
  .counter-hero-visual .realistic-pos-scene {
    min-height: 440px;
  }
  .counter-hero-visual .liquid-glass-main {
    inset: 30px -8px 94px;
    border-radius: 28px;
  }
  .counter-hero-visual .realistic-pos-image {
    width: min(134%, 590px);
    margin: -10px -17% 86px;
  }
}
.counter-hero-visual {
  overflow: visible;
}
.counter-hero-visual .realistic-pos-scene {
  overflow: visible;
  min-height: 610px;
}
.counter-hero-visual .liquid-glass-main {
  inset: 68px 34px 136px;
  border-radius: 34px;
}
.counter-hero-visual .realistic-pos-image {
  width: min(132%, 880px);
  margin: -44px -16% 68px;
  transform: translateY(-8px);
}
.counter-hero-visual .realistic-pos-scene figcaption {
  bottom: 22px;
  max-width: 640px;
}
@media (max-width: 1120px) {
  .counter-hero-visual .liquid-glass-main {
    inset: 70px 28px 132px;
  }
  .counter-hero-visual .realistic-pos-image {
    width: min(122%, 800px);
    margin: -30px -11% 72px;
  }
}
@media (max-width: 760px) {
  .counter-hero-visual .realistic-pos-scene {
    min-height: 420px;
  }
  .counter-hero-visual .liquid-glass-main {
    inset: 58px 12px 112px;
    border-radius: 24px;
  }
  .counter-hero-visual .realistic-pos-image {
    width: min(140%, 620px);
    margin: -22px -20% 86px;
    transform: translateY(-4px);
  }
}
.counter-hero-visual .realistic-pos-scene::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8px -18px 62px;
  display: block;
  border-radius: 46px;
  background: radial-gradient(circle at 42% 40%, rgba(255,255,255,.96), rgba(255,255,255,.42) 44%, rgba(255,255,255,0) 68%),
    radial-gradient(circle at 72% 58%, rgba(8,102,255,.2), rgba(8,102,255,0) 52%);
  filter: blur(2px);
  pointer-events: none;
}
.counter-hero-visual .liquid-glass-main {
  z-index: 1;
  inset: 76px 26px 142px;
  border-color: rgba(255,255,255,.74);
  background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,.3) 48%, rgba(8,102,255,.18)),
    radial-gradient(circle at 20% 12%, rgba(255,255,255,.96), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 86% 86%, rgba(8,102,255,.24), rgba(8,102,255,0) 38%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -34px 76px rgba(255,255,255,.22),
    0 34px 90px rgba(7,20,46,.24);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
}
.counter-hero-visual .realistic-pos-image {
  z-index: 3;
  filter: drop-shadow(0 44px 42px rgba(7,20,46,.36))
    drop-shadow(0 10px 16px rgba(7,20,46,.2));
}
.counter-hero-visual .realistic-pos-scene figcaption {
  background: rgba(8,18,38,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3),
    0 20px 46px rgba(7,20,46,.24);
}
@media (max-width: 760px) {
  .counter-hero-visual .realistic-pos-scene::after {
    inset: 10px -12px 76px;
    border-radius: 30px;
  }
  .counter-hero-visual .liquid-glass-main {
    inset: 62px 6px 116px;
  }
}
.counter-hero-visual {
  margin-top: 20px;
  min-height: 570px;
}
.counter-hero-visual .realistic-pos-scene {
  min-height: 570px;
  padding-top: 24px;
}
.counter-hero-visual .liquid-glass-main {
  inset: 82px 40px 140px;
  border-radius: 34px;
}
.counter-hero-visual .realistic-pos-scene::after {
  inset: 40px -8px 72px;
}
.counter-hero-visual .realistic-pos-image {
  width: min(112%, 745px);
  margin: 0 -6% 74px;
  transform: none;
}
@media (max-width: 1120px) {
  .counter-hero-visual {
    margin-top: 0;
    min-height: 540px;
  }
  .counter-hero-visual .realistic-pos-scene {
    min-height: 540px;
  }
  .counter-hero-visual .liquid-glass-main {
    inset: 76px 26px 130px;
  }
  .counter-hero-visual .realistic-pos-image {
    width: min(106%, 700px);
    margin: 0 -3% 76px;
  }
}
@media (max-width: 760px) {
  .counter-hero-visual {
    min-height: 390px;
  }
  .counter-hero-visual .realistic-pos-scene {
    min-height: 390px;
  }
  .counter-hero-visual .liquid-glass-main {
    inset: 58px 12px 106px;
  }
  .counter-hero-visual .realistic-pos-image {
    width: min(124%, 540px);
    margin: 0 -12% 84px;
  }
}
@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes posFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(.001deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(.001deg);
  }
}
@keyframes glassBreathe {
  0%, 100% {
    opacity: .92;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.012);
  }
}
@keyframes glassSheen {
  0% {
    transform: translateX(-130%) rotate(12deg);
  }
  48%, 100% {
    transform: translateX(130%) rotate(12deg);
  }
}
@keyframes captionIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-hero-copy .home-badge,
.home-hero-copy h1,
.home-hero-copy .lead,
.home-hero-tools,
.home-hero-actions {
  animation: heroTextRise .72s cubic-bezier(.2, .8, .2, 1) both;
}
.home-hero-copy .home-badge {
  animation-delay: .04s;
}
.home-hero-copy h1 {
  animation-delay: .12s;
}
.home-hero-copy .lead {
  animation-delay: .2s;
}
.home-hero-tools {
  animation-delay: .3s;
}
.home-hero-actions {
  animation-delay: .4s;
}
.home-hero-tools span {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.home-hero-tools span:hover {
  border-color: rgba(8,102,255,.26);
  box-shadow: 0 16px 34px rgba(8,102,255,.13);
  transform: translateY(-3px);
}
.counter-hero-visual .liquid-glass-main {
  animation: glassBreathe 7s ease-in-out infinite;
  transform-origin: center;
}
.counter-hero-visual .liquid-glass-main::after {
  content: "";
  position: absolute;
  top: -22%;
  bottom: -22%;
  left: 0;
  width: 36%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.36), rgba(255,255,255,0));
  filter: blur(8px);
  animation: glassSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}
.counter-hero-visual .realistic-pos-image {
  animation: posFloat 6s ease-in-out infinite;
  transform-origin: 48% 64%;
  transition: filter .28s ease, transform .28s ease;
}
.counter-hero-visual .realistic-pos-scene:hover .realistic-pos-image {
  filter: drop-shadow(0 48px 44px rgba(7,20,46,.38))
    drop-shadow(0 14px 18px rgba(7,20,46,.22));
}
.counter-hero-visual .realistic-pos-scene figcaption {
  animation: captionIn .72s cubic-bezier(.2, .8, .2, 1) .52s both;
}
@media (prefers-reduced-motion: reduce) {
  .home-hero-copy .home-badge,
  .home-hero-copy h1,
  .home-hero-copy .lead,
  .home-hero-tools,
  .home-hero-actions,
  .counter-hero-visual .liquid-glass-main,
  .counter-hero-visual .liquid-glass-main::after,
  .counter-hero-visual .realistic-pos-image,
  .counter-hero-visual .realistic-pos-scene figcaption {
    animation: none;
  }
  .home-hero-tools span,
  .counter-hero-visual .realistic-pos-image {
    transition: none;
  }
}
.home-hero-tools {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.home-hero-tools span {
  min-height: 48px;
  justify-content: center;
  padding: 9px 12px;
  border-color: rgba(8,102,255,.14);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(7,20,46,.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  white-space: nowrap;
}
.home-hero-tools i {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  box-shadow: inset 0 0 0 1px rgba(8,102,255,.08);
}
.home-hero-actions {
  display: flex;
  width: min(100%, 560px);
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.home-hero-actions .btn {
  min-height: 58px;
  padding-inline: 24px;
  border-radius: 24px;
  white-space: nowrap;
}
.home-hero-actions .btn-primary {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 286px;
}
.home-hero-actions .btn-secondary {
  flex: 0 0 auto;
}
@media (max-width: 1220px) {
  .home-hero-tools {
    grid-template-columns: repeat(2, minmax(0, 178px));
    width: min(100%, 374px);
  }
  .home-hero-tools span {
    justify-content: flex-start;
    padding-inline: 14px;
  }
  .home-hero-actions {
    width: min(100%, 430px);
    flex-direction: column;
    align-items: stretch;
  }
  .home-hero-actions .btn,
  .home-hero-actions .btn-primary,
  .home-hero-actions .btn-secondary {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 560px) {
  .home-hero-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }
  .home-hero-tools span {
    min-height: 46px;
    padding: 8px 10px;
    font-size: .86rem;
  }
  .home-hero-tools i {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .home-hero-actions {
    width: 100%;
    margin-top: 24px;
  }
  .home-hero-actions .btn {
    min-height: 54px;
    padding-inline: 18px;
    border-radius: 22px;
    white-space: normal;
  }
}
.home-hero-tools {
  width: min(100%, 640px);
  grid-template-columns: repeat(4, minmax(118px, 1fr));
}
.home-hero-tools span {
  min-width: 0;
  padding: 9px 13px 9px 10px;
  gap: 8px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.15;
}
.home-hero-tools i {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  font-size: .9rem;
}
@media (max-width: 1220px) {
  .home-hero-tools {
    width: min(100%, 430px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .home-hero-tools span {
    font-size: .82rem;
    gap: 7px;
  }
  .home-hero-tools i {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    font-size: .82rem;
  }
}
.home-hero-tools {
  width: min(100%, 700px);
  grid-template-columns: repeat(4, max-content);
  justify-content: start;
}
.home-hero-tools span {
  min-width: 124px;
  padding-inline: 14px 18px;
}
.home-hero-tools span:nth-child(2),
.home-hero-tools span:nth-child(4) {
  min-width: 148px;
  padding-inline: 15px 20px;
}
@media (max-width: 1220px) {
  .home-hero-tools {
    width: min(100%, 470px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-hero-tools span,
  .home-hero-tools span:nth-child(2),
  .home-hero-tools span:nth-child(4) {
    min-width: 0;
    padding-inline: 14px 18px;
  }
}
@media (max-width: 560px) {
  .home-hero-tools span,
  .home-hero-tools span:nth-child(2),
  .home-hero-tools span:nth-child(4) {
    padding-inline: 10px 12px;
  }
}
.home-hero-actions {
  display: grid;
  width: min(100%, 500px);
  justify-items: start;
  gap: 14px;
}
.home-hero-actions .btn-primary {
  width: 100%;
  min-width: 0;
  border-radius: 22px;
}
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 4px;
  color: #0866ff;
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.2;
}
.hero-secondary-link i {
  font-size: .86rem;
  transition: transform .2s ease;
}
.hero-secondary-link:hover i {
  transform: translateX(4px);
}
@media (max-width: 1220px) {
  .home-hero-actions {
    width: min(100%, 430px);
  }
}
@media (max-width: 560px) {
  .home-hero-actions {
    width: 100%;
    justify-items: stretch;
  }
  .hero-secondary-link {
    justify-content: center;
  }
}
.home-hero-actions {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-top: 32px;
}
.home-hero-actions .btn-primary {
  width: auto;
  min-width: 0;
  min-height: 58px;
  padding-inline: 30px;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(8,102,255,.28);
}
.hero-secondary-link {
  display: none;
}
@media (max-width: 560px) {
  .home-hero-actions {
    width: 100%;
  }
  .home-hero-actions .btn-primary {
    width: 100%;
    padding-inline: 18px;
  }
}
.home-hero-tools {
  margin-bottom: 0;
}
.home-hero-actions {
  display: none;
}
.home-hero-copy {
  padding-bottom: 20px;
}
@media (max-width: 760px) {
  .home-hero-copy {
    padding-bottom: 0;
  }
}
.counter-hero-visual .liquid-glass-main {
  inset: 82px 42px 142px 96px;
}
.counter-hero-visual .realistic-pos-scene figcaption {
  left: auto;
  right: -18px;
  bottom: 64px;
  width: min(54%, 390px);
  max-width: 390px;
  padding: 15px 18px;
  font-size: .92rem;
}
@media (max-width: 1120px) {
  .counter-hero-visual .liquid-glass-main {
    inset: 76px 26px 130px 54px;
  }
  .counter-hero-visual .realistic-pos-scene figcaption {
    right: 10px;
    bottom: 26px;
    width: min(62%, 430px);
    max-width: 430px;
  }
}
@media (max-width: 760px) {
  .counter-hero-visual .liquid-glass-main {
    inset: 58px 10px 106px 28px;
  }
  .counter-hero-visual .realistic-pos-scene figcaption {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
  }
}
.home-hero {
  padding-bottom: 96px;
}
.hero-wave {
  left: -4%;
  right: -4%;
  bottom: -96px;
  height: 182px;
  border-top: 0;
  border-radius: 48% 52% 0 0 / 58% 42% 0 0;
  background: #fff;
  transform: rotate(-1.3deg);
  box-shadow: 0 -18px 36px rgba(8,102,255,.05);
}
.hero-wave::before {
  content: "";
  position: absolute;
  left: 1.5%;
  right: 1.5%;
  top: 12px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8,102,255,0), #0866ff 14%, #0866ff 72%, rgba(8,102,255,0));
  transform: rotate(.4deg);
  box-shadow: 0 10px 22px rgba(8,102,255,.16);
}
.hero-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 74px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.88));
  pointer-events: none;
}
@media (max-width: 760px) {
  .home-hero {
    padding-bottom: 76px;
  }
  .hero-wave {
    bottom: -86px;
    height: 144px;
    transform: rotate(-1.8deg);
  }
  .hero-wave::before {
    top: 10px;
    height: 5px;
  }
}
.home-hero {
  padding-bottom: 78px;
}
.hero-wave {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  border: 0;
  border-radius: 0;
  background: #fff;
  clip-path: ellipse(78% 70% at 50% 100%);
  transform: none;
  box-shadow: none;
}
.hero-wave::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8,102,255,0) 0%, #0866ff 12%, #0866ff 88%, rgba(8,102,255,0) 100%);
  transform: none;
  box-shadow: 0 8px 18px rgba(8,102,255,.16);
}
.hero-wave::after {
  display: none;
}
@media (max-width: 760px) {
  .home-hero {
    padding-bottom: 64px;
  }
  .hero-wave {
    height: 68px;
  }
  .hero-wave::before {
    top: 9px;
    height: 4px;
  }
}
.home-value {
  position: relative;
  padding: 74px 0 64px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.home-section-title {
  max-width: 960px;
  margin-bottom: 42px;
}
.home-section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0866ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-section-title h2 {
  display: block;
  max-width: 880px;
  margin-inline: auto;
  padding: 0 0 18px;
}
.home-section-title p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #31445f;
  font-size: 1.02rem;
  line-height: 1.6;
}
.home-value-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 0;
}
.home-value-item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 26px 20px 24px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,251,255,.9));
  box-shadow: 0 18px 42px rgba(7,20,46,.08);
  text-align: left;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.home-value-item + .home-value-item {
  border-left: 1px solid rgba(8,102,255,.12);
}
.home-value-item::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -42px;
  width: 104px;
  height: 104px;
  border-radius: 32px;
  background: rgba(8,102,255,.08);
  transform: rotate(16deg);
}
.home-value-item:hover {
  border-color: rgba(8,102,255,.24);
  box-shadow: 0 24px 52px rgba(7,20,46,.11);
  transform: translateY(-4px);
}
.home-value-item i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #0866ff;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(8,102,255,.08);
  font-size: 1.35rem;
}
.home-value-item h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 10px;
  color: #07142e;
  font-size: 1.06rem;
  line-height: 1.22;
}
.home-value-item p {
  position: relative;
  z-index: 1;
  color: #31445f;
  font-size: .93rem;
  line-height: 1.48;
}
@media (max-width: 760px) {
  .home-value {
    padding: 56px 0 48px;
  }
  .home-section-title h2 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .home-value-grid {
    grid-template-columns: 1fr;
  }
  .home-value-item {
    min-height: auto;
    text-align: left;
  }
}
.home-value {
  overflow: hidden;
  background: radial-gradient(circle at 18% 12%, rgba(8,102,255,.08), transparent 28rem),
    radial-gradient(circle at 84% 20%, rgba(64,176,160,.09), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.home-value::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: min(920px, 82vw);
  height: 220px;
  border: 1px solid rgba(8,102,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  filter: blur(.2px);
  transform: translateX(-50%);
  pointer-events: none;
}
.home-value .container {
  position: relative;
  z-index: 1;
}
.home-section-title {
  position: relative;
  padding: 28px 24px 10px;
}
.home-section-kicker {
  padding: 9px 14px;
  border: 1px solid rgba(8,102,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(7,20,46,.06);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.home-section-title h2 {
  max-width: 980px;
  color: #07142e;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.02;
  font-weight: 900;
}
.home-section-title h2 span {
  color: #0866ff;
}
.home-section-title h2::after {
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, rgba(8,102,255,0), #0866ff 24%, #0866ff 76%, rgba(8,102,255,0));
}
.home-section-title p {
  max-width: 820px;
  color: #243a57;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.home-value-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.home-value-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 999px;
  color: #10233d;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 28px rgba(7,20,46,.06);
  font-size: .88rem;
  font-weight: 850;
}
.home-value-proof i {
  color: #0866ff;
  font-size: .85rem;
}
@media (max-width: 760px) {
  .home-section-title {
    padding-inline: 0;
  }
  .home-section-title h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }
  .home-value-proof {
    justify-content: flex-start;
  }
}
.home-hero {
  padding-bottom: 58px;
}
.hero-wave {
  bottom: -40px;
  height: 92px;
}
.home-value {
  margin-top: -42px;
  padding-top: 96px;
}
.home-value::before {
  top: 54px;
}
@media (max-width: 760px) {
  .home-hero {
    padding-bottom: 48px;
  }
  .hero-wave {
    bottom: -34px;
    height: 76px;
  }
  .home-value {
    margin-top: -34px;
    padding-top: 76px;
  }
}
.home-hero {
  padding-bottom: 46px;
}
.hero-wave {
  display: none;
}
.home-value {
  margin-top: 0;
  padding-top: 72px;
}
.home-value::before {
  top: 28px;
}
@media (max-width: 760px) {
  .home-hero {
    padding-bottom: 38px;
  }
  .home-value {
    margin-top: 0;
    padding-top: 58px;
  }
}
.home-hero {
  padding-bottom: 112px;
}
.hero-wave {
  position: absolute;
  z-index: 1;
  left: -8%;
  right: -8%;
  bottom: -78px;
  display: block;
  height: 170px;
  border-top: 9px solid #0866ff;
  border-radius: 50% 50% 0 0 / 62% 62% 0 0;
  background: #fff;
  clip-path: none;
  transform: rotate(-2.4deg);
  box-shadow: none;
}
.hero-wave::before,
.hero-wave::after {
  display: none;
}
.home-value {
  margin-top: 0;
  padding-top: 58px;
  background: #fff;
}
.home-value::before {
  display: none;
}
.home-section-title {
  padding-top: 0;
}
@media (max-width: 760px) {
  .home-hero {
    padding-bottom: 86px;
  }
  .hero-wave {
    bottom: -66px;
    height: 132px;
    border-top-width: 7px;
    transform: rotate(-2deg);
  }
  .home-value {
    padding-top: 46px;
  }
}
.hero-wave {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  display: block;
  height: 86px;
  border: 0;
  border-radius: 0;
  background: #fff;
  clip-path: ellipse(78% 70% at 50% 100%);
  transform: none;
  box-shadow: none;
}
.hero-wave::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8,102,255,0) 0%, #0866ff 12%, #0866ff 88%, rgba(8,102,255,0) 100%);
  transform: none;
  box-shadow: 0 8px 18px rgba(8,102,255,.16);
}
@keyframes underlinePulse {
  0%, 100% {
    transform: translateX(-50%) scaleX(.82);
    opacity: .78;
  }
  50% {
    transform: translateX(-50%) scaleX(1.08);
    opacity: 1;
  }
}
@keyframes underlineSweep {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  62%, 100% {
    transform: translateX(220%);
    opacity: 0;
  }
}
.home-section-title h2::after {
  overflow: hidden;
  width: 132px;
  height: 6px;
  background: linear-gradient(90deg, rgba(8,102,255,0), rgba(8,102,255,.42) 12%, #0866ff 50%, rgba(8,102,255,.42) 88%, rgba(8,102,255,0));
  box-shadow: 0 8px 18px rgba(8,102,255,.22);
  animation: underlinePulse 3.4s ease-in-out infinite;
}
.home-section-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.88), rgba(255,255,255,0));
  filter: blur(.5px);
  animation: underlineSweep 3.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .home-section-title h2::after,
  .home-section-title h2::before {
    animation: none;
  }
}
.home-insights {
  padding: 60px 0 56px;
  background: linear-gradient(180deg, #fff 0%, #f4f9ff 100%);
}
.home-insights-panel {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  grid-template-columns: minmax(260px, .44fr) minmax(0, 1fr);
  padding: clamp(24px, 4vw, 44px);
  border-color: rgba(8,102,255,.16);
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(232,243,255,.74)),
    radial-gradient(circle at 90% 12%, rgba(8,102,255,.12), transparent 24rem);
  box-shadow: 0 28px 82px rgba(7,20,46,.1);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}
.home-insights-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 20px;
  pointer-events: none;
}
.home-insights-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-insights-copy h2 {
  margin: 8px 0 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}
.insight-checks {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.insight-checks span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #10233d;
  font-weight: 850;
}
.insight-checks i {
  color: #0866ff;
}
.home-dashboard {
  position: relative;
  z-index: 1;
}
.metric-card,
.chart-card {
  border-color: rgba(8,102,255,.11);
  box-shadow: 0 16px 42px rgba(7,20,46,.08);
}
.home-industries {
  padding: 68px 0 48px;
  background: #fff;
}
.home-industries .home-section-title p {
  max-width: 740px;
}
.home-industry-grid {
  gap: 18px;
}
.home-industry-card {
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(7,20,46,.09);
}
.home-industry-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(8,102,255,0), rgba(8,102,255,.2), rgba(8,102,255,0));
}
.home-custom-proof {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(239,247,255,.9));
  box-shadow: 0 20px 54px rgba(7,20,46,.08);
}
.home-custom-proof h3 {
  margin: 8px 0 10px;
  color: #07142e;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.home-custom-proof p {
  max-width: 790px;
  margin: 0;
  color: #31445f;
}
.home-final {
  padding: 34px 0 76px;
  background: linear-gradient(180deg, #fff 0%, #f4f9ff 100%);
}
.home-final-band {
  grid-template-columns: auto minmax(0, 1fr) auto;
  background: linear-gradient(135deg, rgba(8,41,93,.96), rgba(7,91,232,.94) 72%, rgba(8,102,255,.95));
}
.home-final-band .home-section-kicker {
  margin-bottom: 12px;
  color: #ddecff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.home-final-band p {
  max-width: 680px;
  margin: -4px 0 16px;
  color: rgba(255,255,255,.82);
}
@media (max-width: 1120px) {
  .home-insights-panel,
  .home-custom-proof,
  .home-final-band {
    grid-template-columns: 1fr;
  }
  .home-custom-proof {
    align-items: start;
  }
}
@media (max-width: 760px) {
  .home-insights,
  .home-industries {
    padding-block: 48px;
  }
  .home-insights-panel {
    border-radius: 22px;
  }
  .home-final-band {
    border-radius: 22px;
  }
}
.home-core {
  padding: 58px 0 66px;
  background: radial-gradient(circle at 10% 16%, rgba(8,102,255,.07), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}
.home-core-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-core-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 44px rgba(7,20,46,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.home-core-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(232,243,255,.9));
}
.home-core-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -46px;
  width: 126px;
  height: 126px;
  border-radius: 36px;
  background: rgba(8,102,255,.08);
  transform: rotate(18deg);
}
.home-core-card:hover {
  border-color: rgba(8,102,255,.24);
  box-shadow: 0 24px 56px rgba(7,20,46,.11);
  transform: translateY(-4px);
}
.home-core-card i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #0866ff;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(8,102,255,.08);
  font-size: 1.25rem;
}
.home-core-card h3,
.home-core-card p {
  position: relative;
  z-index: 1;
}
.home-core-card h3 {
  margin: 20px 0 10px;
  color: #07142e;
  font-size: 1.12rem;
}
.home-core-card p {
  margin: 0;
  color: #31445f;
  font-size: .94rem;
  line-height: 1.48;
}
.home-special-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}
.home-special-grid article {
  display: grid;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(7,20,46,.06);
}
.home-special-grid i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #0866ff;
  background: #eef5ff;
}
.home-special-grid span {
  color: #10233d;
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.32;
}
@media (max-width: 1120px) {
  .home-core-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-special-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .home-core {
    padding: 46px 0 52px;
  }
  .home-core-grid,
  .home-special-grid {
    grid-template-columns: 1fr;
  }
  .home-core-card.featured {
    grid-column: auto;
  }
  .home-core-card {
    min-height: auto;
  }
}
.platform-showcase {
  display: grid;
  align-items: stretch;
  gap: 22px;
  grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr);
}
.platform-showcase__menu {
  display: grid;
  gap: 12px;
  align-content: start;
}
.platform-option {
  display: grid;
  align-items: center;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 14px;
  width: 100%;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 22px;
  color: #31445f;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 36px rgba(7,20,46,.055);
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.platform-option:hover,
.platform-option--active {
  transform: translateY(-2px);
  border-color: rgba(8,102,255,.24);
  color: #07142e;
  background: #fff;
  box-shadow: 0 20px 48px rgba(7,20,46,.09);
}
.platform-option--active {
  box-shadow: 0 22px 54px rgba(8,102,255,.14);
}
.platform-option__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  color: #0866ff;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(8,102,255,.1);
  font-size: 1.15rem;
}
.platform-option h3 {
  margin: 0 0 4px;
  color: inherit;
  font-size: 1rem;
}
.platform-option p {
  margin: 0;
  color: #51617a;
  font-size: .9rem;
  line-height: 1.35;
}
.platform-option__status {
  color: rgba(8,102,255,.52);
  font-family: "Manrope", sans-serif;
  font-size: .82rem;
  font-weight: 900;
}
.platform-showcase__panel {
  position: relative;
  overflow: hidden;
  min-height: 484px;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 32px;
  background: radial-gradient(circle at 82% 18%, rgba(8,102,255,.14), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,247,255,.9));
  box-shadow: 0 26px 70px rgba(7,20,46,.09);
}
.platform-showcase__pane {
  min-height: 484px;
  padding: clamp(34px, 5vw, 64px);
  opacity: 1;
  transform: translateY(0);
  animation: platformPaneIn .36s ease both;
}
.platform-showcase__pane[hidden] {
  display: none;
}
.platform-showcase__eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(8,102,255,.16);
  border-radius: 999px;
  color: #0866ff;
  background: rgba(255,255,255,.76);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.platform-showcase__copy h3 {
  max-width: 660px;
  margin: 0 0 14px;
  color: #07142e;
  font-size: clamp(1.85rem, 3vw, 3.35rem);
  line-height: 1.03;
}
.platform-showcase__copy p {
  max-width: 620px;
  margin: 0;
  color: #31445f;
  font-size: 1.02rem;
  line-height: 1.62;
}
.platform-showcase__points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.platform-showcase__points li {
  position: relative;
  padding-left: 28px;
  color: #07142e;
  font-weight: 820;
}
.platform-showcase__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0866ff;
  box-shadow: 0 0 0 6px rgba(8,102,255,.1);
}
@keyframes platformPaneIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1050px) {
  .platform-showcase {
    grid-template-columns: 1fr;
  }
  .platform-showcase__menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .platform-showcase__menu,
  .platform-showcase__pane {
    grid-template-columns: 1fr;
  }
  .platform-option {
    min-height: auto;
  }
  .platform-showcase__panel,
  .platform-showcase__pane {
    min-height: auto;
  }
}
.home-core .home-section-title {
  max-width: 960px;
  margin-bottom: 40px;
  padding-top: 0;
}
.home-core .home-section-title h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.7vw, 3.85rem);
}
.home-core .home-section-title h2 span {
  display: block;
  color: #0866ff;
}
.home-core .home-section-title p {
  max-width: 800px;
}
@media (max-width: 760px) {
  .home-core .home-section-title h2 {
    font-size: clamp(1.75rem, 8.4vw, 2.45rem);
  }
}
.platform-showcase {
  grid-template-columns: minmax(270px, .34fr) minmax(0, 1fr);
}
.platform-showcase__pane {
  min-height: 420px;
}
.platform-showcase__copy {
  max-width: 100%;
}
.platform-showcase__copy h3 {
  max-width: 980px;
  font-size: clamp(2rem, 3.25vw, 3.75rem);
}
.platform-showcase__copy p {
  max-width: 880px;
}
.platform-showcase__points {
  max-width: 920px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}
@media (max-width: 760px) {
  .platform-showcase__points {
    grid-template-columns: 1fr;
  }
}
.home-insights {
  padding: 64px 0 58px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.home-feature-board {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-feature-board article {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 46px rgba(7,20,46,.08);
}
.home-feature-board article::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -44px;
  width: 118px;
  height: 118px;
  border-radius: 34px;
  background: rgba(8,102,255,.08);
  transform: rotate(14deg);
}
.home-feature-board i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  color: #0866ff;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(8,102,255,.1);
  font-size: 1.2rem;
}
.home-feature-board h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 14px;
  color: #07142e;
  font-size: 1.15rem;
}
.home-feature-board ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-feature-board li {
  position: relative;
  padding-left: 24px;
  color: #31445f;
  font-size: .96rem;
  line-height: 1.4;
}
.home-feature-board li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0866ff;
  box-shadow: 0 0 0 5px rgba(8,102,255,.09);
}
.home-package-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 40px rgba(7,20,46,.06);
}
.home-package-strip span {
  color: #31445f;
  font-weight: 850;
}
.home-package-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #07142e;
  background: #eef5ff;
  font-size: .9rem;
}
.home-industries .home-industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .home-feature-board,
  .home-industries .home-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .home-feature-board,
  .home-industries .home-industry-grid {
    grid-template-columns: 1fr;
  }
  .home-package-strip {
    justify-content: flex-start;
  }
}
.home-original-benefits {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0;
}
.home-original-benefits article,
.home-industry-details article,
.home-proof-grid article {
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 40px rgba(7,20,46,.07);
}
.home-original-benefits article {
  padding: 20px;
}
.home-original-benefits i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  color: #0866ff;
  background: #eef5ff;
}
.home-original-benefits h3 {
  margin: 16px 0 8px;
  color: #07142e;
  font-size: 1rem;
}
.home-original-benefits p,
.home-industry-details p,
.home-proof-grid p {
  margin: 0;
  color: #31445f;
  line-height: 1.48;
}
.home-industry-details {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}
.home-industry-details article {
  padding: 18px;
}
.home-industry-details h3 {
  margin: 0 0 8px;
  color: #07142e;
  font-size: 1rem;
}
.home-proof {
  padding: 64px 0 58px;
  background: radial-gradient(circle at 16% 12%, rgba(8,102,255,.07), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.home-proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-proof-grid article {
  padding: 22px;
}
.home-proof-grid span {
  display: block;
  margin-bottom: 10px;
  color: #0866ff;
  font-weight: 900;
}
.home-proof-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (max-width: 1020px) {
  .home-original-benefits,
  .home-industry-details,
  .home-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .home-original-benefits,
  .home-industry-details,
  .home-proof-grid {
    grid-template-columns: 1fr;
  }
}
.home-package-strip {
  justify-content: flex-start;
}
.home-package-strip span {
  flex-basis: 100%;
  color: #07142e;
  font-size: .95rem;
  font-weight: 900;
}
.home-package-strip strong {
  gap: 8px;
  color: #10233d;
}
.home-package-strip strong i {
  color: #0866ff;
  font-size: .92rem;
}
.home-module-marquee {
  overflow: hidden;
  display: grid;
  gap: 12px;
}
.home-module-marquee__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.home-module-marquee__track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: moduleMarquee 24s linear infinite;
  will-change: transform;
}
.home-module-marquee:hover .home-module-marquee__track {
  animation-play-state: paused;
}
@keyframes moduleMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-module-marquee__track {
    flex-wrap: wrap;
    width: auto;
    animation: none;
  }
}
.home-module-marquee__track {
  gap: 0;
  animation-duration: 30s;
}
.home-module-marquee__group {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-right: 10px;
}
@keyframes moduleMarquee {
  to {
    transform: translateX(calc(-33.333333%));
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-module-marquee__group {
    flex-wrap: wrap;
  }
}
.home-module-marquee__track {
  width: 300%;
  max-width: none;
  gap: 0;
  animation: moduleMarquee 28s linear infinite;
}
.home-module-marquee__group {
  flex: 0 0 33.333333%;
  min-width: 0;
  justify-content: space-around;
  gap: clamp(10px, 1.2vw, 18px);
  padding-right: 0;
}
@keyframes moduleMarquee {
  to {
    transform: translateX(-33.333333%);
  }
}
@media (max-width: 760px) {
  .home-module-marquee__track {
    width: max-content;
  }
  .home-module-marquee__group {
    flex: 0 0 auto;
    padding-right: 10px;
  }
}
.home-module-marquee__track {
  width: max-content;
  gap: 0;
  animation: moduleMarquee 34s linear infinite;
}
.home-module-marquee__group {
  flex: 0 0 auto;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 10px;
}
@keyframes moduleMarquee {
  to {
    transform: translateX(calc(-16.666666%));
  }
}
.home-module-marquee .home-module-marquee__track {
  width: max-content;
  max-width: none;
  gap: 0;
  animation-name: moduleMarquee;
  animation-duration: 34s;
}
.home-module-marquee .home-module-marquee__group {
  flex: 0 0 auto;
  min-width: 0;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 10px;
}
.home-industry-card span {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-top: -34px;
  border: 4px solid rgba(8,102,255,.18);
  outline: 7px solid rgba(255,255,255,.92);
  color: #0866ff;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7,20,46,.18), 0 6px 18px rgba(8,102,255,.18);
}
.home-industry-card span i {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(8,102,255,.18));
}
.home-industry-card img {
  display: block;
}
.home-special {
  position: relative;
  overflow: hidden;
  padding: 76px 0 78px;
  background: #fff;
}
.home-special::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: #f3f8ff;
}
.home-special .container {
  position: relative;
}
.home-special .home-section-title {
  margin-bottom: 48px;
}
.home-special-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.home-special-column {
  position: relative;
  min-height: 260px;
  padding: 4px clamp(22px, 2.6vw, 34px) 0;
  border-left: 2px solid rgba(8,102,255,.9);
}
.home-special-column::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 74px;
  background: linear-gradient(180deg, #0866ff, #5aa8ff);
  box-shadow: 0 0 18px rgba(8,102,255,.36);
}
.home-special-column i {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(8,102,255,.18);
  border-radius: 18px;
  color: #0866ff;
  background: radial-gradient(circle at 28% 22%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(135deg, #edf5ff, #ffffff);
  box-shadow: 0 14px 30px rgba(8,102,255,.12), inset 0 0 0 6px rgba(8,102,255,.04);
  font-size: 1.48rem;
}
.home-special-column h3 {
  max-width: 250px;
  margin: 0 0 12px;
  color: #07142e;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.22;
  font-weight: 900;
}
.home-special-column p {
  max-width: 295px;
  margin: 0;
  color: #344861;
  font-size: .96rem;
  line-height: 1.58;
}
@media (max-width: 980px) {
  .home-special-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }
}
@media (max-width: 620px) {
  .home-special {
    padding: 56px 0 62px;
  }
  .home-special .home-section-title {
    margin-bottom: 34px;
  }
  .home-special-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-special-column {
    min-height: auto;
    padding-right: 0;
  }
  .home-special-column i {
    margin-bottom: 22px;
  }
}
.home-proof {
  padding: 72px 0 64px;
  background: radial-gradient(circle at 14% 12%, rgba(8,102,255,.07), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.home-reviews-carousel {
  position: relative;
}
.home-reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.home-reviews-track::-webkit-scrollbar {
  display: none;
}
.home-review-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  flex-direction: column;
  min-height: 338px;
  padding: 24px;
  scroll-snap-align: start;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 46px rgba(7,20,46,.08);
}
.home-review-card::before {
  content: "\\201C";
  position: absolute;
  right: 20px;
  top: 8px;
  color: rgba(8,102,255,.1);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}
.home-review-card.featured {
  border-color: rgba(8,102,255,.24);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(237,245,255,.92));
  box-shadow: 0 24px 58px rgba(7,20,46,.11);
}
.home-review-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.home-review-head img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(7,20,46,.07);
}
.home-review-head h3 {
  margin: 0 0 4px;
  color: #07142e;
  font-size: 1.02rem;
  line-height: 1.2;
}
.home-review-head span {
  display: block;
  color: #0866ff;
  font-size: .84rem;
  font-weight: 850;
}
.home-review-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #253852;
  font-size: .98rem;
  line-height: 1.58;
}
.home-review-card strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: #07142e;
  font-size: .92rem;
  line-height: 1.35;
}
.home-review-card strong i {
  color: #0866ff;
}
.home-review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.home-review-controls span {
  min-width: 58px;
  color: #31445f;
  text-align: center;
  font-weight: 900;
}
.home-review-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(8,102,255,.18);
  border-radius: 50%;
  color: #0866ff;
  background: #fff;
  box-shadow: 0 12px 24px rgba(7,20,46,.08);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.home-review-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7,20,46,.12);
}
.home-review-arrow:disabled {
  cursor: not-allowed;
  opacity: .42;
  transform: none;
}
@media (max-width: 1080px) {
  .home-review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}
@media (max-width: 720px) {
  .home-review-card {
    flex-basis: min(88vw, 360px);
    min-height: auto;
  }
}
.home-final {
  padding: 38px 0 82px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-final-band {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: clamp(26px, 5vw, 60px);
  grid-template-columns: minmax(0, 1fr) minmax(310px, .42fr);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  color: #fff;
  background: radial-gradient(circle at 86% 12%, rgba(255,255,255,.2), transparent 18rem),
    linear-gradient(135deg, #07142e 0%, #082f75 54%, #0866ff 118%);
  box-shadow: 0 30px 80px rgba(7,20,46,.2);
}
.home-final-band::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
}
.home-final-copy,
.home-final-panel {
  position: relative;
  z-index: 1;
}
.home-final-band .home-section-kicker {
  margin-bottom: 16px;
  color: #ddecff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
}
.home-final h2 {
  max-width: 780px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.05rem);
  line-height: 1.02;
  font-weight: 950;
}
.home-final-band p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.04rem;
  line-height: 1.62;
}
.home-final-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.home-final-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.09);
  font-size: .9rem;
  font-weight: 850;
}
.home-final-tags i {
  color: #8fc2ff;
}
.home-final-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
}
.home-final-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.09);
}
.home-final-step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #0866ff;
  background: #fff;
  font-weight: 950;
}
.home-final-step p {
  color: rgba(255,255,255,.9);
  font-size: .94rem;
  line-height: 1.38;
}
.home-final-panel .btn-primary {
  justify-content: center;
  width: 100%;
  margin-top: 6px;
  background: #fff;
  color: #0866ff;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
@media (max-width: 980px) {
  .home-final-band {
    grid-template-columns: 1fr;
  }
  .home-final h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
@media (max-width: 620px) {
  .home-final {
    padding: 28px 0 62px;
  }
  .home-final-band {
    border-radius: 24px;
  }
  .home-final-step {
    grid-template-columns: 1fr;
  }
}
.home-final {
  padding: 34px 0 76px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-final-band {
  display: grid;
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(8,102,255,.18);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #06245a 0%, #075be8 78%, #0866ff 100%);
  box-shadow: 0 22px 56px rgba(7,20,46,.18);
}
.home-final-band::before {
  display: none;
}
.home-final-icon {
  display: grid;
  width: clamp(84px, 9vw, 116px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.home-final-icon i {
  color: #ddecff;
  font-size: clamp(3rem, 5vw, 4.4rem);
}
.home-final-copy,
.home-final-action {
  position: relative;
  z-index: 1;
}
.home-final-band .home-section-kicker {
  margin-bottom: 12px;
  color: #ddecff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
}
.home-final h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 1.06;
  font-weight: 950;
}
.home-final-band p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 1rem;
  line-height: 1.58;
}
.home-final-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.home-final-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 850;
}
.home-final-tags i {
  color: #9dccff;
}
.home-final-action {
  display: grid;
  justify-items: stretch;
  gap: 10px;
  min-width: 250px;
}
.home-final-action .btn-primary {
  justify-content: center;
  width: 100%;
  min-height: 54px;
  background: #fff;
  color: #0866ff;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
.home-final-action span {
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 980px) {
  .home-final-band {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .home-final-action {
    width: min(100%, 360px);
  }
}
@media (max-width: 620px) {
  .home-final-band {
    border-radius: 22px;
  }
}
.home-final {
  padding: 42px 0 82px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-final-band {
  position: relative;
  display: grid;
  align-items: stretch;
  gap: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, .72fr) minmax(270px, .46fr);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(8,102,255,.16);
  border-radius: 26px;
  color: #07142e;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7,20,46,.11);
}
.home-final-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  display: block;
  background: linear-gradient(180deg, #0866ff, #54a4ff);
}
.home-final-copy {
  padding: clamp(28px, 4vw, 46px) clamp(24px, 4vw, 44px);
}
.home-final-band .home-section-kicker {
  margin-bottom: 16px;
  color: #0866ff;
  border-color: rgba(8,102,255,.18);
  background: #edf5ff;
}
.home-final h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #07142e;
  font-size: clamp(1.8rem, 3.35vw, 3.25rem);
  line-height: 1.04;
  font-weight: 950;
}
.home-final-band p {
  max-width: 720px;
  margin: 0;
  color: #31445f;
  font-size: 1rem;
  line-height: 1.6;
}
.home-final-review {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 3vw, 36px);
  border-left: 1px solid rgba(8,102,255,.1);
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.home-final-review span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  color: #10233d;
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.3;
}
.home-final-review i {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #0866ff;
  background: #edf5ff;
}
.home-final-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
  background: linear-gradient(160deg, #07142e 0%, #082f75 72%, #0866ff 120%);
}
.home-final-contact > span {
  margin-bottom: 10px;
  color: #9dccff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.home-final-contact strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
}
.home-final-contact p {
  color: rgba(255,255,255,.78);
  font-size: .94rem;
  line-height: 1.45;
}
.home-final-contact .btn-primary {
  justify-content: center;
  width: 100%;
  margin-top: 22px;
  background: #fff;
  color: #0866ff;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
@media (max-width: 1060px) {
  .home-final-band {
    grid-template-columns: 1fr;
  }
  .home-final-review {
    border-top: 1px solid rgba(8,102,255,.1);
    border-left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .home-final {
    padding: 30px 0 62px;
  }
  .home-final-band {
    border-radius: 22px;
  }
  .home-final-review {
    grid-template-columns: 1fr;
  }
}
.home-final--illustrated {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0;
  background: #fff;
}
.home-final--illustrated::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: #f3f6fa;
}
.home-final-layout {
  display: grid;
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
}
.home-final--illustrated .home-final-copy {
  padding: 0;
}
.home-final--illustrated .home-section-kicker {
  margin-bottom: 18px;
  color: #0866ff;
  border-color: rgba(8,102,255,.18);
  background: #edf5ff;
}
.home-final--illustrated h2 {
  max-width: 760px;
  margin: 0;
  color: #07142e;
  font-size: clamp(2.15rem, 4.2vw, 4.1rem);
  line-height: 1.08;
  font-weight: 950;
}
.home-final--illustrated h2 span {
  position: relative;
  display: inline-block;
}
.home-final--illustrated h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.12em;
  height: .16em;
  border-radius: 999px;
  background: linear-gradient(90deg, #0866ff, #74b7ff 82%, transparent);
  opacity: .95;
}
.home-final--illustrated p {
  max-width: 720px;
  margin: 26px 0 0;
  color: #42536b;
  font-size: 1.05rem;
  line-height: 1.64;
}
.home-final--illustrated .btn-primary {
  margin-top: 32px;
  min-height: 56px;
  padding-inline: 24px;
  border-radius: 9px;
  box-shadow: 0 18px 34px rgba(8,102,255,.22);
}
.home-final-visual {
  position: relative;
  min-height: 360px;
}
.home-final-visual::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 12%;
  width: min(28vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,102,255,.16), rgba(116,183,255,.1) 48%, transparent 72%);
  filter: blur(10px);
}
.home-final-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 24px 34px rgba(7,20,46,.11));
}
@media (max-width: 980px) {
  .home-final-layout {
    grid-template-columns: 1fr;
  }
  .home-final-visual {
    min-height: auto;
  }
  .home-final-visual img {
    width: min(100%, 520px);
    margin: 0 auto;
  }
}
@media (max-width: 620px) {
  .home-final--illustrated {
    padding: 56px 0 62px;
  }
  .home-final--illustrated h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .home-final--illustrated .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
.home-final-card {
  display: grid;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: clamp(22px, 3.4vw, 34px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(7,20,46,.98), rgba(8,47,117,.98) 58%, rgba(8,102,255,.96));
  box-shadow: 0 22px 56px rgba(7,20,46,.18);
}
.home-final-mark {
  display: grid;
  width: clamp(72px, 8vw, 104px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 20px;
  background: rgba(255,255,255,.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.home-final-mark i {
  color: #ddecff;
  font-size: clamp(2.7rem, 4.4vw, 4rem);
}
.home-final-card .home-section-kicker {
  margin-bottom: 10px;
  color: #ddecff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
}
.home-final-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  line-height: 1.1;
  font-weight: 950;
}
.home-final-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.55;
}
.home-final-card .home-final-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.home-final-card .home-final-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 850;
}
.home-final-card .home-final-tags i {
  color: #9dccff;
}
.home-final-card > .btn-primary {
  justify-content: center;
  min-width: 226px;
  min-height: 54px;
  background: #fff;
  color: #0866ff;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
@media (max-width: 980px) {
  .home-final-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .home-final-card > .btn-primary {
    min-width: min(100%, 320px);
  }
}
@media (max-width: 620px) {
  .home-final-card {
    border-radius: 20px;
  }
}
.home-final {
  padding: 44px 0 86px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-final-consult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(24px, 4.2vw, 46px);
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 62px rgba(7,20,46,.1);
}
.home-final-consult .home-final-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.home-final-consult .home-section-kicker {
  width: max-content;
  margin-bottom: 16px;
  color: #0866ff;
  border-color: rgba(8,102,255,.18);
  background: #edf5ff;
}
.home-final-consult h2 {
  max-width: 820px;
  margin: 0 0 16px;
  color: #07142e;
  font-size: clamp(2rem, 3.55vw, 3.45rem);
  line-height: 1.04;
  font-weight: 950;
}
.home-final-consult p {
  max-width: 720px;
  margin: 0;
  color: #31445f;
  font-size: 1.03rem;
  line-height: 1.62;
}
.home-final-consult .home-final-review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  padding: 0;
  border: 0;
  background: transparent;
}
.home-final-consult .home-final-review span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 14px;
  color: #10233d;
  background: #f8fbff;
  font-size: .92rem;
  font-weight: 850;
}
.home-final-consult .home-final-review i {
  color: #0866ff;
  background: transparent;
  width: auto;
  height: auto;
}
.home-final-consult .home-final-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 18px;
  color: #07142e;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.home-final-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.home-final-contact-head img {
  display: block;
  width: 132px;
  height: auto;
}
.home-final-contact-head span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #0866ff;
  background: #edf5ff;
  font-size: .76rem;
  font-weight: 900;
  white-space: nowrap;
}
.home-final-consult dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}
.home-final-consult dl div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(8,102,255,.1);
}
.home-final-consult dt {
  color: #697991;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.home-final-consult dd {
  margin: 0;
  color: #07142e;
  font-weight: 900;
}
.home-final-consult .home-final-contact .btn-primary {
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(8,102,255,.22);
}
@media (max-width: 980px) {
  .home-final-consult {
    grid-template-columns: 1fr;
  }
  .home-final-consult .home-final-contact {
    min-height: auto;
  }
}
@media (max-width: 620px) {
  .home-final {
    padding: 30px 0 64px;
  }
  .home-final-consult {
    border-radius: 18px;
  }
  .home-final-consult .home-final-review {
    grid-template-columns: 1fr;
  }
  .home-final-contact-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
.home-final-consult {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(28px, 4.6vw, 54px);
  border-color: rgba(8,102,255,.16);
}
.home-final-consult::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #0866ff, #6eb4ff);
}
.home-final-consult::after {
  content: "";
  position: absolute;
  right: 410px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(8,102,255,.16), transparent);
}
.home-final-consult .home-section-kicker {
  box-shadow: 0 10px 24px rgba(8,102,255,.08);
}
.home-final-consult h2 {
  max-width: 880px;
  letter-spacing: 0;
}
.home-final-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.home-final-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 999px;
  color: #31445f;
  background: #f8fbff;
  font-size: .88rem;
  font-weight: 800;
}
.home-final-proof strong {
  color: #0866ff;
  font-size: 1rem;
  font-weight: 950;
}
.home-final-consult .home-final-review {
  max-width: 860px;
  gap: 12px;
}
.home-final-consult .home-final-review span {
  align-items: flex-start;
  min-height: 82px;
  padding: 14px;
  background: linear-gradient(180deg, #fbfdff, #f6faff);
}
.home-final-consult .home-final-review i {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: #edf5ff;
}
.home-final-consult .home-final-review strong,
.home-final-consult .home-final-review small {
  display: block;
}
.home-final-consult .home-final-review strong {
  color: #07142e;
  font-size: .94rem;
  line-height: 1.2;
}
.home-final-consult .home-final-review small {
  margin-top: 4px;
  color: #5b6c83;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.32;
}
.home-final-consult .home-final-contact {
  position: relative;
  z-index: 1;
  border-color: rgba(8,102,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.94));
  box-shadow: 0 18px 48px rgba(7,20,46,.09);
}
.home-final-contact-head {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(8,102,255,.1);
}
.home-final-consult dd a {
  color: inherit;
  text-decoration: none;
}
.home-final-consult dd i {
  margin-right: 6px;
  color: #0866ff;
}
.home-final-consult .home-final-contact .btn-primary {
  min-height: 56px;
  margin-top: auto;
  border-radius: 12px;
}
@media (max-width: 1060px) {
  .home-final-consult::after {
    display: none;
  }
}
.home-final {
  padding: 36px 0 78px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-final-simple {
  display: grid;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(8,102,255,.15);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 48%, #eef6ff 100%);
  box-shadow: 0 22px 58px rgba(7,20,46,.09);
}
.home-final-simple .home-section-kicker {
  margin-bottom: 14px;
  color: #0866ff;
  border-color: rgba(8,102,255,.16);
  background: #edf5ff;
}
.home-final-simple h2 {
  max-width: 780px;
  margin: 0 0 12px;
  color: #07142e;
  font-size: clamp(1.85rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 950;
}
.home-final-simple p {
  max-width: 680px;
  margin: 0;
  color: #31445f;
  font-size: 1.02rem;
  line-height: 1.58;
}
.home-final-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.home-final-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #10233d;
  font-size: .9rem;
  font-weight: 850;
}
.home-final-trust i {
  color: #0866ff;
}
.home-final-simple > .btn-primary {
  justify-content: center;
  min-width: 260px;
  min-height: 56px;
  border-radius: 11px;
  box-shadow: 0 18px 34px rgba(8,102,255,.2);
}
@media (max-width: 860px) {
  .home-final-simple {
    grid-template-columns: 1fr;
  }
  .home-final-simple > .btn-primary {
    width: min(100%, 340px);
  }
}
@media (max-width: 620px) {
  .home-final-simple {
    border-radius: 20px;
  }
  .home-final-simple > .btn-primary {
    width: 100%;
  }
}
.home-final {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 28%, rgba(8,102,255,.10), transparent 24rem),
    radial-gradient(circle at 88% 34%, rgba(77,169,255,.12), transparent 22rem),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-final::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(8,102,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,102,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  opacity: .45;
}
.home-final .container {
  position: relative;
  z-index: 1;
}
.home-final-simple {
  position: relative;
  overflow: hidden;
  border-color: rgba(8,102,255,.18);
  background: radial-gradient(circle at 82% 18%, rgba(8,102,255,.13), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(248,251,255,.95) 50%, rgba(238,246,255,.96) 100%);
  backdrop-filter: blur(8px);
}
.home-final-simple::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(180deg, #0866ff, #79bdff);
}
.home-final-simple::after {
  content: "";
  position: absolute;
  right: -74px;
  top: -86px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 50%;
  background: rgba(8,102,255,.035);
}
.home-final-simple .home-final-copy,
.home-final-simple > .btn-primary {
  position: relative;
  z-index: 1;
}
.home-final {
  padding: 36px 0 78px;
  background: #fff;
}
.home-final::before {
  display: none;
}
.home-final-simple {
  overflow: hidden;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #07142e 0%, #082f75 64%, #0866ff 100%);
  box-shadow: 0 24px 58px rgba(7,20,46,.18);
  backdrop-filter: none;
}
.home-final-simple::before {
  width: 100%;
  height: 5px;
  right: 0;
  bottom: auto;
  background: linear-gradient(90deg, #66b0ff, #fff, rgba(255,255,255,.2));
}
.home-final-simple::after {
  display: none;
}
.home-final-simple .home-section-kicker {
  color: #ddecff;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
}
.home-final-simple h2 {
  color: #fff;
}
.home-final-simple p {
  color: rgba(255,255,255,.82);
}
.home-final-trust span {
  color: rgba(255,255,255,.88);
}
.home-final-trust i {
  color: #9dccff;
}
.home-final-simple > .btn-primary {
  background: #fff;
  color: #0866ff;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
.home-final {
  padding: 48px 0 74px;
  background: #fff;
}
.home-final-minimal {
  display: grid;
  justify-items: center;
  max-width: 820px;
  text-align: center;
}
.home-final-minimal .home-section-kicker {
  margin-bottom: 14px;
}
.home-final-minimal h2 {
  margin: 0;
  color: #07142e;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.06;
  font-weight: 950;
}
.home-final-minimal p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #31445f;
  font-size: 1.02rem;
  line-height: 1.58;
}
.home-final-minimal .btn-primary {
  margin-top: 26px;
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(8,102,255,.18);
}
@media (max-width: 620px) {
  .home-final {
    padding: 38px 0 58px;
  }
  .home-final-minimal .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
.home-final-pro {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  padding: clamp(28px, 4.4vw, 48px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #07142e 0%, #082f75 68%, #0866ff 118%);
  box-shadow: 0 26px 64px rgba(7,20,46,.2);
}
.home-final-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.10), transparent 34%);
}
.home-final-pro::after {
  content: "";
  position: absolute;
  left: clamp(28px, 4.4vw, 48px);
  right: clamp(28px, 4.4vw, 48px);
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #82c2ff, rgba(255,255,255,.86), transparent 72%);
}
.home-final-pro-copy,
.home-final-pro-action {
  position: relative;
  z-index: 1;
}
.home-final-pro .home-section-kicker {
  margin-bottom: 14px;
  color: #ddecff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
}
.home-final-pro h2 {
  max-width: 820px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.95rem, 3.55vw, 3.5rem);
  line-height: 1.04;
  font-weight: 950;
}
.home-final-pro p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.6;
}
.home-final-pro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
}
.home-final-pro-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 850;
}
.home-final-pro-meta i {
  color: #9dccff;
}
.home-final-pro-action {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.home-final-pro-action > span {
  color: #ddecff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.home-final-pro-action .btn-primary {
  justify-content: center;
  min-height: 54px;
  border-radius: 11px;
  background: #fff;
  color: #0866ff;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
.home-final-phone {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 900px) {
  .home-final-pro {
    grid-template-columns: 1fr;
  }
  .home-final-pro-action {
    width: min(100%, 360px);
  }
}
@media (max-width: 620px) {
  .home-final {
    padding: 32px 0 64px;
  }
  .home-final-pro {
    border-radius: 20px;
  }
  .home-final-pro-action {
    width: 100%;
  }
}
.home-final {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-final-pro {
  color: #07142e;
  border: 1px solid rgba(8,102,255,.15);
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.96) 58%, rgba(238,246,255,.95) 100%);
  box-shadow: 0 22px 58px rgba(7,20,46,.1);
}
.home-final-pro::before {
  background: radial-gradient(circle at 82% 22%, rgba(8,102,255,.10), transparent 18rem);
}
.home-final-pro::after {
  height: 5px;
  background: linear-gradient(90deg, #0866ff, #8fc2ff, transparent 76%);
}
.home-final-pro .home-section-kicker {
  color: #0866ff;
  border-color: rgba(8,102,255,.18);
  background: #edf5ff;
}
.home-final-pro h2 {
  color: #07142e;
}
.home-final-pro p {
  color: #31445f;
}
.home-final-pro-meta span {
  color: #10233d;
}
.home-final-pro-meta i {
  color: #0866ff;
}
.home-final-pro-action {
  border-color: rgba(8,102,255,.14);
  background: #fff;
  box-shadow: 0 16px 38px rgba(7,20,46,.08);
}
.home-final-pro-action > span {
  color: #0866ff;
}
.home-final-pro-action .btn-primary {
  background: #0866ff;
  color: #fff;
  box-shadow: 0 16px 30px rgba(8,102,255,.22);
}
.home-final-phone {
  color: #31445f;
}
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 24px;
  color: rgba(255,255,255,.74);
  background: radial-gradient(circle at 14% 18%, rgba(8,102,255,.18), transparent 24rem),
    linear-gradient(180deg, #07142e 0%, #061126 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,102,255,.65), transparent);
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(150px, .7fr));
}
.footer-brand img {
  width: 168px;
  margin-bottom: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
.footer-brand p {
  max-width: 360px;
  color: rgba(255,255,255,.68);
  line-height: 1.62;
}
.footer-col {
  padding-top: 10px;
}
.footer-col h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: #fff;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #0866ff;
}
.footer-col a {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  margin: 0 0 7px;
  color: rgba(255,255,255,.66);
  font-size: .92rem;
  line-height: 1.35;
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}
.socials {
  gap: 10px;
  margin-top: 24px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.socials a:hover {
  border-color: rgba(8,102,255,.75);
  color: #fff;
  background: #0866ff;
  transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top-color: rgba(255,255,255,.12);
}
.footer-bottom p {
  color: rgba(255,255,255,.54);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .site-footer {
    padding-top: 54px;
  }
  .footer-col {
    padding-top: 0;
  }
}
.site-footer {
  padding: 40px 0 24px;
  background: radial-gradient(circle at 12% 0%, rgba(8,102,255,.18), transparent 24rem),
    linear-gradient(180deg, #07142e 0%, #061126 100%);
}
.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  color: rgba(255,255,255,.76);
  font-size: .92rem;
  font-weight: 800;
}
.footer-contact i {
  color: #8fc2ff;
}
.footer-contact a:hover {
  color: #fff;
}
.site-footer .footer-grid {
  align-items: start;
}
.site-footer .footer-brand p {
  margin: 0;
}
.site-footer .footer-bottom {
  margin-top: 40px;
}
.site-footer {
  padding: 68px 0 24px;
}
.site-footer .footer-grid {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.footer-brand {
  padding-right: clamp(10px, 2vw, 24px);
}
.footer-contact {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.site-footer .footer-bottom {
  padding-inline: 4px;
}
@media (max-width: 560px) {
  .site-footer .footer-grid {
    padding: 20px;
    border-radius: 20px;
  }
}
.site-footer {
  padding: 66px 0 24px;
  color: rgba(255,255,255,.72);
  background: linear-gradient(180deg, #07142e 0%, #061126 100%);
}
.site-footer::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,102,255,.42), transparent);
}
.site-footer .footer-grid {
  display: grid;
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(150px, .7fr));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.footer-brand {
  max-width: 390px;
  padding: 0 clamp(12px, 2.5vw, 34px) 0 0;
  border-right: 1px solid rgba(255,255,255,.10);
}
.footer-brand img {
  width: 166px;
  margin-bottom: 18px;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: none;
}
.footer-brand p {
  max-width: 350px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: .95rem;
  line-height: 1.58;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 800;
}
.footer-col {
  padding-top: 6px;
}
.footer-col h3 {
  margin-bottom: 16px;
  padding-bottom: 0;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-col h3::after {
  display: none;
}
.footer-col a {
  min-height: 28px;
  margin-bottom: 5px;
  color: rgba(255,255,255,.64);
  font-size: .9rem;
}
.footer-col a:hover {
  color: #fff;
  transform: none;
}
.socials {
  margin-top: 20px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}
.footer-bottom {
  margin-top: 42px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-bottom p {
  color: rgba(255,255,255,.52);
}
@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    padding-right: 0;
    border-right: 0;
  }
}
@media (max-width: 560px) {
  .site-footer {
    padding-top: 52px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    display: grid;
  }
}
.site-footer .footer-brand img {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.home-final-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.home-final-phone i {
  color: currentColor;
  font-size: .9em;
}
.btn,
.home-hero-tools span,
.home-industry-card,
.home-review-card,
.home-final-pro,
.home-final-pro-action a,
.footer-contact a,
.footer-col a,
.socials a {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease, opacity .22s ease;
}
.btn:hover,
.btn:focus-visible,
.home-final-pro-action a:hover,
.home-final-pro-action a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
}
.home-hero-tools span:hover,
.home-hero-tools span:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(16, 96, 247, .14);
}
.home-industry-card:hover,
.home-industry-card:focus-visible,
.home-review-card:hover,
.home-review-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(12, 28, 58, .12);
}
.home-industry-card span {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.home-industry-card:hover span,
.home-industry-card:focus-visible span {
  transform: translate(-50%, -6px) scale(1.04);
  box-shadow: 0 16px 30px rgba(16, 96, 247, .22);
}
.home-final-pro {
  overflow: hidden;
}
.home-final-pro::after {
  animation: ctaAccentFlow 5.5s ease-in-out infinite;
  background-size: 220% 100%;
}
.home-final-pro:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 80px rgba(12, 28, 58, .12);
}
.footer-col a {
  position: relative;
  padding-left: 0;
}
.footer-col a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .55;
  transform: translateY(-50%);
  transition: width .22s ease, opacity .22s ease;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  padding-left: 16px;
}
.footer-col a:hover::before,
.footer-col a:focus-visible::before {
  width: 10px;
  opacity: .9;
}
.home-review-track {
  scroll-behavior: smooth;
}
.home-review-arrow,
.home-review-dot {
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, opacity .2s ease;
}
.home-review-arrow:hover,
.home-review-arrow:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 96, 247, .16);
}
.home-review-dot.is-active {
  animation: reviewDotPulse 2.4s ease-in-out infinite;
}
@keyframes ctaAccentFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes reviewDotPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 96, 247, .28);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(16, 96, 247, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .home-hero-tools span,
  .home-industry-card,
  .home-review-card,
  .home-final-pro,
  .home-final-pro-action a,
  .footer-contact a,
  .footer-col a,
  .socials a,
  .home-industry-card span,
  .home-review-arrow,
  .home-review-dot {
    transition: none !important;
    animation: none !important;
  }
  .btn:hover,
  .btn:focus-visible,
  .home-hero-tools span:hover,
  .home-industry-card:hover,
  .home-review-card:hover,
  .home-final-pro:hover,
  .home-final-pro-action a:hover,
  .footer-contact a:hover,
  .socials a:hover,
  .home-review-arrow:hover {
    transform: none !important;
  }
  .home-final-pro::after,
  .home-review-dot.is-active {
    animation: none !important;
  }
  .home-review-track {
    scroll-behavior: auto;
  }
}
.footer-col a {
  transition: padding-left .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease, opacity .22s ease;
}
.home-section-title::after,
.platform-showcase__heading::after,
.home-core-title::after {
  animation: sectionAccentSweep 4.8s ease-in-out infinite;
  background-size: 220% 100%;
}
@keyframes sectionAccentSweep {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-col a,
  .home-section-title::after,
  .platform-showcase__heading::after,
  .home-core-title::after {
    transition: none !important;
    animation: none !important;
  }
}
.site-header,
.brand img,
.nav-links > a,
.nav-dropdown > button,
.dropdown-menu,
.dropdown-menu a,
.menu-toggle,
.text-link,
.text-link i,
.card,
.feature-card,
.process-item,
.industry-card,
.stat,
.price-card,
.case-card,
.resource-card,
.faq-item,
.faq-question,
.contact-item,
.contact-item i,
.form-card,
.form-group input,
.form-group select,
.form-group textarea,
.cta-band,
.showcase,
.showcase-image img,
.comparison tr,
.comparison i,
.breadcrumbs a,
.price-label,
.case-tag,
.icon-box {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease, color .24s ease, opacity .24s ease, filter .24s ease;
}
.nav-links > a,
.nav-dropdown > button {
  position: relative;
}
.nav-links > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: transform .24s ease, opacity .24s ease;
}
.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-dropdown:hover > button::after,
.nav-dropdown:focus-within > button::after {
  opacity: 1;
  transform: scaleX(1);
}
.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px) scale(1.015);
}
.dropdown-menu {
  transform: translateY(10px) scale(.98);
  transform-origin: top left;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  transform: translateY(0) scale(1);
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  transform: translateX(4px);
}
.page-hero .breadcrumbs,
.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead,
.page-hero .actions,
.page-hero .stat-row {
  animation: pageHeroRise .62s ease both;
}
.page-hero .eyebrow,
.page-hero h1 {
  animation-delay: .04s;
}
.page-hero .lead {
  animation-delay: .1s;
}
.page-hero .actions,
.page-hero .stat-row {
  animation-delay: .16s;
}
.card:hover,
.card:focus-within,
.feature-card:hover,
.feature-card:focus-within,
.process-item:hover,
.process-item:focus-within,
.stat:hover,
.price-card:hover,
.price-card:focus-within,
.case-card:hover,
.case-card:focus-within,
.resource-card:hover,
.resource-card:focus-within,
.faq-item:hover,
.contact-item:hover,
.contact-item:focus-within,
.form-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 104, 232, .28);
  box-shadow: 0 22px 48px rgba(12, 28, 58, .1);
}
.feature-card:hover .icon-box,
.feature-card:focus-within .icon-box,
.card:hover .icon-box,
.card:focus-within .icon-box,
.contact-item:hover i,
.contact-item:focus-within i {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 26px rgba(18, 104, 232, .13);
}
.industry-card:hover,
.industry-card:focus-visible {
  filter: saturate(1.04) contrast(1.03);
}
.showcase:hover,
.showcase:focus-within,
.cta-band:hover,
.cta-band:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 28px 65px rgba(12, 28, 58, .16);
}
.showcase:hover .showcase-image img,
.showcase:focus-within .showcase-image img,
.case-card:hover .case-top img,
.case-card:focus-within .case-top img {
  transform: scale(1.035);
}
.price-card.featured:hover,
.price-card.featured:focus-within {
  box-shadow: 0 28px 62px rgba(18, 104, 232, .16);
}
.price-card:hover .price-label,
.price-card:focus-within .price-label,
.case-card:hover .case-tag,
.case-card:focus-within .case-tag {
  transform: translateY(-1px);
}
.comparison tbody tr:hover {
  background: rgba(18, 104, 232, .045);
}
.comparison tbody tr:hover i.fa-check {
  transform: scale(1.12);
}
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-dark);
}
.faq-question:hover,
.faq-question:focus-visible {
  color: var(--blue);
}
.faq-answer {
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .32s ease, opacity .22s ease, transform .22s ease;
}
.faq-item.open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(18, 104, 232, .32);
}
.form-feedback.show {
  animation: feedbackIn .28s ease both;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(18, 104, 232, .35);
  box-shadow: 0 12px 26px rgba(12, 28, 58, .1);
}
@keyframes pageHeroRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes feedbackIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .nav-links.mobile-open {
    animation: mobileMenuDrop .24s ease both;
  }
  @keyframes mobileMenuDrop {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .brand img,
  .nav-links > a,
  .nav-dropdown > button,
  .dropdown-menu,
  .dropdown-menu a,
  .menu-toggle,
  .text-link,
  .text-link i,
  .card,
  .feature-card,
  .process-item,
  .industry-card,
  .stat,
  .price-card,
  .case-card,
  .resource-card,
  .faq-item,
  .faq-question,
  .contact-item,
  .contact-item i,
  .form-card,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .cta-band,
  .showcase,
  .showcase-image img,
  .comparison tr,
  .comparison i,
  .breadcrumbs a,
  .price-label,
  .case-tag,
  .icon-box,
  .page-hero .breadcrumbs,
  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero .lead,
  .page-hero .actions,
  .page-hero .stat-row,
  .form-feedback.show,
  .nav-links.mobile-open {
    animation: none !important;
    transition: none !important;
  }
  .brand:hover img,
  .dropdown-menu a:hover,
  .card:hover,
  .feature-card:hover,
  .process-item:hover,
  .stat:hover,
  .price-card:hover,
  .case-card:hover,
  .resource-card:hover,
  .faq-item:hover,
  .contact-item:hover,
  .form-card:focus-within,
  .showcase:hover,
  .cta-band:hover,
  .menu-toggle:hover,
  .showcase:hover .showcase-image img,
  .case-card:hover .case-top img,
  .comparison tbody tr:hover i.fa-check,
  .faq-answer {
    transform: none !important;
  }
}
.platform-option,
.platform-option__icon,
.platform-showcase,
.platform-showcase__panel,
.platform-showcase__pane,
.platform-showcase__points li,
.home-value-item,
.home-value-proof,
.home-original-benefits li,
.home-feature-board,
.liquid-glass-card,
.pos-hero-pills span,
.pos-visual-card,
.pos-shot-card,
.pos-ticket-card,
.pos-stock-card,
.pos-benefit-card,
.pos-module-card,
.pos-case-card,
.pos-custom-card,
.pos-industry-card,
.pos-journey-step,
.pos-price-stack,
.pos-support-proof,
.plain-proof,
.benefit-number,
.module-icon,
.formula-icon,
.realistic-pos-image,
.realistic-pos-scene {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease, color .24s ease, opacity .24s ease, filter .24s ease;
}
.platform-option:hover,
.platform-option:focus-visible,
.platform-option--active {
  transform: translateX(4px);
}
.platform-option:hover .platform-option__icon,
.platform-option:focus-visible .platform-option__icon,
.platform-option--active .platform-option__icon {
  transform: scale(1.05);
  box-shadow: 0 14px 26px rgba(18, 104, 232, .14);
}
.platform-showcase:hover,
.platform-showcase:focus-within,
.home-feature-board:hover,
.home-feature-board:focus-within,
.liquid-glass-card:hover,
.liquid-glass-card:focus-within,
.pos-visual-card:hover,
.pos-visual-card:focus-within,
.pos-shot-card:hover,
.pos-shot-card:focus-within,
.pos-ticket-card:hover,
.pos-ticket-card:focus-within,
.pos-stock-card:hover,
.pos-stock-card:focus-within,
.pos-price-stack:hover,
.pos-price-stack:focus-within,
.plain-proof:hover,
.plain-proof:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(12, 28, 58, .12);
}
.platform-showcase__pane {
  opacity: 0;
  transform: translateY(8px);
}
.platform-showcase__pane--active {
  opacity: 1;
  transform: translateY(0);
}
.platform-showcase__points li:hover,
.home-original-benefits li:hover,
.pos-hero-pills span:hover {
  transform: translateX(3px);
}
.home-value-item:hover,
.home-value-item:focus-within,
.home-value-proof:hover,
.home-value-proof:focus-within,
.pos-benefit-card:hover,
.pos-benefit-card:focus-within,
.pos-module-card:hover,
.pos-module-card:focus-within,
.pos-case-card:hover,
.pos-case-card:focus-within,
.pos-custom-card:hover,
.pos-custom-card:focus-within,
.pos-industry-card:hover,
.pos-industry-card:focus-within,
.pos-journey-step:hover,
.pos-journey-step:focus-within,
.pos-support-proof:hover,
.pos-support-proof:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 104, 232, .28);
  box-shadow: 0 22px 48px rgba(12, 28, 58, .1);
}
.home-value-item:hover i,
.home-value-item:focus-within i,
.pos-benefit-card:hover i,
.pos-benefit-card:focus-within i,
.pos-module-card:hover i,
.pos-module-card:focus-within i,
.pos-custom-card:hover i,
.pos-custom-card:focus-within i,
.module-icon:hover,
.formula-icon:hover,
.benefit-number:hover {
  transform: translateY(-2px) scale(1.04);
}
.realistic-pos-scene:hover .realistic-pos-image,
.realistic-pos-scene:focus-within .realistic-pos-image,
.pos-visual-card:hover img,
.pos-visual-card:focus-within img,
.pos-shot-card:hover img,
.pos-shot-card:focus-within img {
  transform: scale(1.025);
  filter: saturate(1.03) contrast(1.02);
}
.platform-showcase__pane--active .platform-visual-card,
.platform-showcase__pane--active .platform-visual-stat,
.platform-showcase__pane--active .platform-visual-list li {
  animation: paneDetailRise .34s ease both;
}
.platform-showcase__pane--active .platform-visual-stat:nth-child(2),
.platform-showcase__pane--active .platform-visual-list li:nth-child(2) {
  animation-delay: .04s;
}
.platform-showcase__pane--active .platform-visual-stat:nth-child(3),
.platform-showcase__pane--active .platform-visual-list li:nth-child(3) {
  animation-delay: .08s;
}
.platform-showcase__pane--active .platform-visual-stat:nth-child(4),
.platform-showcase__pane--active .platform-visual-list li:nth-child(4) {
  animation-delay: .12s;
}
@keyframes paneDetailRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .platform-option,
  .platform-option__icon,
  .platform-showcase,
  .platform-showcase__panel,
  .platform-showcase__pane,
  .platform-showcase__points li,
  .home-value-item,
  .home-value-proof,
  .home-original-benefits li,
  .home-feature-board,
  .liquid-glass-card,
  .pos-hero-pills span,
  .pos-visual-card,
  .pos-shot-card,
  .pos-ticket-card,
  .pos-stock-card,
  .pos-benefit-card,
  .pos-module-card,
  .pos-case-card,
  .pos-custom-card,
  .pos-industry-card,
  .pos-journey-step,
  .pos-price-stack,
  .pos-support-proof,
  .plain-proof,
  .benefit-number,
  .module-icon,
  .formula-icon,
  .realistic-pos-image,
  .realistic-pos-scene,
  .platform-showcase__pane--active .platform-visual-card,
  .platform-showcase__pane--active .platform-visual-stat,
  .platform-showcase__pane--active .platform-visual-list li {
    animation: none !important;
    transition: none !important;
  }
  .platform-option:hover,
  .platform-showcase:hover,
  .home-feature-board:hover,
  .liquid-glass-card:hover,
  .pos-visual-card:hover,
  .pos-shot-card:hover,
  .pos-ticket-card:hover,
  .pos-stock-card:hover,
  .pos-price-stack:hover,
  .plain-proof:hover,
  .home-value-item:hover,
  .pos-benefit-card:hover,
  .pos-module-card:hover,
  .pos-case-card:hover,
  .pos-custom-card:hover,
  .pos-industry-card:hover,
  .pos-journey-step:hover,
  .pos-support-proof:hover,
  .realistic-pos-scene:hover .realistic-pos-image,
  .pos-visual-card:hover img,
  .pos-shot-card:hover img {
    transform: none !important;
  }
}
body {
  background: #f7fbff;
}
main:not(.home-refresh) {
  background: linear-gradient(180deg, rgba(247,251,255,.96) 0%, #fff 34%, #fff 100%);
}
.site-header {
  border-bottom: 1px solid rgba(8,102,255,.1);
}
.nav-dropdown > button.active,
.nav-dropdown > button[aria-current="page"] {
  color: var(--blue);
}
.nav-dropdown > button.active::after,
.nav-dropdown > button[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 108px) 0 clamp(58px, 7vw, 88px);
  background: radial-gradient(circle at 82% 12%, rgba(8,102,255,.1), transparent 30rem),
    radial-gradient(circle at 12% 88%, rgba(120,190,255,.12), transparent 28rem),
    linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,102,255,.18), transparent);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 960px;
  text-wrap: balance;
}
.page-hero .lead {
  max-width: 760px;
  color: #31445f;
}
.breadcrumbs {
  color: #5d6e86;
}
.breadcrumbs a {
  color: #40546e;
}
.section:not(.home-value):not(.home-core):not(.home-proof),
.section-sm:not(.home-final) {
  position: relative;
}
.section-heading h2,
.page-hero h1,
.legal h1,
.legal h2 {
  letter-spacing: 0;
}
.section-heading.center,
.section-heading {
  margin-bottom: clamp(30px, 4vw, 46px);
}
.surface {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}
.card,
.price-card,
.case-card,
.resource-card,
.faq-item,
.form-card,
.stat {
  border-color: rgba(8,102,255,.13);
  box-shadow: 0 14px 38px rgba(12, 28, 58, .055);
}
.showcase,
.cta-band {
  border: 1px solid rgba(255,255,255,.2);
}
.cta-band {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2a4d 0%, #0d4f9c 58%, #0866ff 100%);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.16) 42%, transparent 64%);
  transform: translateX(-55%);
  animation: ctaBandSheen 7s ease-in-out infinite;
}
.cta-band h2,
.cta-band p {
  color: #fff;
}
.legal {
  width: min(calc(100% - 40px), 920px);
  margin-inline: auto;
  padding: clamp(58px, 8vw, 92px) 0;
}
.legal h1 {
  margin-bottom: 18px;
  color: #07142e;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: .98;
  text-wrap: balance;
}
.legal h2 {
  padding-top: 28px;
  border-top: 1px solid rgba(8,102,255,.12);
}
.legal p,
.legal li {
  color: #31445f;
  font-size: 1.02rem;
  line-height: 1.75;
}
.whatsapp-float {
  transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(21, 185, 100, .32);
}
@keyframes ctaBandSheen {
  0%, 28%, 100% {
    transform: translateX(-55%);
    opacity: 0;
  }
  38% {
    opacity: 1;
  }
  62% {
    transform: translateX(55%);
    opacity: 0;
  }
}
@media (max-width: 760px) {
  .page-hero {
    padding-top: 56px;
  }
  .legal {
    width: min(calc(100% - 32px), 920px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band::before,
  .whatsapp-float {
    animation: none !important;
    transition: none !important;
  }
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: none !important;
  }
}
.nav-actions .btn.active,
.nav-actions .btn[aria-current="page"] {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(8, 102, 255, .18);
}
.nav-actions .btn-secondary.active,
.nav-actions .btn-secondary[aria-current="page"] {
  color: var(--blue);
  border-color: rgba(8,102,255,.35);
  background: #f3f8ff;
}
@media (prefers-reduced-motion: reduce) {
  .nav-actions .btn.active,
  .nav-actions .btn[aria-current="page"] {
    transform: none !important;
  }
}
.nav-dropdown {
  isolation: isolate;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 100%;
  left: -22px;
  right: -22px;
  height: 22px;
}
.dropdown-menu {
  z-index: 5;
  top: calc(100% + 10px);
  transform: translateY(6px) scale(.98);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.nav-actions {
  gap: 12px;
}
.nav-actions .btn-sm {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: .92rem;
  white-space: nowrap;
}
.nav-actions .btn-secondary {
  min-width: 116px;
  color: #0866ff;
  border-color: rgba(8, 102, 255, .38);
  background: linear-gradient(180deg, #fff 0%, #f2f7ff 100%);
  box-shadow: 0 10px 24px rgba(8, 102, 255, .08);
}
.nav-actions .btn-secondary:hover,
.nav-actions .btn-secondary:focus-visible {
  color: #fff;
  border-color: #0866ff;
  background: #0866ff;
  box-shadow: 0 16px 34px rgba(8, 102, 255, .2);
}
.nav-actions .btn-primary {
  min-width: 178px;
  padding-inline: 24px;
  background: linear-gradient(135deg, #0866ff 0%, #0051d9 100%);
  box-shadow: 0 16px 34px rgba(8, 102, 255, .24);
}
.nav-actions .btn-primary:hover,
.nav-actions .btn-primary:focus-visible {
  background: linear-gradient(135deg, #005eea 0%, #003fb2 100%);
  box-shadow: 0 20px 42px rgba(8, 102, 255, .3);
}
.nav-actions .btn.active,
.nav-actions .btn[aria-current="page"] {
  transform: translateY(-1px);
}
@media (max-width: 1100px) {
  .nav-actions .btn-primary {
    min-width: 160px;
    padding-inline: 20px;
  }
  .nav-actions .btn-secondary {
    min-width: 108px;
  }
}
@media (max-width: 900px) {
  .nav-dropdown::before {
    display: none;
  }
  .dropdown-menu {
    top: auto;
    transform: none;
  }
  .nav-actions .btn-sm {
    min-width: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.open .dropdown-menu,
  .nav-actions .btn.active,
  .nav-actions .btn[aria-current="page"] {
    transform: none !important;
  }
}
.site-header .container {
  width: min(calc(100% - 32px), 1380px);
}
.navbar {
  gap: clamp(16px, 1.8vw, 28px);
}
.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(14px, 1.35vw, 24px);
  min-width: 0;
}
.nav-links > a,
.nav-dropdown > button {
  white-space: nowrap;
  font-size: clamp(.84rem, .78vw, .92rem);
}
.nav-actions {
  flex: 0 0 auto;
}
@media (max-width: 1240px) and (min-width: 901px) {
  .site-header .container {
    width: min(calc(100% - 24px), 1240px);
  }
  .brand img {
    width: 150px;
  }
  .navbar {
    gap: 14px;
  }
  .nav-links {
    gap: 13px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn-sm {
    min-height: 44px;
    padding-inline: 16px;
    font-size: .86rem;
  }
  .nav-actions .btn-primary {
    min-width: 158px;
  }
  .nav-actions .btn-secondary {
    min-width: 104px;
  }
}
@media (max-width: 1040px) and (min-width: 901px) {
  .site-header .container {
    width: min(calc(100% - 18px), 1040px);
  }
  .brand img {
    width: 138px;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-links > a,
  .nav-dropdown > button {
    font-size: .8rem;
  }
  .nav-actions .btn-sm {
    padding-inline: 13px;
  }
  .nav-actions .btn-primary {
    min-width: 146px;
  }
  .nav-actions .btn-secondary {
    min-width: 96px;
  }
}
@media (max-width: 900px) {
  .site-header .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .nav-links {
    justify-content: flex-start;
  }
  .brand img {
    width: 142px;
  }
}
.solutions-refresh {
  background: #fff;
}
.solutions-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0 clamp(58px, 7vw, 92px);
  background: radial-gradient(circle at 78% 18%, rgba(8,102,255,.12), transparent 30rem),
    radial-gradient(circle at 14% 84%, rgba(80,144,192,.12), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.solutions-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
}
.solutions-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 5.4vw, 5.3rem);
  line-height: .98;
}
.solutions-hero-copy .lead {
  max-width: 720px;
  color: #31445f;
}
.solutions-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.solutions-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 999px;
  color: #10233d;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 32px rgba(7,20,46,.06);
  font-weight: 850;
}
.solutions-hero-points i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: #edf4ff;
}
.solutions-hero-visual {
  position: relative;
  min-height: 430px;
}
.solutions-hero-visual img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 26px;
  box-shadow: 0 28px 68px rgba(7,20,46,.16);
}
.solutions-hero-main {
  inset: 30px 0 auto auto;
  width: min(82%, 560px);
  height: 330px;
}
.solutions-hero-small {
  width: 250px;
  height: 168px;
}
.solutions-hero-small--one {
  left: 0;
  top: 0;
}
.solutions-hero-small--two {
  left: 10%;
  bottom: 0;
}
.solutions-industries {
  padding: 84px 0 76px;
  background: #fff;
}
.solutions-industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.solutions-special {
  border-top: 1px solid rgba(8,102,255,.08);
  border-bottom: 1px solid rgba(8,102,255,.08);
}
.solutions-base {
  padding: 74px 0;
  background: radial-gradient(circle at 8% 18%, rgba(8,102,255,.07), transparent 25rem),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.solutions-base-panel {
  display: grid;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 32px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 24px 62px rgba(7,20,46,.08);
}
.solutions-base-panel h2 {
  max-width: 650px;
  margin: 14px 0 14px;
  color: #07142e;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  text-wrap: balance;
}
.solutions-base-panel p {
  max-width: 620px;
  margin: 0;
  color: #31445f;
  font-size: 1.08rem;
  line-height: 1.65;
}
.solutions-base-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.solutions-base-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 18px;
  color: #10233d;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,20,46,.05);
  font-weight: 850;
}
.solutions-base-list i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: #edf4ff;
}
.solutions-hero-points span,
.solutions-hero-visual img,
.solutions-base-panel,
.solutions-base-list span {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.solutions-hero-points span:hover,
.solutions-base-list span:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7,20,46,.09);
}
.solutions-hero-visual:hover img {
  transform: translateY(-4px);
}
@media (max-width: 1050px) {
  .solutions-hero-grid,
  .solutions-base-panel {
    grid-template-columns: 1fr;
  }
  .solutions-hero-visual {
    min-height: 360px;
  }
  .solutions-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .solutions-hero {
    padding-top: 56px;
  }
  .solutions-hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }
  .solutions-hero-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }
  .solutions-hero-visual img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 190px;
  }
  .solutions-industry-grid,
  .solutions-base-list {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .solutions-hero-points span,
  .solutions-hero-visual img,
  .solutions-base-panel,
  .solutions-base-list span {
    transition: none !important;
  }
  .solutions-hero-points span:hover,
  .solutions-base-list span:hover,
  .solutions-hero-visual:hover img {
    transform: none !important;
  }
}
.solutions-hero-grid {
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
}
.solutions-hero-visual {
  min-height: clamp(520px, 42vw, 650px);
  margin-right: min(-4vw, -34px);
}
.solutions-hero-main {
  top: 76px;
  right: 0;
  width: min(88%, 690px);
  height: clamp(390px, 34vw, 500px);
  border-radius: 30px;
}
.solutions-hero-small {
  width: clamp(260px, 25vw, 380px);
  height: clamp(170px, 16vw, 245px);
  border-radius: 24px;
}
.solutions-hero-small--one {
  left: 0;
  top: 22px;
}
.solutions-hero-small--two {
  left: 8%;
  bottom: 18px;
}
@media (max-width: 1180px) {
  .solutions-hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
  }
  .solutions-hero-visual {
    min-height: 520px;
    margin-right: 0;
  }
  .solutions-hero-main {
    width: min(86%, 610px);
    height: 395px;
  }
}
@media (max-width: 1050px) {
  .solutions-hero-visual {
    min-height: 470px;
  }
  .solutions-hero-main {
    width: min(82%, 620px);
    height: 360px;
  }
}
@media (max-width: 680px) {
  .solutions-hero-visual {
    min-height: auto;
    margin-right: 0;
  }
  .solutions-hero-main,
  .solutions-hero-small {
    width: 100%;
    height: 220px;
    border-radius: 22px;
  }
}
.solutions-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8% 2%;
  border-radius: 38px;
  background: radial-gradient(circle at 58% 44%, rgba(8,102,255,.16), transparent 58%);
  opacity: .65;
  filter: blur(18px);
  transform: scale(.96);
  transition: opacity .32s ease, transform .32s ease;
}
.solutions-hero-visual img {
  will-change: transform;
  transition: transform .36s cubic-bezier(.2,.7,.2,1), box-shadow .36s ease, filter .36s ease;
}
.solutions-hero-visual:hover::before,
.solutions-hero-visual:focus-within::before {
  opacity: .95;
  transform: scale(1.03);
}
.solutions-hero-visual:hover .solutions-hero-main,
.solutions-hero-visual:focus-within .solutions-hero-main {
  transform: translate3d(8px, -10px, 0) scale(1.025);
  box-shadow: 0 36px 82px rgba(7,20,46,.2);
  filter: saturate(1.04) contrast(1.02);
}
.solutions-hero-visual:hover .solutions-hero-small--one,
.solutions-hero-visual:focus-within .solutions-hero-small--one {
  transform: translate3d(-14px, -16px, 0) rotate(-1.2deg) scale(1.035);
  box-shadow: 0 30px 68px rgba(7,20,46,.18);
}
.solutions-hero-visual:hover .solutions-hero-small--two,
.solutions-hero-visual:focus-within .solutions-hero-small--two {
  transform: translate3d(-10px, 14px, 0) rotate(1.1deg) scale(1.035);
  box-shadow: 0 30px 68px rgba(7,20,46,.18);
}
@media (max-width: 680px) {
  .solutions-hero-visual::before {
    display: none;
  }
  .solutions-hero-visual:hover .solutions-hero-main,
  .solutions-hero-visual:hover .solutions-hero-small--one,
  .solutions-hero-visual:hover .solutions-hero-small--two {
    transform: translateY(-3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .solutions-hero-visual::before,
  .solutions-hero-visual img {
    transition: none !important;
  }
  .solutions-hero-visual:hover::before,
  .solutions-hero-visual:hover .solutions-hero-main,
  .solutions-hero-visual:hover .solutions-hero-small--one,
  .solutions-hero-visual:hover .solutions-hero-small--two {
    transform: none !important;
  }
}
.solutions-hero-main {
  animation: solutionsFloatMain 8.5s ease-in-out infinite;
}
.solutions-hero-small--one {
  animation: solutionsFloatOne 7.6s ease-in-out infinite;
}
.solutions-hero-small--two {
  animation: solutionsFloatTwo 8.2s ease-in-out infinite;
}
.solutions-hero-visual:hover .solutions-hero-main,
.solutions-hero-visual:focus-within .solutions-hero-main,
.solutions-hero-visual:hover .solutions-hero-small--one,
.solutions-hero-visual:focus-within .solutions-hero-small--one,
.solutions-hero-visual:hover .solutions-hero-small--two,
.solutions-hero-visual:focus-within .solutions-hero-small--two {
  animation-play-state: paused;
}
@keyframes solutionsFloatMain {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.012);
  }
}
@keyframes solutionsFloatOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-10px, -14px, 0) rotate(-.8deg) scale(1.012);
  }
}
@keyframes solutionsFloatTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-8px, 12px, 0) rotate(.7deg) scale(1.012);
  }
}
@media (max-width: 680px) {
  .solutions-hero-main,
  .solutions-hero-small--one,
  .solutions-hero-small--two {
    animation-duration: 10s;
  }
  @keyframes solutionsFloatMain {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  @keyframes solutionsFloatOne {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-4px);
    }
  }
  @keyframes solutionsFloatTwo {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .solutions-hero-main,
  .solutions-hero-small--one,
  .solutions-hero-small--two {
    animation: none !important;
  }
}
.industry-refresh {
  background: #fff;
}
.industry-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0 clamp(58px, 7vw, 92px);
  background: radial-gradient(circle at 78% 18%, rgba(8,102,255,.11), transparent 30rem),
    radial-gradient(circle at 12% 86%, rgba(64,176,160,.12), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.industry-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
}
.industry-hero-copy h1 {
  max-width: 860px;
  margin: 18px 0 18px;
  color: #07142e;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .96;
  text-wrap: balance;
}
.industry-hero-copy .lead {
  max-width: 720px;
  color: #31445f;
}
.industry-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.industry-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 999px;
  color: #10233d;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 32px rgba(7,20,46,.06);
  font-weight: 850;
}
.industry-hero-chips i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: #edf4ff;
}
.industry-hero-visual {
  position: relative;
  min-height: clamp(500px, 42vw, 620px);
}
.industry-hero-visual > img {
  position: absolute;
  inset: 42px 0 auto auto;
  width: min(92%, 690px);
  height: clamp(390px, 34vw, 510px);
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 32px;
  box-shadow: 0 32px 76px rgba(7,20,46,.17);
  animation: industryHeroFloat 8.5s ease-in-out infinite;
}
.industry-hero-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 48px rgba(7,20,46,.12);
  backdrop-filter: blur(16px);
}
.industry-hero-card span,
.industry-hero-card small {
  color: #48617c;
  font-size: .78rem;
  font-weight: 800;
}
.industry-hero-card strong {
  color: #07142e;
  font-size: 1.55rem;
  line-height: 1;
}
.industry-hero-card--sales {
  left: 0;
  top: 88px;
  animation: industryCardOne 7.8s ease-in-out infinite;
}
.industry-hero-card--stock {
  right: 20px;
  bottom: 34px;
  animation: industryCardTwo 8.2s ease-in-out infinite;
}
.industry-problems {
  padding: 84px 0 76px;
  background: #fff;
}
.industry-problem-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.industry-problem-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7,20,46,.07);
}
.industry-problem-card i {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: #edf4ff;
  font-size: 1.25rem;
}
.industry-problem-card h3 {
  color: #07142e;
  font-size: 1.25rem;
}
.industry-problem-card p {
  margin: 0;
  color: #31445f;
  line-height: 1.55;
}
.industry-special {
  border-top: 1px solid rgba(8,102,255,.08);
  border-bottom: 1px solid rgba(8,102,255,.08);
}
.industry-flow {
  padding: 78px 0;
  background: #fff;
}
.industry-flow-panel {
  display: grid;
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 32px;
  background: radial-gradient(circle at 82% 22%, rgba(8,102,255,.08), transparent 20rem),
    linear-gradient(135deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 24px 62px rgba(7,20,46,.08);
}
.industry-flow-copy h2 {
  max-width: 650px;
  margin: 14px 0 14px;
  color: #07142e;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  text-wrap: balance;
}
.industry-flow-copy p {
  max-width: 620px;
  color: #31445f;
  font-size: 1.08rem;
  line-height: 1.65;
}
.industry-flow-steps {
  display: grid;
  gap: 12px;
}
.industry-flow-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,20,46,.05);
}
.industry-flow-steps span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: #edf4ff;
  font-weight: 950;
}
.industry-flow-steps strong {
  color: #07142e;
}
.industry-flow-steps p {
  margin: 0;
  color: #52667f;
}
.industry-hero-chips span,
.industry-hero-visual > img,
.industry-hero-card,
.industry-problem-card,
.industry-flow-panel,
.industry-flow-steps article {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.industry-hero-chips span:hover,
.industry-problem-card:hover,
.industry-flow-steps article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(7,20,46,.1);
}
.industry-hero-visual:hover > img {
  animation-play-state: paused;
  transform: translate3d(8px, -10px, 0) scale(1.02);
  box-shadow: 0 38px 86px rgba(7,20,46,.2);
}
.industry-hero-visual:hover .industry-hero-card {
  animation-play-state: paused;
}
@keyframes industryHeroFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.012);
  }
}
@keyframes industryCardOne {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-8px, -10px, 0);
  }
}
@keyframes industryCardTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, 10px, 0);
  }
}
@media (max-width: 1050px) {
  .industry-hero-grid,
  .industry-flow-panel {
    grid-template-columns: 1fr;
  }
  .industry-hero-visual {
    min-height: 500px;
  }
  .industry-problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .industry-hero {
    padding-top: 56px;
  }
  .industry-hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }
  .industry-hero-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }
  .industry-hero-visual > img,
  .industry-hero-card {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .industry-hero-visual > img {
    height: 230px;
  }
  .industry-problem-grid {
    grid-template-columns: 1fr;
  }
  .industry-flow-steps article {
    grid-template-columns: 1fr;
  }
  .industry-flow-steps span {
    grid-row: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .industry-hero-visual > img,
  .industry-hero-card {
    animation: none !important;
  }
  .industry-hero-chips span,
  .industry-hero-visual > img,
  .industry-hero-card,
  .industry-problem-card,
  .industry-flow-panel,
  .industry-flow-steps article {
    transition: none !important;
  }
  .industry-hero-chips span:hover,
  .industry-problem-card:hover,
  .industry-flow-steps article:hover,
  .industry-hero-visual:hover > img {
    transform: none !important;
  }
}
.content-refresh {
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 18%, #ffffff 100%);
}
.content-refresh .page-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(86px, 9vw, 126px) 0 clamp(70px, 8vw, 102px);
  background: linear-gradient(115deg, rgba(255,255,255,.94) 0%, rgba(244,249,255,.92) 46%, rgba(232,243,255,.9) 100%),
    repeating-linear-gradient(90deg, rgba(8,102,255,.055) 0 1px, transparent 1px 118px);
}
.content-refresh .page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 78%);
  pointer-events: none;
  z-index: -1;
}
.content-refresh .page-hero::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 42px;
  width: min(34vw, 430px);
  height: 70%;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.74), rgba(230,241,255,.46)),
    linear-gradient(180deg, rgba(8,102,255,.08), rgba(255,255,255,0));
  box-shadow: 0 32px 86px rgba(18, 61, 118, .11), inset 0 1px 0 rgba(255,255,255,.9);
  transform: rotate(-2deg);
  pointer-events: none;
  z-index: -1;
  animation: contentGlassFloat 8s ease-in-out infinite;
}
.content-refresh .page-hero .container {
  position: relative;
  z-index: 1;
}
.content-refresh .page-hero .breadcrumbs {
  margin-bottom: 22px;
}
.content-refresh .page-hero .eyebrow,
.content-refresh .section-heading .eyebrow,
.content-refresh .split > div > .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(8,102,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 32px rgba(18, 104, 232, .08);
  color: #0866ff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.content-refresh .page-hero h1 {
  max-width: 950px;
  color: #071735;
  line-height: .98;
  text-wrap: balance;
}
.content-refresh .page-hero .lead {
  max-width: 760px;
  margin-top: 24px;
  color: #31445f;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
}
.content-refresh .page-hero .actions {
  margin-top: 34px;
}
.content-refresh .section {
  position: relative;
  padding: clamp(76px, 7vw, 104px) 0;
}
.content-refresh .section-sm {
  padding: clamp(56px, 6vw, 82px) 0;
}
.content-refresh .surface {
  border-block: 1px solid rgba(8,102,255,.08);
  background: linear-gradient(180deg, rgba(246,250,255,.94), rgba(255,255,255,.98)),
    repeating-linear-gradient(0deg, rgba(8,102,255,.035) 0 1px, transparent 1px 96px);
}
.content-refresh .section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.content-refresh .section-heading.center {
  margin-right: auto;
  margin-left: auto;
}
.content-refresh .section-heading h2,
.content-refresh .split h2 {
  color: #071735;
  line-height: 1.05;
  text-wrap: balance;
}
.content-refresh .section-heading p,
.content-refresh .split .lead,
.content-refresh .split p {
  color: #31445f;
}
.content-refresh .grid-2,
.content-refresh .grid-3,
.content-refresh .grid-4 {
  gap: 22px;
}
.content-refresh .card,
.content-refresh .price-card,
.content-refresh .resource-card,
.content-refresh .case-card,
.content-refresh .faq-item,
.content-refresh .form-card,
.content-refresh .quote,
.content-refresh .comparison-wrap,
.content-refresh .contact-item,
.content-refresh .evolution-step,
.content-refresh .process-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8,102,255,.13);
  background: linear-gradient(150deg, rgba(255,255,255,.92), rgba(246,250,255,.78));
  box-shadow: 0 22px 60px rgba(13, 40, 82, .08), inset 0 1px 0 rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
}
.content-refresh .card::before,
.content-refresh .price-card::before,
.content-refresh .resource-card::before,
.content-refresh .case-card::before,
.content-refresh .form-card::before,
.content-refresh .quote::before,
.content-refresh .comparison-wrap::before,
.content-refresh .evolution-step::before,
.content-refresh .process-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(8,102,255,.42), rgba(255,255,255,0));
  opacity: .8;
  pointer-events: none;
}
.content-refresh .card:hover,
.content-refresh .price-card:hover,
.content-refresh .resource-card:hover,
.content-refresh .case-card:hover,
.content-refresh .faq-item:hover,
.content-refresh .contact-item:hover,
.content-refresh .evolution-step:hover,
.content-refresh .process-item:hover {
  border-color: rgba(8,102,255,.28);
  box-shadow: 0 28px 70px rgba(13, 40, 82, .12), inset 0 1px 0 rgba(255,255,255,.96);
}
.content-refresh .icon-box {
  border: 1px solid rgba(8,102,255,.12);
  background: linear-gradient(145deg, #ffffff, #eaf3ff);
  box-shadow: 0 14px 28px rgba(8,102,255,.11);
}
.content-refresh .icon-box.mint {
  background: linear-gradient(145deg, #ffffff, #e9fbf5);
}
.content-refresh .icon-box.orange {
  background: linear-gradient(145deg, #ffffff, #fff1df);
}
.content-refresh .showcase {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(241,247,255,.78));
  box-shadow: 0 28px 80px rgba(13, 40, 82, .09);
}
.content-refresh .showcase-grid,
.content-refresh .split {
  gap: clamp(34px, 5vw, 68px);
}
.content-refresh .showcase-image {
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 26px;
  box-shadow: 0 24px 64px rgba(13, 40, 82, .12);
}
.content-refresh .price-grid {
  gap: 26px;
  align-items: stretch;
}
.content-refresh .price-card {
  padding: clamp(28px, 3vw, 38px);
  border-radius: 30px;
}
.content-refresh .price-card.featured {
  border-color: rgba(8,102,255,.34);
  background: linear-gradient(155deg, rgba(255,255,255,.94), rgba(232,242,255,.9));
  box-shadow: 0 34px 86px rgba(8,102,255,.16);
}
.content-refresh .price-label,
.content-refresh .resource-meta,
.content-refresh .case-tag {
  border: 1px solid rgba(8,102,255,.14);
  background: rgba(255,255,255,.74);
  color: #0866ff;
  font-weight: 850;
}
.content-refresh .price strong {
  color: #071735;
}
.content-refresh .comparison {
  overflow: hidden;
  border-radius: 24px;
}
.content-refresh .comparison th {
  background: #071735;
  color: #fff;
}
.content-refresh .comparison td,
.content-refresh .comparison th {
  padding: 18px 20px;
}
.content-refresh .comparison tbody tr:hover {
  background: rgba(8,102,255,.05);
}
.content-refresh .resource-card,
.content-refresh .case-card {
  border-radius: 28px;
}
.content-refresh .case-top {
  border-bottom: 1px solid rgba(8,102,255,.1);
  background: rgba(255,255,255,.52);
}
.content-refresh .case-top img {
  background: transparent;
  box-shadow: 0 12px 26px rgba(13, 40, 82, .08);
}
.content-refresh .faq {
  display: grid;
  gap: 14px;
}
.content-refresh .faq-item {
  border-radius: 22px;
}
.content-refresh .faq-question {
  min-height: 64px;
  padding: 20px 24px;
}
.content-refresh .contact-grid {
  align-items: stretch;
}
.content-refresh .contact-list {
  gap: 14px;
}
.content-refresh .contact-item {
  border-radius: 22px;
}
.content-refresh .form-card {
  border-radius: 30px;
  padding: clamp(26px, 3vw, 38px);
}
.content-refresh .form-group input,
.content-refresh .form-group select,
.content-refresh .form-group textarea {
  border-color: rgba(8,102,255,.16);
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.content-refresh .form-group input:focus,
.content-refresh .form-group select:focus,
.content-refresh .form-group textarea:focus {
  border-color: rgba(8,102,255,.48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8,102,255,.1);
}
.content-refresh .evolution {
  gap: 18px;
}
.content-refresh .evolution-step {
  border-radius: 26px;
}
.content-refresh .evolution-number {
  color: #0866ff;
  background: rgba(8,102,255,.09);
}
.content-refresh .process-list {
  gap: 16px;
}
.content-refresh .process-item {
  border-radius: 24px;
}
.content-refresh .quote {
  min-height: 100%;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 30px;
  color: #071735;
}
.content-refresh .quote p {
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.45;
}
.content-refresh .legal {
  max-width: 920px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(247,250,255,.82));
  box-shadow: 0 26px 72px rgba(13, 40, 82, .08);
}
.content-refresh .legal h2 {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(8,102,255,.1);
}
.content-refresh .cta-band {
  border: 1px solid rgba(8,102,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(237,246,255,.78)),
    linear-gradient(90deg, rgba(8,102,255,.08), rgba(18, 202, 160, .07));
  color: #071735;
  box-shadow: 0 30px 80px rgba(13, 40, 82, .1);
}
.content-refresh .cta-band h2,
.content-refresh .cta-band p {
  color: #071735;
}
.content-refresh .cta-band .btn-light {
  background: #0866ff;
  color: #fff;
  box-shadow: 0 16px 34px rgba(8,102,255,.24);
}
#error-hero {
  min-height: calc(100vh - 360px);
  display: grid;
  align-items: center;
}
@keyframes contentGlassFloat {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(-2deg);
  }
  50% {
    transform: translate3d(-10px, 12px, 0) rotate(-1deg);
  }
}
@media (max-width: 980px) {
  .content-refresh .page-hero::after {
    right: -120px;
    width: 360px;
    opacity: .45;
  }
  .content-refresh .showcase {
    padding: 22px;
    border-radius: 24px;
  }
}
@media (max-width: 640px) {
  .content-refresh .page-hero {
    padding: 62px 0 58px;
  }
  .content-refresh .page-hero::after {
    display: none;
  }
  .content-refresh .section {
    padding: 58px 0;
  }
  .content-refresh .card,
  .content-refresh .price-card,
  .content-refresh .resource-card,
  .content-refresh .case-card,
  .content-refresh .form-card,
  .content-refresh .legal,
  .content-refresh .quote {
    border-radius: 22px;
  }
  .content-refresh .comparison td,
  .content-refresh .comparison th {
    padding: 14px 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .content-refresh .page-hero::after {
    animation: none !important;
  }
}
.content-refresh .page-hero h1 span,
.solutions-hero h1 span,
.industry-hero h1 span {
  color: #0866ff;
}
.content-refresh .page-hero h1 span,
.solutions-hero h1 span,
.industry-hero h1 span {
  text-wrap: balance;
}
.custom-refresh {
  background: #fff;
}
.custom-hero .solutions-hero-main {
  animation-duration: 8s;
}
.custom-base .solutions-base-card,
.custom-examples .solutions-industry-card {
  min-height: 100%;
}
.custom-special .home-special-column p {
  max-width: 29rem;
}
.custom-flow {
  background: linear-gradient(180deg, rgba(248,251,255,.95), rgba(255,255,255,.98)),
    radial-gradient(circle at 12% 18%, rgba(8,102,255,.08), transparent 28rem);
}
.custom-examples {
  background: linear-gradient(180deg, #fff, #f7fbff);
}
.custom-examples .solutions-industry-card {
  padding-top: 30px;
}
.custom-examples .solutions-industry-card span {
  position: static;
  margin-bottom: 18px;
  outline: 0;
  box-shadow: 0 16px 34px rgba(8,102,255,.14);
}
@media (max-width: 780px) {
  .custom-examples .solutions-industry-card span {
    margin-inline: auto;
  }
}
.personalization-refresh {
  overflow: hidden;
  background: #fff;
}
.personalization-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 7vw, 112px) 0 clamp(72px, 7vw, 108px);
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(247,251,255,.9) 44%, rgba(226,239,255,.72) 100%),
    url("../imagenes/soporte-local-punto-venta-icarus-tools.jpg") center / cover no-repeat;
}
.personalization-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.72));
  pointer-events: none;
}
.personalization-hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: -42px;
  height: 118px;
  border-top: 8px solid #0866ff;
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
  background: #fff;
  transform: rotate(-1.4deg);
  transform-origin: center;
  box-shadow: 0 -18px 34px rgba(8,102,255,.08);
}
.personalization-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
}
.personalization-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  color: #07142e;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  line-height: .95;
  letter-spacing: 0;
  text-wrap: balance;
}
.personalization-hero-copy h1 span,
.personalization-refresh .home-section-title h2 span {
  color: #0866ff;
}
.personalization-hero-copy .lead {
  max-width: 620px;
  color: #142642;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.65;
}
.personalization-hero-visual {
  position: relative;
  min-height: clamp(390px, 42vw, 560px);
}
.personalization-glass-card {
  position: absolute;
  inset: 8% 6% 8% 8%;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.58), rgba(225,239,255,.34)),
    radial-gradient(circle at 72% 34%, rgba(8,102,255,.2), transparent 18rem);
  box-shadow: 0 30px 90px rgba(12, 36, 74, .16), inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
}
.personalization-pos {
  position: absolute;
  z-index: 2;
  left: -2%;
  bottom: 6%;
  width: min(106%, 760px);
  height: auto;
  filter: drop-shadow(0 34px 42px rgba(7,20,46,.24));
  animation: personalizationFloat 7s ease-in-out infinite;
}
.personalization-float {
  position: absolute;
  z-index: 3;
  min-width: 174px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 40px rgba(12, 36, 74, .14);
  backdrop-filter: blur(16px);
}
.personalization-float span {
  display: block;
  margin-bottom: 4px;
  color: #4b5d78;
  font-size: .74rem;
  font-weight: 850;
  text-transform: uppercase;
}
.personalization-float strong {
  color: #07142e;
  font-size: 1rem;
}
.personalization-float--one {
  top: 16%;
  right: 4%;
  animation: floatBadgeOne 6s ease-in-out infinite;
}
.personalization-float--two {
  left: 4%;
  bottom: 12%;
  animation: floatBadgeTwo 7s ease-in-out infinite;
}
.personalization-value {
  padding-top: clamp(76px, 8vw, 112px);
  background: #fff;
}
.personalization-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.personalization-special {
  background: linear-gradient(180deg, #f7fbff, #fff);
}
.personalization-flow {
  background: radial-gradient(circle at 82% 12%, rgba(8,102,255,.08), transparent 26rem),
    linear-gradient(180deg, #fff, #f8fbff);
}
.personalization-examples {
  background: #fff;
}
.personalization-examples .solutions-industry-card {
  padding-top: 30px;
}
.personalization-examples .solutions-industry-card span {
  position: static;
  margin-bottom: 18px;
  outline: 0;
  box-shadow: 0 16px 34px rgba(8,102,255,.14);
}
@keyframes personalizationFloat {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(-.6deg);
  }
  50% {
    transform: translate3d(0,-12px,0) rotate(.4deg);
  }
}
@keyframes floatBadgeOne {
  0%, 100% {
    transform: translate3d(0,0,0);
  }
  50% {
    transform: translate3d(-8px, 10px, 0);
  }
}
@keyframes floatBadgeTwo {
  0%, 100% {
    transform: translate3d(0,0,0);
  }
  50% {
    transform: translate3d(8px, -10px, 0);
  }
}
@media (max-width: 1080px) {
  .personalization-hero-grid {
    grid-template-columns: 1fr;
  }
  .personalization-hero-visual {
    min-height: 470px;
  }
  .personalization-pos {
    left: 50%;
    width: min(94vw, 720px);
    transform: translateX(-50%);
  }
  .personalization-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  @keyframes personalizationFloat {
    0%, 100% {
      transform: translate3d(-50%,0,0) rotate(-.6deg);
    }
    50% {
      transform: translate3d(-50%,-12px,0) rotate(.4deg);
    }
  }
}
@media (max-width: 680px) {
  .personalization-hero {
    padding-top: 58px;
  }
  .personalization-hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }
  .personalization-hero-visual {
    min-height: 360px;
  }
  .personalization-glass-card {
    inset: 8% 0 7%;
    border-radius: 24px;
  }
  .personalization-float {
    min-width: 138px;
    padding: 11px 12px;
  }
  .personalization-float--one {
    top: 10%;
    right: 0;
  }
  .personalization-float--two {
    left: 0;
    bottom: 6%;
  }
  .personalization-value-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .personalization-pos,
  .personalization-float--one,
  .personalization-float--two {
    animation: none !important;
  }
}
.personalization-page .home-hero {
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(244,249,255,.94) 45%, rgba(238,246,255,.84) 100%),
    url("../imagenes/foto-caja-cliente.jpg") center right / cover no-repeat;
}
.personalization-page .home-hero .lead {
  max-width: 650px;
}
.personalization-page .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.personalization-page .home-value {
  padding-top: 54px;
}
.personalization-page .platform-showcase__panel {
  min-height: 420px;
}
.personalization-page .home-special {
  background: linear-gradient(180deg, #fff, #f7fbff 100%);
}
.personalization-page .personalization-hero-visual {
  position: relative;
  min-height: 560px;
}
.personalization-workflow-scene {
  position: relative;
  min-height: 560px;
  margin: 0;
  isolation: isolate;
}
.personalization-workflow-scene .liquid-glass-main {
  z-index: 1;
  inset: 58px 28px 96px;
  border-radius: 38px;
}
.personalization-workflow-scene::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 92px 68px 124px 70px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.44), rgba(255,255,255,.12)),
    radial-gradient(circle at 72% 22%, rgba(8,102,255,.16), transparent 16rem);
  border: 1px solid rgba(255,255,255,.54);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58);
  backdrop-filter: blur(10px);
}
.personalization-shot {
  position: absolute;
  z-index: 3;
  display: block;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 28px 48px rgba(7,20,46,.18);
}
.personalization-shot--main {
  left: 4%;
  top: 58px;
  width: min(74%, 540px);
  aspect-ratio: 900 / 488;
  transform: rotate(-2deg);
  animation: personalizationShotMain 7s ease-in-out infinite;
}
.personalization-shot--report {
  right: 2%;
  top: 148px;
  width: min(44%, 320px);
  aspect-ratio: 1.35;
  transform: rotate(3deg);
  animation: personalizationShotReport 6.4s ease-in-out infinite;
}
.personalization-shot--orders {
  left: 18%;
  bottom: 86px;
  width: min(42%, 300px);
  aspect-ratio: 1.35;
  transform: rotate(2deg);
  animation: personalizationShotOrders 6.8s ease-in-out infinite;
}
.personalization-workflow-scene figcaption {
  position: absolute;
  z-index: 5;
  right: clamp(16px, 3vw, 36px);
  bottom: 18px;
  max-width: 430px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 16px;
  background: rgba(8,18,38,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 18px 42px rgba(7,20,46,.18);
  color: #fff;
  font-size: .95rem;
  font-weight: 850;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}
@keyframes personalizationShotMain {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0,-10px,0) rotate(-1deg);
  }
}
@keyframes personalizationShotReport {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(3deg);
  }
  50% {
    transform: translate3d(-8px,8px,0) rotate(2deg);
  }
}
@keyframes personalizationShotOrders {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(2deg);
  }
  50% {
    transform: translate3d(10px,-8px,0) rotate(3deg);
  }
}
@media (max-width: 1120px) {
  .personalization-page .personalization-hero-visual,
  .personalization-workflow-scene {
    min-height: 520px;
  }
}
@media (max-width: 760px) {
  .personalization-page .personalization-hero-visual,
  .personalization-workflow-scene {
    min-height: 440px;
  }
  .personalization-workflow-scene .liquid-glass-main {
    inset: 34px 0 92px;
    border-radius: 26px;
  }
  .personalization-workflow-scene::before {
    inset: 58px 22px 120px;
    border-radius: 22px;
  }
  .personalization-shot--main {
    left: 0;
    top: 52px;
    width: 82%;
  }
  .personalization-shot--report {
    right: 0;
    top: 146px;
    width: 52%;
  }
  .personalization-shot--orders {
    left: 8%;
    bottom: 96px;
    width: 50%;
  }
  .personalization-workflow-scene figcaption {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    font-size: .86rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .personalization-shot--main,
  .personalization-shot--report,
  .personalization-shot--orders {
    animation: none !important;
  }
}
.personalization-process-scene {
  position: relative;
  min-height: 560px;
  margin: 0;
  isolation: isolate;
}
.personalization-process-scene .liquid-glass-main {
  z-index: 1;
  inset: 58px 22px 96px;
  border-radius: 38px;
}
.personalization-process-panel {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 52px;
  width: min(88%, 620px);
  min-height: 386px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255,255,255,.9), rgba(239,247,255,.72));
  box-shadow: 0 34px 54px rgba(7,20,46,.18), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) rotate(-1.2deg);
  animation: personalizationPanelFloat 7s ease-in-out infinite;
}
.process-panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(8,102,255,.1);
  background: rgba(255,255,255,.72);
}
.process-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9fb7d8;
}
.process-panel-top span:nth-child(2) {
  background: #0866ff;
}
.process-panel-top span:nth-child(3) {
  background: #31c7a0;
}
.process-panel-top strong {
  margin-left: auto;
  color: #50617a;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-panel-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.15fr .85fr;
  padding: 22px;
}
.process-panel-main {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 24px;
  background: radial-gradient(circle at 78% 22%, rgba(8,102,255,.24), transparent 13rem),
    linear-gradient(145deg, #071735, #12345f);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.process-kicker {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #bcd7ff;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.process-panel-main h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}
.process-panel-main p {
  max-width: 270px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}
.process-flow-line {
  display: grid;
  align-items: center;
  gap: 8px;
  grid-template-columns: 1fr 1fr 1fr;
}
.process-flow-line span {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0866ff, #89c2ff);
  box-shadow: 0 0 18px rgba(8,102,255,.45);
}
.process-panel-side {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
}
.process-panel-side i {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 12px;
  background: rgba(8,102,255,.1);
  color: #0866ff;
}
.process-panel-side strong {
  color: #071735;
  font-size: .98rem;
}
.process-panel-side small {
  margin-top: 4px;
  color: #50617a;
  font-size: .78rem;
}
.personalization-process-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 36px rgba(7,20,46,.12);
  backdrop-filter: blur(14px);
}
.personalization-process-card span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #0866ff;
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
}
.personalization-process-card strong {
  color: #071735;
  font-size: .95rem;
}
.personalization-process-card--one {
  left: 3%;
  top: 124px;
  animation: floatBadgeOne 6s ease-in-out infinite;
}
.personalization-process-card--two {
  right: 4%;
  bottom: 132px;
  animation: floatBadgeTwo 6.8s ease-in-out infinite;
}
.personalization-process-scene figcaption {
  position: absolute;
  z-index: 5;
  left: clamp(18px, 5vw, 58px);
  right: clamp(18px, 5vw, 58px);
  bottom: 18px;
  max-width: 620px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 16px;
  background: rgba(8,18,38,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 18px 42px rgba(7,20,46,.18);
  color: #fff;
  font-size: .95rem;
  font-weight: 850;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}
@keyframes personalizationPanelFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(-.4deg);
  }
}
@media (max-width: 1120px) {
  .personalization-page .personalization-hero-visual,
  .personalization-process-scene {
    min-height: 520px;
  }
}
@media (max-width: 760px) {
  .personalization-page .personalization-hero-visual,
  .personalization-process-scene {
    min-height: 500px;
  }
  .personalization-process-scene .liquid-glass-main {
    inset: 34px 0 100px;
    border-radius: 26px;
  }
  .personalization-process-panel {
    top: 38px;
    width: 100%;
    min-height: 360px;
    border-radius: 24px;
  }
  .process-panel-grid {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }
  .process-panel-main {
    grid-column: 1 / -1;
    min-height: 170px;
    padding: 18px;
  }
  .process-panel-side {
    min-height: 96px;
    padding: 12px;
  }
  .process-panel-side i {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }
  .personalization-process-card {
    display: none;
  }
  .personalization-process-scene figcaption {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    font-size: .86rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .personalization-process-panel,
  .personalization-process-card--one,
  .personalization-process-card--two {
    animation: none !important;
  }
}
.personalization-people-scene {
  position: relative;
  min-height: 560px;
  margin: 0;
  isolation: isolate;
}
.personalization-people-scene .liquid-glass-main {
  z-index: 1;
  inset: 56px 18px 96px;
  border-radius: 38px;
}
.personalization-people-main,
.personalization-people-small {
  position: absolute;
  z-index: 3;
  display: block;
  border: 1px solid rgba(255,255,255,.72);
  object-fit: cover;
  box-shadow: 0 30px 54px rgba(7,20,46,.18);
}
.personalization-people-main {
  left: 5%;
  top: 54px;
  width: min(78%, 560px);
  height: 360px;
  border-radius: 30px;
  animation: personalizationPeopleMain 7s ease-in-out infinite;
}
.personalization-people-small {
  right: 2%;
  bottom: 94px;
  width: min(42%, 300px);
  height: 205px;
  border-radius: 24px;
  animation: personalizationPeopleSmall 6.4s ease-in-out infinite;
}
.personalization-people-card {
  position: absolute;
  z-index: 4;
  left: 8%;
  bottom: 98px;
  max-width: 310px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 17px;
  background: rgba(8,18,38,.64);
  color: #fff;
  box-shadow: 0 18px 42px rgba(7,20,46,.2), inset 0 1px 0 rgba(255,255,255,.24);
  backdrop-filter: blur(14px);
}
.personalization-people-card span {
  display: block;
  margin-bottom: 5px;
  color: #9dccff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.personalization-people-card strong {
  color: #fff;
  font-size: .98rem;
  line-height: 1.35;
}
.personalization-people-scene figcaption {
  position: absolute;
  z-index: 5;
  right: clamp(14px, 3vw, 34px);
  bottom: 18px;
  max-width: 430px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 42px rgba(7,20,46,.14), inset 0 1px 0 rgba(255,255,255,.55);
  color: #10233d;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}
@keyframes personalizationPeopleMain {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(-1.2deg);
  }
  50% {
    transform: translate3d(0,-10px,0) rotate(-.5deg);
  }
}
@keyframes personalizationPeopleSmall {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(2deg);
  }
  50% {
    transform: translate3d(-8px,8px,0) rotate(1deg);
  }
}
@media (max-width: 1120px) {
  .personalization-page .personalization-hero-visual,
  .personalization-people-scene {
    min-height: 520px;
  }
  .personalization-people-main {
    width: min(82%, 620px);
  }
}
@media (max-width: 760px) {
  .personalization-page .personalization-hero-visual,
  .personalization-people-scene {
    min-height: 470px;
  }
  .personalization-people-scene .liquid-glass-main {
    inset: 34px 0 98px;
    border-radius: 26px;
  }
  .personalization-people-main {
    left: 0;
    top: 44px;
    width: 88%;
    height: 275px;
    border-radius: 24px;
  }
  .personalization-people-small {
    right: 0;
    bottom: 96px;
    width: 48%;
    height: 145px;
    border-radius: 18px;
  }
  .personalization-people-card {
    left: 0;
    bottom: 92px;
    max-width: 250px;
    padding: 12px 14px;
  }
  .personalization-people-scene figcaption {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    font-size: .84rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .personalization-people-main,
  .personalization-people-small {
    animation: none !important;
  }
}
.personalization-people-scene--single .liquid-glass-main {
  inset: 54px 20px 92px;
}
.personalization-people-scene--single .personalization-people-main {
  left: 50%;
  top: 60px;
  width: min(86%, 620px);
  height: 390px;
  transform: translateX(-50%) rotate(-1deg);
}
.personalization-people-scene--single .personalization-people-card,
.personalization-people-scene--single .personalization-people-small {
  display: none;
}
.personalization-people-scene--single figcaption {
  left: clamp(22px, 7vw, 78px);
  right: clamp(22px, 7vw, 78px);
  max-width: none;
}
@keyframes personalizationPeopleMainSingle {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(-.4deg);
  }
}
.personalization-people-scene--single .personalization-people-main {
  animation: personalizationPeopleMainSingle 7s ease-in-out infinite;
}
@media (max-width: 760px) {
  .personalization-people-scene--single .liquid-glass-main {
    inset: 34px 0 96px;
  }
  .personalization-people-scene--single .personalization-people-main {
    left: 50%;
    top: 48px;
    width: 94%;
    height: 300px;
  }
  .personalization-people-scene--single figcaption {
    left: 0;
    right: 0;
  }
}
.personalization-people-scene--single .personalization-people-main {
  z-index: 3;
}
.personalization-people-scene--single figcaption {
  z-index: 5;
  left: 50%;
  right: auto;
  bottom: 104px;
  width: min(74%, 520px);
  max-width: 520px;
  transform: translateX(-50%);
  background: rgba(8,18,38,.68);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 18px 42px rgba(7,20,46,.2);
}
@media (max-width: 760px) {
  .personalization-people-scene--single figcaption {
    left: 50%;
    right: auto;
    bottom: 108px;
    width: calc(100% - 28px);
    max-width: none;
    transform: translateX(-50%);
  }
}
.personalization-people-scene--single figcaption {
  display: none;
}
.personalization-page .personalization-hero-tools {
  position: relative;
  z-index: 4;
  justify-content: center;
  margin: -64px auto 0;
  max-width: 720px;
}
.personalization-page .personalization-hero-visual {
  padding-bottom: 34px;
}
@media (max-width: 1120px) {
  .personalization-page .personalization-hero-tools {
    margin-top: -44px;
  }
}
@media (max-width: 760px) {
  .personalization-page .personalization-hero-tools {
    justify-content: flex-start;
    margin-top: -28px;
  }
}
.pricing-page .pricing-hero {
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(243,248,255,.94) 46%, rgba(234,244,255,.82) 100%),
    url("../imagenes/foto-caja-cliente.jpg") center right / cover no-repeat;
}
.pricing-hero-visual {
  min-height: 560px;
}
.pricing-scene {
  position: relative;
  width: min(100%, 760px);
  min-height: 540px;
  margin: 0;
  isolation: isolate;
}
.pricing-glass {
  position: absolute;
  z-index: 1;
  inset: 92px 42px 94px 120px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.22)),
    radial-gradient(circle at 78% 18%, rgba(8,102,255,.18), transparent 16rem);
  border: 1px solid rgba(255,255,255,.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 28px 54px rgba(7,20,46,.12);
  backdrop-filter: blur(18px);
}
.pricing-pos-image {
  position: absolute;
  z-index: 3;
  left: -2%;
  top: 92px;
  width: min(86%, 650px);
  height: auto;
  filter: drop-shadow(0 34px 42px rgba(7,20,46,.23));
  animation: pricingFloat 7s ease-in-out infinite;
}
.pricing-hero-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 18px;
  background: rgba(8, 18, 38, .72);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 20px 42px rgba(7,20,46,.18);
  backdrop-filter: blur(14px);
}
.pricing-hero-card--main {
  right: 5%;
  bottom: 118px;
  min-width: 190px;
  padding: 18px 20px;
}
.pricing-hero-card--main span,
.pricing-hero-card--main small {
  display: block;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}
.pricing-hero-card--main strong {
  display: block;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 2.75rem;
  line-height: 1;
}
.pricing-hero-card--mini {
  right: 0;
  top: 128px;
  display: flex;
  max-width: 250px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.pricing-hero-card--mini i {
  color: #7ed7ff;
}
.pricing-hero-card--mini strong {
  color: #fff;
  font-size: .95rem;
  line-height: 1.25;
}
.pricing-licenses,
.pricing-services,
.pricing-faq {
  position: relative;
  padding: clamp(82px, 8vw, 118px) 0;
  overflow: hidden;
}
.pricing-licenses {
  background: #fff;
}
.pricing-services {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.pricing-license-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pricing-license-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.9));
  box-shadow: 0 18px 42px rgba(7,20,46,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pricing-license-card:hover,
.pricing-license-card:focus-within {
  border-color: rgba(8,102,255,.34);
  box-shadow: 0 24px 54px rgba(7,20,46,.11);
  transform: translateY(-6px);
}
.pricing-license-card--featured {
  background: linear-gradient(180deg, rgba(237,246,255,.98), rgba(255,255,255,.94));
  border-color: rgba(8,102,255,.28);
}
.pricing-license-card--annual {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,249,255,.94));
}
.pricing-license-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.pricing-license-head > i {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 15px;
  color: #0866ff;
  background: rgba(8,102,255,.1);
  font-size: 1.1rem;
}
.pricing-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(8,102,255,.18);
  border-radius: 999px;
  color: #0866ff;
  background: rgba(255,255,255,.75);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pricing-license-card h3,
.pricing-service-card h3,
.pricing-faq-item h3 {
  color: #07142e;
}
.pricing-license-card p {
  margin-bottom: 0;
}
.pricing-amount {
  margin: 24px 0 16px;
}
.pricing-amount strong {
  display: block;
  color: #07142e;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.05rem, 3vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0;
}
.pricing-amount span {
  color: #50617a;
  font-weight: 800;
}
.pricing-license-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.pricing-license-card li {
  position: relative;
  padding-left: 20px;
  color: #3d506b;
  font-size: .95rem;
  line-height: 1.45;
}
.pricing-license-card li::before {
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0866ff;
  content: "";
}
.pricing-note {
  margin: 0 0 22px;
  color: #0866ff;
  font-weight: 900;
}
.pricing-license-card .text-link {
  margin-top: auto;
}
.pricing-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 38px rgba(7,20,46,.05);
}
.pricing-includes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #07142e;
  background: #f5f9ff;
  font-weight: 850;
}
.pricing-includes i {
  color: #0866ff;
}
.pricing-service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pricing-service-card {
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  padding: 24px;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 34px rgba(7,20,46,.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pricing-service-card:hover,
.pricing-service-card:focus-within {
  border-color: rgba(8,102,255,.32);
  box-shadow: 0 22px 48px rgba(7,20,46,.1);
  transform: translateY(-5px);
}
.pricing-service-card > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #0866ff;
  background: rgba(8,102,255,.1);
  font-size: 1.22rem;
}
.pricing-service-card:nth-child(2n) > i {
  color: #108070;
  background: rgba(64,176,160,.12);
}
.pricing-service-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}
.pricing-service-card p {
  margin-bottom: 12px;
  color: #40516b;
}
.pricing-service-card strong,
.pricing-service-card small {
  display: block;
}
.pricing-service-card strong {
  color: #07142e;
  font-weight: 900;
}
.pricing-service-card small {
  margin-top: 5px;
  color: #64748b;
  font-weight: 750;
}
.pricing-service-card--quote {
  background: radial-gradient(circle at 88% 10%, rgba(8,102,255,.1), transparent 15rem),
    rgba(255,255,255,.88);
}
.pricing-equipment {
  padding: 70px 0;
  background: #fff;
}
.pricing-equipment-band {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 1fr auto;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(8,102,255,.16);
  border-radius: 28px;
  background: radial-gradient(circle at 90% 18%, rgba(64,176,160,.13), transparent 17rem),
    linear-gradient(135deg, #f8fbff, #fff);
  box-shadow: 0 22px 52px rgba(7,20,46,.08);
}
.pricing-equipment-copy h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: #07142e;
  font-size: clamp(2rem, 4vw, 3.45rem);
}
.pricing-equipment-copy h2 span {
  color: #0866ff;
}
.pricing-equipment-copy p {
  max-width: 720px;
  margin-bottom: 20px;
}
.pricing-equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pricing-equipment-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: #07142e;
  font-weight: 850;
}
.pricing-equipment-list i {
  color: #0866ff;
}
.pricing-faq {
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.pricing-faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pricing-faq-item {
  min-height: 100%;
  padding: 24px;
  border-left: 3px solid #0866ff;
  background: #fff;
  box-shadow: 0 16px 36px rgba(7,20,46,.06);
}
.pricing-faq-item h3 {
  font-size: 1.08rem;
}
.pricing-faq-item p {
  margin-bottom: 0;
  color: #40516b;
}
@keyframes pricingFloat {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(-.8deg);
  }
  50% {
    transform: translate3d(0,-11px,0) rotate(-.2deg);
  }
}
@media (max-width: 1120px) {
  .pricing-license-grid,
  .pricing-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-hero-visual,
  .pricing-scene {
    min-height: 500px;
  }
  .pricing-glass {
    inset: 80px 20px 92px 74px;
  }
  .pricing-pos-image {
    left: 0;
    width: min(84%, 620px);
  }
}
@media (max-width: 760px) {
  .pricing-hero-visual,
  .pricing-scene {
    min-height: 430px;
  }
  .pricing-glass {
    inset: 54px 0 86px 36px;
    border-radius: 26px;
  }
  .pricing-pos-image {
    top: 70px;
    width: 92%;
  }
  .pricing-hero-card--main {
    right: 0;
    bottom: 64px;
    min-width: 160px;
    padding: 14px 16px;
  }
  .pricing-hero-card--main strong {
    font-size: 2.15rem;
  }
  .pricing-hero-card--mini {
    display: none;
  }
  .pricing-license-grid,
  .pricing-service-grid,
  .pricing-faq-grid {
    grid-template-columns: 1fr;
  }
  .pricing-license-card,
  .pricing-service-card,
  .pricing-faq-item {
    border-radius: 20px;
  }
  .pricing-includes span,
  .pricing-equipment-list span {
    width: 100%;
    justify-content: center;
  }
  .pricing-equipment-band {
    grid-template-columns: 1fr;
  }
  .pricing-equipment-band .btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-pos-image {
    animation: none !important;
  }
}
.pricing-page .pricing-license-grid,
.pricing-page .pricing-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 760px) {
  .pricing-page .pricing-license-grid,
  .pricing-page .pricing-faq-grid {
    grid-template-columns: 1fr;
  }
}
.product-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 54px;
}
.product-hero-visual > img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(9, 29, 52, .14);
}
.product-hero-chips {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  max-width: calc(100% - 32px);
  margin-top: 0;
  transform: translate(-50%, 50%);
}
.product-hero-chips span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid #dce6ef;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 30px rgba(9, 29, 52, .10);
  font-size: .95rem;
  font-weight: 800;
  white-space: nowrap;
}
.product-hero-chips span i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(0, 107, 255, .16);
  border-radius: 50%;
  color: #006bff;
  background: rgba(0, 107, 255, .09);
  font-size: .9rem;
}
@media (max-width: 991px) {
  .product-hero-chips {
    gap: 10px;
  }
  .product-hero-chips span {
    padding: 10px 16px;
    font-size: .88rem;
  }
}
@media (max-width: 767px) {
  .product-hero-visual {
    padding-bottom: 18px;
  }
  .product-hero-chips {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    transform: none;
  }
}
.product-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}
.product-hero-chips {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 58px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  max-width: calc(100% - 32px);
  margin-top: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .product-hero-visual {
    padding-bottom: 0;
  }
  .product-hero-chips {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    transform: none;
  }
}
.resources-page .resources-hero .personalization-people-scene--single .personalization-people-main {
  content: url("../imagenes/hero-recursos-punto-venta.png");
  object-fit: cover;
  object-position: center;
}
.resources-page #recursos-guias {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.resources-page #recursos-guias::after {
  height: 14px;
  background: #f3f8ff;
}
.resources-page #recursos-guias .home-section-title {
  margin-bottom: 52px;
}
.resources-page #recursos-guias .home-special-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 0;
}
.resources-page #recursos-guias .home-special-column {
  position: relative;
  min-height: 285px;
  padding: 4px clamp(22px, 2.6vw, 34px) 0;
  border: 0;
  border-left: 2px solid rgba(8, 102, 255, .9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translateY(0);
  transition: transform .28s ease;
}
.resources-page #recursos-guias .home-special-column::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0866ff, #5aa8ff);
  box-shadow: 0 0 18px rgba(8, 102, 255, .36);
  transition: height .28s ease, box-shadow .28s ease;
}
.resources-page #recursos-guias .home-special-column::after {
  content: "";
  position: absolute;
  inset: -18px 12px -18px 0;
  z-index: -1;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(8, 102, 255, .075), rgba(243, 248, 255, .28));
  opacity: 0;
  transform: scale(.96);
  transition: opacity .28s ease, transform .28s ease;
}
.resources-page #recursos-guias .home-special-column:hover {
  transform: translateY(-6px);
}
.resources-page #recursos-guias .home-special-column:hover::before {
  height: 112px;
  box-shadow: 0 0 24px rgba(8, 102, 255, .42);
}
.resources-page #recursos-guias .home-special-column:hover::after {
  opacity: 1;
  transform: scale(1);
}
.resources-page #recursos-guias .home-special-column > i {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(8, 102, 255, .18);
  border-radius: 18px;
  color: #0866ff;
  background: radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .95), transparent 34%),
    linear-gradient(135deg, #edf5ff, #ffffff);
  box-shadow: 0 14px 30px rgba(8, 102, 255, .12), inset 0 0 0 6px rgba(8, 102, 255, .04);
  font-size: 1.48rem;
  transition: transform .28s ease, box-shadow .28s ease;
}
.resources-page #recursos-guias .home-special-column:hover > i {
  box-shadow: 0 18px 38px rgba(8, 102, 255, .18), inset 0 0 0 6px rgba(8, 102, 255, .05);
  transform: translateY(-3px) scale(1.03);
}
.resources-page #recursos-guias .home-special-column h3 {
  max-width: 300px;
  margin: 0 0 12px;
  color: #07142e;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.22;
  font-weight: 900;
}
.resources-page #recursos-guias .home-special-column p {
  max-width: 315px;
  margin: 0 0 20px;
  color: #344861;
  font-size: .96rem;
  line-height: 1.58;
}
.resources-page #recursos-guias .home-special-column .text-link {
  width: fit-content;
  margin-top: auto;
  color: #0866ff;
}
.resources-page #recursos-guias .home-special-column .text-link i {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font-size: .9em;
  transition: transform .2s ease;
}
.resources-page #recursos-guias .home-special-column .text-link:hover i {
  transform: translateX(4px);
}
.resources-page #recursos-guias .home-special-columns.reveal.visible .home-special-column,
.resources-page #recursos-guias .home-special-columns.visible .home-special-column {
  animation: recursosGuideColumnIn .58s cubic-bezier(.2, .8, .2, 1) both;
}
.resources-page #recursos-guias .home-special-columns.visible .home-special-column:nth-child(2),
.resources-page #recursos-guias .home-special-columns.reveal.visible .home-special-column:nth-child(2) {
  animation-delay: .06s;
}
.resources-page #recursos-guias .home-special-columns.visible .home-special-column:nth-child(3),
.resources-page #recursos-guias .home-special-columns.reveal.visible .home-special-column:nth-child(3) {
  animation-delay: .12s;
}
.resources-page #recursos-guias .home-special-columns.visible .home-special-column:nth-child(4),
.resources-page #recursos-guias .home-special-columns.reveal.visible .home-special-column:nth-child(4) {
  animation-delay: .18s;
}
.resources-page #recursos-guias .home-special-columns.visible .home-special-column:nth-child(5),
.resources-page #recursos-guias .home-special-columns.reveal.visible .home-special-column:nth-child(5) {
  animation-delay: .24s;
}
.resources-page #recursos-guias .home-special-columns.visible .home-special-column:nth-child(6),
.resources-page #recursos-guias .home-special-columns.reveal.visible .home-special-column:nth-child(6) {
  animation-delay: .30s;
}
@keyframes recursosGuideColumnIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .resources-page #recursos-guias .home-special-column,
  .resources-page #recursos-guias .home-special-column::before,
  .resources-page #recursos-guias .home-special-column::after,
  .resources-page #recursos-guias .home-special-column > i {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 980px) {
  .resources-page #recursos-guias .home-special-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 0;
  }
}
@media (max-width: 620px) {
  .resources-page #recursos-guias .home-special-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .resources-page #recursos-guias .home-special-column {
    min-height: auto;
    padding-right: 10px;
  }
  .resources-page #recursos-guias .home-special-column h3,
  .resources-page #recursos-guias .home-special-column p {
    max-width: none;
  }
}
.resources-page .resources-help-path,
.content-refresh .resources-help-path,
.industry-refresh .resources-help-path {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: radial-gradient(circle at 10% 10%, rgba(32, 80, 128, .10), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(80, 144, 192, .12), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}
.resources-help-path::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(32, 80, 128, .08);
  border-radius: 34px;
  pointer-events: none;
  content: "";
}
.resources-help-intro {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 42px;
}
.resources-help-intro h2 {
  max-width: 780px;
  margin-bottom: 14px;
  color: var(--navy);
}
.resources-help-intro p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.05rem;
}
.resources-help-path-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.resources-help-path-grid::before {
  position: absolute;
  z-index: 0;
  top: 36px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(32, 80, 128, .08), rgba(32, 80, 128, .45), rgba(80, 144, 192, .12));
  content: "";
}
.resources-help-step {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(32, 80, 128, .14);
  border-radius: 26px;
  color: inherit;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 40px rgba(9, 29, 52, .08);
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.resources-help-step::before {
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(32, 80, 128, .075);
  content: "";
  filter: blur(2px);
  right: -58px;
  top: -62px;
  transition: transform .28s ease, opacity .28s ease;
}
.resources-help-step::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.35), transparent 40%);
  content: "";
  opacity: 0;
  transition: opacity .25s ease;
}
.resources-help-step:hover {
  border-color: rgba(32, 80, 128, .38);
  box-shadow: 0 24px 58px rgba(9, 29, 52, .13);
  transform: translateY(-6px);
}
.resources-help-step:hover::before {
  opacity: 1;
  transform: scale(1.08);
}
.resources-help-step:hover::after {
  opacity: 1;
}
.resources-help-step--featured {
  color: var(--white);
  border-color: rgba(255, 255, 255, .14);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue) 62%, var(--brand-sky));
  box-shadow: 0 24px 68px rgba(18, 58, 95, .25);
}
.resources-help-step--featured::before {
  background: rgba(255, 255, 255, .12);
}
.resources-help-number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #edf4ff;
  font-family: "Manrope", sans-serif;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.resources-help-step--featured .resources-help-number {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
}
.resources-help-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  color: var(--blue);
  background: #edf4ff;
  font-size: 1.45rem;
  box-shadow: inset 0 0 0 1px rgba(32, 80, 128, .08);
}
.resources-help-step--featured .resources-help-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.resources-help-step h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.28rem;
}
.resources-help-step p {
  margin-bottom: 24px;
  color: var(--muted);
}
.resources-help-step--featured h3,
.resources-help-step--featured p {
  color: var(--white);
}
.resources-help-step--featured p {
  opacity: .78;
}
.resources-help-step strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--blue);
  font-size: .92rem;
}
.resources-help-step--featured strong {
  color: var(--white);
}
.resources-help-step strong i {
  font-size: .85rem;
  transition: transform .2s ease;
}
.resources-help-step:hover strong i {
  transform: translateX(4px);
}
.resources-help-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(32, 80, 128, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 38px rgba(9, 29, 52, .07);
  backdrop-filter: blur(14px);
}
.resources-help-time {
  display: flex;
  align-items: center;
  gap: 14px;
}
.resources-help-time > i {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: #edf4ff;
}
.resources-help-time strong,
.resources-help-time span {
  display: block;
}
.resources-help-time strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.resources-help-time span {
  color: var(--muted);
  font-size: .92rem;
}
.resources-help-step.reveal.visible:nth-child(1) {
  transition-delay: .04s;
}
.resources-help-step.reveal.visible:nth-child(2) {
  transition-delay: .11s;
}
.resources-help-step.reveal.visible:nth-child(3) {
  transition-delay: .18s;
}
@media (max-width: 980px) {
  .resources-help-path-grid {
    grid-template-columns: 1fr;
  }
  .resources-help-path-grid::before {
    display: none;
  }
  .resources-help-step {
    min-height: auto;
  }
  .resources-help-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .resources-page .resources-help-path,
  .content-refresh .resources-help-path,
  .industry-refresh .resources-help-path {
    padding: 72px 0;
  }
  .resources-help-path::before {
    inset: 10px;
    border-radius: 24px;
  }
  .resources-help-step {
    padding: 24px;
    border-radius: 22px;
  }
  .resources-help-footer {
    padding: 18px;
  }
  .resources-help-footer .btn {
    width: 100%;
  }
}
.resources-page .resources-help-path,
.content-refresh .resources-help-path,
.industry-refresh .resources-help-path {
  background: radial-gradient(circle at 8% 8%, rgba(8, 102, 255, .08), transparent 27rem),
    radial-gradient(circle at 92% 14%, rgba(8, 102, 255, .045), transparent 30rem),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}
.resources-help-path::before {
  border-color: rgba(8, 102, 255, .08);
}
.resources-help-intro {
  max-width: 980px;
  margin-bottom: 46px;
  padding: 28px 24px 10px 0;
}
.resources-help-intro .home-section-kicker {
  color: #0866ff;
  border-color: rgba(8, 102, 255, .16);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 34px rgba(7, 20, 46, .06);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.resources-help-intro h2 {
  position: relative;
  max-width: 980px;
  margin: 0;
  padding-bottom: 18px;
  color: #07142e;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.resources-help-intro h2::after {
  display: block;
  width: 120px;
  height: 5px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8,102,255,0), #0866ff 24%, #0866ff 76%, rgba(8,102,255,0));
  content: "";
}
.resources-help-intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #243a57;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
  line-height: 1.6;
}
.resources-help-path-grid::before {
  background: linear-gradient(90deg, rgba(8, 102, 255, .06), rgba(8, 102, 255, .42), rgba(8, 102, 255, .08));
}
.resources-help-step {
  border-color: rgba(8, 102, 255, .12);
}
.resources-help-step::before {
  background: rgba(8, 102, 255, .07);
}
.resources-help-step:hover {
  border-color: rgba(8, 102, 255, .34);
}
.resources-help-number,
.resources-help-icon,
.resources-help-step strong,
.resources-help-time > i {
  color: #0866ff;
}
.resources-help-number,
.resources-help-icon,
.resources-help-time > i {
  background: #edf4ff;
}
.resources-help-step--featured {
  color: #fff;
  background: linear-gradient(135deg, #07142e 0%, #123a8d 52%, #0866ff 100%);
  box-shadow: 0 24px 68px rgba(8, 102, 255, .22);
}
.resources-help-step--featured .resources-help-number,
.resources-help-step--featured .resources-help-icon,
.resources-help-step--featured strong {
  color: #fff;
}
.resources-help-footer {
  border-color: rgba(8, 102, 255, .12);
}
.resources-help-time strong {
  color: #07142e;
}
.resources-help-time span {
  color: #243a57;
}
@media (max-width: 760px) {
  .resources-help-intro {
    padding-right: 0;
  }
  .resources-help-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .resources-help-intro p {
    font-size: 1rem;
  }
}
.resources-page .resources-help-path .resources-help-intro,
.content-refresh .resources-help-path .resources-help-intro,
.industry-refresh .resources-help-path .resources-help-intro {
  max-width: 1080px;
  margin: 0 auto 52px;
  padding: 28px 24px 10px;
  text-align: center;
}
.resources-page .resources-help-intro .home-section-kicker,
.content-refresh .resources-help-intro .home-section-kicker,
.industry-refresh .resources-help-intro .home-section-kicker {
  margin-inline: auto;
}
.resources-page .resources-help-intro h2,
.content-refresh .resources-help-intro h2,
.industry-refresh .resources-help-intro h2 {
  position: relative;
  display: inline-block;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 58px 18px;
  color: #07142e;
  text-align: center;
}
.resources-page .resources-help-intro h2::after,
.content-refresh .resources-help-intro h2::after,
.industry-refresh .resources-help-intro h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 132px;
  height: 6px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8,102,255,0), rgba(8,102,255,.42) 12%, #0866ff 50%, rgba(8,102,255,.42) 88%, rgba(8,102,255,0));
  box-shadow: 0 8px 18px rgba(8,102,255,.22);
  transform: translateX(-50%);
  animation: underlinePulse 3.4s ease-in-out infinite;
}
.resources-page .resources-help-intro h2::before,
.content-refresh .resources-help-intro h2::before,
.industry-refresh .resources-help-intro h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.88), rgba(255,255,255,0));
  filter: blur(.5px);
  transform: translateX(-50%);
  animation: underlineSweepCentered 3.4s ease-in-out infinite;
}
.resources-page .resources-help-intro p,
.content-refresh .resources-help-intro p,
.industry-refresh .resources-help-intro p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #243a57;
  text-align: center;
}
@keyframes underlineSweepCentered {
  0%, 100% {
    transform: translateX(-165%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  62% {
    transform: translateX(65%);
    opacity: 1;
  }
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .resources-page .resources-help-intro h2::after,
  .resources-page .resources-help-intro h2::before,
  .content-refresh .resources-help-intro h2::after,
  .content-refresh .resources-help-intro h2::before,
  .industry-refresh .resources-help-intro h2::after,
  .industry-refresh .resources-help-intro h2::before {
    animation: none !important;
  }
}
@media (max-width: 760px) {
  .resources-page .resources-help-path .resources-help-intro,
  .content-refresh .resources-help-path .resources-help-intro,
  .industry-refresh .resources-help-path .resources-help-intro {
    padding-inline: 0;
  }
  .resources-page .resources-help-intro h2,
  .content-refresh .resources-help-intro h2,
  .industry-refresh .resources-help-intro h2 {
    display: block;
    padding-inline: 0;
  }
}
.home-package-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center !important;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 38px rgba(7,20,46,.05);
  text-align: center;
}
.home-package-strip span,
.home-package-strip strong {
  flex-basis: auto !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #07142e;
  background: #f5f9ff;
  font-weight: 850;
  font-size: .9rem;
}
.home-package-strip i {
  color: #0866ff;
}

/* Ajuste hero soluciones: color institucional y foto sin recorte */
.solutions-hero-copy h1 {
  color: #07142e;
}

.solutions-hero-main {
  object-fit: contain;
  background: #fff;
}

.solutions-hero-visual {
  overflow: visible;
}


/* Corrección final hero soluciones: imagen completa sin corte lateral + movimiento suave */
.solutions-hero-visual {
  overflow: visible !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: auto !important;
  margin-right: 0 !important;
}

.solutions-hero-visual .solutions-hero-main {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  display: block !important;
  width: 100% !important;
  max-width: 760px;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  transform-origin: center center;
  will-change: transform;
  animation: heroImageFloat 6.8s ease-in-out infinite;
}

.solutions-hero-visual:hover .solutions-hero-main,
.solutions-hero-visual:focus-within .solutions-hero-main {
  transform: translate3d(0, -8px, 0) scale(1.015) !important;
  filter: saturate(1.03) contrast(1.01) !important;
}

@keyframes heroImageFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.012);
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-hero-visual .solutions-hero-main {
    animation: none !important;
    transform: none !important;
  }
}

/* =========================================================
   Soporte | ajustes dentro de estilos.css
   Mantiene el hero con los estilos generales del sitio.
   ========================================================= */
.support-page-refresh .section-heading.center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.support-page-refresh .section-heading.center p {
  margin-right: auto;
  margin-left: auto;
}

.support-faq-list {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.support-faq-list .faq-item {
  box-shadow: 0 8px 28px rgba(9, 29, 52, .04);
}

/* =========================================================
   404 | Página no encontrada
   Usa el CSS general del sitio, sin estilos inline.
   ========================================================= */
.error-page-refresh {
  overflow: hidden;
  background: radial-gradient(circle at 8% 10%, rgba(64, 176, 160, .13), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(8, 102, 255, .12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 58%, #ffffff 100%);
}

.error-hero {
  position: relative;
  display: grid;
  min-height: calc(100dvh - 78px);
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0 clamp(80px, 9vw, 126px);
}

.error-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(8, 102, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 102, 255, .04) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%);
}

.error-hero::after {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 176, 160, .22), transparent 68%);
  content: "";
  filter: blur(8px);
  animation: errorOrbFloat 9s ease-in-out infinite;
}

.error-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  grid-template-columns: minmax(0, .95fr) minmax(380px, .88fr);
}

.error-breadcrumbs {
  margin-bottom: 18px;
}

.error-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: #07142e;
  font-size: clamp(2.9rem, 5.8vw, 5.7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.error-hero-copy h1 span {
  color: #0866ff;
}

.error-hero-copy .lead {
  max-width: 660px;
  color: #31445f;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.error-actions .btn {
  min-height: 56px;
  border-radius: 24px;
}

.error-quick-links {
  display: grid;
  width: min(100%, 560px);
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.error-quick-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 102, 255, .12);
  border-radius: 18px;
  color: #07142e;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 34px rgba(7, 20, 46, .07);
  font-size: .9rem;
  font-weight: 850;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.error-quick-links a:hover {
  border-color: rgba(8, 102, 255, .28);
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 102, 255, .12);
  transform: translateY(-3px);
}

.error-quick-links i {
  color: #0866ff;
}

.error-hero-visual {
  position: relative;
  min-height: 520px;
}

.error-visual-card {
  position: relative;
  z-index: 2;
  width: min(100%, 455px);
  overflow: hidden;
  margin-inline: auto;
  padding: clamp(30px, 4vw, 42px);
  border: 1px solid rgba(8, 102, 255, .15);
  border-radius: 38px;
  background: linear-gradient(150deg, rgba(255,255,255,.94), rgba(238,246,255,.82));
  box-shadow: 0 34px 90px rgba(13, 40, 82, .15), inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  transform: rotate(-1.5deg);
}

.error-visual-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(8, 102, 255, .16), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(64, 176, 160, .18), transparent 38%);
  content: "";
}

.error-visual-card::after {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(8, 102, 255, .14);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.error-visual-label,
.error-visual-card strong,
.error-visual-card p,
.error-visual-status {
  position: relative;
  z-index: 1;
}

.error-visual-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(8, 102, 255, .12);
  border-radius: 999px;
  color: #0866ff;
  background: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.error-visual-card strong {
  display: block;
  margin-bottom: 12px;
  color: #07142e;
  font-family: "Manrope", sans-serif;
  font-size: clamp(6rem, 11vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .86;
}

.error-visual-card p {
  max-width: 340px;
  margin-bottom: 24px;
  color: #31445f;
}

.error-visual-status {
  display: grid;
  gap: 10px;
}

.error-visual-status span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 102, 255, .1);
  border-radius: 16px;
  color: #07142e;
  background: rgba(255,255,255,.66);
  font-size: .88rem;
  font-weight: 850;
}

.error-visual-status i {
  color: var(--success);
}

.error-floating-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(8, 102, 255, .12);
  border-radius: 20px;
  color: #07142e;
  background: rgba(255,255,255,.84);
  box-shadow: 0 22px 58px rgba(13, 40, 82, .12);
  backdrop-filter: blur(16px);
  font-size: .88rem;
  font-weight: 900;
}

.error-floating-card i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  color: #0866ff;
  background: #eaf3ff;
}

.error-floating-card--one {
  top: 76px;
  left: 0;
  animation: errorFloatOne 6s ease-in-out infinite;
}

.error-floating-card--two {
  right: 0;
  bottom: 72px;
  animation: errorFloatTwo 7s ease-in-out infinite;
}

@keyframes errorOrbFloat {
  0%, 100% {
    transform: translate3d(0,0,0) scale(1);
  }
  50% {
    transform: translate3d(-16px, -12px, 0) scale(1.04);
  }
}

@keyframes errorFloatOne {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(-2deg);
  }
  50% {
    transform: translate3d(8px, -12px, 0) rotate(1deg);
  }
}

@keyframes errorFloatTwo {
  0%, 100% {
    transform: translate3d(0,0,0) rotate(2deg);
  }
  50% {
    transform: translate3d(-10px, 10px, 0) rotate(-1deg);
  }
}

@media (max-width: 1050px) {
  .error-hero-grid {
    grid-template-columns: 1fr;
  }

  .error-hero-copy {
    text-align: center;
  }

  .error-hero-copy .lead,
  .error-quick-links {
    margin-right: auto;
    margin-left: auto;
  }

  .error-actions {
    justify-content: center;
  }

  .error-hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .error-hero {
    min-height: auto;
    padding: 62px 0 78px;
  }

  .error-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .error-actions .btn {
    width: 100%;
  }

  .error-quick-links {
    grid-template-columns: 1fr;
  }

  .error-hero-visual {
    min-height: auto;
  }

  .error-visual-card {
    transform: none;
  }

  .error-floating-card {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-hero::after,
  .error-floating-card--one,
  .error-floating-card--two {
    animation: none !important;
  }
}


/* ==========================================
   Página legal simple: Aviso de privacidad / Términos
   ========================================== */
.legal-simple-page {
  color: #07142e;
  background: #fff;
}

.legal-simple-page h1,
.legal-simple-page h2,
.legal-simple-page h3,
.legal-simple-page p,
.legal-simple-page li,
.legal-simple-page strong {
  color: #07142e;
}

.legal-simple-hero {
  padding: clamp(34px, 4.5vw, 52px) 0 0;
  border-bottom: 0;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.legal-simple-hero-copy {
  max-width: 880px;
}

.legal-simple-breadcrumbs {
  margin-bottom: 18px;
  color: rgba(7, 20, 46, .72);
}

.legal-simple-breadcrumbs a {
  color: #0866ff;
  font-weight: 850;
}

.legal-simple-hero .home-badge {
  margin-bottom: 18px;
}

.legal-simple-hero h1 {
  max-width: 820px;
  margin: 0 0 8px;
  color: #07142e;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
}

.legal-simple-hero h1 span {
  color: #0866ff;
}

.legal-simple-hero .lead {
  max-width: 680px;
  margin: 0;
  color: #07142e;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.62;
  opacity: .86;
}

.legal-simple-section {
  padding: 0 0 68px;
  overflow: visible;
  background: #fff;
}

.legal-simple-document {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid #d9e5f4;
  border-radius: 22px;
  color: #07142e;
  background: #fff;
  box-shadow: 0 18px 52px rgba(7, 20, 46, .06);
}

.legal-simple-document h2 {
  margin: 30px 0 10px;
  padding-bottom: 0;
  border-bottom: 0;
  color: #07142e;
  font-size: clamp(1.22rem, 2vw, 1.45rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.legal-simple-document .legal-simple-note + h2 {
  margin-top: 20px;
}

.legal-simple-document p,
.legal-simple-document li {
  color: #07142e;
  font-size: 1rem;
  line-height: 1.76;
}

.legal-simple-document p {
  margin-bottom: 20px;
}

.legal-simple-document ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 1.25rem;
}

.legal-simple-document li::marker {
  color: #0866ff;
}

.legal-simple-document .text-link {
  color: #0866ff;
  font-weight: 900;
}

.legal-simple-note {
  margin-bottom: 26px;
  padding: 16px 18px;
  border: 1px solid #d9e5f4;
  border-left: 4px solid #0866ff;
  border-radius: 16px;
  background: #f6f9ff;
}

.legal-simple-note p {
  margin: 0;
  color: #07142e;
  font-size: .94rem;
  line-height: 1.62;
}

.legal-simple-note strong {
  color: #07142e;
}

@media (max-width: 760px) {
  .legal-simple-hero {
    padding: 32px 0 0;
  }

  .legal-simple-section {
    padding: 0 0 clamp(64px, 8vw, 96px);
  }

  .legal-simple-document {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .legal-simple-document h2 {
    margin-top: 24px;
  }
}

/* WhatsApp flotante: una sola burbuja lateral */
.whatsapp-float {
  isolation: isolate;
  overflow: visible;
}

.whatsapp-float::before,
.whatsapp-float::after {
  display: none !important;
  content: none !important;
}

.whatsapp-float-message {
  position: absolute;
  right: calc(100% + 18px);
  bottom: 50%;
  width: min(292px, calc(100vw - 112px));
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  color: #07142e;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(239,247,255,.56)),
    radial-gradient(circle at 12% 0%, rgba(8,102,255,.18), transparent 8rem),
    radial-gradient(circle at 92% 100%, rgba(37,211,102,.2), transparent 8rem);
  box-shadow: 0 20px 44px rgba(7,20,46,.16), inset 0 1px 0 rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(8px, 50%, 0) scale(.97);
  transition: opacity .24s ease, transform .24s ease;
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.whatsapp-float-message::after {
  position: absolute;
  right: -13px;
  bottom: calc(50% - 7px);
  border: 7px solid transparent;
  border-left-color: rgba(239,247,255,.78);
  content: "";
  filter: drop-shadow(0 8px 10px rgba(7,20,46,.1));
}

.whatsapp-float.whatsapp-message-visible .whatsapp-float-message,
.whatsapp-float:hover .whatsapp-float-message,
.whatsapp-float:focus-visible .whatsapp-float-message {
  opacity: 1;
  transform: translate3d(0, 50%, 0) scale(1);
}

@media (max-width: 560px) {
  .whatsapp-float-message {
    right: 0;
    bottom: calc(100% + 18px);
    width: min(280px, calc(100vw - 36px));
    transform: translate3d(0, 10px, 0) scale(.97);
  }

  .whatsapp-float-message::after {
    right: 19px;
    bottom: -14px;
    border-color: transparent;
    border-top-color: rgba(239,247,255,.78);
  }

  .whatsapp-float.whatsapp-message-visible .whatsapp-float-message,
  .whatsapp-float:hover .whatsapp-float-message,
  .whatsapp-float:focus-visible .whatsapp-float-message {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float-message {
    transition: none !important;
  }
}



/* Ronda visual 1.0.151: imágenes estratégicas en páginas internas */
.contact-hero-shell,
.support-hero-shell {
  display: grid;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, .96fr) minmax(360px, .78fr);
}

.page-photo-visual {
  position: relative;
  isolation: isolate;
  min-height: clamp(380px, 34vw, 520px);
  margin: 0;
}

.page-photo-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 34px 18px 34px 44px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(226,240,255,.34)),
    radial-gradient(circle at 72% 22%, rgba(8,102,255,.16), transparent 18rem);
  box-shadow: 0 30px 80px rgba(7,20,46,.13), inset 0 1px 0 rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
}

.page-photo-visual img {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(94%, 660px);
  height: clamp(330px, 30vw, 455px);
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 30px;
  box-shadow: 0 30px 72px rgba(7,20,46,.18);
  animation: pagePhotoFloat 7.6s ease-in-out infinite;
}

.page-photo-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(360px, 92%);
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 18px;
  color: #fff;
  background: rgba(12, 26, 52, .76);
  box-shadow: 0 20px 44px rgba(7,20,46,.2), inset 0 1px 0 rgba(255,255,255,.24);
  font-weight: 850;
  line-height: 1.35;
  backdrop-filter: blur(16px);
}

.page-photo-visual figcaption i {
  color: #69d99b;
}

.page-photo-visual:hover img {
  animation-play-state: paused;
  transform: translate3d(8px, -10px, 0) scale(1.018);
  box-shadow: 0 38px 86px rgba(7,20,46,.22);
}

.support-prep-layout {
  display: grid;
  align-items: stretch;
  gap: clamp(28px, 4vw, 54px);
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
}

.section-side-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 28px;
  background: #f5f9ff;
  box-shadow: 0 24px 58px rgba(7,20,46,.09);
}

.section-side-photo::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.34));
  backdrop-filter: blur(12px);
}

.section-side-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .32s ease, filter .32s ease;
}

.section-side-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}

.support-data-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 0;
}

.pricing-equipment-band {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px) auto;
}

.pricing-equipment-visual {
  position: relative;
  min-height: 230px;
  margin: 0;
}

.pricing-equipment-visual::before {
  content: "";
  position: absolute;
  inset: 34px 18px 18px 34px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(231,242,255,.45));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.pricing-equipment-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(7,20,46,.2));
  animation: pagePhotoFloat 7.2s ease-in-out infinite;
}

@media (max-width: 820px) {
  .support-data-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-photo-visual {
    min-height: 360px;
  }

  .page-photo-visual::before {
    inset: 28px 0 24px 24px;
    border-radius: 26px;
  }

  .page-photo-visual img {
    width: 100%;
    height: 300px;
    border-radius: 24px;
  }

  .page-photo-visual figcaption {
    right: 10px;
    bottom: 8px;
    max-width: calc(100% - 20px);
  }

  .section-side-photo img {
    min-height: 300px;
  }

  .pricing-equipment-visual img {
    max-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-photo-visual img,
  .pricing-equipment-visual img {
    animation: none !important;
  }
}

/* Ronda visual 1.0.152: fotos de apoyo en recursos y soluciones */
.section-wide-photo {
  position: relative;
  overflow: hidden;
  margin: 0 0 32px;
  height: clamp(240px, 30vw, 390px);
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 30px;
  background: #f5f9ff;
  box-shadow: 0 24px 62px rgba(7,20,46,.08);
}

.section-wide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.16), transparent 36%, rgba(8,102,255,.08));
  pointer-events: none;
}

.section-wide-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .34s ease, filter .34s ease;
}

.section-wide-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}

.resources-route-photo img {
  object-position: center;
}

.solutions-process-photo img {
  object-position: center 42%;
}

@media (max-width: 640px) {
  .section-wide-photo {
    height: 230px;
    border-radius: 24px;
  }
}

/* Ronda visual 1.0.153: texto en cápsula de foto de soporte */
.section-side-photo::after {
  display: none;
}

.section-side-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 18px;
  color: #fff;
  background: rgba(12, 26, 52, .72);
  box-shadow: 0 18px 38px rgba(7,20,46,.18), inset 0 1px 0 rgba(255,255,255,.24);
  font-size: .93rem;
  font-weight: 850;
  line-height: 1.34;
  backdrop-filter: blur(14px);
}

.section-side-photo figcaption i {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: rgba(255,255,255,.9);
}


/* Corrección 1.0.158: restaurar comportamiento de tabs en producto */
.product-page .platform-showcase__pane[hidden] {
  display: none !important;
}

/* Ronda visual 1.0.159: imagen funcional para servicios adicionales en producto */
.product-services-visual {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 34vw, 430px);
  margin: 0 0 28px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 30px;
  background: #f5f9ff;
  box-shadow: 0 24px 62px rgba(7,20,46,.08);
}

.product-services-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,20,46,.34), rgba(7,20,46,.06) 42%, rgba(255,255,255,.08));
  pointer-events: none;
}

.product-services-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .34s ease, filter .34s ease;
}

.product-services-visual figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: min(520px, calc(100% - 36px));
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 18px;
  color: #fff;
  background: rgba(12, 26, 52, .72);
  box-shadow: 0 18px 40px rgba(7,20,46,.2), inset 0 1px 0 rgba(255,255,255,.24);
  font-weight: 850;
  line-height: 1.34;
  backdrop-filter: blur(14px);
}

.product-services-visual figcaption i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: rgba(255,255,255,.92);
}

.product-services-visual:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 640px) {
  .product-services-visual {
    height: 250px;
    border-radius: 24px;
  }

  .product-services-visual figcaption {
    align-items: flex-start;
    font-size: .9rem;
  }
}


/* Ronda visual 1.0.163: imagen nueva y completa para procesos por giro */
.solutions-process-photo {
  height: auto;
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,247,255,.72));
}

.solutions-process-photo::after {
  display: none;
}

.solutions-process-photo img {
  height: auto;
  aspect-ratio: 16 / 7.2;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  background: #f5f9ff;
}

@media (max-width: 760px) {
  .solutions-process-photo {
    padding: 8px;
    border-radius: 24px;
  }

  .solutions-process-photo img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
}

/* Ajuste 1.0.164: integrar bordes de imagen en procesos por giro */
.solutions-process-photo {
  overflow: hidden;
}

.solutions-process-photo img {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  clip-path: inset(0 round 22px);
}

@media (max-width: 760px) {
  .solutions-process-photo img {
    border-radius: 18px;
    clip-path: inset(0 round 18px);
  }
}

/* Ajuste 1.0.165: imagen de procesos full-bleed sin franjas laterales */
.solutions-process-photo {
  max-width: 1180px;
  height: clamp(360px, 42vw, 540px);
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  background: transparent;
}

.solutions-process-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  clip-path: none;
}

@media (max-width: 760px) {
  .solutions-process-photo {
    height: 300px;
    border-radius: 24px;
  }

  .solutions-process-photo img {
    border-radius: inherit;
  }
}

/* Ajuste 1.0.167: restaurar cards de soluciones, imagen superior a todo el ancho */
.solutions-industry-grid .home-industry-card {
  min-height: auto;
  display: block;
  padding: 0 0 28px;
  overflow: hidden;
  border-radius: 24px;
  color: inherit;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7,20,46,.07);
}

.solutions-industry-grid .home-industry-card::after {
  display: none;
}

.solutions-industry-grid .home-industry-card img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 170px;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 24px 24px 0 0;
  transform: none;
}

.solutions-industry-grid .home-industry-card span {
  position: relative;
  z-index: 2;
  left: auto;
  top: auto;
  display: grid;
  width: 70px;
  height: 70px;
  margin: -35px auto 18px;
  place-items: center;
  outline: 7px solid rgba(255,255,255,.86);
  border-radius: 50%;
  color: #0866ff;
  background: #fff;
  box-shadow: 0 16px 34px rgba(8,102,255,.14);
  transform: none;
}

.solutions-industry-grid .home-industry-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 24px 8px;
  color: #12385f;
  text-align: center;
  text-shadow: none;
}

.solutions-industry-grid .home-industry-card p {
  position: relative;
  z-index: 2;
  min-height: 0;
  margin: 0;
  padding: 0 24px;
  color: #31445f;
  text-align: center;
  text-shadow: none;
}

.solutions-industry-grid .home-industry-card:hover img,
.solutions-industry-grid .home-industry-card:focus-within img {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 620px) {
  .solutions-industry-grid .home-industry-card {
    min-height: auto;
  }

  .solutions-industry-grid .home-industry-card img {
    height: 190px;
  }
}


/* Ajuste 1.0.168: foto del flujo diario en páginas de solución */
.industry-flow-visual-stack {
  display: grid;
  gap: 16px;
}

.industry-flow-photo {
  position: relative;
  overflow: hidden;
  width: min(86%, 560px);
  margin: 0 auto 2px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 24px;
  background: #edf4ff;
  box-shadow: 0 18px 42px rgba(7,20,46,.08);
}

.industry-flow-photo img {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 310px);
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease, filter .55s ease;
}

.industry-flow-panel:hover .industry-flow-photo img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 980px) {
  .industry-flow-photo {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-flow-photo img {
    transition: none !important;
  }

  .industry-flow-panel:hover .industry-flow-photo img {
    transform: none !important;
    filter: none !important;
  }
}

/* Ajuste 1.0.169: cards visuales para retos frecuentes en soluciones */
.industry-problem-card--media {
  display: flex;
  overflow: hidden;
  min-height: auto;
  flex-direction: column;
  padding: 0 0 28px;
}

.industry-problem-card-photo {
  overflow: hidden;
  width: 100%;
  height: 154px;
  margin: 0;
  background: #edf4ff;
}

.industry-problem-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease, filter .5s ease;
}

.industry-problem-card--media > i {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  margin: -33px 0 18px 26px;
  border: 4px solid rgba(8,102,255,.18);
  outline: 7px solid rgba(255,255,255,.9);
  color: #0866ff;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7,20,46,.16), 0 6px 18px rgba(8,102,255,.16);
}

.industry-problem-card--media h3 {
  margin: 0 26px 8px;
}

.industry-problem-card--media p {
  padding: 0 26px;
}

.industry-problem-card--media:hover .industry-problem-card-photo img,
.industry-problem-card--media:focus-within .industry-problem-card-photo img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 680px) {
  .industry-problem-card-photo {
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-problem-card-photo img {
    transition: none !important;
  }

  .industry-problem-card--media:hover .industry-problem-card-photo img,
  .industry-problem-card--media:focus-within .industry-problem-card-photo img {
    transform: none !important;
    filter: none !important;
  }
}

/* Ajuste 1.0.172: personalización con imagen propia y proceso funcional */
.personalization-page .home-hero {
  background: radial-gradient(circle at 82% 18%, rgba(8,102,255,.1), transparent 26rem),
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(244,249,255,.94) 46%, rgba(238,246,255,.84) 100%);
}

.personalization-page .personalization-people-scene--single .personalization-people-main {
  object-position: center;
}

.personalization-process-bridge {
  position: relative;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,247,255,.9));
  box-shadow: 0 22px 58px rgba(7,20,46,.07);
}

.personalization-process-bridge::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(8,102,255,.12), rgba(8,102,255,.34), rgba(8,102,255,.12));
  pointer-events: none;
}

.personalization-process-bridge article {
  position: relative;
  z-index: 1;
  min-height: 205px;
  padding: 18px;
  border: 1px solid rgba(8,102,255,.11);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 34px rgba(7,20,46,.055);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.personalization-process-bridge article:hover,
.personalization-process-bridge article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(8,102,255,.24);
  box-shadow: 0 22px 48px rgba(7,20,46,.1);
}

.personalization-process-bridge article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #0866ff;
  background: #edf4ff;
  font-weight: 900;
}

.personalization-process-bridge i {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #0866ff;
  background: rgba(8,102,255,.08);
}

.personalization-process-bridge strong {
  display: block;
  margin-bottom: 8px;
  color: #07142e;
  font-size: 1.05rem;
}

.personalization-process-bridge p {
  margin: 0;
  color: #31445f;
  font-size: .94rem;
  line-height: 1.48;
}

@media (max-width: 980px) {
  .personalization-process-bridge {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .personalization-process-bridge::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .personalization-process-bridge {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .personalization-process-bridge article {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .personalization-process-bridge article {
    transition: none !important;
  }

  .personalization-process-bridge article:hover,
  .personalization-process-bridge article:focus-within {
    transform: none !important;
  }
}

/* Ajuste 1.0.173: cards visuales en funciones especiales de personalización */
.personalization-page .home-special-column--media {
  overflow: hidden;
  padding: 0 0 26px;
  border-radius: 24px;
  background: #fff;
}

.personalization-page .home-special-media {
  overflow: hidden;
  width: 100%;
  height: 158px;
  margin: 0;
  background: #edf4ff;
}

.personalization-page .home-special-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease, filter .5s ease;
}

.personalization-page .home-special-column--media > i {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  margin: -33px 0 18px 24px;
  border: 4px solid rgba(8,102,255,.18);
  outline: 7px solid rgba(255,255,255,.9);
  color: #0866ff;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7,20,46,.16), 0 6px 18px rgba(8,102,255,.16);
}

.personalization-page .home-special-column--media h3 {
  margin: 0 24px 9px;
}

.personalization-page .home-special-column--media p {
  margin: 0;
  padding: 0 24px;
}

.personalization-page .home-special-column--media:hover .home-special-media img,
.personalization-page .home-special-column--media:focus-within .home-special-media img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 680px) {
  .personalization-page .home-special-media {
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .personalization-page .home-special-media img {
    transition: none !important;
  }

  .personalization-page .home-special-column--media:hover .home-special-media img,
  .personalization-page .home-special-column--media:focus-within .home-special-media img {
    transform: none !important;
    filter: none !important;
  }
}

/* Ajuste 1.0.174: más aire entre cards visuales de personalización */
.personalization-page #personalizacion-funciones .home-special-columns {
  gap: clamp(18px, 2vw, 26px);
}

.personalization-page #personalizacion-funciones .home-special-column--media {
  border: 1px solid rgba(8,102,255,.12);
  box-shadow: 0 18px 44px rgba(7,20,46,.07);
}

.personalization-page #personalizacion-funciones .home-special-column--media::before {
  display: none;
}

@media (max-width: 980px) {
  .personalization-page #personalizacion-funciones .home-special-columns {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .personalization-page #personalizacion-funciones .home-special-columns {
    gap: 28px;
  }
}


/* Ajuste 1.0.177: guía funcional para elegir plan en precios */
.pricing-choice-guide {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.pricing-choice-guide article {
  position: relative;
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.92));
  box-shadow: 0 16px 36px rgba(7,20,46,.055);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.pricing-choice-guide article:hover,
.pricing-choice-guide article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(8,102,255,.3);
  box-shadow: 0 22px 48px rgba(7,20,46,.1);
}

.pricing-choice-guide span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  background: #edf4ff;
  font-weight: 950;
}

.pricing-choice-guide strong {
  display: block;
  margin-bottom: 8px;
  color: #07142e;
  font-size: 1.08rem;
}

.pricing-choice-guide p {
  margin: 0;
  color: #40516b;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pricing-choice-guide {
    grid-template-columns: 1fr;
  }

  .pricing-choice-guide article {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-choice-guide article {
    transition: none !important;
  }

  .pricing-choice-guide article:hover,
  .pricing-choice-guide article:focus-within {
    transform: none !important;
  }
}

/* Ajuste 1.0.178: visuales funcionales en precios */
.pricing-choice-guide {
  align-items: stretch;
  grid-template-columns: minmax(310px, .88fr) minmax(0, 1.12fr);
  gap: clamp(18px, 2.4vw, 28px);
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 28px;
  background: radial-gradient(circle at 12% 8%, rgba(8,102,255,.08), transparent 20rem), linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,249,255,.94));
  box-shadow: 0 22px 58px rgba(7,20,46,.07);
}

.pricing-choice-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 22px;
  background: #edf4ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.pricing-choice-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform .5s ease;
}

.pricing-choice-guide:hover .pricing-choice-visual img {
  transform: scale(1.045);
}

.pricing-choice-list {
  display: grid;
  gap: 14px;
}

.pricing-choice-guide article {
  min-height: 0;
}

.pricing-equipment-band {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 480px) auto;
}

.pricing-equipment-visual {
  overflow: hidden;
  min-height: 292px;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 26px;
  background: #edf4ff;
  box-shadow: 0 18px 44px rgba(7,20,46,.08);
}

.pricing-equipment-visual::before {
  display: none;
}

.pricing-equipment-visual img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  max-height: none;
  object-fit: cover;
  filter: none;
}

@media (max-width: 1100px) {
  .pricing-equipment-band {
    grid-template-columns: 1fr;
  }

  .pricing-equipment-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .pricing-choice-guide {
    grid-template-columns: 1fr;
  }

  .pricing-choice-visual img,
  .pricing-equipment-visual img {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-choice-visual img,
  .pricing-choice-guide:hover .pricing-choice-visual img {
    transform: none !important;
    transition: none !important;
  }
}

/* Ajuste 1.0.179: precios concentra el apoyo visual en el hero */
.pricing-page .pricing-hero {
  background: radial-gradient(circle at 78% 18%, rgba(8,102,255,.13), transparent 24rem), linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(243,248,255,.94) 48%, rgba(235,244,255,.9) 100%);
}

.pricing-hero-visual {
  min-height: 540px;
}

.pricing-scene {
  width: min(100%, 740px);
  min-height: 520px;
}

.pricing-glass {
  inset: 56px 12px 62px 54px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(225,239,255,.38));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 28px 68px rgba(7,20,46,.13);
}

.pricing-pos-image {
  left: 6%;
  top: 82px;
  width: 88%;
  height: 355px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px;
  box-shadow: 0 26px 58px rgba(7,20,46,.18);
  filter: none;
}

.pricing-hero-card--main {
  right: 8%;
  bottom: 82px;
}

.pricing-choice-guide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.pricing-choice-guide article {
  min-height: 168px;
}

@media (max-width: 900px) {
  .pricing-hero-visual,
  .pricing-scene {
    min-height: 440px;
  }

  .pricing-glass {
    inset: 42px 0 68px 24px;
  }

  .pricing-pos-image {
    left: 4%;
    top: 64px;
    width: 92%;
    height: 300px;
  }

  .pricing-choice-guide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pricing-hero-visual,
  .pricing-scene {
    min-height: 390px;
  }

  .pricing-pos-image {
    height: 250px;
  }

  .pricing-hero-card--main {
    right: 0;
    bottom: 58px;
  }
}

/* Ajuste 1.0.180: precios sin imagen redundante en cotización con equipo */
.pricing-equipment-band {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}

.pricing-equipment-copy {
  max-width: 820px;
}

.pricing-equipment-copy h2 {
  max-width: 760px;
}

.pricing-equipment-copy p {
  max-width: 620px;
}

.pricing-equipment-band > .btn {
  min-width: 220px;
  justify-self: end;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .pricing-equipment-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-equipment-band > .btn {
    justify-self: start;
    width: auto;
  }
}

@media (max-width: 560px) {
  .pricing-equipment-band > .btn {
    width: 100%;
  }
}

/* Ajuste 1.0.181: card visual de cotización con equipo */
.pricing-equipment-band {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  background: radial-gradient(circle at 86% 18%, rgba(64,176,160,.16), transparent 18rem), radial-gradient(circle at 18% 88%, rgba(8,102,255,.08), transparent 18rem), linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,250,255,.95));
}

.pricing-equipment-band::after {
  content: "";
  position: absolute;
  inset: auto -8% -34% 42%;
  height: 220px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(8,102,255,.12), transparent);
  filter: blur(26px);
  pointer-events: none;
}

.pricing-equipment-copy,
.pricing-equipment-quote {
  position: relative;
  z-index: 1;
}

.pricing-equipment-quote {
  overflow: hidden;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(235,244,255,.58));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 24px 54px rgba(7,20,46,.12);
  backdrop-filter: blur(18px);
}

.pricing-equipment-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.74), transparent 42%, rgba(8,102,255,.08));
  pointer-events: none;
}

.pricing-quote-head,
.pricing-equipment-quote ul,
.pricing-quote-note,
.pricing-equipment-quote .btn {
  position: relative;
  z-index: 1;
}

.pricing-quote-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pricing-quote-head > span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid rgba(8,102,255,.18);
  border-radius: 18px;
  color: #0866ff;
  background: rgba(237,244,255,.92);
  box-shadow: 0 12px 28px rgba(8,102,255,.12);
  font-size: 1.25rem;
}

.pricing-quote-head strong {
  display: block;
  color: #07142e;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.15;
}

.pricing-quote-head small {
  display: block;
  margin-top: 4px;
  color: #52637b;
  font-weight: 800;
}

.pricing-equipment-quote ul {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.pricing-equipment-quote li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #243852;
  font-weight: 850;
  line-height: 1.35;
}

.pricing-equipment-quote li i {
  margin-top: 3px;
  color: #0866ff;
}

.pricing-quote-note {
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(8,102,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  color: #40516b;
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.45;
}

.pricing-equipment-quote .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .pricing-equipment-band {
    grid-template-columns: 1fr;
  }

  .pricing-equipment-quote {
    width: 100%;
  }
}

/* Ajuste 1.0.182: recursos reemplaza foto suelta por panel funcional */
.resources-route-board {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(260px, 1fr) minmax(280px, 1.05fr);
  align-items: stretch;
  gap: 16px;
  margin: 0 0 34px;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 28px;
  background: radial-gradient(circle at 12% 20%, rgba(8,102,255,.11), transparent 19rem), radial-gradient(circle at 92% 10%, rgba(64,176,160,.13), transparent 18rem), linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,250,255,.92));
  box-shadow: 0 22px 58px rgba(7,20,46,.075);
}

.resources-route-board::before {
  content: "";
  position: absolute;
  right: 24%;
  bottom: -44px;
  width: 280px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(8,102,255,.15), transparent);
  filter: blur(24px);
  pointer-events: none;
}

.resources-route-query,
.resources-route-tags,
.resources-route-answer {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84), 0 16px 34px rgba(7,20,46,.055);
  backdrop-filter: blur(14px) saturate(140%);
}

.resources-route-query {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 116px;
  padding: 20px;
  border-radius: 22px;
  color: #07142e;
  font-weight: 900;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.resources-route-query i {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 15px;
  color: #0866ff;
  background: #edf4ff;
  box-shadow: 0 12px 28px rgba(8,102,255,.12);
}

.resources-route-tags {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
}

.resources-route-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 999px;
  color: #0866ff;
  background: rgba(237,244,255,.88);
  font-size: .92rem;
  font-weight: 850;
}

.resources-route-answer {
  padding: 20px 22px;
  border-radius: 22px;
}

.resources-route-answer > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0866ff;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.resources-route-answer strong {
  display: block;
  margin-bottom: 8px;
  color: #07142e;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.18;
}

.resources-route-answer p {
  margin: 0;
  color: #40516b;
  font-size: .96rem;
  line-height: 1.5;
}

.resources-route-board:hover .resources-route-query i {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 34px rgba(8,102,255,.18);
}

@media (max-width: 980px) {
  .resources-route-board {
    grid-template-columns: 1fr;
  }

  .resources-route-query {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .resources-route-board:hover .resources-route-query i {
    transform: none !important;
  }
}

/* Ajuste 1.0.183: rutas de recursos integradas, sin panel extra */
.resources-page #recursos-rutas .home-section-title {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.resources-page #recursos-rutas .industry-problem-grid {
  counter-reset: recurso-ruta;
  gap: clamp(18px, 2.4vw, 28px);
}

.resources-page #recursos-rutas .industry-problem-card {
  counter-increment: recurso-ruta;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border-color: rgba(8,102,255,.14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,250,255,.92));
  box-shadow: 0 20px 50px rgba(7,20,46,.07);
}

.resources-page #recursos-rutas .industry-problem-card::before {
  content: "0" counter(recurso-ruta);
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(8,102,255,.13);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}

.resources-page #recursos-rutas .industry-problem-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -34% 18%;
  height: 160px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(8,102,255,.13), transparent);
  filter: blur(26px);
  opacity: .75;
  pointer-events: none;
}

.resources-page #recursos-rutas .industry-problem-card i,
.resources-page #recursos-rutas .industry-problem-card h3,
.resources-page #recursos-rutas .industry-problem-card p {
  position: relative;
  z-index: 1;
}

.resources-page #recursos-rutas .industry-problem-card i {
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  border: 1px solid rgba(8,102,255,.16);
  border-radius: 18px;
  background: rgba(237,244,255,.92);
  box-shadow: 0 14px 32px rgba(8,102,255,.12);
}

.resources-page #recursos-rutas .industry-problem-card h3 {
  max-width: 260px;
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.7vw, 1.48rem);
  line-height: 1.18;
}

.resources-page #recursos-rutas .industry-problem-card p {
  max-width: 330px;
  color: #344861;
  font-size: .98rem;
}

.resources-page #recursos-rutas .industry-problem-card:hover {
  border-color: rgba(8,102,255,.3);
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(7,20,46,.11);
}

.resources-page #recursos-rutas .industry-problem-card:hover i {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 38px rgba(8,102,255,.18);
}

@media (max-width: 680px) {
  .resources-page #recursos-rutas .industry-problem-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .resources-page #recursos-rutas .industry-problem-card,
  .resources-page #recursos-rutas .industry-problem-card i {
    transition: none !important;
  }

  .resources-page #recursos-rutas .industry-problem-card:hover,
  .resources-page #recursos-rutas .industry-problem-card:hover i {
    transform: none !important;
  }
}

/* Ajuste 1.0.184: imágenes útiles en recursos */
.resources-guides-photo {
  position: relative;
  overflow: hidden;
  margin: 0 0 clamp(32px, 4vw, 48px);
  height: clamp(260px, 32vw, 420px);
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 30px;
  background: #edf4ff;
  box-shadow: 0 24px 62px rgba(7,20,46,.085);
}

.resources-guides-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .5s ease, filter .5s ease;
}

.resources-guides-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,20,46,.48), rgba(7,20,46,.14) 48%, rgba(255,255,255,.05));
  pointer-events: none;
}

.resources-guides-photo figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 3vw, 34px);
  bottom: clamp(18px, 2.8vw, 30px);
  max-width: min(520px, calc(100% - 40px));
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 20px;
  background: rgba(7,20,46,.68);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 18px 42px rgba(7,20,46,.2);
  backdrop-filter: blur(14px) saturate(135%);
}

.resources-guides-photo figcaption span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.resources-guides-photo figcaption strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.22;
}

.resources-guides-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.resources-help-head {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 46px;
}

.resources-page .resources-help-path .resources-help-head .resources-help-intro,
.content-refresh .resources-help-path .resources-help-head .resources-help-intro,
.industry-refresh .resources-help-path .resources-help-head .resources-help-intro {
  max-width: 760px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.resources-page .resources-help-head .resources-help-intro .home-section-kicker,
.content-refresh .resources-help-head .resources-help-intro .home-section-kicker,
.industry-refresh .resources-help-head .resources-help-intro .home-section-kicker {
  margin-inline: 0;
}

.resources-page .resources-help-head .resources-help-intro h2,
.content-refresh .resources-help-head .resources-help-intro h2,
.industry-refresh .resources-help-head .resources-help-intro h2 {
  display: block;
  max-width: 760px;
  margin: 0;
  padding-inline: 0;
  text-align: left;
}

.resources-page .resources-help-head .resources-help-intro h2::after,
.content-refresh .resources-help-head .resources-help-intro h2::after,
.industry-refresh .resources-help-head .resources-help-intro h2::after {
  left: 0;
  transform: none;
}

.resources-page .resources-help-head .resources-help-intro h2::before,
.content-refresh .resources-help-head .resources-help-intro h2::before,
.industry-refresh .resources-help-head .resources-help-intro h2::before {
  left: 0;
}

.resources-page .resources-help-head .resources-help-intro p,
.content-refresh .resources-help-head .resources-help-intro p,
.industry-refresh .resources-help-head .resources-help-intro p {
  max-width: 650px;
  margin: 22px 0 0;
  text-align: left;
}

.resources-help-photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 30vw, 380px);
  margin: 0;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 28px;
  background: #edf4ff;
  box-shadow: 0 24px 62px rgba(7,20,46,.085);
}

.resources-help-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 30vw, 380px);
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease, filter .5s ease;
}

.resources-help-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(7,20,46,.52));
  pointer-events: none;
}

.resources-help-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 16px;
  background: rgba(7,20,46,.66);
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
  backdrop-filter: blur(14px) saturate(135%);
}

.resources-help-photo figcaption i {
  color: #69d99b;
}

.resources-help-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 980px) {
  .resources-help-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .resources-guides-photo {
    height: 320px;
    border-radius: 24px;
  }

  .resources-guides-photo figcaption {
    right: 14px;
    left: 14px;
    max-width: none;
  }

  .resources-help-photo figcaption {
    font-size: .92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .resources-guides-photo img,
  .resources-help-photo img {
    transition: none !important;
  }

  .resources-guides-photo:hover img,
  .resources-help-photo:hover img {
    transform: none !important;
    filter: none !important;
  }
}

/* Ajuste 1.0.185: ayuda en recursos sin animación y con foto corregida */
.resources-page .resources-help-head .resources-help-intro h2::before,
.resources-page .resources-help-head .resources-help-intro h2::after,
.content-refresh .resources-help-head .resources-help-intro h2::before,
.content-refresh .resources-help-head .resources-help-intro h2::after,
.industry-refresh .resources-help-head .resources-help-intro h2::before,
.industry-refresh .resources-help-head .resources-help-intro h2::after {
  animation: none !important;
}

.resources-help-photo img,
.resources-help-photo:hover img {
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Ajuste 1.0.186: recursos sin raya azul en sección de ayuda */
.resources-page .resources-help-head .resources-help-intro h2::before,
.resources-page .resources-help-head .resources-help-intro h2::after,
.content-refresh .resources-help-head .resources-help-intro h2::before,
.content-refresh .resources-help-head .resources-help-intro h2::after,
.industry-refresh .resources-help-head .resources-help-intro h2::before,
.industry-refresh .resources-help-head .resources-help-intro h2::after {
  display: none !important;
  content: none !important;
}

/* Ajuste 1.0.187: auditoría responsive global */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.home-refresh,
.industry-refresh,
.content-refresh,
.solutions-refresh,
.error-page-refresh {
  max-width: 100%;
  overflow-x: clip;
}

.container,
.site-header .container {
  max-width: calc(100% - 28px);
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.btn,
.home-hero-tools span,
.industry-hero-chips span,
.solutions-hero-points span,
.pricing-includes span,
.pricing-equipment-list span,
.home-final-pro-meta span,
.footer-contact a {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
}

.home-hero-copy,
.industry-hero-copy,
.solutions-hero-copy,
.home-section-title,
.industry-flow-copy,
.pricing-equipment-copy,
.resources-help-intro,
.home-final-pro-copy {
  min-width: 0;
}

.home-hero-copy h1,
.industry-hero-copy h1,
.solutions-hero-copy h1,
.page-hero h1,
.home-section-title h2,
.industry-flow-copy h2,
.resources-help-intro h2,
.pricing-equipment-copy h2,
.home-final-pro h2 {
  overflow-wrap: break-word;
}

@media (max-width: 1180px) {
  .home-hero-grid,
  .industry-hero-grid,
  .solutions-hero-grid,
  .pricing-equipment-band,
  .resources-help-head,
  .support-prep-layout,
  .industry-flow-panel,
  .solutions-base-panel,
  .contact-form-panel {
    grid-template-columns: 1fr !important;
  }

  .home-hero-visual,
  .industry-hero-visual,
  .solutions-hero-visual,
  .pricing-hero-visual,
  .personalization-hero-visual {
    width: 100%;
    max-width: 760px;
    margin-inline: auto !important;
  }
}

@media (max-width: 900px) {
  .home-value-grid,
  .home-core-grid,
  .home-industry-grid,
  .pricing-license-grid,
  .pricing-service-grid,
  .pricing-choice-guide,
  .pricing-faq-grid,
  .industry-problem-grid,
  .solutions-base-list,
  .resources-help-path-grid,
  .home-special-columns,
  .support-channel-grid,
  .support-contact-list,
  .footer-grid,
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .home-hero-actions,
  .contact-hero-actions,
  .support-hero-actions {
    align-items: stretch;
    width: 100%;
  }

  .home-hero-actions .btn,
  .contact-hero-actions .btn,
  .support-hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home-final-pro-action,
  .pricing-equipment-quote,
  .resources-help-photo,
  .resources-guides-photo {
    width: 100% !important;
  }
}

@media (max-width: 760px) {
  .container,
  .site-header .container {
    max-width: calc(100% - 24px);
  }

  .home-hero,
  .industry-hero,
  .solutions-hero,
  .page-hero,
  .pricing-hero,
  .support-hero,
  .contact-hero {
    padding-top: clamp(42px, 10vw, 64px);
  }

  .home-hero-copy h1,
  .industry-hero-copy h1,
  .solutions-hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem) !important;
    line-height: .98;
  }

  .home-section-title h2,
  .industry-flow-copy h2,
  .resources-help-intro h2,
  .pricing-equipment-copy h2,
  .home-final-pro h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem) !important;
    line-height: 1.05;
  }

  .lead,
  .home-hero-copy .lead,
  .industry-hero-copy .lead,
  .solutions-hero-copy .lead,
  .home-section-title p,
  .industry-flow-copy p,
  .resources-help-intro p {
    font-size: 1rem !important;
    line-height: 1.58;
  }

  .home-hero-tools,
  .industry-hero-chips,
  .solutions-hero-points,
  .pricing-includes,
  .pricing-equipment-list {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-hero-tools span,
  .industry-hero-chips span,
  .solutions-hero-points span,
  .pricing-includes span,
  .pricing-equipment-list span {
    justify-content: flex-start;
    width: 100%;
  }

  .home-hero-visual,
  .industry-hero-visual,
  .solutions-hero-visual,
  .pricing-hero-visual,
  .personalization-hero-visual {
    min-height: auto !important;
    margin-top: 0 !important;
  }

  .counter-hero-visual,
  .pricing-scene,
  .personalization-people-scene,
  .solutions-hero-visual,
  .industry-hero-visual {
    min-height: clamp(300px, 86vw, 430px) !important;
  }

  .realistic-pos-image,
  .pricing-pos-image,
  .personalization-people-main,
  .solutions-hero-main,
  .industry-hero-visual > img {
    max-width: 100% !important;
  }

  .home-special-column--media,
  .industry-problem-card--media,
  .home-industry-card,
  .pricing-license-card,
  .pricing-service-card,
  .resources-help-step,
  .industry-problem-card {
    min-height: auto !important;
  }

  .resources-guides-photo,
  .resources-help-photo,
  .section-wide-photo,
  .industry-flow-photo {
    height: auto !important;
    min-height: 0 !important;
  }

  .resources-guides-photo img,
  .resources-help-photo img,
  .section-wide-photo img,
  .industry-flow-photo img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .home-final-pro,
  .pricing-equipment-band,
  .industry-flow-panel,
  .solutions-base-panel,
  .resources-help-step,
  .industry-problem-card,
  .pricing-license-card,
  .pricing-service-card {
    padding: clamp(20px, 6vw, 28px) !important;
  }

  .dropdown-menu {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .container,
  .site-header .container {
    max-width: calc(100% - 18px);
  }

  .home-hero-copy h1,
  .industry-hero-copy h1,
  .solutions-hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 11vw, 2.7rem) !important;
  }

  .home-section-title,
  .resources-help-intro {
    padding-inline: 0 !important;
  }

  .btn {
    min-height: 48px;
    padding-inline: 16px;
  }

  .home-final-pro-action,
  .pricing-equipment-quote,
  .resources-guides-photo figcaption,
  .resources-help-photo figcaption {
    border-radius: 16px;
  }
}

/* Ajuste 1.0.188: badge del hero con mejor contraste */
.home-badge {
  border: 1px solid rgba(8, 102, 255, .22);
  background: linear-gradient(135deg, rgba(219, 235, 255, .98), rgba(237, 246, 255, .96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 12px 28px rgba(8,102,255,.10);
}

@media (max-width: 760px) {
  .home-badge {
    color: #005be0;
    border-color: rgba(8, 102, 255, .28);
    background: linear-gradient(135deg, #d7e8ff 0%, #e6f1ff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 10px 24px rgba(8,102,255,.13);
  }
}

/* Ajuste 1.0.189: badge del hero ajustado al contenido */
.home-badge {
  width: fit-content;
  max-width: min(100%, 620px);
}

@media (max-width: 760px) {
  .home-badge {
    width: fit-content;
    max-width: calc(100vw - 42px);
    padding: 10px 18px;
  }
}

@media (max-width: 420px) {
  .home-badge {
    max-width: calc(100vw - 28px);
    padding-inline: 16px;
  }
}

/* Ajuste 1.0.190: badge del index con salto controlado */
.home-badge--hero {
  display: inline-grid;
  width: max-content;
  max-width: calc(100vw - 42px);
  justify-items: start;
  align-items: center;
  gap: 2px;
}

.home-badge--hero > span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .home-badge--hero {
    max-width: calc(100vw - 28px);
    font-size: .68rem;
  }
}

/* Ajuste 1.0.191: ocultar chips del hero del index en móvil */
@media (max-width: 760px) {
  #inicio-hero .home-hero-tools {
    display: none !important;
  }
}

/* Ajuste 1.0.192: centrar tercer chip de proof en móvil */
@media (max-width: 760px) {
  .home-value-proof {
    justify-content: center;
  }

  .home-value-proof span:nth-child(3):last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* Ajuste 1.0.193: showcase principal sin desborde en teléfono */
@media (max-width: 760px) {
  .home-core .platform-showcase,
  .platform-showcase {
    width: 100%;
    max-width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
    overflow: visible;
  }

  .platform-showcase__menu {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px;
  }

  .platform-option {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px;
    transform: none !important;
  }

  .platform-option:hover,
  .platform-option:focus-visible,
  .platform-option--active {
    transform: none !important;
  }

  .platform-option h3,
  .platform-option p {
    overflow-wrap: anywhere;
  }

  .platform-option__status {
    justify-self: end;
  }

  .platform-showcase__panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    border-radius: 24px;
  }

  .platform-showcase__pane {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 26px 18px;
  }
}

/* Ajuste 1.0.194: contenido de tabs centrado en teléfono */
@media (max-width: 760px) {
  .platform-showcase__copy {
    text-align: center;
  }

  .platform-showcase__eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .platform-showcase__copy h3,
  .platform-showcase__copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .platform-showcase__points {
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

/* Ajuste 1.0.195: imagen de cards de giros cubre todo el ancho en móvil */
.home-industry-card img {
  max-width: none;
}

@media (max-width: 620px) {
  .home-industry-card img {
    width: calc(100% + 36px);
    max-width: none;
    margin-left: -18px;
    margin-right: -18px;
  }

  .solutions-industry-grid .home-industry-card img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Ajuste 1.0.196: CTA final centrado en teléfono */
@media (max-width: 760px) {
  .home-final-pro {
    justify-items: center;
    text-align: center;
  }

  .home-final-pro-copy {
    width: 100%;
    text-align: center;
  }

  .home-final-pro .home-section-kicker,
  .home-final-pro h2,
  .home-final-pro p {
    margin-left: auto;
    margin-right: auto;
  }

  .home-final-pro-meta {
    justify-content: center;
  }

  .home-final-pro-meta span {
    justify-content: center;
  }

  .home-final-pro-action {
    justify-self: center;
  }
}

/* Ajuste 1.0.197: icono de WhatsApp unido al texto en CTA final */
.home-final-pro-action .btn-primary {
  gap: 10px;
  white-space: nowrap;
}

.home-final-pro-action .btn-primary i {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 760px) {
  .home-final-pro-action .btn-primary {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    text-align: center;
  }
}

/* Ajuste 1.0.198: visual del hero más cercano al texto en móvil */
@media (max-width: 760px) {
  #inicio-hero .home-hero-grid {
    gap: 8px !important;
  }

  #inicio-hero .counter-hero-visual {
    margin-top: -28px !important;
  }

  #inicio-hero .counter-hero-visual .realistic-pos-scene {
    margin-top: -8px;
  }
}

/* Ajuste 1.0.204: el documento termina con el color del footer en móvil */
@media (max-width: 760px) {
  html {
    background: #071727;
  }

  body {
    background:
      linear-gradient(to bottom, #fff 0, #fff calc(100% - 320px), #071727 calc(100% - 320px), #071727 100%);
  }

  main,
  .site-header {
    background-clip: padding-box;
  }

  .site-footer {
    position: relative;
    z-index: 1;
    padding-bottom: max(32px, calc(26px + env(safe-area-inset-bottom)));
    background: #071727;
  }
}

/* Ajuste 1.0.205: dropdown del menú estable por hover, foco y click */
.nav-dropdown.open > .dropdown-menu,
.nav-dropdown > button[aria-expanded="true"] + .dropdown-menu {
  display: grid;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.dropdown-menu {
  pointer-events: auto;
}

@media (min-width: 901px) {
  .site-header,
  .navbar,
  .nav-links,
  .nav-dropdown {
    overflow: visible;
  }

  .dropdown-menu {
    z-index: 300;
  }
}

@media (max-width: 900px) {
  .nav-links.mobile-open .nav-dropdown.open > .dropdown-menu,
  .nav-links.mobile-open .nav-dropdown > button[aria-expanded="true"] + .dropdown-menu {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Ajuste 1.0.206: franja de funciones clave en producto */
.product-feature-strip {
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.product-feature-strip__label {
  flex: 0 0 100%;
  justify-content: center !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  color: #0866ff !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-feature-strip strong {
  min-width: 150px;
  justify-content: center;
}

@media (max-width: 620px) {
  .product-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-feature-strip__label {
    grid-column: 1 / -1;
  }

  .product-feature-strip strong {
    min-width: 0;
    width: 100%;
  }
}

/* Ajuste 1.0.207: funciones clave como subtítulo real */
.product-feature-block {
  margin-top: 24px;
}

.product-feature-heading {
  margin: 0 0 14px;
  color: #07142e;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.18;
  font-weight: 950;
  text-align: center;
  letter-spacing: 0;
}

.product-feature-heading::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8,102,255,0), #0866ff, rgba(8,102,255,0));
}

.product-feature-strip {
  margin-top: 0;
}

.product-feature-strip__label {
  display: none !important;
}

/* Ajuste 1.0.208: acento animado de funciones clave igual al sistema */
.product-feature-heading {
  position: relative;
  padding-bottom: 13px;
}

.product-feature-heading::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 52px;
  height: 3px;
  margin: 0;
  background: linear-gradient(90deg, rgba(8,102,255,0), rgba(8,102,255,.42) 12%, #0866ff 50%, rgba(8,102,255,.42) 88%, rgba(8,102,255,0));
  box-shadow: 0 8px 18px rgba(8,102,255,.18);
  animation: underlinePulse 3.4s ease-in-out infinite;
}

.product-feature-heading::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.88), rgba(255,255,255,0));
  filter: blur(.4px);
  animation: underlineSweep 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .product-feature-heading::before,
  .product-feature-heading::after {
    animation: none !important;
  }
}

/* Ajuste 1.0.209: imagen del hero de producto antes de botones en móvil */
@media (max-width: 760px) {
  .product-page .product-hero .industry-hero-copy {
    display: contents;
    opacity: 1 !important;
    transform: none !important;
  }

  .product-page .product-hero .breadcrumbs {
    order: 1;
    grid-column: 1;
  }

  .product-page .product-hero .home-badge {
    order: 2;
    grid-column: 1;
    justify-self: start;
  }

  .product-page .product-hero h1 {
    order: 3;
    grid-column: 1;
  }

  .product-page .product-hero .lead {
    order: 4;
    grid-column: 1;
  }

  .product-page .product-hero .product-hero-visual {
    order: 5;
    grid-column: 1;
    margin-top: 6px !important;
  }

  .product-page .product-hero .actions {
    order: 6;
    grid-column: 1;
    margin-top: 18px;
  }
}

/* Ajuste 1.0.210: menos aire entre imagen y botones del hero producto móvil */
@media (max-width: 760px) {
  .product-page .product-hero .product-hero-visual {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .product-page .product-hero .product-hero-visual > img {
    margin-bottom: 0 !important;
  }

  .product-page .product-hero .actions {
    margin-top: 8px !important;
  }
}

/* Ajuste 1.0.211: hero producto móvil sin altura fantasma bajo la imagen */
@media (max-width: 760px) {
  .product-page .product-hero .product-hero-visual {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .product-page .product-hero .product-hero-visual > img {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .product-page .product-hero .product-hero-chips {
    display: none !important;
  }

  .product-page .product-hero .actions {
    margin-top: 10px !important;
  }
}

/* Ajuste 1.0.212: hero de soluciones con lógica visual del index */
.solutions-hero-visual {
  isolation: isolate;
  overflow: visible !important;
  display: grid !important;
  min-height: clamp(500px, 38vw, 610px) !important;
  align-items: center;
  justify-items: center;
  margin-right: 0 !important;
  padding: clamp(26px, 3vw, 42px) 0;
}

.solutions-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 12% 5% 10% 8%;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.18) 48%, rgba(8,102,255,.12)),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.92), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 88% 92%, rgba(8,102,255,.2), rgba(8,102,255,0) 38%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -34px 70px rgba(255,255,255,.14),
    0 28px 70px rgba(7,20,46,.11);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.solutions-hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 6% -4% 3%;
  border-radius: 46px;
  background: radial-gradient(circle at 50% 44%, rgba(255,255,255,.92), rgba(255,255,255,.34) 46%, rgba(255,255,255,0) 68%),
    radial-gradient(circle at 70% 58%, rgba(8,102,255,.18), rgba(8,102,255,0) 52%);
  filter: blur(12px);
  opacity: .9;
}

.solutions-hero-visual .solutions-hero-main {
  position: relative !important;
  z-index: 3;
  inset: auto !important;
  display: block !important;
  width: min(112%, 760px) !important;
  max-width: none;
  height: auto !important;
  margin: -10px -6% 0;
  object-fit: cover;
  border-radius: 30px;
  background: transparent;
  box-shadow: 0 34px 72px rgba(7,20,46,.18);
  animation: heroImageFloat 8.5s ease-in-out infinite;
}

.solutions-hero-visual:hover .solutions-hero-main,
.solutions-hero-visual:focus-within .solutions-hero-main {
  transform: translate3d(0, -8px, 0) scale(1.015) !important;
  filter: saturate(1.03) contrast(1.01) !important;
}

@media (max-width: 760px) {
  .solutions-hero-grid {
    gap: 12px !important;
  }

  .solutions-hero-points {
    display: none !important;
  }

  .solutions-hero-visual {
    min-height: 0 !important;
    padding: 6px 0 0;
  }

  .solutions-hero-visual::before {
    inset: 10% 0 7%;
    border-radius: 26px;
  }

  .solutions-hero-visual::after {
    inset: 0 -8px 0;
    border-radius: 30px;
  }

  .solutions-hero-visual .solutions-hero-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-hero-visual .solutions-hero-main {
    animation: none !important;
  }
}

/* Ajuste 1.0.213: botón hamburguesa estable en móvil */
@media (max-width: 900px) {
  .nav-actions {
    position: relative;
    z-index: 260;
  }

  .menu-toggle {
    position: relative;
    z-index: 270;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle i {
    pointer-events: none;
  }

  body.menu-open .menu-toggle {
    position: relative;
    z-index: 280;
  }
}

/* Ajuste 1.0.214: heroes de soluciones individuales con la logica visual aprobada */
.industry-refresh .industry-hero-grid {
  align-items: center;
}

.industry-refresh .industry-hero-visual {
  position: relative;
  isolation: isolate;
  display: grid !important;
  align-items: center;
  justify-items: center;
  min-height: clamp(500px, 40vw, 620px) !important;
  overflow: visible !important;
  padding: clamp(24px, 3vw, 42px) 0;
}

.industry-refresh .industry-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 9% 2% 9% 13%;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(230, 242, 255, .42)),
    radial-gradient(circle at 74% 24%, rgba(8, 102, 255, .16), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78), 0 30px 84px rgba(7, 20, 46, .12);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.industry-refresh .industry-hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 2% -2% 1% 8%;
  border-radius: 46px;
  background: radial-gradient(circle at 72% 44%, rgba(8, 102, 255, .18), transparent 42%);
  filter: blur(18px);
  opacity: .62;
  pointer-events: none;
}

.industry-refresh .industry-hero-visual > img {
  position: relative !important;
  z-index: 3;
  inset: auto !important;
  display: block !important;
  width: min(112%, 760px) !important;
  max-width: none !important;
  height: clamp(390px, 32vw, 500px) !important;
  margin: -4px -7% 0 -2%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 34px;
  box-shadow: 0 34px 78px rgba(7, 20, 46, .18);
  animation: heroImageFloat 8.5s ease-in-out infinite;
}

.industry-refresh .industry-hero-card {
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(9, 21, 44, .68);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 18px 42px rgba(7, 20, 46, .22);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.industry-refresh .industry-hero-card span,
.industry-refresh .industry-hero-card small {
  color: rgba(255, 255, 255, .74);
}

.industry-refresh .industry-hero-card strong {
  color: #ffffff;
}

.industry-refresh .industry-hero-card--sales {
  left: clamp(0px, 1vw, 16px);
  top: clamp(86px, 8vw, 118px);
}

.industry-refresh .industry-hero-card--stock {
  right: clamp(0px, 2vw, 28px);
  bottom: clamp(46px, 5vw, 78px);
}

.industry-refresh .industry-hero-visual:hover > img,
.industry-refresh .industry-hero-visual:focus-within > img {
  transform: translate3d(0, -8px, 0) scale(1.015) !important;
  filter: saturate(1.03) contrast(1.01);
}

@media (max-width: 980px) {
  .industry-refresh .industry-hero-visual::before {
    inset: 7% 0 8% 8%;
  }

  .industry-refresh .industry-hero-visual > img {
    width: min(106%, 700px) !important;
    margin-right: -4%;
  }
}

@media (max-width: 760px) {
  .industry-refresh .industry-hero-grid {
    gap: 18px !important;
  }

  .industry-refresh .industry-hero-copy {
    text-align: center;
  }

  .industry-refresh .industry-hero-copy .section-kicker,
  .industry-refresh .industry-hero-copy .home-badge,
  .industry-refresh .industry-hero-copy .industry-eyebrow {
    margin-inline: auto;
  }

  .industry-refresh .industry-hero-chips {
    display: none !important;
  }

  .industry-refresh .industry-hero-visual {
    min-height: 0 !important;
    padding: 4px 0 0;
    margin-top: -2px !important;
  }

  .industry-refresh .industry-hero-visual::before {
    inset: 9% 0 7%;
    border-radius: 28px;
  }

  .industry-refresh .industry-hero-visual::after {
    inset: 0 -8px 0;
    border-radius: 32px;
    filter: blur(14px);
    opacity: .42;
  }

  .industry-refresh .industry-hero-visual > img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 26px;
  }

  .industry-refresh .industry-hero-card {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-refresh .industry-hero-visual > img,
  .industry-refresh .industry-hero-card {
    animation: none !important;
  }

  .industry-refresh .industry-hero-visual:hover > img,
  .industry-refresh .industry-hero-visual:focus-within > img {
    transform: none !important;
  }
}

/* Ajuste 1.0.215: simplificacion movil de heroes en soluciones individuales */
@media (max-width: 760px) {
  .industry-refresh .industry-hero {
    padding-bottom: 34px;
  }

  .industry-refresh .industry-hero-grid {
    gap: 14px !important;
  }

  .industry-refresh .industry-hero-visual {
    width: 100%;
    max-width: 520px;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  .industry-refresh .industry-hero-visual::before,
  .industry-refresh .industry-hero-visual::after,
  .industry-refresh .industry-hero-card,
  .industry-refresh .industry-hero-chips {
    display: none !important;
  }

  .industry-refresh .industry-hero-visual > img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(250px, 68vw, 340px) !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
    border: 1px solid rgba(198, 220, 255, .9);
    box-shadow: 0 18px 46px rgba(7, 20, 46, .13);
    animation: none !important;
    transform: none !important;
  }

  .industry-refresh .industry-hero-visual:hover > img,
  .industry-refresh .industry-hero-visual:focus-within > img {
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .industry-refresh .industry-hero-visual > img {
    height: clamp(220px, 64vw, 300px) !important;
    border-radius: 24px;
  }
}

/* Ajuste 1.0.216: ocultar elementos no funcionales del hero de giros desde tablet/movil */
@media (max-width: 900px) {
  body .industry-refresh .industry-hero .industry-hero-chips,
  body .industry-refresh .industry-hero .industry-hero-card,
  body .industry-refresh .industry-hero .industry-hero-visual::before,
  body .industry-refresh .industry-hero .industry-hero-visual::after {
    display: none !important;
  }

  body .industry-refresh .industry-hero .industry-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body .industry-refresh .industry-hero .industry-hero-copy {
    text-align: center;
  }

  body .industry-refresh .industry-hero .industry-hero-visual {
    width: 100%;
    max-width: 620px;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  body .industry-refresh .industry-hero .industry-hero-visual > img {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(240px, 56vw, 360px) !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
    animation: none !important;
    transform: none !important;
  }
}

/* Ajuste 1.0.217: heroes de soluciones sin chips ni tarjetas flotantes */
.industry-refresh .industry-hero .industry-hero-chips,
.industry-refresh .industry-hero .industry-hero-card {
  display: none !important;
}

/* Ajuste 1.0.218: mantener copy del hero de soluciones alineado a la izquierda */
@media (max-width: 900px) {
  body .industry-refresh .industry-hero .industry-hero-copy {
    text-align: left !important;
  }

  body .industry-refresh .industry-hero .industry-hero-copy .home-badge,
  body .industry-refresh .industry-hero .industry-hero-copy .section-kicker,
  body .industry-refresh .industry-hero .industry-hero-copy .industry-eyebrow {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

/* Ajuste 1.0.219: mismo hero limpio para todas las soluciones por giro */
.grocery-page .industry-hero .industry-hero-copy,
.parts-page .industry-hero .industry-hero-copy,
.hardware-page .industry-hero .industry-hero-copy,
.pharmacy-page .industry-hero .industry-hero-copy,
.boutique-page .industry-hero .industry-hero-copy,
.expendio-page .industry-hero .industry-hero-copy {
  text-align: left !important;
}

.grocery-page .industry-hero .home-badge,
.parts-page .industry-hero .home-badge,
.hardware-page .industry-hero .home-badge,
.pharmacy-page .industry-hero .home-badge,
.boutique-page .industry-hero .home-badge,
.expendio-page .industry-hero .home-badge {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.grocery-page .industry-hero .industry-hero-chips,
.grocery-page .industry-hero .industry-hero-card,
.parts-page .industry-hero .industry-hero-chips,
.parts-page .industry-hero .industry-hero-card,
.hardware-page .industry-hero .industry-hero-chips,
.hardware-page .industry-hero .industry-hero-card,
.pharmacy-page .industry-hero .industry-hero-chips,
.pharmacy-page .industry-hero .industry-hero-card,
.boutique-page .industry-hero .industry-hero-chips,
.boutique-page .industry-hero .industry-hero-card,
.expendio-page .industry-hero .industry-hero-chips,
.expendio-page .industry-hero .industry-hero-card {
  display: none !important;
}

@media (max-width: 900px) {
  .grocery-page .industry-hero .industry-hero-visual,
  .parts-page .industry-hero .industry-hero-visual,
  .hardware-page .industry-hero .industry-hero-visual,
  .pharmacy-page .industry-hero .industry-hero-visual,
  .boutique-page .industry-hero .industry-hero-visual,
  .expendio-page .industry-hero .industry-hero-visual {
    margin-inline: auto !important;
  }
}

/* Ajuste 1.0.220: unificar distribucion de imagen en cards de giros */
.home-industry-grid .home-industry-card,
.solutions-industry-grid .home-industry-card {
  display: flex !important;
  min-height: 276px;
  flex-direction: column;
  overflow: hidden;
  padding: 0 18px 24px !important;
  border-radius: 22px;
}

.home-industry-grid .home-industry-card img,
.solutions-industry-grid .home-industry-card img {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  width: calc(100% + 36px) !important;
  max-width: none !important;
  height: 136px !important;
  margin: 0 -18px !important;
  object-fit: cover;
  object-position: center;
  border-radius: 22px 22px 0 0 !important;
  transform: none;
  transition: transform .28s ease, filter .28s ease;
}

.home-industry-grid .home-industry-card span,
.solutions-industry-grid .home-industry-card span {
  position: relative !important;
  z-index: 2;
  left: auto !important;
  top: auto !important;
  display: grid;
  width: 68px;
  height: 68px;
  margin: -34px auto 16px !important;
  place-items: center;
  border: 6px solid #fff;
  outline: 0 !important;
  border-radius: 50%;
  color: #0866ff;
  background: #fff;
  box-shadow: 0 14px 30px rgba(8,102,255,.16);
  transform: none !important;
}

.home-industry-grid .home-industry-card h3,
.solutions-industry-grid .home-industry-card h3 {
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #12385f;
  text-align: center;
}

.home-industry-grid .home-industry-card p,
.solutions-industry-grid .home-industry-card p {
  margin: 0 !important;
  padding: 0 !important;
  color: #31445f;
  text-align: center;
}

.home-industry-grid .home-industry-card:hover img,
.home-industry-grid .home-industry-card:focus-visible img,
.solutions-industry-grid .home-industry-card:hover img,
.solutions-industry-grid .home-industry-card:focus-visible img,
.solutions-industry-grid .home-industry-card:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 620px) {
  .home-industry-grid .home-industry-card,
  .solutions-industry-grid .home-industry-card {
    min-height: auto;
  }

  .home-industry-grid .home-industry-card img,
  .solutions-industry-grid .home-industry-card img {
    height: 168px !important;
  }
}

/* Ajuste 1.0.221: imagen superior a todo el ancho en cards internas de soluciones */
.industry-refresh .industry-problem-card--media {
  overflow: hidden;
  padding: 0 0 28px !important;
}

.industry-refresh .industry-problem-card--media .industry-problem-card-photo {
  display: block;
  overflow: hidden;
  width: 100% !important;
  height: clamp(154px, 13vw, 178px);
  margin: 0 !important;
  border-radius: 24px 24px 0 0;
}

.industry-refresh .industry-problem-card--media .industry-problem-card-photo img {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 680px) {
  .industry-refresh .industry-problem-card--media {
    padding: 0 0 28px !important;
  }

  .industry-refresh .industry-problem-card--media .industry-problem-card-photo {
    height: 190px !important;
  }
}

/* Ajuste 1.0.222: personalizacion sin chips y foto antes de botones en movil */
.personalization-page .personalization-hero-tools {
  display: none !important;
}

@media (max-width: 760px) {
  .personalization-page .personalization-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .personalization-page .personalization-hero-copy {
    display: contents;
  }

  .personalization-page .personalization-hero-copy .breadcrumbs {
    order: 1;
  }

  .personalization-page .personalization-hero-copy .home-badge {
    order: 2;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .personalization-page .personalization-hero-copy h1 {
    order: 3;
    margin-bottom: 12px;
    text-align: left;
  }

  .personalization-page .personalization-hero-copy .lead {
    order: 4;
    text-align: left;
  }

  .personalization-page .personalization-hero-visual {
    order: 5;
    width: 100%;
    max-width: 560px;
    min-height: clamp(260px, 72vw, 390px) !important;
    padding: 0 !important;
    margin: 4px auto 0 !important;
  }

  .personalization-page .personalization-people-scene {
    min-height: clamp(260px, 72vw, 390px) !important;
  }

  .personalization-page .personalization-people-scene--single .liquid-glass-main {
    inset: 18px 0 18px !important;
    border-radius: 26px;
  }

  .personalization-page .personalization-people-scene--single .personalization-people-main {
    left: 50% !important;
    top: 28px !important;
    width: 94% !important;
    height: clamp(220px, 60vw, 320px) !important;
    border-radius: 24px;
    transform: translateX(-50%) !important;
    animation: none !important;
  }

  .personalization-page .personalization-hero-copy .home-hero-actions {
    order: 6;
    width: 100%;
    margin-top: 10px !important;
  }
}

/* Ajuste 1.0.223: mover foto de personalizacion antes de botones usando el grid real */
@media (max-width: 760px) {
  .personalization-page #personalizacion-hero .home-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .personalization-page #personalizacion-hero .home-hero-copy {
    display: contents !important;
  }

  .personalization-page #personalizacion-hero .home-badge {
    order: 1 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .personalization-page #personalizacion-hero h1 {
    order: 2 !important;
    text-align: left !important;
  }

  .personalization-page #personalizacion-hero .lead {
    order: 3 !important;
    text-align: left !important;
  }

  .personalization-page #personalizacion-hero .personalization-hero-visual {
    order: 4 !important;
    width: 100% !important;
    max-width: 560px !important;
    min-height: clamp(250px, 70vw, 380px) !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .personalization-page #personalizacion-hero .personalization-people-scene {
    min-height: clamp(250px, 70vw, 380px) !important;
  }

  .personalization-page #personalizacion-hero .home-hero-actions {
    order: 5 !important;
    width: 100% !important;
    margin-top: 8px !important;
  }
}

/* Ajuste 1.0.224: chips de personalizacion visibles en escritorio, ocultos solo en movil */
@media (min-width: 761px) {
  .personalization-page .personalization-hero-tools {
    display: grid !important;
  }
}

@media (max-width: 760px) {
  .personalization-page .personalization-hero-tools {
    display: none !important;
  }
}

/* Ajuste 1.0.225: evitar cortes raros en titulos largos de soluciones */
.industry-refresh .industry-hero-copy h1,
.industry-refresh .industry-hero-copy h1 span {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.parts-page .industry-hero-copy h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 5.35vw, 5.2rem) !important;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .industry-refresh .industry-hero-copy h1 {
    font-size: clamp(2.7rem, 6.2vw, 4.45rem) !important;
  }

  .parts-page .industry-hero-copy h1 {
    font-size: clamp(2.55rem, 5.7vw, 4rem) !important;
  }
}

@media (max-width: 760px) {
  .industry-refresh .industry-hero-copy h1,
  .industry-refresh .industry-hero-copy h1 span {
    overflow-wrap: break-word !important;
  }
}

/* Ajuste 1.0.226: titulo de proceso en personalizacion con mas aire */
.personalization-page #personalizacion-proceso .home-section-title {
  max-width: min(1120px, 100%);
}

.personalization-page #personalizacion-proceso .home-section-title h2 {
  max-width: 1080px;
  font-size: clamp(2.25rem, 3.45vw, 3.7rem);
  line-height: 1.04;
}

.personalization-page #personalizacion-proceso .home-section-title h2 span {
  display: inline;
}

@media (max-width: 980px) {
  .personalization-page #personalizacion-proceso .home-section-title h2 span {
    display: block;
  }
}

@media (max-width: 760px) {
  .personalization-page #personalizacion-proceso .home-section-title h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.55rem) !important;
  }
}

/* Ajuste 1.0.227: hero de precios optimizado para movil */
@media (max-width: 760px) {
  .pricing-page #precios-hero .home-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .pricing-page #precios-hero .home-hero-copy {
    text-align: left !important;
    padding-bottom: 0 !important;
  }

  .pricing-page #precios-hero .home-badge {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .pricing-page #precios-hero h1,
  .pricing-page #precios-hero .lead {
    text-align: left !important;
  }

  .pricing-page #precios-hero .home-hero-tools,
  .pricing-page #precios-hero .pricing-hero-card {
    display: none !important;
  }

  .pricing-page #precios-hero .pricing-hero-visual {
    width: 100% !important;
    max-width: 560px !important;
    min-height: 0 !important;
    margin: 4px auto 0 !important;
    padding: 0 !important;
  }

  .pricing-page #precios-hero .pricing-scene {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .pricing-page #precios-hero .pricing-glass {
    display: none !important;
  }

  .pricing-page #precios-hero .pricing-pos-image {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(220px, 62vw, 320px) !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    transform: none !important;
    animation: none !important;
  }
}

/* Ajuste 1.0.228: beneficios de precios integrados en movil */
@media (max-width: 760px) {
  .pricing-page .pricing-includes {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 14px !important;
    padding: 14px !important;
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 34px rgba(7,20,46,.07);
  }

  .pricing-page .pricing-includes span {
    width: 100% !important;
    min-height: 52px;
    justify-content: flex-start !important;
    gap: 12px;
    padding: 12px 14px !important;
    border: 1px solid rgba(8,102,255,.1);
    border-radius: 16px !important;
    background: #f6faff;
    box-shadow: none !important;
    font-size: clamp(.94rem, 4.5vw, 1.02rem);
    line-height: 1.25;
  }

  .pricing-page .pricing-includes i {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    background: rgba(8,102,255,.08);
  }
}

/* Ajuste 1.0.229: lista de beneficios de precios sin caja flotante en movil/tablet */
@media (max-width: 900px) {
  body .pricing-page .pricing-includes {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .pricing-page .pricing-includes span {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    width: 100% !important;
    min-height: 0 !important;
    justify-content: initial !important;
    gap: 10px !important;
    padding: 10px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(8,102,255,.1) !important;
    border-radius: 0 !important;
    color: #07142e;
    background: transparent !important;
    box-shadow: none !important;
    font-size: clamp(.96rem, 4.2vw, 1.06rem) !important;
    line-height: 1.3;
  }

  body .pricing-page .pricing-includes span:last-child {
    border-bottom: 0 !important;
  }

  body .pricing-page .pricing-includes i {
    display: grid !important;
    width: 34px !important;
    height: 34px !important;
    place-items: center;
    border-radius: 12px;
    color: #0866ff;
    background: rgba(8,102,255,.08) !important;
  }
}

/* Ajuste 1.0.230: hero de recursos optimizado para escritorio y movil */
.resources-page #recursos-hero h1,
.resources-page #recursos-hero h1 span {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.resources-page #recursos-hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
}

@media (max-width: 760px) {
  .resources-page #recursos-hero .home-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .resources-page #recursos-hero .home-hero-copy {
    display: contents !important;
  }

  .resources-page #recursos-hero .home-badge {
    order: 1 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .resources-page #recursos-hero h1 {
    order: 2 !important;
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.15rem) !important;
    line-height: 1;
    text-align: left !important;
  }

  .resources-page #recursos-hero .lead {
    order: 3 !important;
    text-align: left !important;
  }

  .resources-page #recursos-hero .personalization-hero-visual {
    order: 4 !important;
    width: 100% !important;
    max-width: 560px !important;
    min-height: clamp(250px, 70vw, 380px) !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .resources-page #recursos-hero .personalization-people-scene {
    min-height: clamp(250px, 70vw, 380px) !important;
  }

  .resources-page #recursos-hero .personalization-people-scene--single .liquid-glass-main {
    display: none !important;
  }

  .resources-page #recursos-hero .personalization-people-scene--single .personalization-people-main {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(220px, 60vw, 320px) !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    transform: none !important;
    animation: none !important;
  }

  .resources-page #recursos-hero .personalization-hero-tools {
    display: none !important;
  }

  .resources-page #recursos-hero .home-hero-actions {
    order: 5 !important;
    display: grid !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: 8px !important;
  }

  .resources-page #recursos-hero .home-hero-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* Ajuste 1.0.231: botones del hero de recursos iguales al patron movil */
@media (max-width: 760px) {
  .resources-page #recursos-hero .home-hero-actions {
    order: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 14px !important;
    margin-top: 8px !important;
  }

  .resources-page #recursos-hero .home-hero-actions .btn,
  .resources-page #recursos-hero .home-hero-actions .btn-primary,
  .resources-page #recursos-hero .home-hero-actions .btn-secondary {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    justify-content: center !important;
    padding-inline: 18px !important;
    border-radius: 22px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .resources-page #recursos-hero .home-hero-actions .btn i {
    flex: 0 0 auto;
    margin-right: 0 !important;
  }
}

/* Ajuste 1.0.232: ocultar caption de guia base en movil */
@media (max-width: 760px) {
  .resources-page .resources-guides-photo figcaption {
    display: none !important;
  }

  .resources-page .resources-guides-photo::after {
    display: none !important;
  }
}

/* Ajuste 1.0.233: centrar contenido del boton WhatsApp en recursos movil */
@media (max-width: 760px) {
  .resources-page #recursos-hero .home-hero-actions .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .resources-page #recursos-hero .home-hero-actions .btn-primary i {
    margin: 0 !important;
  }
}

/* Ajuste 1.0.234: boton WhatsApp de recursos en una linea en movil */
@media (max-width: 760px) {
  .resources-page #recursos-hero .home-hero-actions .btn-primary {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: clamp(.94rem, 4vw, 1.04rem) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .resources-page #recursos-hero .home-hero-actions .btn-primary i {
    flex: 0 0 auto !important;
    margin: 0 !important;
    font-size: 1.05em !important;
  }
}

/* Ajuste 1.0.235: Soporte visible dentro del menu movil */
.nav-links .mobile-support-link {
  display: none;
}

@media (max-width: 900px) {
  .nav-links .mobile-support-link {
    display: flex !important;
  }
}

/* Ajuste 1.0.236: soporte optimizado para movil */
@media (max-width: 760px) {
  .support-page-refresh #soporte-hero {
    padding: 34px 0 72px !important;
  }

  .support-page-refresh #soporte-hero .support-hero-shell {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .support-page-refresh #soporte-hero .support-hero-copy {
    display: contents !important;
  }

  .support-page-refresh #soporte-hero .support-breadcrumbs,
  .support-page-refresh #soporte-hero .support-hero-tools {
    display: none !important;
  }

  .support-page-refresh #soporte-hero .home-badge {
    order: 1 !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    border-color: rgba(8,102,255,.25) !important;
    background: rgba(231,241,255,.9) !important;
    color: #0866ff !important;
    white-space: normal !important;
  }

  .support-page-refresh #soporte-hero h1 {
    order: 2 !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: clamp(2.35rem, 11vw, 3.2rem) !important;
    line-height: 1 !important;
  }

  .support-page-refresh #soporte-hero .lead {
    order: 3 !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: 1.02rem !important;
    line-height: 1.58 !important;
  }

  .support-page-refresh #soporte-hero .support-hero-visual {
    order: 4 !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 4px 0 0 !important;
  }

  .support-page-refresh #soporte-hero .page-photo-visual::before,
  .support-page-refresh #soporte-hero .page-photo-visual figcaption {
    display: none !important;
  }

  .support-page-refresh #soporte-hero .page-photo-visual img {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    border-radius: 28px !important;
    box-shadow: 0 22px 54px rgba(7,20,46,.14) !important;
    transform: none !important;
    animation: none !important;
  }

  .support-page-refresh #soporte-hero .support-hero-actions {
    order: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: 6px !important;
  }

  .support-page-refresh #soporte-hero .support-hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    justify-content: center !important;
    gap: 9px !important;
    padding-inline: 18px !important;
    border-radius: 22px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .support-page-refresh #soporte-hero .support-hero-actions .btn i {
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .support-page-refresh #soporte-opciones,
  .support-page-refresh #soporte-preparar,
  .support-page-refresh #soporte-flujo,
  .support-page-refresh #soporte-horarios,
  .support-page-refresh #soporte-faq,
  .support-page-refresh #soporte-cta {
    padding-block: 52px !important;
  }

  .support-page-refresh .support-channel-card,
  .support-page-refresh .support-data-grid .home-special-column,
  .support-page-refresh .industry-flow-steps article,
  .support-page-refresh .support-contact-list span {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .support-page-refresh .support-prep-layout {
    gap: 18px !important;
  }

  .support-page-refresh .support-prep-layout .section-side-photo {
    min-height: 0 !important;
    border-radius: 26px !important;
  }

  .support-page-refresh .support-prep-layout .section-side-photo img {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  .support-page-refresh .support-prep-layout .section-side-photo figcaption {
    display: none !important;
  }

  .support-page-refresh #soporte-flujo .btn,
  .support-page-refresh #soporte-faq .btn,
  .support-page-refresh #soporte-cta .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Ajuste 1.0.237: soporte con titulos bicolor y flechas proporcionadas */
.support-page-refresh #soporte-opciones .home-section-title h2 span,
.support-page-refresh #soporte-preparar .home-section-title h2 span {
  color: #0866ff;
}

.support-page-refresh .support-channel-card .text-link i {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: currentColor !important;
  font-size: .86em !important;
  line-height: 1 !important;
}

@media (max-width: 760px) {
  .support-page-refresh .support-channel-card .text-link {
    gap: 7px !important;
    font-size: .98rem !important;
  }

  .support-page-refresh .support-channel-card .text-link i {
    font-size: .82em !important;
  }
}

/* Ajuste 1.0.238: quitar raya lateral accidental en cards de soporte */
.support-page-refresh .support-data-grid .home-special-column {
  border: 1px solid rgba(8,102,255,.12) !important;
  border-radius: 26px !important;
  background: rgba(255,255,255,.9) !important;
  box-shadow: 0 18px 44px rgba(7,20,46,.06) !important;
}

.support-page-refresh .support-data-grid .home-special-column::before {
  display: none !important;
  content: none !important;
}

@media (max-width: 760px) {
  .support-page-refresh .support-data-grid {
    gap: 16px !important;
  }

  .support-page-refresh .support-data-grid .home-special-column {
    overflow: hidden !important;
  }
}

/* Ajuste 1.0.239: contacto optimizado para movil */
.contact-page-refresh #contacto-opciones .home-section-title h2 span,
.contact-page-refresh #contacto-formulario .industry-flow-copy h2 span,
.contact-page-refresh #contacto-siguiente-paso .industry-flow-copy h2 span {
  color: #0866ff;
}

@media (max-width: 760px) {
  .contact-page-refresh #contacto-hero {
    padding: 34px 0 72px !important;
  }

  .contact-page-refresh #contacto-hero .contact-hero-shell {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact-page-refresh #contacto-hero .contact-hero-copy {
    display: contents !important;
  }

  .contact-page-refresh #contacto-hero .contact-breadcrumbs,
  .contact-page-refresh #contacto-hero .contact-hero-tools {
    display: none !important;
  }

  .contact-page-refresh #contacto-hero .home-badge {
    order: 1 !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    border-color: rgba(8,102,255,.25) !important;
    background: rgba(231,241,255,.9) !important;
    color: #0866ff !important;
    white-space: normal !important;
  }

  .contact-page-refresh #contacto-hero h1 {
    order: 2 !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: clamp(2.35rem, 11vw, 3.2rem) !important;
    line-height: 1 !important;
  }

  .contact-page-refresh #contacto-hero .lead {
    order: 3 !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: 1.02rem !important;
    line-height: 1.58 !important;
  }

  .contact-page-refresh #contacto-hero .contact-hero-visual {
    order: 4 !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 4px 0 0 !important;
  }

  .contact-page-refresh #contacto-hero .page-photo-visual::before,
  .contact-page-refresh #contacto-hero .page-photo-visual figcaption {
    display: none !important;
  }

  .contact-page-refresh #contacto-hero .page-photo-visual img {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    border-radius: 28px !important;
    box-shadow: 0 22px 54px rgba(7,20,46,.14) !important;
    transform: none !important;
    animation: none !important;
  }

  .contact-page-refresh #contacto-hero .contact-hero-actions {
    order: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: 6px !important;
  }

  .contact-page-refresh #contacto-hero .contact-hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    justify-content: center !important;
    gap: 9px !important;
    padding-inline: 18px !important;
    border-radius: 22px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .contact-page-refresh #contacto-hero .contact-hero-actions .btn i {
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .contact-page-refresh #contacto-opciones,
  .contact-page-refresh #contacto-formulario,
  .contact-page-refresh #contacto-siguiente-paso,
  .contact-page-refresh #contacto-cta {
    padding-block: 52px !important;
  }

  .contact-page-refresh #contacto-opciones .industry-problem-grid {
    gap: 16px !important;
  }

  .contact-page-refresh #contacto-opciones .industry-problem-card,
  .contact-page-refresh #contacto-siguiente-paso .industry-flow-steps article {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .contact-page-refresh #contacto-formulario .contact-form-panel,
  .contact-page-refresh #contacto-siguiente-paso .industry-flow-panel {
    gap: 20px !important;
  }

  .contact-page-refresh #contacto-formulario .form-card {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .contact-page-refresh #contacto-formulario .form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact-page-refresh #contacto-formulario .form-group.full {
    grid-column: auto !important;
  }

  .contact-page-refresh #contacto-formulario .form-group input,
  .contact-page-refresh #contacto-formulario .form-group select,
  .contact-page-refresh #contacto-formulario .form-group textarea {
    min-height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
  }

  .contact-page-refresh #contacto-formulario .form-group textarea {
    min-height: 112px !important;
  }

  .contact-page-refresh #contacto-formulario .form-group .btn,
  .contact-page-refresh #contacto-siguiente-paso .btn,
  .contact-page-refresh #contacto-cta .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Ajuste 1.0.240: titulos bicolor reforzados en contacto */
.contact-page-refresh .home-section-title h2 span,
.contact-page-refresh .industry-flow-copy h2 span {
  color: #0866ff !important;
}

/* Ajuste 1.0.241: formulario funcional de contacto */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-feedback.is-success {
  color: #08755a;
  background: #e4fbf5;
}

.form-feedback.is-error {
  color: #9b1c1c;
  background: #ffe8e8;
}

[data-demo-form] .btn[disabled] {
  cursor: progress;
  opacity: .72;
}

/* Ajuste 1.0.242: enlace de Grupo Icarus en footer */
.footer-bottom .footer-group-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom .footer-group-link:hover,
.footer-bottom .footer-group-link:focus-visible {
  color: #0866ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Ajuste 1.0.243: imagen en CTA final del index */
#inicio-cta .home-final-pro--with-image {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px) minmax(250px, 320px);
  gap: clamp(22px, 3vw, 38px);
}

#inicio-cta .home-final-pro-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-self: stretch;
  min-height: 230px;
  margin: 0;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,247,255,.92));
  box-shadow: 0 18px 46px rgba(7,20,46,.10);
}

#inicio-cta .home-final-pro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 54%, rgba(7,20,46,.12));
}

#inicio-cta .home-final-pro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .28s ease, filter .28s ease;
}

#inicio-cta .home-final-pro--with-image:hover .home-final-pro-visual img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 1180px) {
  #inicio-cta .home-final-pro--with-image {
    grid-template-columns: 1fr minmax(240px, 340px);
  }

  #inicio-cta .home-final-pro-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  #inicio-cta .home-final-pro--with-image {
    grid-template-columns: 1fr;
    text-align: left;
  }

  #inicio-cta .home-final-pro-copy {
    text-align: left;
  }

  #inicio-cta .home-final-pro .home-section-kicker,
  #inicio-cta .home-final-pro h2,
  #inicio-cta .home-final-pro p {
    margin-left: 0;
    margin-right: 0;
  }

  #inicio-cta .home-final-pro-meta {
    justify-content: flex-start;
  }

  #inicio-cta .home-final-pro-visual {
    order: 2;
    min-height: 0;
    border-radius: 20px;
  }

  #inicio-cta .home-final-pro-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  #inicio-cta .home-final-pro-action {
    order: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  #inicio-cta .home-final-pro-visual img,
  #inicio-cta .home-final-pro--with-image:hover .home-final-pro-visual img {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Ajuste 1.0.244: CTA final con imagen integrada, no en tercera columna */
#inicio-cta .home-final-pro--with-image {
  align-items: stretch;
  grid-template-columns: minmax(0, .88fr) minmax(420px, .72fr);
  gap: clamp(26px, 4vw, 52px);
  min-height: 430px;
}

#inicio-cta .home-final-pro--with-image .home-final-pro-copy {
  align-self: center;
}

#inicio-cta .home-final-pro--with-image .home-final-pro-visual {
  grid-column: 2;
  grid-row: 1;
  min-height: 350px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7,20,46,.13);
}

#inicio-cta .home-final-pro--with-image .home-final-pro-visual::after {
  background: linear-gradient(180deg, rgba(7,20,46,0) 42%, rgba(7,20,46,.48) 100%);
}

#inicio-cta .home-final-pro--with-image .home-final-pro-visual img {
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
  transform: none;
}

#inicio-cta .home-final-pro--with-image .home-final-pro-action {
  z-index: 3;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: center;
  width: min(88%, 370px);
  margin: 0 0 24px;
  border-color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.9);
  box-shadow: 0 20px 52px rgba(7,20,46,.18);
  backdrop-filter: blur(16px);
}

#inicio-cta .home-final-pro--with-image:hover .home-final-pro-visual img {
  transform: scale(1.025);
}

@media (max-width: 1080px) {
  #inicio-cta .home-final-pro--with-image {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual,
  #inicio-cta .home-final-pro--with-image .home-final-pro-action {
    grid-column: auto;
    grid-row: auto;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual {
    min-height: 300px;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual img {
    min-height: 300px;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-action {
    width: min(100%, 380px);
    margin: 0;
  }
}

@media (max-width: 760px) {
  #inicio-cta .home-final-pro--with-image .home-final-pro-visual {
    order: 2;
    min-height: 0;
    border-radius: 22px;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual::after {
    display: none;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
    transform: none !important;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-action {
    order: 3;
    width: 100%;
    backdrop-filter: none;
  }
}

/* Ajuste 1.0.245: CTA final con panel visual mas profesional */
#inicio-cta .home-final-pro--with-image {
  align-items: center;
  grid-template-columns: minmax(0, .86fr) minmax(460px, .86fr);
  gap: clamp(34px, 5vw, 68px);
  padding: clamp(34px, 4.8vw, 58px);
}

#inicio-cta .home-final-pro--with-image::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(8,102,255,.12), transparent 18rem),
    linear-gradient(90deg, rgba(255,255,255,.52), transparent 48%);
}

#inicio-cta .home-final-pro--with-image .home-final-pro-copy {
  max-width: 620px;
}

#inicio-cta .home-final-pro--with-image .home-final-pro-copy h2 {
  max-width: 620px;
}

#inicio-cta .home-final-pro--with-image .home-final-pro-copy p {
  max-width: 560px;
}

#inicio-cta .home-final-pro--with-image .home-final-pro-visual {
  isolation: isolate;
  min-height: 420px;
  border-radius: 32px;
  border-color: rgba(8,102,255,.16);
  background: #eef6ff;
  box-shadow: 0 26px 70px rgba(7,20,46,.14);
}

#inicio-cta .home-final-pro--with-image .home-final-pro-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 24px;
}

#inicio-cta .home-final-pro--with-image .home-final-pro-visual::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,20,46,0) 32%, rgba(7,20,46,.58) 100%),
    linear-gradient(90deg, rgba(7,20,46,.08), rgba(7,20,46,0) 45%);
}

#inicio-cta .home-final-pro--with-image .home-final-pro-visual img {
  min-height: 420px;
  object-position: center;
}

#inicio-cta .home-final-pro-caption {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  gap: 5px;
  max-width: min(54%, 300px);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 18px;
  color: #fff;
  background: rgba(7,20,46,.58);
  box-shadow: 0 18px 42px rgba(7,20,46,.22);
  backdrop-filter: blur(16px);
}

#inicio-cta .home-final-pro-caption span {
  color: #9dccff;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#inicio-cta .home-final-pro-caption strong {
  color: #fff;
  font-size: .98rem;
  line-height: 1.25;
}

#inicio-cta .home-final-pro--with-image .home-final-pro-action {
  align-self: end;
  justify-self: end;
  width: min(46%, 300px);
  margin: 0 26px 26px 0;
  padding: 18px;
  border-radius: 20px;
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.93);
}

#inicio-cta .home-final-pro--with-image .home-final-pro-action > span {
  color: #0866ff;
  font-size: .74rem;
  letter-spacing: .08em;
}

#inicio-cta .home-final-pro--with-image .home-final-phone {
  color: #31445f;
}

@media (max-width: 1180px) {
  #inicio-cta .home-final-pro--with-image {
    grid-template-columns: 1fr;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-copy {
    max-width: 760px;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual {
    min-height: 360px;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual img {
    min-height: 360px;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-action {
    width: min(100%, 360px);
    margin: 0;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  #inicio-cta .home-final-pro--with-image {
    gap: 18px;
    padding: 24px;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual {
    min-height: 0;
    border-radius: 22px;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual::before,
  #inicio-cta .home-final-pro-caption {
    display: none;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-visual img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  #inicio-cta .home-final-pro--with-image .home-final-pro-action {
    width: 100%;
    margin: 0;
  }
}

/* Ajuste 1.0.246: CTA final refinado sin imagen forzada */
#inicio-cta .home-final-pro--refined {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 82% 20%, rgba(8,102,255,.12), transparent 18rem),
    radial-gradient(circle at 68% 84%, rgba(105,217,155,.10), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.96) 58%, rgba(238,246,255,.95) 100%);
}

#inicio-cta .home-final-pro--refined::before {
  background:
    linear-gradient(90deg, rgba(8,102,255,.08), transparent 44%),
    repeating-linear-gradient(90deg, rgba(8,102,255,.035) 0 1px, transparent 1px 54px);
  opacity: .9;
}

#inicio-cta .home-final-pro--refined::after {
  background: linear-gradient(90deg, #0866ff, #8fc2ff 58%, rgba(8,102,255,0));
}

#inicio-cta .home-final-pro--refined .home-final-pro-copy {
  position: relative;
}

#inicio-cta .home-final-pro--refined .home-final-pro-copy::after {
  content: "";
  position: absolute;
  right: clamp(-18px, -2vw, -8px);
  bottom: -8px;
  width: clamp(120px, 16vw, 210px);
  aspect-ratio: 1.7;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 50%, rgba(8,102,255,.16) 0 8px, transparent 9px),
    radial-gradient(circle at 50% 50%, rgba(8,102,255,.10) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 50%, rgba(8,102,255,.16) 0 8px, transparent 9px);
  opacity: .75;
}

#inicio-cta .home-final-pro--refined .home-final-pro-action {
  align-self: center;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
}

@media (max-width: 760px) {
  #inicio-cta .home-final-pro--refined {
    grid-template-columns: 1fr;
  }

  #inicio-cta .home-final-pro--refined .home-final-pro-copy::after {
    display: none;
  }
}

/* Ajuste 1.0.247: foto sutil integrada al CTA final */
#inicio-cta .home-final-pro--refined {
  isolation: isolate;
  overflow: hidden;
}

#inicio-cta .home-final-pro-watermark {
  position: absolute;
  inset: 18px 18px 18px auto;
  z-index: 0;
  width: min(46%, 520px);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  opacity: .34;
  filter: saturate(.9) contrast(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%);
}

#inicio-cta .home-final-pro-watermark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,251,255,.92), rgba(248,251,255,.34) 42%, rgba(238,246,255,.12));
}

#inicio-cta .home-final-pro-watermark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#inicio-cta .home-final-pro--refined .home-final-pro-copy,
#inicio-cta .home-final-pro--refined .home-final-pro-action {
  z-index: 2;
}

@media (max-width: 980px) {
  #inicio-cta .home-final-pro-watermark {
    inset: auto 18px 18px;
    width: auto;
    height: 190px;
    opacity: .22;
    mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
  }
}

@media (max-width: 760px) {
  #inicio-cta .home-final-pro-watermark {
    display: none;
  }
}

/* Ajuste 1.0.248: foto en CTA como encabezado de la accion */
#inicio-cta .home-final-pro--refined {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
}

#inicio-cta .home-final-action-photo {
  overflow: hidden;
  height: 148px;
  margin: -8px -8px 4px;
  border-radius: 18px;
  border: 1px solid rgba(8,102,255,.12);
  background: #eef6ff;
}

#inicio-cta .home-final-action-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#inicio-cta .home-final-pro--refined .home-final-pro-action {
  padding: 16px;
}

#inicio-cta .home-final-pro--refined .home-final-pro-action > span {
  margin-top: 2px;
}

@media (max-width: 760px) {
  #inicio-cta .home-final-action-photo {
    height: 132px;
    margin: -4px -4px 4px;
    border-radius: 16px;
  }
}

/* Ajuste 1.0.249: CTA final sin foto forzada */
#inicio-cta .home-final-pro--refined {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

#inicio-cta .home-final-action-photo,
#inicio-cta .home-final-pro-watermark,
#inicio-cta .home-final-pro-visual,
#inicio-cta .home-final-pro-caption {
  display: none !important;
}

#inicio-cta .home-final-pro--refined .home-final-pro-action {
  padding: 20px;
}

@media (max-width: 760px) {
  #inicio-cta .home-final-pro--refined {
    grid-template-columns: 1fr;
  }
}

/* Ajuste 1.0.250: CTA final con persona invitando a probar */
#inicio-cta .home-final-pro--human {
  align-items: stretch;
  grid-template-columns: minmax(0, .9fr) minmax(430px, .78fr);
  gap: clamp(30px, 5vw, 64px);
  min-height: 430px;
  padding: clamp(32px, 4.6vw, 56px);
}

#inicio-cta .home-final-pro--human .home-final-pro-copy::after {
  display: none;
}

#inicio-cta .home-final-human-visual {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 30px;
  background: #eef6ff;
  box-shadow: 0 24px 62px rgba(7,20,46,.12);
}

#inicio-cta .home-final-human-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7,20,46,0) 42%, rgba(7,20,46,.38) 100%);
}

#inicio-cta .home-final-human-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .28s ease, filter .28s ease;
}

#inicio-cta .home-final-pro--human:hover .home-final-human-visual img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

#inicio-cta .home-final-pro--human .home-final-pro-action {
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  width: min(86%, 360px);
  margin: 0 0 24px 24px;
  padding: 18px;
  border-radius: 22px;
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.93);
  box-shadow: 0 20px 52px rgba(7,20,46,.18);
  backdrop-filter: blur(16px);
}

@media (max-width: 1080px) {
  #inicio-cta .home-final-pro--human {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  #inicio-cta .home-final-human-visual,
  #inicio-cta .home-final-pro--human .home-final-pro-action {
    grid-column: auto;
    grid-row: auto;
  }

  #inicio-cta .home-final-human-visual {
    min-height: 320px;
  }

  #inicio-cta .home-final-pro--human .home-final-pro-action {
    width: min(100%, 390px);
    margin: 0;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  #inicio-cta .home-final-pro--human {
    gap: 18px;
    padding: 24px;
  }

  #inicio-cta .home-final-human-visual {
    order: 2;
    min-height: 0;
    border-radius: 22px;
  }

  #inicio-cta .home-final-human-visual::after {
    display: none;
  }

  #inicio-cta .home-final-human-visual img {
    height: auto;
    aspect-ratio: 16 / 10;
    transform: none !important;
  }

  #inicio-cta .home-final-pro--human .home-final-pro-action {
    order: 3;
    width: 100%;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #inicio-cta .home-final-human-visual img,
  #inicio-cta .home-final-pro--human:hover .home-final-human-visual img {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Ajuste 1.0.251: CTA final con asesora integrada, no foto incrustada */
#inicio-cta .home-final-pro--advisor {
  position: relative;
  isolation: isolate;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(22px, 4vw, 48px);
  min-height: 390px;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  background:
    radial-gradient(circle at 88% 16%, rgba(105,217,155,.13), transparent 16rem),
    radial-gradient(circle at 72% 78%, rgba(8,102,255,.12), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.97) 58%, rgba(238,246,255,.96) 100%);
}

#inicio-cta .home-final-pro--advisor::before {
  background:
    linear-gradient(90deg, rgba(8,102,255,.06), transparent 52%),
    repeating-linear-gradient(90deg, rgba(8,102,255,.032) 0 1px, transparent 1px 58px);
}

#inicio-cta .home-final-pro--advisor .home-final-pro-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

#inicio-cta .home-final-pro--advisor .home-final-pro-copy::after {
  display: none;
}

#inicio-cta .home-final-advisor-visual {
  position: absolute;
  right: clamp(245px, 25vw, 390px);
  bottom: -24px;
  z-index: 1;
  width: clamp(230px, 26vw, 390px);
  margin: 0;
  pointer-events: none;
  opacity: .94;
  filter: drop-shadow(0 24px 42px rgba(7,20,46,.16));
}

#inicio-cta .home-final-advisor-visual::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 5%;
  bottom: 5%;
  height: 34%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8,102,255,.16), rgba(8,102,255,0) 70%);
  filter: blur(2px);
}

#inicio-cta .home-final-advisor-visual img {
  display: block;
  width: 100%;
  height: auto;
}

#inicio-cta .home-final-pro--advisor .home-final-pro-action {
  position: relative;
  z-index: 4;
  align-self: center;
  justify-self: end;
  width: min(100%, 360px);
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 58px rgba(7,20,46,.13);
  backdrop-filter: blur(18px);
}

#inicio-cta .home-final-pro--advisor:hover .home-final-advisor-visual {
  transform: translateY(-4px);
}

#inicio-cta .home-final-advisor-visual {
  transition: transform .28s ease;
}

@media (max-width: 1120px) {
  #inicio-cta .home-final-pro--advisor {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  }

  #inicio-cta .home-final-advisor-visual {
    right: clamp(230px, 31vw, 350px);
    width: clamp(205px, 25vw, 320px);
    opacity: .72;
  }
}

@media (max-width: 860px) {
  #inicio-cta .home-final-pro--advisor {
    grid-template-columns: 1fr;
  }

  #inicio-cta .home-final-advisor-visual {
    position: relative;
    right: auto;
    bottom: auto;
    order: 2;
    justify-self: center;
    width: min(64vw, 280px);
    opacity: 1;
  }

  #inicio-cta .home-final-pro--advisor .home-final-pro-action {
    order: 3;
    justify-self: stretch;
    width: 100%;
    backdrop-filter: none;
  }
}

@media (max-width: 620px) {
  #inicio-cta .home-final-pro--advisor {
    gap: 14px;
    padding: 24px;
  }

  #inicio-cta .home-final-advisor-visual {
    width: min(72vw, 250px);
    margin: -6px auto -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #inicio-cta .home-final-advisor-visual,
  #inicio-cta .home-final-pro--advisor:hover .home-final-advisor-visual {
    transform: none !important;
    transition: none !important;
  }
}

/* Ajuste 1.0.252: CTA con dependiente y POS como una sola pieza visual */
#inicio-cta .home-final-pro--advisor {
  grid-template-columns: minmax(0, .92fr) minmax(390px, .82fr);
  min-height: 410px;
  padding-right: clamp(28px, 4vw, 48px);
}

#inicio-cta .home-final-advisor-visual {
  right: clamp(190px, 19vw, 300px);
  bottom: 18px;
  width: clamp(390px, 41vw, 640px);
  opacity: 1;
  filter: drop-shadow(0 24px 42px rgba(7,20,46,.16));
}

#inicio-cta .home-final-advisor-visual::before {
  left: 8%;
  right: 14%;
  bottom: 2%;
  height: 28%;
  background: radial-gradient(ellipse at center, rgba(8,102,255,.15), rgba(8,102,255,0) 72%);
}

#inicio-cta .home-final-pro--advisor .home-final-pro-action {
  width: min(100%, 330px);
  margin-left: auto;
  background: rgba(255,255,255,.94);
}

@media (max-width: 1180px) {
  #inicio-cta .home-final-pro--advisor {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 360px);
  }

  #inicio-cta .home-final-advisor-visual {
    right: clamp(170px, 23vw, 250px);
    width: clamp(340px, 39vw, 520px);
  }
}

@media (max-width: 860px) {
  #inicio-cta .home-final-pro--advisor {
    grid-template-columns: 1fr;
    padding-right: 24px;
  }

  #inicio-cta .home-final-advisor-visual {
    width: min(92vw, 520px);
    margin: -2px auto 0;
  }

  #inicio-cta .home-final-pro--advisor .home-final-pro-action {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  #inicio-cta .home-final-advisor-visual {
    width: min(98vw, 430px);
    margin: -4px -8px -4px;
  }
}

/* Ajuste 1.0.253: CTA final como modulo de accion, no fondo decorativo */
#inicio-cta .home-final-pro--advisor {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(26px, 4.5vw, 58px);
  min-height: 0;
  padding: clamp(30px, 4.8vw, 56px);
}

#inicio-cta .home-final-pro--advisor .home-final-advisor-visual {
  display: none !important;
}

#inicio-cta .home-final-pro--advisor .home-final-pro-action {
  display: grid;
  gap: 14px;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  margin: 0;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 58px rgba(7,20,46,.14);
  backdrop-filter: blur(18px);
}

#inicio-cta .home-final-cta-shot {
  position: relative;
  overflow: hidden;
  margin: 0 0 2px;
  min-height: 190px;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 20%, rgba(105,217,155,.16), transparent 12rem),
    linear-gradient(135deg, #edf6ff, #ffffff 62%);
}

#inicio-cta .home-final-cta-shot::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 4%;
  height: 26%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(8,102,255,.16), rgba(8,102,255,0) 72%);
}

#inicio-cta .home-final-cta-shot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 116%;
  max-width: none;
  height: auto;
  margin: 4px 0 -16px -8%;
  filter: drop-shadow(0 18px 28px rgba(7,20,46,.13));
  transition: transform .28s ease;
}

#inicio-cta .home-final-pro--advisor:hover .home-final-cta-shot img {
  transform: translateY(-3px) scale(1.015);
}

#inicio-cta .home-final-pro--advisor .home-final-pro-action > span {
  display: block;
  width: 100%;
  color: #0866ff;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  #inicio-cta .home-final-pro--advisor {
    grid-template-columns: 1fr;
  }

  #inicio-cta .home-final-pro--advisor .home-final-pro-action {
    width: min(100%, 460px);
    justify-self: start;
    backdrop-filter: none;
  }
}

@media (max-width: 620px) {
  #inicio-cta .home-final-pro--advisor {
    gap: 18px;
    padding: 24px;
  }

  #inicio-cta .home-final-pro--advisor .home-final-pro-action {
    width: 100%;
    padding: 14px;
    border-radius: 24px;
  }

  #inicio-cta .home-final-cta-shot {
    min-height: 160px;
    border-radius: 20px;
  }

  #inicio-cta .home-final-cta-shot img {
    width: 122%;
    margin: 2px 0 -14px -11%;
  }
}

@media (prefers-reduced-motion: reduce) {
  #inicio-cta .home-final-cta-shot img,
  #inicio-cta .home-final-pro--advisor:hover .home-final-cta-shot img {
    transform: none !important;
    transition: none !important;
  }
}

/* Ajuste 1.0.254: fondo propio para el modulo chico del CTA */
#inicio-cta .home-final-pro--advisor .home-final-pro-action {
  border-color: rgba(8,102,255,.16);
  background:
    radial-gradient(circle at 84% 8%, rgba(105,217,155,.13), transparent 11rem),
    radial-gradient(circle at 14% 18%, rgba(8,102,255,.10), transparent 12rem),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,250,255,.96));
}

#inicio-cta .home-final-cta-shot {
  isolation: isolate;
  min-height: 205px;
  background:
    linear-gradient(180deg, rgba(237,246,255,.96) 0%, rgba(255,255,255,.98) 58%, rgba(229,241,255,.96) 100%);
}

#inicio-cta .home-final-cta-shot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.38) 20%, rgba(214,231,250,.82) 100%),
    linear-gradient(90deg, rgba(8,102,255,.07), rgba(105,217,155,.08), rgba(8,102,255,.06));
  border-top: 1px solid rgba(8,102,255,.08);
}

#inicio-cta .home-final-cta-shot::after {
  z-index: 0;
  bottom: 10%;
  background: radial-gradient(ellipse at center, rgba(7,20,46,.16), rgba(8,102,255,.09) 34%, rgba(8,102,255,0) 72%);
}

#inicio-cta .home-final-cta-shot img {
  width: 112%;
  margin: 6px 0 -12px -6%;
}

@media (max-width: 620px) {
  #inicio-cta .home-final-cta-shot {
    min-height: 170px;
  }

  #inicio-cta .home-final-cta-shot img {
    width: 118%;
    margin: 4px 0 -10px -9%;
  }
}

/* Ajuste 1.0.255: fondo de tienda real en el modulo visual del CTA */
#inicio-cta .home-final-cta-shot {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.18) 42%, rgba(7,20,46,.20) 100%),
    url("../imagenes/foto-giro-abarrotes.jpg") center / cover no-repeat;
}

#inicio-cta .home-final-cta-shot::before {
  height: 46%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.22) 24%, rgba(255,255,255,.58) 100%),
    linear-gradient(90deg, rgba(8,102,255,.08), rgba(105,217,155,.08), rgba(8,102,255,.04));
}

#inicio-cta .home-final-cta-shot::after {
  bottom: 9%;
  background: radial-gradient(ellipse at center, rgba(7,20,46,.22), rgba(7,20,46,.10) 35%, rgba(7,20,46,0) 72%);
}

#inicio-cta .home-final-cta-shot img {
  width: 114%;
  margin: 3px 0 -13px -7%;
}

@media (max-width: 620px) {
  #inicio-cta .home-final-cta-shot {
    min-height: 178px;
    background-position: center;
  }

  #inicio-cta .home-final-cta-shot img {
    width: 120%;
    margin: 2px 0 -11px -10%;
  }
}

/* Ajuste 1.0.256: fondo de tienda sin duplicar punto de venta */
#inicio-cta .home-final-cta-shot {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.18) 42%, rgba(7,20,46,.20) 100%),
    url("../imagenes/cta-fondo-tienda-sin-pos.jpg") center / cover no-repeat;
}

/* Ajuste 1.0.257: quitar marca de agua grande en reseñas */
.home-review-card::before {
  display: none !important;
}

/* Ajuste 1.0.258: marca de agua sutil para reseñas */
.home-review-card::before {
  content: "" !important;
  position: absolute;
  right: 18px;
  top: 18px;
  display: block !important;
  width: 118px;
  height: 118px;
  border-radius: 30px;
  opacity: .34;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(8,102,255,.10), rgba(105,217,155,.07)),
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(8,102,255,.10) 15px 16px),
    repeating-linear-gradient(90deg, transparent 0 15px, rgba(8,102,255,.10) 15px 16px);
  transform: rotate(-8deg);
  mask-image: linear-gradient(135deg, rgba(0,0,0,.95), rgba(0,0,0,.12));
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,.95), rgba(0,0,0,.12));
}

.home-review-card::after {
  content: "";
  position: absolute;
  right: 54px;
  top: 54px;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(8,102,255,.12);
  border-radius: 12px;
  opacity: .72;
  pointer-events: none;
  transform: rotate(-8deg);
}

@media (max-width: 720px) {
  .home-review-card::before {
    right: 12px;
    top: 12px;
    width: 92px;
    height: 92px;
    border-radius: 24px;
    opacity: .24;
  }

  .home-review-card::after {
    right: 40px;
    top: 40px;
    width: 30px;
    height: 30px;
  }
}

/* Ajuste 1.0.259: CTAs visuales por giro en paginas de solucion */
.final-cta-shot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 2px;
  min-height: 182px;
  border: 1px solid rgba(8,102,255,.13);
  border-radius: 22px;
  background: #eef6ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.final-cta-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 36%, rgba(7,20,46,.34) 100%),
    linear-gradient(120deg, rgba(8,102,255,.10), transparent 42%);
}

.final-cta-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 182px;
  object-fit: cover;
  object-position: center;
  transition: transform .28s ease, filter .28s ease;
}

.home-final-pro:hover .final-cta-shot img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.home-final-pro-action:has(.final-cta-shot) {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 8%, rgba(105,217,155,.12), transparent 11rem),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,250,255,.94));
}

.home-final-pro-action:has(.final-cta-shot) > span {
  display: block !important;
  width: 100% !important;
  color: #0866ff;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .final-cta-shot {
    min-height: 160px;
    border-radius: 20px;
  }

  .final-cta-shot img {
    min-height: 160px;
  }

  .home-final-pro-action:has(.final-cta-shot) {
    padding: 14px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-final-pro:hover .final-cta-shot img,
  .final-cta-shot img {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Ajuste 1.0.260: scrollbar con detalle de marca */
html {
  scrollbar-width: thin;
  scrollbar-color: #0866ff #eef6ff;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f7fbff, #edf5ff);
}

::-webkit-scrollbar-thumb {
  border: 3px solid #eef6ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #0866ff 0%, #2f8cff 54%, #34c7a1 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.38);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0055df 0%, #0866ff 48%, #25ad8b 100%);
}

::-webkit-scrollbar-corner {
  background: #eef6ff;
}

@media (max-width: 760px) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    border-width: 2px;
  }
}

/* Ajuste 1.0.261: logos textuales para casos sin arte de cliente */
.home-review-logo-mark {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  place-items: center;
  border: 1px solid rgba(8,102,255,.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 72% 18%, rgba(105,217,155,.18), transparent 2.5rem),
    linear-gradient(145deg, #ffffff, #eef6ff);
  box-shadow: 0 12px 24px rgba(7,20,46,.07);
  color: #0866ff;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: .05em;
}


