:root {
  color-scheme: light;
  --ink: #090b12;
  --ink-soft: #303647;
  --muted: #667085;
  --line: #d9deea;
  --line-strong: #b8c0d4;
  --paper: #ffffff;
  --paper-soft: #f6f8fc;
  --navy: #07155f;
  --navy-2: #0d247d;
  --sky: #eaf1ff;
  --green: #13795b;
  --red: #a93124;
  --gold: #b97914;
  --shadow: 0 24px 70px rgba(9, 11, 18, 0.12);
  --shadow-soft: 0 12px 32px rgba(9, 11, 18, 0.08);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(7, 21, 95, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 95, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
}

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

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

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

.skip-link {
  background: var(--navy);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: absolute;
  top: -48px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 222, 234, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 76px;
  padding: 0 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: max-content;
}

.brand-logo {
  height: 54px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav-links a {
  border: 1px solid transparent;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--line);
  color: var(--navy);
  outline: none;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.menu-button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.menu-button svg,
.icon {
  height: 18px;
  width: 18px;
}

.btn {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 850;
  gap: 9px;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 0 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 24px rgba(7, 21, 95, 0.22);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy-2);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 88px 24px;
}

.section-tight {
  padding: 64px 24px;
}

.container {
  margin: 0 auto;
  max-width: var(--max);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 78px 24px 42px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  margin: 0 auto;
  max-width: var(--max);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.05rem, 5.8vw, 5.8rem);
  font-weight: 950;
  line-height: 0.94;
  margin: 0;
  max-width: 820px;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--navy);
}

.hero-copy {
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.65;
  margin: 28px 0 0;
  max-width: 640px;
}

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

.hero-proof {
  border-left: 4px solid var(--navy);
  color: var(--ink-soft);
  display: grid;
  gap: 5px;
  margin-top: 34px;
  padding-left: 16px;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: 100%;
}

.visual-strip {
  align-items: center;
  background: var(--ink);
  bottom: -18px;
  color: #fff;
  display: flex;
  font-size: 0.82rem;
  font-weight: 850;
  gap: 10px;
  left: 24px;
  padding: 13px 15px;
  position: absolute;
  text-transform: uppercase;
}

.signal {
  background: #32d583;
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.hero-next {
  border-top: 1px solid var(--line);
  margin: 62px auto 0;
  max-width: var(--max);
  padding-top: 24px;
}

.mini-system-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.mini-system {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  display: flex;
  gap: 12px;
  min-height: 70px;
  padding: 14px;
}

.mini-system strong {
  display: block;
  font-size: 0.98rem;
}

.mini-system span {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
  margin-top: 2px;
}

.system-icon {
  align-items: center;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.section-head {
  align-items: end;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.52fr);
  margin-bottom: 36px;
}

.section-head h2,
.page-section h2 {
  font-size: clamp(2.1rem, 4vw, 4.35rem);
  font-weight: 930;
  line-height: 0.98;
  margin: 0;
}

.section-head p,
.page-section p.lead {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.65;
  margin: 0;
}

.systems-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.system-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  gap: 24px;
  min-height: 100%;
  padding: 24px;
}

.system-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.system-card h3 {
  font-size: 1.55rem;
  margin: 0;
}

.system-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.system-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.system-meta span {
  border: 1px solid var(--line);
  padding: 7px 9px;
}

.feature-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  align-items: start;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.feature-list li::before {
  background: var(--navy);
  content: "";
  flex: 0 0 auto;
  height: 7px;
  margin-top: 9px;
  width: 7px;
}

.card-link {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  margin-top: auto;
}

.band {
  background: var(--ink);
  color: #fff;
  padding: 72px 24px;
}

.band-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 0.85fr 1.15fr;
}

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

.band p {
  color: #d8dded;
  font-size: 1.06rem;
  line-height: 1.65;
  margin: 0;
}

.proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.proof-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 128px;
  padding: 22px;
}

