:root {
  --blue: #0ea5f3;
  --blue-2: #0676f8;
  --blue-3: #1e6fff;
  --purple: #7c3aed;
  --navy: #0d1424;
  --navy-2: #111a2d;
  --text: #101828;
  --muted: #6b7280;
  --soft: #f2f6fb;
  --line: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-blue: 0 18px 40px rgba(14, 165, 243, 0.28);
  --container: 1180px;
  --header-h: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

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

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
}

.brand__mark {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 70px;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(135deg, #08b8ff 0%, #235cff 58%, #7848ff 100%);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.30);
  overflow: hidden;
}

.brand__mark--soft {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.brand__mark--image {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand__mark--image.brand__mark--soft {
  background: transparent;
}

.brand__logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.brand__name {
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.07em;
  background: linear-gradient(90deg, #03a9f4 0%, #1976f8 55%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
  color: #334155;
  font-weight: 700;
  font-size: 15px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue-2);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
  padding: 13px 20px;
  border-radius: 999px;
  background: #eef8ff;
  color: #0578d7;
  font-weight: 800;
  border: 1px solid #ccefff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header__cta:hover {
  transform: translateY(-2px);
  background: #dff4ff;
}

.menu-toggle {
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: #111827;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 34px;
  height: 4px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 48px min(6vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #08aef5 0%, #2563eb 48%, #8238f5 100%);
  transform: translateX(105%);
  transition: transform 0.36s cubic-bezier(.2, .8, .2, 1);
  border-radius: 0 0 0 28px;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-brand {
  color: #fff;
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.mobile-menu__close {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 52px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu__nav {
  margin-top: 58px;
  display: grid;
}

.mobile-menu__nav a {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  font-size: clamp(23px, 6vw, 31px);
  font-weight: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.92);
}

.mobile-menu__nav a.is-active {
  border-radius: 18px;
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.18);
}

.nav-ico {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
}

.mobile-menu__cta {
  margin-top: auto;
  min-height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 18px;
  color: #fff;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
  background: linear-gradient(100deg, rgba(140, 58, 255, 0.9), rgba(0, 174, 239, 0.95));
  box-shadow: 0 24px 55px rgba(20, 24, 80, 0.25);
}

.mobile-menu__cta svg {
  font-size: 26px;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(2, 6, 23, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* BUTTONS */

.btn {
  min-height: 62px;
  border-radius: 16px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  font-size: 22px;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #12aaf4, #0798e8);
  box-shadow: var(--shadow-blue);
}

.btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--light {
  min-width: 300px;
  color: #111827;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}

.btn--demo {
  color: #fff;
  background: linear-gradient(135deg, #116bf2, #0ea5f3);
  box-shadow: var(--shadow-blue);
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: stretch;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: #0b1222;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 13, 27, 0.96), rgba(10, 18, 36, 0.9)),
    radial-gradient(circle at 75% 20%, rgba(14, 165, 243, 0.18), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #0d1424, #18223a);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(13, 20, 36, 0.92));
  z-index: -1;
}

.hero__inner {
  width: min(100% - 48px, var(--container));
  padding: clamp(90px, 12vw, 145px) 0;
  display: grid;
  align-items: center;
  gap: 44px;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #bdefff;
  font-weight: 850;
  font-size: clamp(18px, 3vw, 24px);
  background: rgba(14, 165, 243, 0.12);
  border: 1px solid rgba(14, 165, 243, 0.22);
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.hero p {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(24px, 4.4vw, 30px);
  line-height: 1.9;
  font-weight: 700;
  max-width: 890px;
}

.hero__actions {
  margin-top: 54px;
  display: grid;
  gap: 22px;
}

.hero__visual {
  display: none;
}

.dashboard-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.dashboard-card__top {
  height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.dashboard-card__top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.dashboard-card__body {
  padding: 28px;
}

.dashboard-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.metric--wide {
  margin-bottom: 22px;
}

.metric small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.chart {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 13px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 165, 243, 0.12), rgba(255, 255, 255, 0.06));
}

.chart i {
  flex: 1;
  min-width: 20px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #20d6ff, #2278ff);
}

/* SECTIONS */

.section {
  padding: clamp(78px, 10vw, 120px) 0;
}

.section--white {
  background: #fff;
}

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

.section-head {
  max-width: 820px;
  margin: 0 auto clamp(58px, 7vw, 86px);
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(38px, 7vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.section-head p {
  margin: 22px 0 0;
  color: #6b7280;
  font-size: clamp(21px, 4vw, 28px);
  line-height: 1.55;
  font-weight: 600;
}

.features-grid,
.products-grid,
.testimonials-grid {
  display: grid;
  gap: 30px;
}

.feature-card {
  min-height: 310px;
  padding: clamp(38px, 6vw, 54px);
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
}

.feature-card__icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 38px;
  border-radius: 20px;
  background: #eaf8ff;
}

.feature-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 5vw, 31px);
  line-height: 1.25;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.feature-card p {
  margin: 28px 0 0;
  color: #6b7280;
  font-size: clamp(20px, 4vw, 25px);
  line-height: 1.7;
  font-weight: 550;
}

.product-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfe5ef;
  box-shadow: var(--shadow-sm);
}

.product-card__image {
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.product-card__image--one {
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 197, 94, 0.22), transparent 28%),
    linear-gradient(135deg, #f8fafc, #dbeafe);
}

.product-card__image--two {
  background:
    radial-gradient(circle at 80% 18%, rgba(14, 165, 243, 0.24), transparent 30%),
    linear-gradient(135deg, #e0f2fe, #eff6ff);
}

.product-card__image--three {
  background:
    radial-gradient(circle at 50% 50%, rgba(14, 165, 243, 0.35), transparent 35%),
    linear-gradient(135deg, #0f172a, #1e3a8a);
}

.mini-dashboard {
  width: 82%;
  min-height: 230px;
  padding: 22px;
  border-radius: 20px;
  background: #07111f;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.35);
  border: 8px solid #111827;
}

.mini-dashboard__title {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.mini-dashboard__charts {
  height: 130px;
  margin-top: 22px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.mini-dashboard__charts span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #2dd4ff, #0284c7);
}

.mini-dashboard__line {
  height: 42px;
  margin-top: 20px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, transparent 0 20%, rgba(244, 114, 182, 0.8) 20% 23%, transparent 23% 46%, rgba(34, 211, 238, 0.8) 46% 49%, transparent 49% 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-mock {
  width: 180px;
  height: 240px;
  padding: 14px;
  border-radius: 32px;
  background: #0f172a;
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.28);
}

.device-mock span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, #0ea5f3, #7c3aed);
}

.security-orb {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #0ea5f3, #2563eb, #7c3aed);
  box-shadow:
    0 0 0 28px rgba(14, 165, 243, 0.12),
    0 0 0 58px rgba(124, 58, 237, 0.1),
    0 35px 75px rgba(14, 165, 243, 0.35);
}

.product-card__body {
  padding: 30px;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(27px, 5vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.product-card p {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: clamp(19px, 4vw, 23px);
  line-height: 1.55;
  font-weight: 550;
}

.product-card a {
  margin-top: 22px;
  display: inline-flex;
  color: var(--blue-2);
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.ops-panel {
  padding: clamp(34px, 6vw, 56px);
  display: grid;
  gap: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 243, 0.18), transparent 38%),
    linear-gradient(135deg, #0f172a, #17233a);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.ops-panel__badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #bdefff;
  font-weight: 850;
  background: rgba(14, 165, 243, 0.12);
  border: 1px solid rgba(14, 165, 243, 0.25);
}

.ops-panel h3 {
  margin: 0;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.065em;
  max-width: 760px;
}

.ops-list {
  display: grid;
  gap: 16px;
}

.ops-list div {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ops-list strong {
  color: var(--blue);
  font-size: 22px;
}

.ops-list span {
  font-size: 18px;
  font-weight: 800;
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 26px 28px;
  font-size: clamp(20px, 4vw, 25px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

.faq-item p {
  margin: 0;
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.testimonial-card {
  padding: clamp(36px, 6vw, 56px);
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.quote {
  height: 58px;
  color: var(--blue);
  font-size: 82px;
  line-height: 0.8;
  font-weight: 900;
}

.testimonial-card p {
  margin: 28px 0 0;
  color: #111827;
  font-size: clamp(20px, 4vw, 25px);
  line-height: 1.75;
  font-weight: 550;
}

.person {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.person span {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 850;
  background: linear-gradient(135deg, #0ea5f3, #2563eb);
}

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

.person strong {
  color: #111827;
  font-size: 22px;
  font-weight: 950;
}

.person small {
  margin-top: 4px;
  color: #6b7280;
  font-size: 18px;
}

.demo-band {
  background: var(--blue);
}

.demo-band__inner {
  min-height: 250px;
  padding: 48px 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.demo-band h2 {
  margin: 0;
  font-size: clamp(34px, 7vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.demo-band p {
  max-width: 720px;
  margin: 16px 0 28px;
  font-size: clamp(19px, 4vw, 24px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.site-footer {
  padding: clamp(60px, 8vw, 90px) 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0d1424;
}

.footer__grid {
  display: grid;
  gap: 48px;
}

.brand--footer .brand__name {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.footer__brand p {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.75;
  font-weight: 600;
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer__links h3,
.footer__contact h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer__links a,
.footer__contact a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: #fff;
}

.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer__contact svg {
  color: var(--blue);
  font-size: 25px;
}

.chat-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0ea5f3, #0284e8);
  box-shadow: 0 22px 45px rgba(14, 165, 243, 0.38);
  transition: transform 0.2s ease;
}

.chat-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.chat-float svg {
  font-size: 42px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 480px) {
  :root {
    --header-h: 112px;
  }

  .container {
    width: min(100% - 48px, var(--container));
  }

  .brand,
  .mobile-brand {
    gap: 18px;
  }

  .brand__mark {
    width: 86px;
    height: 86px;
    flex-basis: 86px;
    border-radius: 20px;
  }

  .brand__name {
    font-size: 34px;
    line-height: 1;
  }

  .header__inner {
    height: var(--header-h);
  }

  .menu-toggle {
    width: 56px;
    height: 56px;
  }

  .menu-toggle span {
    width: 34px;
    height: 4px;
  }

  .hero__inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .feature-card,
  .testimonial-card {
    padding: 34px 28px;
  }

  .chat-float {
    width: 86px;
    height: 86px;
    right: 24px;
    bottom: 24px;
  }

  .chat-float svg {
    font-size: 42px;
  }

  .mobile-menu {
    padding: 42px 28px;
  }

  .mobile-menu__nav a {
    min-height: 78px;
    padding: 0 20px;
  }
}

@media (min-width: 700px) {
  .hero__actions {
    grid-template-columns: max-content max-content;
  }

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

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

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

@media (min-width: 960px) {
  :root {
    --header-h: 96px;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .brand__mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 17px;
  }

  .brand__name {
    font-size: 32px;
  }

  .hero__inner {
    grid-template-columns: 1.02fr 0.78fr;
    gap: 64px;
  }

  .hero__visual {
    display: block;
  }

  .hero__content {
    max-width: 780px;
  }

  .hero__actions {
    grid-template-columns: max-content max-content;
  }

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

  .feature-card {
    min-height: 390px;
  }

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

  .ops-panel {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }

  .mobile-menu,
  .menu-backdrop {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 76px;
  }

  .hero p {
    font-size: 25px;
  }
}

/* FORM BUTTON RESET / CTA BUTTONS */
.header__cta,
.mobile-menu__cta,
.btn {
  border: 0;
}

.header__cta,
.mobile-menu__cta,
.btn--demo {
  cursor: pointer;
}

.mobile-menu__cta {
  border: 0;
}

/* INTERNAL PAGE HERO */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 130px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(14, 165, 243, 0.25), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #0d1424, #17233a);
}

.page-hero__content { max-width: 940px; }

.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.page-hero p {
  margin: 28px 0 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.7;
  font-weight: 650;
}

.page-hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.product-detail-grid { display: grid; gap: 28px; }

.product-detail-card,
.client-card {
  padding: clamp(30px, 5vw, 48px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid #dfe5ef;
  box-shadow: var(--shadow-sm);
}

.product-detail-card h2,
.client-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.product-detail-card p,
.client-card p {
  margin: 18px 0 0;
  color: #6b7280;
  font-size: clamp(19px, 3.4vw, 23px);
  line-height: 1.65;
  font-weight: 550;
}

.product-detail-card ul,
.client-list { margin: 24px 0 0; padding: 0; display: grid; gap: 14px; list-style: none; }

.product-detail-card li,
.client-list li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.product-detail-card li::before,
.client-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(14, 165, 243, 0.14);
}

.product-detail-card__footer { margin-top: 30px; }

.cta-panel {
  padding: clamp(34px, 6vw, 58px);
  border-radius: 30px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0ea5f3, #2563eb);
  box-shadow: var(--shadow-blue);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.cta-panel p {
  max-width: 760px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 3.6vw, 24px);
  line-height: 1.6;
  font-weight: 600;
}

/* DEMO MODAL */
.demo-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; }
.demo-modal.is-open { display: flex; }
.demo-modal__overlay { position: absolute; inset: 0; background: rgba(2, 8, 23, 0.72); backdrop-filter: blur(8px); }
.demo-modal__box { position: relative; width: min(680px, 100%); max-height: 92vh; overflow-y: auto; background: #ffffff; border-radius: 28px; padding: 32px; box-shadow: 0 30px 90px rgba(15, 23, 42, 0.35); color: #0f172a; }
.demo-modal__close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 0; border-radius: 999px; background: #eef2f7; color: #0f172a; font-size: 30px; line-height: 1; cursor: pointer; }
.demo-modal__badge { display: inline-flex; align-items: center; padding: 8px 14px; margin-bottom: 16px; border-radius: 999px; background: rgba(14, 165, 233, 0.12); color: #0284c7; font-size: 14px; font-weight: 800; }
.demo-modal__box h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 42px); line-height: 1.05; letter-spacing: -0.04em; }
.demo-modal__box p { margin: 0 0 24px; color: #64748b; font-size: 17px; line-height: 1.6; }
.demo-form { display: grid; gap: 18px; }
.demo-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.demo-form label { display: grid; gap: 8px; font-size: 14px; font-weight: 800; color: #334155; }
.demo-form input,
.demo-form select,
.demo-form textarea { width: 100%; border: 1px solid #dbe3ef; border-radius: 16px; padding: 15px 16px; background: #f8fafc; color: #0f172a; font: inherit; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus { border-color: #0ea5e9; background: #ffffff; box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16); }
.demo-form textarea { resize: vertical; }
.demo-form__submit { border: 0; border-radius: 18px; padding: 17px 22px; background: linear-gradient(135deg, #0ea5e9, #2563eb); color: #ffffff; font-size: 16px; font-weight: 900; cursor: pointer; box-shadow: 0 18px 42px rgba(14, 165, 233, 0.28); }
.demo-form__submit:disabled { opacity: 0.65; cursor: not-allowed; }
.demo-form__status { min-height: 22px; margin: 0; font-size: 14px; font-weight: 800; }
.demo-form__status.is-success { color: #16a34a; }
.demo-form__status.is-error { color: #dc2626; }
.demo-form__hidden { position: absolute; left: -9999px; opacity: 0; }

@media (max-width: 720px) {
  .demo-modal { padding: 16px; align-items: flex-end; }
  .demo-modal__box { padding: 28px 22px; border-radius: 26px 26px 0 0; }
  .demo-form__grid { grid-template-columns: 1fr; }
  .page-hero__actions .btn { width: 100%; }
}

@media (min-width: 960px) { .product-detail-grid { grid-template-columns: repeat(3, 1fr); } }

/* LINKABLE PRODUCT CARDS */
.product-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card--link:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
  font-size: 18px;
}
.product-card__link::after {
  content: "→";
  font-size: 22px;
  line-height: 1;
}

/* PIXELPOS PAGE */
.feature-list-grid,
.pricing-grid {
  display: grid;
  gap: 30px;
}
.feature-list-grid {
  grid-template-columns: 1fr;
}
.pricing-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: clamp(30px, 5vw, 42px);
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #dfe5ef;
  box-shadow: var(--shadow-sm);
}
.pricing-card--featured {
  border-color: rgba(14, 165, 233, 0.55);
  box-shadow: 0 30px 90px rgba(14, 165, 233, 0.18);
}
.pricing-card__tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  font-weight: 900;
  font-size: 14px;
}
.pricing-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.pricing-card__price {
  display: block;
  color: #0f172a;
  font-size: clamp(42px, 8vw, 58px);
  line-height: 1;
  letter-spacing: -0.075em;
  font-weight: 950;
}
.pricing-card__price span {
  color: #64748b;
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.pricing-card p {
  margin: 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}
.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}
.pricing-card li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0ea5e9;
  font-weight: 950;
}
.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}
.pricing-note {
  max-width: 900px;
  margin: 34px auto 0;
  color: #64748b;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
}
.page-hero--product {
  background:
    radial-gradient(circle at 18% 20%, rgba(14, 165, 233, 0.28), transparent 35%),
    linear-gradient(135deg, #07111f, #0f172a 58%, #0b2b54);
}
@media (min-width: 760px) {
  .feature-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .feature-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   PATCH V4: MODAL COMPACTO + WHATSAPP VERDE
   ========================================================= */
.chat-float {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  box-shadow: 0 22px 46px rgba(37, 211, 102, 0.34) !important;
}

.chat-float:hover {
  box-shadow: 0 26px 58px rgba(37, 211, 102, 0.42) !important;
}

body.modal-open {
  overflow: hidden;
}

.demo-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
}

.demo-modal.is-open {
  display: flex !important;
}

.demo-modal__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(2, 8, 23, 0.72) !important;
  backdrop-filter: blur(10px) !important;
}

.demo-modal__box {
  position: relative !important;
  width: min(640px, calc(100vw - 28px)) !important;
  max-height: calc(100dvh - 34px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 30px !important;
  padding: clamp(18px, 3vw, 28px) !important;
  color: #0f172a !important;
  box-shadow: 0 28px 90px rgba(2, 8, 23, 0.32) !important;
}

.demo-modal__box::-webkit-scrollbar {
  width: 8px;
}

.demo-modal__box::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.55);
  border-radius: 999px;
}

.demo-modal__close {
  top: 14px !important;
  right: 14px !important;
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 999px !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  font-size: 28px !important;
  line-height: 1 !important;
}

.demo-modal__badge {
  margin-bottom: 10px !important;
  padding: 7px 12px !important;
  font-size: 12px !important;
}

.demo-modal__box h2 {
  max-width: calc(100% - 44px) !important;
  margin: 0 0 8px !important;
  font-size: clamp(25px, 5vw, 36px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.05em !important;
}

.demo-modal__box p {
  margin: 0 0 14px !important;
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
}

.demo-form {
  display: grid !important;
  gap: 12px !important;
}

.demo-form__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.demo-form label {
  display: grid !important;
  gap: 6px !important;
  color: #334155 !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
  font-weight: 850 !important;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  min-height: 46px !important;
  border: 1px solid #dbe3ef !important;
  border-radius: 16px !important;
  padding: 12px 14px !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #7c8797 !important;
  font-weight: 650 !important;
}

.demo-form select {
  appearance: auto !important;
}

.demo-form textarea {
  min-height: 76px !important;
  max-height: 110px !important;
  resize: vertical !important;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: #0ea5e9 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16) !important;
}

.demo-form__submit {
  min-height: 50px !important;
  border-radius: 16px !important;
  padding: 13px 18px !important;
  background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

.demo-form__status {
  min-height: 18px !important;
  font-size: 13px !important;
}

@media (max-width: 560px) {
  .demo-modal {
    align-items: center !important;
    padding: 12px !important;
  }

  .demo-modal__box {
    width: calc(100vw - 24px) !important;
    max-height: calc(100dvh - 24px) !important;
    border-radius: 24px !important;
    padding: 16px !important;
  }

  .demo-modal__close {
    top: 10px !important;
    right: 10px !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 24px !important;
  }

  .demo-modal__badge {
    margin-bottom: 8px !important;
    padding: 6px 10px !important;
    font-size: 11px !important;
  }

  .demo-modal__box h2 {
    max-width: calc(100% - 38px) !important;
    margin-bottom: 6px !important;
    font-size: 23px !important;
  }

  .demo-modal__box p {
    margin-bottom: 10px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .demo-form {
    gap: 9px !important;
  }

  .demo-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .demo-form label {
    gap: 5px !important;
    font-size: 12px !important;
  }

  .demo-form input,
  .demo-form select,
  .demo-form textarea {
    min-height: 41px !important;
    border-radius: 14px !important;
    padding: 10px 11px !important;
    font-size: 13px !important;
  }

  .demo-form textarea {
    min-height: 62px !important;
    max-height: 80px !important;
  }

  .demo-form__submit {
    min-height: 44px !important;
    border-radius: 14px !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
  }

  .chat-float {
    width: 74px !important;
    height: 74px !important;
    right: 18px !important;
    bottom: 18px !important;
  }
}

@media (max-width: 380px) {
  .demo-modal__box {
    padding: 14px !important;
  }

  .demo-modal__box p {
    display: none !important;
  }

  .demo-form__grid {
    gap: 7px !important;
  }

  .demo-form input,
  .demo-form select,
  .demo-form textarea {
    min-height: 39px !important;
    padding: 9px 10px !important;
    font-size: 12.5px !important;
  }
}

body.modal-open .chat-float {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.92) !important;
}


/* V5 - Sistemas destacados en index */
.product-card__tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.11);
  color: #0284c7;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-card--link .product-card__body {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.product-card--link .product-card__link {
  margin-top: auto;
  padding-top: 20px;
}

@media (max-width: 720px) {
  .section-head h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .product-card__image {
    min-height: 250px;
  }

  .product-card--link .product-card__body {
    min-height: auto;
  }
}

/* V6 - Cards de sistemas con imágenes reales */
.products-grid--featured {
  align-items: stretch;
}

.product-card.product-card--link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card.product-card--link:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
}

.product-card__image.product-card__image--real {
  position: relative;
  width: 100%;
  height: 260px;
  min-height: 0 !important;
  overflow: hidden;
  display: block;
  background: #eef4fb;
  border-bottom: 1px solid #e5e7eb;
}

.product-card__image.product-card__image--real::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 58%, rgba(15, 23, 42, 0.08) 100%);
  pointer-events: none;
}

.product-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.product-card.product-card--link:hover .product-card__img {
  transform: scale(1.045);
}

.product-card.product-card--link .product-card__body {
  flex: 1;
  min-height: 315px;
  padding: clamp(30px, 5vw, 42px);
}

.product-card.product-card--link .product-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-card.product-card--link .product-card__body h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.product-card.product-card--link .product-card__body p {
  margin: 22px 0 0;
  color: #6b7280;
  font-size: clamp(18px, 3.8vw, 23px);
  line-height: 1.65;
  font-weight: 650;
}

.product-card.product-card--link .product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  color: #0284c7;
  font-size: 17px;
  font-weight: 950;
}

.product-card__link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.product-card.product-card--link:hover .product-card__link svg {
  transform: translateX(5px);
}

@media (max-width: 1100px) {
  .products-grid--featured {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .product-card__image.product-card__image--real {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .products-grid--featured {
    gap: 28px;
  }

  .product-card__image.product-card__image--real {
    height: 230px;
  }

  .product-card.product-card--link .product-card__body {
    min-height: auto;
    padding: 30px 26px 34px;
  }

  .product-card.product-card--link .product-card__body h3 {
    font-size: 34px;
  }

  .product-card.product-card--link .product-card__body p {
    font-size: 21px;
    line-height: 1.62;
  }
}

@media (max-width: 420px) {
  .product-card__image.product-card__image--real {
    height: 210px;
  }

  .product-card.product-card--link .product-card__body {
    padding: 28px 22px 32px;
  }

  .product-card.product-card--link .product-card__body h3 {
    font-size: 31px;
  }

  .product-card.product-card--link .product-card__body p {
    font-size: 19px;
  }
}


/* =========================================================
   PIXELPOS SALES PAGE REDESIGN V8
   ========================================================= */

.pos-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 110px) 0 clamp(44px, 7vw, 78px);
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.28), transparent 32%),
    radial-gradient(circle at 88% 30%, rgba(37, 99, 235, 0.22), transparent 36%),
    linear-gradient(135deg, #07111f 0%, #0b1730 45%, #081225 100%);
  color: #ffffff;
}

.pos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 90px);
  opacity: 0.35;
  pointer-events: none;
}

.pos-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.pos-hero__content {
  max-width: 760px;
}

.pos-hero__content .eyebrow {
  margin-bottom: 26px;
}

.pos-hero__content h1 {
  margin: 0;
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.085em;
  font-weight: 950;
}

.pos-hero__content h1::selection,
.pos-section-head span::selection,
.pos-value-band h2 span::selection {
  background: rgba(14, 165, 233, 0.28);
}

.pos-hero__content h1 span,
.pos-section-head span,
.pos-value-band h2 span,
.pos-proof-section h2 span {
  color: #19b6ff;
}

.pos-hero__content p {
  margin: 30px 0 0;
  max-width: 690px;
  color: rgba(226, 232, 240, 0.9);
  font-size: clamp(20px, 3.5vw, 27px);
  line-height: 1.58;
  font-weight: 650;
}

.pos-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 16px;
  margin-top: 38px;
}

.pos-hero__actions .btn {
  width: 100%;
  justify-content: center;
  border: 0;
}

.pos-hero__visual {
  position: relative;
}

.pos-device-card {
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 40px 120px rgba(2, 8, 23, 0.4);
  overflow: hidden;
}

.pos-device-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -90px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.3);
  filter: blur(45px);
}

.pos-device-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 378px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(2, 8, 23, 0.38);
}

.pos-device-card__metric {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  min-width: 156px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(3, 7, 18, 0.76);
  border: 1px solid rgba(125, 211, 252, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 46px rgba(2, 8, 23, 0.36);
}

.pos-device-card__metric small {
  color: rgba(226, 232, 240, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.pos-device-card__metric strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pos-device-card__metric span {
  color: #22c55e;
  font-size: 12px;
  font-weight: 900;
}

.pos-device-card__metric--one {
  left: 10px;
  top: 38px;
}

.pos-device-card__metric--two {
  right: 10px;
  bottom: 42px;
}

.pos-benefit-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(44px, 7vw, 76px);
}

.pos-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.18);
  backdrop-filter: blur(12px);
}

.pos-benefit > span {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(14, 165, 233, 0.15);
  color: #38bdf8;
}

.pos-benefit svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.pos-benefit strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.pos-benefit small {
  display: block;
  margin-top: 5px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.pos-section-head h2 span {
  color: #0284c7;
}

.pos-section-head--dark h2,
.pos-section-head--dark p {
  color: #ffffff;
}

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

.pos-feature-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 172px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pos-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.pos-feature-card__icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.pos-feature-card__icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.pos-feature-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.pos-feature-card p {
  margin: 12px 0 0;
  color: #64748b;
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.45;
  font-weight: 650;
}

.pos-feature-card small {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #0284c7;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.pos-value-band {
  padding: clamp(52px, 7vw, 82px) 0;
  background: linear-gradient(180deg, #ffffff, #eff6ff);
}

.pos-value-band h2 {
  margin: 0 auto 34px;
  max-width: 980px;
  color: #0f172a;
  text-align: center;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.pos-value-band h2 span {
  color: #0284c7;
}

.pos-value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.pos-value-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
}

.pos-value-list div + div {
  border-left: 1px solid #e5e7eb;
}

.pos-value-list span {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 18px;
  font-weight: 950;
}

.pos-value-list p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.pos-pricing-grid {
  display: grid;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.pos-plan {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.72fr) 220px;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 42px);
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #dfe7f3;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.pos-plan--featured {
  border: 2px solid #18b7ff;
  background:
    radial-gradient(circle at 90% 20%, rgba(14, 165, 233, 0.08), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 80px rgba(14, 165, 233, 0.18);
}

.pos-plan__topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pos-plan__badge,
.pos-plan__recommended {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
}

.pos-plan__badge--premium {
  background: #ede9fe;
  color: #7c3aed;
}

.pos-plan__recommended {
  background: #ffffff;
  border: 1px solid #7dd3fc;
  color: #0284c7;
}

.pos-plan h3 {
  margin: 20px 0 0;
  color: #0f172a;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.pos-plan__price {
  margin: 20px 0 0;
  color: #0f172a;
  font-size: clamp(56px, 9vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.pos-plan__price span {
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #475569;
}

.pos-plan__summary {
  margin: 22px 0 0;
  max-width: 520px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.pos-plan__features {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pos-plan__features li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
}

.pos-plan__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0284c7;
  font-weight: 950;
}

.pos-plan__button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  background: #0f172a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
}

.pos-plan__button--blue {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 18px 48px rgba(14, 165, 233, 0.28);
}

.pos-proof-section {
  padding: clamp(72px, 10vw, 120px) 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(14, 165, 233, 0.22), transparent 30%),
    linear-gradient(135deg, #07111f, #0b1730);
  color: #ffffff;
}

.pos-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pos-proof-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 60px rgba(2, 8, 23, 0.22);
}

.pos-stars {
  color: #facc15;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 950;
}

.pos-proof-card p {
  margin: 18px 0 24px;
  color: rgba(226, 232, 240, 0.92);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.pos-proof-card strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
}

.pos-proof-card small {
  display: block;
  margin-top: 5px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.pos-final-cta {
  max-width: 980px;
  margin: clamp(42px, 7vw, 76px) auto 0;
  padding: clamp(34px, 6vw, 58px);
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.26), transparent 42%),
    rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(125, 211, 252, 0.22);
  box-shadow: 0 26px 80px rgba(2, 8, 23, 0.24);
}

.pos-final-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.pos-final-cta p {
  max-width: 720px;
  margin: 18px auto 26px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.pos-final-cta .btn {
  margin-inline: auto;
  border: 0;
}

.pos-final-cta small {
  display: block;
  margin-top: 18px;
  color: rgba(226, 232, 240, 0.75);
  font-size: 14px;
  font-weight: 800;
}

.chat-float {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

@media (max-width: 1100px) {
  .pos-hero__inner {
    grid-template-columns: 1fr;
  }

  .pos-hero__visual {
    max-width: 780px;
  }

  .pos-benefit-strip,
  .pos-proof-grid {
    grid-template-columns: 1fr;
  }

  .pos-plan {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pos-plan__button {
    max-width: 360px;
  }

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

  .pos-value-list div + div {
    border-left: 0;
  }

  .pos-value-list div:nth-child(even) {
    border-left: 1px solid #e5e7eb;
  }

  .pos-value-list div:nth-child(n + 3) {
    border-top: 1px solid #e5e7eb;
  }
}

@media (max-width: 760px) {
  .pos-hero {
    padding: 58px 0 38px;
  }

  .pos-hero__content h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .pos-hero__content p {
    font-size: 21px;
  }

  .pos-hero__actions {
    grid-template-columns: 1fr;
  }

  .pos-device-card {
    min-height: 270px;
    padding: 16px;
    border-radius: 28px;
  }

  .pos-device-card img {
    min-height: 240px;
    border-radius: 22px;
  }

  .pos-device-card__metric {
    display: none;
  }

  .pos-benefit {
    min-height: 96px;
  }

  .pos-feature-grid {
    grid-template-columns: 1fr;
  }

  .pos-feature-card {
    grid-template-columns: 64px 1fr;
    gap: 17px;
    padding: 24px;
    min-height: auto;
  }

  .pos-feature-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .pos-feature-card__icon svg {
    width: 31px;
    height: 31px;
  }

  .pos-value-list {
    grid-template-columns: 1fr;
  }

  .pos-value-list div:nth-child(even) {
    border-left: 0;
  }

  .pos-value-list div + div {
    border-top: 1px solid #e5e7eb;
  }

  .pos-plan {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .pos-plan__button {
    max-width: none;
  }

  .pos-proof-card {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .pos-hero__content h1 {
    font-size: 42px;
  }

  .pos-hero__content p {
    font-size: 19px;
  }

  .pos-plan__price {
    font-size: 56px;
  }

  .pos-plan__summary {
    font-size: 16px;
  }
}



/* =========================================================
   FIX PRODUCTOS + CLIENTES
   Corrige cards en tablet horizontal, desktop y clientes
   ========================================================= */

/* Seguridad general contra desbordes horizontales */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

/* =========================================================
   PRODUCTOS.HTML
   Forzar productos uno debajo del otro en TODAS las vistas
   ========================================================= */

.product-detail-grid {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(28px, 5vw, 42px) !important;
  align-items: stretch !important;
}

.product-detail-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  padding: clamp(34px, 5vw, 54px) !important;
  border-radius: 28px !important;
}

.product-detail-card h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.product-detail-card p,
.product-detail-card li {
  max-width: 100%;
}

.product-detail-card__footer {
  margin-top: 30px;
}

.product-detail-card__footer .btn {
  width: fit-content;
  max-width: 100%;
}

/* Tablet horizontal / desktop pequeño */
@media (min-width: 769px) and (max-width: 1180px) {
  .product-detail-grid {
    width: min(92vw, 900px) !important;
    grid-template-columns: 1fr !important;
  }

  .product-detail-card {
    padding: 42px !important;
  }
}

/* Móvil */
@media (max-width: 768px) {
  .product-detail-grid {
    width: 100% !important;
    gap: 28px !important;
  }

  .product-detail-card {
    padding: 32px 24px !important;
    border-radius: 26px !important;
  }

  .product-detail-card h2 {
    font-size: clamp(34px, 11vw, 46px) !important;
    line-height: 1.05 !important;
  }
}

/* =========================================================
   CLIENTES.HTML
   Cards visuales con imagen arriba bien contenida
   ========================================================= */

.clients-showcase {
  overflow: hidden;
}

.client-visual-grid {
  width: min(100%, 980px);
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 44px);
}

.client-visual-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.client-visual-card__image {
  width: 100%;
  height: clamp(240px, 38vw, 420px);
  overflow: hidden;
  background: #eef4fb;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.client-visual-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.client-visual-card__body {
  padding: clamp(28px, 5vw, 48px);
}

.client-visual-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.client-visual-card .quote {
  margin: 0 0 18px;
  color: #0ea5e9;
  font-size: clamp(58px, 9vw, 84px);
  line-height: 0.75;
  font-weight: 950;
}

.client-visual-card p {
  margin: 0 0 34px;
  color: #0f172a;
  font-size: clamp(21px, 4vw, 30px);
  line-height: 1.65;
  font-weight: 750;
}

.client-visual-card .person {
  display: flex;
  align-items: center;
  gap: 18px;
}

.client-visual-card .person span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.28);
}

.client-visual-card .person strong {
  display: block;
  color: #0f172a;
  font-size: clamp(19px, 4vw, 24px);
  line-height: 1.2;
  font-weight: 950;
}

.client-visual-card .person small {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: clamp(15px, 3.4vw, 18px);
  line-height: 1.25;
  font-weight: 650;
}

/* Tablet horizontal: que clientes tampoco se rompa */
@media (min-width: 769px) and (max-width: 1180px) {
  .client-visual-grid {
    width: min(92vw, 900px);
  }

  .client-visual-card__image {
    height: 360px;
  }
}

/* Móvil */
@media (max-width: 768px) {
  .client-visual-grid {
    width: 100%;
    gap: 30px;
  }

  .client-visual-card {
    border-radius: 26px;
  }

  .client-visual-card__image {
    height: 235px;
  }

  .client-visual-card__body {
    padding: 28px 22px 32px;
  }

  .client-visual-card p {
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .client-visual-card .person span {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 20px;
  }
}