:root {
  --red: #bf1531;
  --red-strong: #ff213f;
  --red-dark: #970f26;
  --white: #ffffff;
  --ink: #242424;
  --muted: #5f6670;
  --panel: rgba(255, 255, 255, 0.97);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: #f3f4f6;
}

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

.contact-bar {
  background: var(--red);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
}

.contact-bar__inner,
.navbar__inner,
.hero__inner,
.modules,
.versions,
.faq,
.blog-preview,
.contact-section,
.site-footer__top,
.site-footer__bottom {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.contact-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.42rem 0;
  flex-wrap: wrap;
}

.contact-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-bar__socials {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-social {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-social:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
}

.contact-social svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navbar {
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 58px;
  color: var(--white);
}

.logo__image {
  display: block;
  width: min(100%, 420px);
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.logo__fallback {
  display: none;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.logo.is-fallback .logo__image {
  display: none;
}

.logo.is-fallback .logo__fallback {
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 2rem;
}

.nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(16, 10, 6, 0.62), rgba(16, 10, 6, 0.62)),
    var(--hero-image),
    linear-gradient(120deg, #3b2419, #1e130d 55%, #43281a);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: background-image 700ms ease-in-out;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 35, 69, 0.18), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 20%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 380px);
  gap: 2.5rem;
  align-items: center;
  padding: 2.75rem 0 2.2rem;
}

.hero__copy {
  color: var(--white);
  padding-top: 1.4rem;
}

.hero__kicker {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.55rem, 5.6vw, 4.35rem);
  line-height: 1.03;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  margin-top: 0.4rem;
  color: var(--red-strong);
}

.hero__description {
  max-width: 670px;
  margin-top: 1.15rem;
  font-size: 1.02rem;
  line-height: 1.58;
}

.lead-form {
  background: var(--panel);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin: 0 0 0.5rem;
  color: var(--red-strong);
  font-size: 1.75rem;
}

.lead-form p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-form input {
  width: 100%;
  margin-bottom: 0.75rem;
  border: 1px solid #d7dce2;
  border-radius: 12px;
  padding: 0.88rem 0.95rem;
  font: inherit;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(191, 21, 49, 0.12);
}

.lead-form__document-row {
  display: block;
}

.lead-form__document-row input {
  margin-bottom: 0;
}

.lead-form button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(180deg, var(--red-strong), #e60f2f);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.lead-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.lead-form button:active {
  transform: translateY(0);
}

.lead-form small {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
}

.modules {
  margin-top: -54px;
  padding: 3rem 0 4rem;
  position: relative;
  z-index: 3;
}

.modules__header {
  text-align: center;
  margin-top: 1.2rem;
  margin-bottom: 2.8rem;
}

.modules__eyebrow {
  margin: 0 0 0.55rem;
  color: #f05555;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.modules__header h2 {
  margin: 0;
  color: #c50808;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.modules__nav {
  display: flex;
  gap: 1rem;
  align-items: start;
  transition: transform 420ms ease;
  will-change: transform;
}

.modules__viewport {
  width: 100%;
  overflow: hidden;
}

.module-chip {
  flex: 0 0 calc(25% - 0.25rem);
  border: 0;
  background: transparent;
  padding: 1.35rem 0.85rem 1.15rem;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.06);
}

.module-chip:hover {
  transform: translateY(-3px);
}

.module-chip__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dcfff8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.module-chip__icon svg {
  width: 2rem;
  height: 2rem;
}

.module-chip__title {
  display: block;
  font-size: 1.28rem;
  font-weight: 800;
  color: #101010;
}
.module-chip__subtitle {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  color: #4d5d5b;
}

.module-chip.is-active {
  transform: translateY(-5px);
  filter: saturate(1.08);
  box-shadow: 0 24px 44px rgba(191, 21, 49, 0.12);
}

.module-chip.is-active .module-chip__title {
  color: var(--red);
}

.module-chip[data-color="green"] .module-chip__icon {
  background: #e3ffd7;
}

.module-chip[data-color="purple"] .module-chip__icon {
  background: #f1e9ff;
}

.module-chip[data-color="pink"] .module-chip__icon {
  background: #ffe4ef;
}

.module-chip[data-color="teal"] .module-chip__icon {
  background: #dcfff8;
}

.modules__dots {
  margin-top: 1.9rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.modules__dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.modules__dot.is-active {
  background: #ee4747;
  transform: scale(1.12);
}

.module-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.module-modal.is-open {
  display: flex;
}

.module-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
}