.proof-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.workflow {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.step span {
  color: var(--navy);
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.step strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.contact {
  background:
    linear-gradient(135deg, rgba(7, 21, 95, 0.07), rgba(19, 121, 91, 0.08)),
    #fff;
  border-top: 1px solid var(--line);
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
}

.contact h2 {
  font-size: clamp(2.3rem, 4.7vw, 5.1rem);
  line-height: 0.95;
  margin: 0;
}

.contact p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 24px 0 0;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.contact-panel label {
  color: var(--ink-soft);
  display: grid;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font: 700 0.98rem/1.4 var(--font);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.contact-panel textarea {
  min-height: 106px;
  resize: vertical;
}

.contact-panel input:focus,
.contact-panel select:focus,
.contact-panel textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(7, 21, 95, 0.12);
}

.contact-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 14px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 32px 24px;
}

.footer-grid {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
}

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

.footer-links a {
  color: var(--ink-soft);
  font-weight: 750;
}

.page-hero {
  padding: 78px 24px 58px;
}

.page-hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  margin: 0 auto;
  max-width: var(--max);
}

.page-hero p {
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.65;
  margin: 28px 0 0;
  max-width: 680px;
}

.product-shell {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
}

.mock-window {
  border: 1px solid var(--line-strong);
  min-height: 420px;
  overflow: hidden;
}

.mock-top {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  font-size: 0.82rem;
  font-weight: 850;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  background: #fff;
  border-radius: 999px;
  height: 8px;
  opacity: 0.82;
  width: 8px;
}

.mock-body {
  background: var(--paper-soft);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.mock-row,
.mock-chart,
.mock-large {
  background: #fff;
  border: 1px solid var(--line);
}

.mock-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr 68px;
  min-height: 58px;
  padding: 10px;
}

.mock-row::before {
  background: var(--navy);
  content: "";
  height: 34px;
  width: 34px;
}

.mock-line {
  background: linear-gradient(90deg, var(--ink), transparent);
  height: 8px;
  opacity: 0.2;
}

.mock-line.small {
  max-width: 74%;
}

.mock-pill {
  border: 1px solid var(--line-strong);
  height: 26px;
}

.mock-large {
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 14px;
}

.mock-chart {
  align-items: end;
  display: flex;
  gap: 8px;
  min-height: 112px;
  padding: 12px;
}

.mock-bar {
  background: var(--navy);
  flex: 1;
  min-height: 24px;
}

.mock-bar:nth-child(2) {
  background: var(--green);
  height: 72%;
}

.mock-bar:nth-child(3) {
  background: var(--gold);
  height: 48%;
}

.mock-bar:nth-child(4) {
  background: var(--red);
  height: 86%;
}

.page-section {
  padding: 76px 24px;
}

.two-col {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.62fr);
}

.module-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.module {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
}

.module strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.module p {
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.page-aside {
  background: var(--ink);
  color: #fff;
  padding: 26px;
}

.page-aside h2 {
  font-size: 1.7rem;
  line-height: 1.1;
  margin: 0 0 20px;
}

.page-aside ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-aside li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #e9edf8;
  line-height: 1.55;
  padding-bottom: 12px;
}

.seo-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 66px 24px;
}

.seo-grid {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.62fr);
}

.seo-grid h2,
.faq-section h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1;
  margin: 0;
}

.seo-grid p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.68;
  margin: 20px 0 0;
}

.seo-list {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 22px;
}

.seo-list li {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-weight: 800;
  gap: 10px;
}

