:root {
  --ink: #0b1726;
  --ink-2: #111f30;
  --steel: #2b3440;
  --muted: #657181;
  --line: #d9e0e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --orange: #f26b21;
  --green: #1fb678;
  --shadow: 0 24px 70px rgba(7, 16, 28, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 232, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 146px;
  height: 52px;
  overflow: hidden;
  background: var(--white);
  border-radius: 6px;
}

.brand img,
.site-footer img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  position: fixed;
  top: 76px;
  right: 16px;
  left: 16px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 12px;
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta {
  color: var(--white) !important;
  background: var(--orange);
  border-radius: 6px;
  text-align: center;
}

.nav-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  background: var(--ink);
  border: 0;
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 138px 0 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 23, 38, 0.95) 0%, rgba(11, 23, 38, 0.78) 46%, rgba(11, 23, 38, 0.26) 100%),
    linear-gradient(0deg, rgba(11, 23, 38, 0.86) 0%, rgba(11, 23, 38, 0) 44%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 10vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-subtitle {
  max-width: 680px;
  color: #d7e1ec;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
}

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

.trust-strip {
  display: grid;
  gap: 10px;
  max-width: 780px;
  color: #e8edf2;
  font-size: 0.93rem;
  font-weight: 800;
}

.trust-strip span,
.cta-proof span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.trust-strip span::before,
.cta-proof span::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(31, 182, 120, 0.18);
}

.hero-card {
  align-self: end;
  max-width: 410px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.card-label {
  display: block;
  margin-bottom: 10px;
  color: #ffb284;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.hero-card p {
  margin: 0;
  color: #d7e1ec;
}

.section {
  padding: 76px 0;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.benefits,
.compatibility,
.process {
  background: var(--paper);
}

.benefit-grid,
.testimonial-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

.benefit-card,
.compare-card,
.testimonial-grid figure {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-card {
  box-shadow: 0 16px 48px rgba(7, 16, 28, 0.08);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.benefit-card p,
.compare-card li,
.testimonial-grid blockquote {
  color: var(--muted);
}

.split-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

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

.sector-grid div,
.logo-grid span {
  min-height: 82px;
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sector-grid div {
  display: flex;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(11, 23, 38, 0.03), rgba(242, 107, 33, 0.11)),
    var(--paper);
}

.industrial-band {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.industrial-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: 0.72;
}

.industrial-band div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 620px;
  padding: 22px;
  background: rgba(11, 23, 38, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.industrial-band span {
  display: block;
  margin-bottom: 8px;
  color: #ffb284;
  font-weight: 900;
  text-transform: uppercase;
}

.industrial-band strong {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  line-height: 1.1;
}

.logo-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  color: var(--steel);
  font-size: 1.02rem;
  background: var(--white);
}

.comparison {
  background: var(--ink);
  color: var(--white);
}

.comparison .section-heading p {
  color: #9fb0c3;
}

.compare-card {
  background: #111f30;
  border-color: rgba(255, 255, 255, 0.12);
}

.compare-card h3 {
  color: var(--white);
}

.compare-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

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

.compare-card li::before {
  width: 8px;
  height: 8px;
  content: "";
  background: #728095;
  border-radius: 999px;
}

.compare-card.highlight {
  background: linear-gradient(135deg, #10243a, #0b1726);
  border-color: rgba(31, 182, 120, 0.5);
  box-shadow: 0 22px 60px rgba(31, 182, 120, 0.12);
}

.compare-card.highlight li::before {
  background: var(--green);
}

.testimonials {
  background: var(--white);
}

.testimonial-grid figure {
  margin: 0;
}

.stars {
  margin-bottom: 16px;
  color: var(--orange);
  letter-spacing: 0.12em;
}

blockquote {
  margin: 0 0 18px;
}

figcaption {
  color: var(--ink);
  font-weight: 900;
}

figcaption span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline strong {
  font-size: 1.06rem;
}

.final-cta {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 23, 38, 0.96), rgba(17, 31, 48, 0.9)),
    url("recursos/impresora-marcaje-industrial.jpg") center/cover;
}

.cta-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.final-cta h2 {
  max-width: 620px;
}

.final-cta p {
  max-width: 620px;
  color: #d7e1ec;
}

.cta-proof {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(242, 107, 33, 0.2);
  border-color: var(--orange);
}

.lead-form .full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.84rem;
}

.form-note.is-success {
  color: #0f7c54 !important;
  font-weight: 900;
}

.site-footer {
  padding: 48px 0 22px;
  color: #c8d3df;
  background: #07101c;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.site-footer img {
  margin-bottom: 16px;
  padding: 6px;
  background: var(--white);
  border-radius: 6px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: #c8d3df;
}

.copyright {
  width: min(1120px, calc(100% - 32px));
  padding-top: 22px;
  margin: 28px auto 0;
  color: #91a0b2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 680px) {
  .hero-actions,
  .trust-strip {
    grid-template-columns: repeat(3, auto);
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

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

  .comparison-grid,
  .cta-grid,
  .split-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
  }
}

@media (min-width: 920px) {
  .site-header {
    padding: 12px 32px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr 360px;
    align-items: end;
  }

  .section {
    padding: 104px 0;
  }

  .hero {
    padding-top: 172px;
  }

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

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

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

  .timeline li {
    min-height: 160px;
  }

  .industrial-band div {
    right: auto;
    bottom: 42px;
    left: max(32px, calc((100vw - 1120px) / 2));
  }

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