.module-modal__card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 2rem 1.7rem 1.8rem;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.module-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #101010;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.module-modal__eyebrow {
  margin: 0 0 0.55rem;
  color: #f05555;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-modal__card h3 {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.module-modal__card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 5rem;
}

.pricing__header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.pricing__eyebrow {
  margin: 0 0 0.7rem;
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.pricing__header h2 {
  margin: 0;
  color: #132448;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.06;
  text-transform: uppercase;
}

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

.pricing-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(239, 68, 68, 0.14);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.pricing-card--featured {
  transform: translateY(-8px);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 28px 54px rgba(239, 68, 68, 0.14);
}

.pricing-card__plan {
  margin: 0 0 0.55rem;
  color: #132448;
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card__membership {
  margin: 0 0 0.9rem;
  color: #4b5563;
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card__price {
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dde6f7;
  color: #132448;
  font-size: 2.4rem;
  font-weight: 800;
}

.pricing-card__price span {
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-card__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.pricing-card__list li {
  position: relative;
  padding-left: 1.6rem;
  color: #23314f;
  line-height: 1.55;
}

.pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff213f, #bf1531);
  box-shadow: 0 0 0 4px rgba(191, 21, 49, 0.12);
}

.pricing-card__cta {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #ff213f, #bf1531);
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.pricing-card__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.showcase {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 5rem;
}

.showcase__header {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.showcase__eyebrow {
  margin: 0 0 0.7rem;
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.showcase__header h2 {
  margin: 0 0 0.9rem;
  color: #132448;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.showcase__header p {
  margin: 0;
  color: #566176;
  line-height: 1.7;
}

.showcase__grid {
  display: grid;
  gap: 1.5rem;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.7rem;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #fafbff);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.showcase-card__kicker {
  margin: 0 0 0.55rem;
  color: #ef4444;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-card__copy h3 {
  margin: 0 0 0.85rem;
  color: #132448;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.showcase-card__copy p:last-child {
  margin: 0;
  color: #5b6678;
  line-height: 1.7;
}

.showcase-visual {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #eef2ff, #f8fafc);
  overflow: hidden;
}

.showcase-visual--pos .showcase-visual__screen {
  position: absolute;
  top: 54px;
  left: 148px;
  width: 210px;
  height: 148px;
  border-radius: 18px;
  background: #121826;
  transform: rotate(-6deg);
  box-shadow: 0 24px 35px rgba(15, 23, 42, 0.18);
}

.showcase-visual--pos .showcase-visual__screen-panel {
  position: absolute;
  top: 69px;
  left: 164px;
  width: 176px;
  height: 114px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #2e64ff 0 18%, #ffffff 18% 100%);
  transform: rotate(-6deg);
}

.showcase-visual--pos .showcase-visual__stand {
  position: absolute;
  top: 180px;
  left: 224px;
  width: 42px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(180deg, #3b4354, #0f172a);
  transform: rotate(-6deg);
}

.showcase-visual--pos .showcase-visual__base {
  position: absolute;
  bottom: 76px;
  left: 128px;
  width: 250px;
  height: 108px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1f2937, #0f172a);
}

.showcase-visual--pos .showcase-visual__printer {
  position: absolute;
  bottom: 84px;
  left: 48px;
  width: 92px;
  height: 86px;
  border-radius: 16px;
  background: linear-gradient(180deg, #262c36, #121923);
}

.showcase-visual--pos .showcase-visual__drawer {
  position: absolute;
  bottom: 88px;
  left: 176px;
  width: 128px;
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2d3748, #111827);
}

.showcase-visual--pos .showcase-visual__scanner {
  position: absolute;
  right: 96px;
  top: 116px;
  width: 34px;
  height: 122px;
  border-radius: 18px;
  background: linear-gradient(180deg, #2f3a48, #111827);
  transform: rotate(28deg);
}

.showcase-visual--pos .showcase-visual__scanner-base {
  position: absolute;
  right: 80px;
  top: 226px;
  width: 82px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1f2937, #0f172a);
}

.showcase-visual--mobile {
  display: grid;
  place-items: center;
}

.showcase-visual__phone {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 220px;
  height: 372px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff, #edf0f6);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.16);
  transform: translateX(-50%);
}

.showcase-visual__phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 68px;
  height: 7px;
  border-radius: 999px;
  background: #d1d5db;
  transform: translateX(-50%);
}

.showcase-visual__phone-screen {
  position: absolute;
  inset: 48px 16px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #2556e8, #203eb2);
  padding: 1rem;
}

.showcase-visual__phone-header {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, #ffffff 0 35%, #ff374f 36% 52%, #2758ff 53% 100%);
}

.showcase-visual__phone-block {
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 0.9rem;
}

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

.showcase-visual__phone-grid span {
  display: block;
  height: 72px;
  border-radius: 16px;
}

.showcase-visual__phone-grid span:nth-child(1) { background: #4ade80; }
.showcase-visual__phone-grid span:nth-child(2) { background: #10b981; }
.showcase-visual__phone-grid span:nth-child(3) { background: #a855f7; }
.showcase-visual__phone-grid span:nth-child(4) { background: #ff3366; }

.showcase-visual--lcd .showcase-visual__lcd-monitor {
  position: absolute;
  top: 74px;
  left: 118px;
  width: 228px;
  height: 138px;
  border-radius: 16px;
  background: #111827;
}

.showcase-visual--lcd .showcase-visual__lcd-screen {
  position: absolute;
  top: 88px;
  left: 132px;
  width: 198px;
  height: 108px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #f8fafc, #e2e8f0),
    linear-gradient(90deg, #dbeafe 0 22%, transparent 22%);
}

.showcase-visual--lcd .showcase-visual__lcd-cpu {
  position: absolute;
  bottom: 86px;
  left: 132px;
  width: 98px;
  height: 132px;
  border-radius: 20px;
  background: linear-gradient(180deg, #1f2937, #0f172a);
}

.showcase-visual--lcd .showcase-visual__lcd-printer {
  position: absolute;
  bottom: 102px;
  left: 54px;
  width: 86px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(180deg, #374151, #111827);
}

.showcase-visual--lcd .showcase-visual__lcd-scanner {
  position: absolute;
  right: 96px;
  top: 156px;
  width: 46px;
  height: 110px;
  border-radius: 18px;
  background: linear-gradient(180deg, #2f3a48, #111827);
  transform: rotate(18deg);
}

.showcase-hotspot {
  position: absolute;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.showcase-hotspot:hover {
  color: #fff;
  background: #bf1531;
}

.showcase-label {
  position: absolute;
  z-index: 1;
  max-width: 160px;
  color: #315dff;
  font-weight: 700;
  line-height: 1.3;
}

.showcase-hotspot--screen { top: 82px; left: 352px; }
.showcase-hotspot--scanner { top: 176px; right: 84px; }
.showcase-hotspot--printer { bottom: 120px; left: 36px; }
.showcase-hotspot--drawer { bottom: 116px; left: 312px; }
.showcase-label--screen { top: 68px; right: 34px; }
.showcase-label--scanner { top: 186px; right: 26px; }
.showcase-label--printer { bottom: 110px; left: 22px; }
.showcase-label--drawer { bottom: 96px; left: 340px; }

.showcase-hotspot--mobile-app { top: 126px; right: 86px; }
.showcase-hotspot--mobile-report { bottom: 120px; left: 108px; }
.showcase-label--mobile-app { top: 112px; right: 24px; }
.showcase-label--mobile-report { bottom: 104px; left: 26px; }

.showcase-hotspot--lcd-monitor { top: 120px; left: 354px; }
.showcase-hotspot--lcd-cpu { bottom: 132px; left: 236px; }
.showcase-hotspot--lcd-printer { bottom: 132px; left: 42px; }
.showcase-label--lcd-monitor { top: 108px; right: 36px; }
.showcase-label--lcd-cpu { bottom: 118px; left: 264px; }
.showcase-label--lcd-printer { bottom: 118px; left: 20px; }

.showcase-visual--photo {
  min-height: 470px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, #f9fbff, #eef3fb);
}

.showcase-composition {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 30px rgba(15, 23, 42, 0.14));
}

.showcase-hero-image--mobile {
  width: min(100%, 540px);
  margin-inline: auto;
}

.showcase-hotspot--combo1-monitor { top: 100px; left: 250px; }
.showcase-hotspot--combo1-cpu { top: 176px; left: 52px; }
.showcase-hotspot--combo1-scanner { bottom: 96px; left: 84px; }
.showcase-hotspot--combo1-printer { bottom: 100px; left: 338px; }
.showcase-hotspot--combo1-drawer { bottom: 130px; left: 186px; }
.showcase-hotspot--combo1-scale { top: 168px; right: 48px; }

.showcase-hotspot--mobile-device { top: 156px; left: 198px; }
.showcase-hotspot--mobile-printer { top: 34px; left: 110px; }

.showcase-hotspot--combo2-monitor { top: 96px; left: 252px; }
.showcase-hotspot--combo2-scanner { top: 154px; right: 94px; }
.showcase-hotspot--combo2-printer { bottom: 122px; left: 82px; }
.showcase-hotspot--combo2-drawer { bottom: 92px; left: 242px; }

.versions {
  padding: 2rem 0 5rem;
}

.versions__header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.versions__eyebrow {
  margin: 0 0 0.7rem;
  color: #ef4444;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.versions__header h2 {
  margin: 0;
  color: #132448;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

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

.version-card {
  position: relative;
  padding: 1.4rem 1.5rem 1.7rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(18, 31, 53, 0.08);
}

.version-card__media {
  height: 380px;
  border-radius: 22px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 1px solid rgba(19, 36, 72, 0.08);
}

.version-card__media img {
  display: block;
  max-width: 99%;
  max-height: 99%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.version-card__image--web {
  transform: scale(1.16);
}

.version-card__image--local {
  transform: scale(1.02);
}

.version-card h3 {
  margin: 0 0 0.75rem;
  color: #0f1d3b;
  font-size: 2rem;
  line-height: 1.12;
}

.version-card__intro {
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.version-card__list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  color: #16213e;
}

.version-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.72rem;
  line-height: 1.55;
}

.version-card__list li span {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #eef4ff;
  color: #102347;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.version-card__list li span svg {
  width: 0.92rem;
  height: 0.92rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.version-card__cta {
  margin-top: 1rem;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  background: linear-gradient(180deg, var(--red-strong), #e60f2f);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.version-card__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.version-card--featured {
  border: 3px solid #ef4444;
  box-shadow: 0 26px 56px rgba(239, 68, 68, 0.16);
}

.version-card__ribbon {
  position: absolute;
  top: -3px;
  right: 22px;
  z-index: 1;
  padding: 0.65rem 1.1rem;
  background: #ef4444;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 26px rgba(239, 68, 68, 0.18);
}

.faq {
  padding: 1rem 0 5rem;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 3.2rem;
  align-items: start;
}

.faq__eyebrow {
  margin: 0 0 0.9rem;
  color: #ff2d2d;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.faq__intro h2 {
  margin: 0 0 2rem;
  color: #102347;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.08;
}

.faq__cta {
  border: 0;
  border-radius: 14px;
  padding: 0.95rem 1.55rem;
  background: #ff1f1f;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq__list {
  display: grid;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item__question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.45rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: #111827;
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
}

.faq-item__icon {
  font-size: 2rem;
  line-height: 1;
  color: #111827;
  transition: transform 220ms ease;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-item__answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  padding-right: 2.5rem;
}

.faq-item.is-open .faq-item__question {
  padding-bottom: 0.8rem;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__answer p {
  padding-bottom: 1.35rem;
}

.blog-preview {
  padding: 0 0 5rem;
}

.blog-preview__header {
  margin-bottom: 2rem;
}

.blog-preview__eyebrow {
  margin: 0 0 0.7rem;
  color: #ff2d2d;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.blog-preview__header h2 {
  margin: 0;
  color: #102347;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.08;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.blog-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.blog-card__media {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(180deg, #e5e7eb, #6b7280);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.7));
}

.blog-card__title {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.blog-card__body {
  padding: 1rem 1.3rem 1.35rem;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  color: #1f2937;
  font-size: 0.92rem;
}

.blog-card__body p {
  margin: 0 0 1rem;
  color: #374151;
  line-height: 1.5;
}

.blog-card__link {
  color: #ff1f1f;
  font-weight: 700;
}

.contact-section {
  padding: 0 0 5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.contact-section__eyebrow {
  margin: 0 0 0.7rem;
  color: #ff2d2d;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.contact-section__form h2 {
  margin: 0 0 0.8rem;
  color: #102347;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08;
}

.contact-section__lead {
  margin: 0 0 1.25rem;
  color: #64748b;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: #102347;
  background: #fff;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: 0;
  border-radius: 14px;
  padding: 0.82rem 2.4rem;
  background: #ff1f1f;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-form small {
  color: var(--muted);
}

.contact-section__card {
  min-height: 100%;
  padding: 1.5rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fbff, #f1f5f9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.contact-info {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-info + .contact-info {
  margin-top: 1.8rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dbe4ff;
  color: #102347;
  font-size: 1.5rem;
}

.contact-info h3 {
  margin: 0 0 0.45rem;
  color: #102347;
  font-size: 1.2rem;
}

.contact-info p {
  margin: 0.2rem 0;
  color: #334155;
  line-height: 1.6;
}

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

  .hero {
    min-height: auto;
  }

  .hero__copy {
    padding-top: 1rem;
  }

  .modules {
    margin-top: 0;
  }

  .module-chip {
    flex-basis: calc(50% - 0.5rem);
  }

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

  .faq {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .navbar__inner {
    display: flex;
    justify-content: space-between;
  }

  .contact-bar__inner {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 18px;
    background: var(--red-dark);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  }

  .nav.is-open {
    display: flex;
  }

  .hero__inner {
    padding: 2rem 0 2.5rem;
  }

  .module-chip {
    flex-basis: 100%;
  }
}

@media (max-width: 560px) {
  .navbar__inner,
  .hero__inner,
  .modules,
  .versions,
  .faq,
  .blog-preview,
  .contact-section,
  .contact-bar__inner {
    width: min(100% - 1rem, 1180px);
  }

  .logo {
    min-height: 54px;
  }

  .logo__image {
    max-width: 240px;
    max-height: 52px;
  }

  .logo__fallback {
    font-size: 1.35rem;
  }

  .lead-form {
    padding: 1.25rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .blog-preview__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

}

.site-footer {
  background: linear-gradient(180deg, #c11634, #ab112d);
  color: #fff7f8;
  padding: 4rem 0 1.4rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer__brand h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.site-footer__logo {
  display: block;
  width: min(100%, 220px);
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.site-footer__brand p {
  margin: 0;
  max-width: 28ch;
  color: rgba(255, 247, 248, 0.9);
  line-height: 1.7;
}

.site-footer__column h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.site-footer__column a {
  display: block;
  margin-bottom: 0.85rem;
  color: rgba(255, 247, 248, 0.92);
}

.site-footer__column a:hover,
.site-footer__links a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 247, 248, 0.9);
}

.site-footer__links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(255, 247, 248, 0.9);
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 5.9rem;
  z-index: 44;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #25d366, #18b454);
  color: #fff;
  box-shadow: 0 18px 38px rgba(20, 140, 64, 0.28);
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}

.floating-whatsapp__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}

.floating-whatsapp__icon svg {
  width: 2.3rem;
  height: 2.3rem;
}

.floating-whatsapp__text {
  display: none;
}

@media (max-width: 980px) {
  .showcase-card,
  .pricing__grid,
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-visual--photo {
    min-height: 430px;
  }

  .showcase-hotspot--combo1-monitor { left: 232px; }
  .showcase-hotspot--combo1-printer { left: 302px; }
  .showcase-hotspot--combo1-drawer { left: 168px; }
  .showcase-hotspot--combo1-scale { right: 34px; }
  .showcase-hotspot--combo2-monitor { left: 226px; }
  .showcase-hotspot--combo2-drawer { left: 214px; }
}

@media (max-width: 560px) {
  .contact-bar__inner {
    gap: 0.8rem 1rem;
    font-size: 0.78rem;
  }

  .site-footer__top,
  .site-footer__bottom {
    width: min(100% - 1rem, 1180px);
  }

  .site-footer {
    padding-top: 3rem;
  }

  .showcase__grid,
  .pricing__grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    padding: 1.15rem;
  }

  .showcase-visual {
    min-height: 360px;
  }

  .showcase-visual--photo {
    min-height: 390px;
  }

  .showcase-hero-image--mobile {
    width: min(100%, 320px);
  }

  .showcase-hotspot {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 1rem;
  }

  .showcase-hotspot--combo1-monitor { top: 78px; left: 180px; }
  .showcase-hotspot--combo1-cpu { top: 136px; left: 26px; }
  .showcase-hotspot--combo1-scanner { bottom: 82px; left: 60px; }
  .showcase-hotspot--combo1-printer { bottom: 82px; left: 246px; }
  .showcase-hotspot--combo1-drawer { bottom: 106px; left: 136px; }
  .showcase-hotspot--combo1-scale { top: 134px; right: 24px; }

  .showcase-hotspot--mobile-device { top: 128px; left: 156px; }
  .showcase-hotspot--mobile-printer { top: 26px; left: 88px; }

  .showcase-hotspot--combo2-monitor { top: 78px; left: 182px; }
  .showcase-hotspot--combo2-scanner { top: 126px; right: 58px; }
  .showcase-hotspot--combo2-printer { bottom: 102px; left: 58px; }
  .showcase-hotspot--combo2-drawer { bottom: 78px; left: 176px; }

  .site-footer__bottom {
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 5.7rem;
    width: 4.4rem;
    height: 4.4rem;
  }
}