.seo-list li::before {
  background: var(--product, var(--navy));
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.faq-section {
  background: var(--paper-soft);
  padding: 70px 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.faq-list h3 {
  font-size: 1.12rem;
  margin: 0;
}

.faq-list p {
  color: var(--ink-soft);
  line-height: 1.62;
  margin: 10px 0 0;
}

.repo-line {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: space-between;
  margin-top: 22px;
  padding: 14px;
}

.repo-line code {
  color: var(--ink);
  font-weight: 800;
}

.product-arrendamiento {
  --product: var(--navy);
}

.product-panaderia {
  --product: var(--green);
}

.product-restaurante {
  --product: var(--red);
}

.product-bordadoras {
  --product: #0f766e;
}

.product-a-medida {
  --product: #475569;
}

.product-page .page-hero h1 span,
.product-page .card-link,
.product-page .step span {
  color: var(--product);
}

.product-page .feature-list li::before,
.product-page .mock-row::before,
.product-page .mock-bar {
  background: var(--product);
}

.product-page .btn-primary {
  background: var(--product);
  border-color: var(--product);
}

.legal-page {
  background: #fff;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  padding: 70px 24px 46px;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.96;
  margin: 0;
}

.legal-hero p {
  color: var(--muted);
  font-weight: 800;
  margin: 18px 0 0;
}

.legal-content {
  padding: 58px 24px 82px;
}

.legal-grid {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.44fr);
}

.legal-content article {
  display: grid;
  gap: 18px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 16px 0 0;
}

.legal-content p {
  color: var(--ink-soft);
  line-height: 1.68;
  margin: 0;
}

.legal-content a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-aside {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 24px;
  position: sticky;
  top: 100px;
}

.legal-aside strong {
  font-size: 1.05rem;
}

.legal-aside .btn {
  text-decoration: none;
}

@media (max-width: 1020px) {
  .hero-grid,
  .page-hero-grid,
  .contact-grid,
  .band-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }

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

@media (max-width: 820px) {
  .nav {
    min-height: 68px;
    padding: 0 16px;
  }

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

  .nav-links {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: none;
    left: 0;
    padding: 10px 16px 16px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .site-header[data-open="true"] .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 13px 8px;
  }

  .nav-actions .btn {
    display: none;
  }

  .section,
  .page-section {
    padding: 64px 18px;
  }

  .section-tight {
    padding: 48px 18px;
  }

  .hero,
  .page-hero {
    padding: 54px 18px 36px;
  }

  .section-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .mini-system-row,
  .systems-grid,
  .proof-grid,
  .workflow,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .page-hero-grid {
    gap: 30px;
  }

  .footer-grid {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 18vw, 4.5rem);
  }

  .hero-actions,
  .nav-actions {
    width: auto;
  }

  .btn {
    width: 100%;
  }

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

  .visual-strip {
    bottom: auto;
    left: 0;
    position: relative;
  }

  .product-shell {
    padding: 10px;
  }

  .mock-window {
    min-height: 340px;
  }

  .mock-row {
    grid-template-columns: 34px 1fr;
  }

  .mock-pill {
    display: none;
  }
}

/* Homepage mockup-matched layout */
.home-page {
  background: #fff;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dce2ec;
}

.home-page .nav {
  min-height: 78px;
}

.home-page .brand-logo {
  height: 58px;
}

.home-page .nav-links {
  gap: 22px;
}

.home-page .nav-links a {
  color: #060914;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 9px 4px;
}

.home-page .btn {
  border-radius: 4px;
  min-height: 52px;
  padding: 0 26px;
}

.home-page .btn-primary {
  background: linear-gradient(180deg, #071762, #06104a);
  border-color: #06104a;
  box-shadow: 0 14px 28px rgba(7, 21, 95, 0.24);
}

.home-page .btn-secondary {
  border-color: #07155f;
  color: #07155f;
}

.home-shell {
  margin: 0 auto;
  max-width: 1180px;
  width: calc(100% - 48px);
}

.home-hero {
  background:
    radial-gradient(circle at 58% 78%, rgba(7, 21, 95, 0.08), transparent 38%),
    linear-gradient(rgba(7, 21, 95, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 95, 0.055) 1px, transparent 1px),
    #fff;
  background-size: auto, 40px 40px, 40px 40px;
  border-bottom: 1px solid #e6ebf3;
  padding: 68px 0 70px;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
}

.hero-content h1 {
  color: #05070d;
  font-size: clamp(3.2rem, 5.6vw, 5.55rem);
  font-weight: 940;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0;
}

.hero-content p {
  color: #20283a;
  font-size: 1.18rem;
  line-height: 1.62;
  margin: 26px 0 0;
  max-width: 530px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.trust-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 34px;
}

.trust-row span {
  align-items: center;
  color: #2f3648;
  display: inline-flex;
  font-size: 0.96rem;
  gap: 9px;
}

.trust-row svg {
  background: #07155f;
  border-radius: 999px;
  color: #fff;
  height: 20px;
  padding: 3px;
  width: 20px;
}

.hero-device {
  min-height: 410px;
  position: relative;
}

.mock-laptop {
  filter: drop-shadow(0 22px 24px rgba(8, 13, 30, 0.16));
  margin-left: auto;
  padding-bottom: 23px;
  position: relative;
  width: min(620px, 100%);
}

.mock-laptop::after {
  background: linear-gradient(90deg, #8c929b, #f8fafc 16%, #d4d9e0 82%, #818891);
  border-radius: 0 0 22px 22px;
  bottom: 0;
  content: "";
  height: 22px;
  left: 42px;
  position: absolute;
  right: 42px;
}

.screen {
  background: #050915;
  border: 11px solid #050505;
  border-radius: 12px 12px 4px 4px;
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 334px;
  overflow: hidden;
}

.screen aside {
  background: linear-gradient(180deg, #07162b, #061022);
  color: #b9c4d6;
  display: grid;
  gap: 12px;
  padding: 20px 16px;
}

.screen aside strong {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 7px;
}

.screen aside span {
  font-size: 0.76rem;
  font-weight: 750;
}

.screen-main {
  background: #f8fafc;
  padding: 22px;
}

.screen-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.screen-top div {
  display: flex;
  gap: 8px;
}

.screen-top span {
  background: #fff;
  border: 1px solid #dce2ec;
  border-radius: 999px;
  height: 18px;
  width: 18px;
}

.stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.stat-grid div,
.chart-card,
.due-card {
  background: #fff;
  border: 1px solid #e0e5ee;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.stat-grid div {
  min-height: 70px;
  padding: 12px;
}

.stat-grid span,
.chart-card span {
  color: #687286;
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
}

.stat-grid strong {
  color: #05070d;
  display: block;
  font-size: 1.28rem;
  margin-top: 7px;
}

.dashboard-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.08fr 0.92fr;
  margin-top: 16px;
}

.chart-card {
  padding: 16px;
}

.chart-card svg {
  margin-top: 8px;
  width: 100%;
}

.due-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.due-card strong {
  font-size: 0.9rem;
}

.due-card p {
  color: #4c5568;
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  margin: 0;
}

.due-card span {
  color: #07155f;
  font-weight: 850;
}

.phone-mock {
  background: #fff;
  border: 8px solid #050505;
  border-radius: 26px;
  bottom: 14px;
  box-shadow: 0 18px 26px rgba(8, 13, 30, 0.22);
  color: #111827;
  min-height: 248px;
  padding: 32px 13px 13px;
  position: absolute;
  right: 0;
  width: 142px;
}

.phone-notch {
  background: #050505;
  border-radius: 0 0 10px 10px;
  height: 18px;
  left: 35px;
  position: absolute;
  top: 0;
  width: 58px;
}

.phone-mock strong {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.phone-mock p {
  border-bottom: 1px solid #eef1f5;
  display: grid;
  font-size: 0.66rem;
  gap: 4px;
  margin: 0;
  padding: 9px 0;
}

.phone-mock p span {
  color: #07155f;
  font-weight: 900;
}

.phone-mock small {
  color: #6b7280;
  display: block;
  font-size: 0.62rem;
  margin: 12px 0;
}

.phone-mock button {
  background: #07155f;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font: 800 0.65rem/1 var(--font);
  height: 27px;
  width: 100%;
}

.home-section {
  padding: 86px 0 78px;
}

.center-head {
  margin: 0 auto 36px;
  max-width: 680px;
  text-align: center;
}

.center-head h2 {
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  line-height: 1;
  margin: 0;
}

.center-head p {
  color: #4b5568;
  font-size: 1.07rem;
  margin: 18px 0 0;
}

.system-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.showcase-card {
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
  display: grid;
  padding: 32px;
}

.showcase-title {
  align-items: center;
  display: flex;
  gap: 20px;
  min-height: 72px;
}

.showcase-icon {
  align-items: center;
  background: linear-gradient(180deg, #071762, #06104a);
  border-radius: 8px;
  box-shadow: 0 14px 22px rgba(7, 21, 95, 0.18);
  color: #fff;
  display: inline-flex;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.showcase-icon svg {
  height: 32px;
  width: 32px;
}

.showcase-card h3 {
  font-size: 1.7rem;
  line-height: 1.08;
  margin: 0;
}

.showcase-card p {
  color: #333b4f;
  line-height: 1.58;
  margin: 24px 0 0;
}

.card-check-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
}

.card-check-list li {
  align-items: center;
  color: #2d3546;
  display: flex;
  font-size: 0.95rem;
  gap: 10px;
}

.card-check-list li::before {
  align-items: center;
  background: #07155f;
  border-radius: 999px;
  color: #fff;
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 900;
  height: 17px;
  justify-content: center;
  width: 17px;
}

.mini-preview {
  border: 1px solid #cfd7e6;
  border-radius: 7px;
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 146px;
  overflow: hidden;
}

.preview-side {
  background: linear-gradient(180deg, #07162b, #061022);
}

.preview-main {
  background: #fbfcfe;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.preview-main strong {
  font-size: 0.8rem;
}

.preview-main span {
  background: linear-gradient(90deg, #e5eaf2 0 62%, #b7efcc 62% 78%, #e5eaf2 78%);
  border-radius: 4px;
  height: 14px;
}

.preview-main.bakery span {
  background: linear-gradient(90deg, #e5eaf2 0 48%, #f5c27a 48% 62%, #e5eaf2 62%);
}

.preview-main.restaurant span {
  background: linear-gradient(90deg, #e5eaf2 0 55%, #b8e6c2 55% 70%, #e5eaf2 70%);
}

.preview-main.embroidery span {
  background: linear-gradient(90deg, #e5eaf2 0 44%, #99e3d8 44% 64%, #e5eaf2 64%);
}

.preview-main.custom span {
  background: linear-gradient(90deg, #e5eaf2 0 50%, #cbd5e1 50% 68%, #e5eaf2 68%);
}

.learn-link {
  align-items: center;
  color: #07155f;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  margin-top: 24px;
}

.benefits-hero {
  background: radial-gradient(circle at 50% 0%, rgba(32, 74, 156, 0.35), transparent 48%), linear-gradient(90deg, #05144a, #07155f 48%, #04103d);
  color: #fff;
  padding: 66px 0 70px;
}

.benefits-hero h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 40px;
  text-align: center;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.benefit-row article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 188px;
  padding: 8px 28px 0;
  text-align: center;
}

.benefit-row article:first-child {
  border-left: 0;
}

.benefit-row svg {
  height: 60px;
  margin-bottom: 22px;
  width: 60px;
}

.benefit-row strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.benefit-row p {
  color: #e5eaf8;
  font-size: 0.92rem;
  line-height: 1.58;
  margin: 0;
}

.sales-proof {
  background: #f7f9fd;
  border-bottom: 1px solid #e3e8f1;
  padding: 76px 0;
}

.proof-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
}

.section-kicker {
  color: #07155f;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.proof-copy h2,
.packages-home h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1;
  margin: 0;
}

.proof-copy p {
  color: #30394c;
  font-size: 1.06rem;
  line-height: 1.68;
  margin: 22px 0 0;
}

.demo-route {
  display: grid;
  gap: 14px;
}

.demo-route article,
.package-card {
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
}

.demo-route article {
  display: grid;
  gap: 10px;
  grid-template-columns: 58px 1fr;
  padding: 22px;
}

.demo-route span {
  align-items: center;
  background: #07155f;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.demo-route strong {
  font-size: 1.12rem;
}

.demo-route p {
  color: #4b5568;
  grid-column: 2;
  line-height: 1.55;
  margin: -4px 0 0;
}

.packages-home {
  background: #fff;
  padding: 82px 0;
}

.package-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.package-card.featured {
  border-color: #07155f;
  box-shadow: 0 20px 45px rgba(7, 21, 95, 0.13);
}

.package-card span {
  color: #07155f;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 1.45rem;
  margin: 0;
}

.package-card p,
.package-cta p {
  color: #4b5568;
  line-height: 1.6;
  margin: 0;
}

.package-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-card li {
  align-items: center;
  color: #253044;
  display: flex;
  gap: 10px;
}

.package-card li::before {
  background: #07155f;
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.package-cta {
  align-items: center;
  border-top: 1px solid #dfe5ee;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 24px;
}

.contact-home {
  background: #fff;
  padding: 72px 0;
}

.contact-layout {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(260px, 0.65fr) minmax(520px, 1fr);
}

.contact-copy {
  border-right: 1px solid #cfd7e6;
  padding: 22px 44px 22px 26px;
}

.contact-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  margin: 0;
}

.contact-copy > p {
  color: #3f485a;
  line-height: 1.6;
  margin: 18px 0 34px;
}

.contact-list {
  display: grid;
  gap: 22px;
}

.contact-list a,
.contact-list > span {
  align-items: center;
  color: #111827;
  display: flex;
  gap: 14px;
}

.contact-list strong {
  font-weight: 700;
}

.contact-icon {
  color: #07155f;
  display: inline-flex;
  flex: 0 0 auto;
}

.contact-icon.whatsapp {
  color: #159653;
}

.contact-icon svg {
  height: 30px;
  width: 30px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding-top: 16px;
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid #cfd7e6;
  border-radius: 6px;
  color: #111827;
  font: 700 0.95rem/1.45 var(--font);
  min-height: 52px;
  padding: 13px 16px;
}

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

.privacy-check {
  align-items: start;
  color: #334155;
  display: flex;
  font-size: 0.86rem;
  font-weight: 750;
  gap: 10px;
  line-height: 1.45;
}

.privacy-check input {
  flex: 0 0 auto;
  margin-top: 2px;
  min-height: auto;
  width: auto;
}

.privacy-check a {
  color: #07155f;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  border: 1px solid transparent;
  border-radius: 6px;
  color: #334155;
  display: none;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
  margin: -2px 0 0;
  padding: 11px 13px;
}

.form-status[data-state="loading"],
.form-status[data-state="success"],
.form-status[data-state="error"] {
  display: block;
}

.form-status[data-state="loading"] {
  background: #eef4ff;
  border-color: #cfe0ff;
  color: #07155f;
}

.form-status[data-state="success"] {
  background: #ecfdf5;
  border-color: #b7f0d1;
  color: #087443;
}

.form-status[data-state="error"] {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
}

.contact-form button {
  justify-content: center;
  width: 100%;
}

.contact-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.floating-whatsapp {
  align-items: center;
  background: #159653;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 18px 36px rgba(21, 150, 83, 0.28);
  color: #fff;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  width: 58px;
  z-index: 25;
}

.floating-whatsapp::before {
  background: #07155f;
  border-radius: 6px;
  color: #fff;
  content: attr(aria-label);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  padding: 9px 11px;
  pointer-events: none;
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 160ms ease;
  white-space: nowrap;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #0f7f45;
  box-shadow: 0 22px 42px rgba(21, 150, 83, 0.34);
  transform: translateY(-2px);
}

.floating-whatsapp:hover::before,
.floating-whatsapp:focus-visible::before {
  opacity: 1;
}

.floating-whatsapp svg {
  height: 30px;
  width: 30px;
}

.home-footer {
  background: #fff;
  border-top: 1px solid #e2e7ef;
  padding: 0;
}

.footer-main {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.35fr 0.7fr 0.9fr 0.9fr 0.9fr;
  padding: 45px 0 48px;
}

.footer-brand .brand-logo {
  height: 68px;
}

.footer-brand p {
  color: #4b5568;
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 210px;
}

.home-footer nav,
.socials {
  display: grid;
  gap: 12px;
  align-content: start;
}

.home-footer nav strong,
.socials strong {
  color: #05070d;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.home-footer nav a {
  color: #374151;
  font-size: 0.9rem;
}

.socials div {
  display: flex;
  gap: 12px;
}

.socials a {
  align-items: center;
  background: #05070d;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.footer-bottom {
  background: linear-gradient(90deg, #07155f, #04103d);
  color: #fff;
  font-size: 0.88rem;
  padding: 18px 0;
}

.footer-bottom .home-shell {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mexico-flag {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}

.mexico-flag span {
  background: linear-gradient(90deg, #128a42 0 33%, #fff 33% 66%, #ce2b37 66%);
  border-radius: 3px;
  display: inline-block;
  height: 16px;
  width: 26px;
}

@media (max-width: 1060px) {
  .hero-layout,
  .contact-layout,
  .proof-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-device {
    max-width: 760px;
  }

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

  .benefit-row,
  .package-grid,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-row article:nth-child(odd) {
    border-left: 0;
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid #cfd7e6;
    padding: 0 0 34px;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 820px) {
  .home-page .nav-links {
    gap: 0;
  }

  .home-page .brand-logo {
    height: 42px;
  }

  .home-shell {
    width: calc(100% - 36px);
  }

  .home-hero {
    padding: 42px 0 46px;
  }

  .hero-content h1 {
    font-size: clamp(3.05rem, 14vw, 4.4rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons,
  .trust-row {
    gap: 12px;
  }

  .hero-buttons .btn,
  .contact-form .btn {
    width: 100%;
  }

  .mock-laptop {
    width: 100%;
  }

  .screen {
    grid-template-columns: 72px 1fr;
  }

  .screen aside {
    padding: 16px 10px;
  }

  .screen aside span {
    font-size: 0.62rem;
  }

  .stat-grid,
  .dashboard-grid,
  .seo-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .phone-mock {
    bottom: -22px;
    right: 8px;
    transform: scale(0.82);
    transform-origin: bottom right;
  }

  .floating-whatsapp {
    bottom: 16px;
    height: 52px;
    right: 16px;
    width: 52px;
  }

  .floating-whatsapp::before {
    display: none;
  }

  .floating-whatsapp svg {
    height: 28px;
    width: 28px;
  }

  .home-section {
    padding: 60px 0;
  }

  .sales-proof,
  .packages-home {
    padding: 58px 0;
  }

  .showcase-card {
    padding: 24px;
  }

  .benefit-row,
  .package-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .demo-route article {
    grid-template-columns: 1fr;
  }

  .demo-route p {
    grid-column: auto;
  }

  .package-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-strip,
  .faq-section,
  .legal-content,
  .legal-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .benefit-row article,
  .benefit-row article:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 26px 0 0;
  }

  .benefit-row article:first-child {
    border-top: 0;
  }

  .contact-home {
    padding: 56px 0;
  }

  .footer-bottom .home-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
