:root {
  --aceris-blue: #0090d7;
  --aceris-blue-dark: #006fa8;
  --aceris-blue-soft: #dff3ff;
  --qualica-red: #e0242b;
  --ink: #061018;
  --graphite: #15232e;
  --navy: #071620;
  --muted: #61717e;
  --soft: #f4f7fa;
  --soft-2: #eaf1f6;
  --line: #d8e3ea;
  --white: #ffffff;
  --green: #21a574;
  --shadow-soft: 0 18px 46px rgba(7, 22, 32, 0.08);
  --shadow-strong: 0 26px 70px rgba(7, 22, 32, 0.18);
  --radius: 8px;
  --max: 1420px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --title-large: 2.65rem;
  --title-large-line: 1.14;
  --title-large-weight: 870;
  --title-body: 1.02rem;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  font-size: 15px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(216, 227, 234, 0.35) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 227, 234, 0.28) 1px, transparent 1px),
    var(--white);
  background-size: 96px 96px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 118px) 0;
}

.section[id],
#contacto {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  width: 100%;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.4vw, 26px);
  margin: 0 auto;
  padding: 0 clamp(30px, 3vw, 48px) 0 clamp(48px, 4vw, 68px);
  background: var(--white);
  border: 1px solid rgba(216, 227, 234, 0.72);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(7, 22, 32, 0.12);
  backdrop-filter: blur(20px);
  transition:
    min-height 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    margin 220ms ease;
}

.site-header.is-compact {
  min-height: 70px;
  margin-top: 0;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 22, 32, 0.12);
}

.brand {
  display: inline-flex;
  width: clamp(160px, 12vw, 215px);
  min-width: 150px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.15vw, 24px);
  color: #05090d;
  font-size: clamp(0.74rem, 0.78vw, 0.86rem);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav a:not(.nav-cta)::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--aceris-blue-dark);
}

.site-nav a.is-active:not(.nav-cta) {
  color: var(--aceris-blue-dark);
}

.nav-chevron {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.nav-cta {
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 clamp(12px, 1vw, 16px);
  color: var(--white) !important;
  background: #0052e0;
  border: 1px solid #0052e0;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0, 82, 224, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #0047c5;
  border-color: #0047c5;
}

.nav-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-mobile-icon,
.nav-row-arrow {
  display: none;
}

.mega-menu {
  position: fixed;
  top: 94px;
  left: 50%;
  width: min(1080px, calc(100vw - 64px));
  color: var(--ink);
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.mega-menu::before {
  position: absolute;
  top: -28px;
  right: auto;
  left: 18%;
  width: 28px;
  height: 28px;
  content: "";
  background: var(--white);
  border-top: 1px solid rgba(216, 227, 234, 0.92);
  border-left: 1px solid rgba(216, 227, 234, 0.92);
  transform: rotate(45deg);
}

.mega-menu::after {
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  height: 28px;
  content: "";
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-header.is-compact .mega-menu {
  top: 70px;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 227, 234, 0.92);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 22, 32, 0.18);
}

.mega-menu-list {
  min-width: 0;
  padding-right: 28px;
  border-right: 1px solid rgba(216, 227, 234, 0.92);
}

.mega-menu-heading {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(216, 227, 234, 0.92);
}

.mega-menu-heading-icon,
.mega-menu-icon,
.mega-menu-help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0052e0;
  background: #f0f5ff;
  border-radius: 6px;
}

.mega-menu-heading-icon {
  width: 56px;
  height: 56px;
}

.mega-menu-heading svg,
.mega-menu-icon svg,
.mega-menu-help-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mega-menu-kicker {
  display: block;
  color: #4d6382;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-menu-heading strong {
  display: block;
  max-width: 420px;
  margin-top: 4px;
  color: #06143a;
  font-size: 1.18rem;
  line-height: 1.25;
  text-transform: none;
}

.mega-menu-links {
  display: grid;
}

.site-nav .mega-menu-link,
.site-nav .mega-menu-all {
  display: grid;
  grid-template-columns: 46px 1fr 22px;
  gap: 16px;
  min-height: 68px;
  align-items: center;
  padding: 12px 0;
  color: #07143a;
  border-bottom: 1px solid rgba(216, 227, 234, 0.92);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.28;
  text-transform: none;
  white-space: normal;
}

.mega-menu-icon {
  width: 44px;
  height: 44px;
}

.site-nav .mega-menu-link > svg,
.site-nav .mega-menu-all > svg {
  display: block;
  width: 20px;
  height: 20px;
  justify-self: end;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-nav .mega-menu-all {
  min-height: 58px;
  color: #0052e0;
}

.mega-menu-feature {
  display: grid;
  grid-template-rows: minmax(230px, 1fr) auto;
  gap: 22px;
}

.mega-menu-feature img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  max-height: 340px;
  object-fit: cover;
  border-radius: 6px;
}

.mega-menu-help {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: #f4f7ff;
  border: 1px solid rgba(216, 227, 234, 0.62);
  border-radius: 6px;
}

.mega-menu-help-icon {
  width: 56px;
  height: 56px;
  background: transparent;
}

.mega-menu-help strong,
.mega-menu-help span span {
  display: block;
  color: #07143a;
  font-size: 1rem;
  line-height: 1.45;
  text-transform: none;
}

.mega-menu-help span span {
  margin-top: 4px;
  font-weight: 500;
}

.site-nav .mega-menu-help-cta {
  grid-column: 2;
  display: inline-flex;
  width: min(100%, 330px);
  min-height: 52px;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  color: var(--white);
  background: #0052e0;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 850;
  text-transform: none;
  white-space: normal;
}

.mega-menu-help-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: #0052e0;
  border: 1px solid #0052e0;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 82, 224, 0.2);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] {
  color: #0052e0;
  background: var(--white);
  border-color: #0052e0;
  box-shadow: none;
}

.hero {
  min-height: calc(100svh - 106px);
  margin-top: -92px;
  padding: 110px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(0, 144, 215, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(7, 22, 32, 0.04), rgba(255, 255, 255, 0) 38%),
    var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 144, 215, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 144, 215, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 80%, transparent 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.42fr) minmax(0, 0.58fr);
  grid-template-areas:
    "copy stage"
    "overview overview";
  gap: 0;
  align-items: stretch;
}

.hero-copy {
  grid-area: copy;
  padding: clamp(30px, 3.6vw, 50px) clamp(28px, 4vw, 46px) 24px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 13px;
  margin-bottom: 20px;
  color: #064fbb;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.hero-kicker span:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 14px;
  background: currentColor;
  opacity: 0.72;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: 3.75rem;
  font-weight: 860;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 550px;
  margin: 22px 0 0;
  color: #334653;
  font-size: 1.12rem;
  line-height: 1.58;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 780;
  line-height: 1;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button svg,
.mobile-sticky-cta svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms var(--ease);
}

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

.button:hover svg,
.button:focus-visible svg,
.mobile-sticky-cta:hover svg,
.mobile-sticky-cta:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: #0557d8;
  border-color: #0557d8;
  box-shadow: 0 16px 32px rgba(0, 144, 215, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #034bbd;
  border-color: #034bbd;
}

.button-secondary {
  color: #0557d8;
  background: transparent;
  border-color: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: transparent;
  background: rgba(0, 144, 215, 0.06);
}

.access-scroll-button:hover svg,
.access-scroll-button:focus-visible svg {
  transform: translateY(4px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin-top: clamp(26px, 2.5vw, 34px);
}

.hero-proof div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  color: #263745;
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.25;
}

.proof-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0557d8;
}

.proof-icon svg,
.overview-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-stage {
  position: relative;
  grid-area: stage;
  min-height: clamp(460px, 32vw, 540px);
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0.72) 6%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(90deg, rgba(7, 22, 32, 0) 0 68%, rgba(7, 22, 32, 0.58) 68% 100%);
  border-radius: var(--radius);
}

.hero-stage::after {
  position: absolute;
  inset: 0 0 0 66%;
  z-index: 3;
  pointer-events: none;
  content: "";
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-image-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: 0;
  box-shadow: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.flow-line {
  position: absolute;
  left: 12%;
  right: auto;
  bottom: 82px;
  z-index: 4;
  width: min(68%, 560px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 8px 16px rgba(0, 144, 215, 0.18));
}

.flow-line path {
  fill: none;
  stroke: var(--aceris-blue);
  stroke-dasharray: 12 9;
  stroke-linecap: round;
  stroke-width: 4;
  animation: routeDash 5.6s linear infinite;
}

.flow-line circle {
  fill: var(--white);
  stroke: var(--aceris-blue);
  stroke-width: 4;
}

.floating-badge,
.floating-card,
.partner-corner,
.blueprint-note {
  position: absolute;
  z-index: 5;
  border-radius: var(--radius);
}

.floating-badge {
  top: 88px;
  right: 58px;
  width: 176px;
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  animation: floatBadge 5s ease-in-out infinite;
}

.floating-badge strong {
  font-size: 2.4rem;
  line-height: 0.9;
}

.floating-badge span {
  color: #dce7ef;
  font-size: 0.76rem;
  font-weight: 820;
  line-height: 1.2;
  text-transform: uppercase;
}

.floating-card {
  left: 29%;
  bottom: 116px;
  width: min(44%, 410px);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.floating-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--aceris-blue-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  color: #1e303d;
  font-size: 0.98rem;
  line-height: 1.35;
}

.blueprint-note {
  right: 38px;
  max-width: 180px;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.38);
  padding-left: 16px;
}

.blueprint-note span {
  display: block;
  color: #dce9f0;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blueprint-note strong {
  display: block;
  margin-top: 5px;
  font-size: 0.86rem;
  line-height: 1.25;
}

.note-flow {
  top: 220px;
}

.note-capacity {
  top: 360px;
}

.partner-corner {
  right: 0;
  bottom: 0;
  width: 278px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.94);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.partner-corner span {
  display: block;
  margin-bottom: 6px;
  color: #62717d;
  font-size: 0.74rem;
  font-weight: 760;
}

.partner-corner img {
  width: 150px;
  margin-left: auto;
}

.hero-overview {
  position: relative;
  z-index: 8;
  grid-area: overview;
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  margin-top: -1px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(7, 22, 32, 0.1);
  backdrop-filter: blur(12px);
}

.overview-block {
  padding: 28px 44px 30px;
}

.overview-block + .overview-block {
  border-left: 1px solid var(--line);
}

.overview-label {
  display: block;
  margin-bottom: 10px;
  color: #0557d8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.overview-block h2 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.overview-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
}

.overview-items a {
  min-height: 110px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 0 16px 0 0;
  color: var(--ink);
}

.overview-items a + a {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.overview-icon {
  width: 36px;
  height: 36px;
  color: #0557d8;
}

.overview-items strong {
  font-size: 0.86rem;
  line-height: 1.15;
}

.overview-items small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.sector-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
}

.sector-icons a {
  min-height: 110px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding: 0 10px;
  color: var(--ink);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 760;
}

.sector-icons a + a {
  border-left: 1px solid var(--line);
}

.sector-icons span {
  color: #0557d8;
  font-size: 2.05rem;
  line-height: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 850px);
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 52px);
}

.section-number {
  display: inline-flex;
  width: 54px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--aceris-blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 860;
}

.section h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 840;
}

.hero-overview .overview-block h2 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  font-weight: 840;
}

.section-heading p,
.process-intro p,
.faq-grid > div:first-child p,
.contact-copy p,
.guarantee-panel p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.problem-section {
  background: var(--white);
}

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

.problem-card {
  position: relative;
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 22, 32, 0.05);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.problem-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--aceris-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.problem-card:hover,
.problem-card:focus-visible,
.problem-card.is-selected {
  transform: translateY(-4px);
  border-color: rgba(0, 144, 215, 0.45);
  box-shadow: 0 24px 56px rgba(7, 22, 32, 0.1);
}

.problem-card:hover::before,
.problem-card:focus-visible::before,
.problem-card.is-selected::before {
  transform: scaleX(1);
}

.problem-card strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.22;
}

.problem-card span:last-child {
  color: var(--muted);
}

.problem-card-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.14), rgba(0, 144, 215, 0)),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.14);
}

.problem-card-dark strong,
.problem-card-dark span:last-child {
  color: var(--white);
}

.problem-card-dark span:last-child {
  opacity: 0.78;
}

.project-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--aceris-blue-dark);
  background: rgba(0, 144, 215, 0.1);
  border: 1px solid rgba(0, 144, 215, 0.22);
  border-radius: var(--radius);
}

.problem-card-dark .project-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.project-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sectors-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 15%, rgba(0, 144, 215, 0.24), transparent 34%),
    var(--navy);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.sectors-section .section h2,
.sectors-section h2,
.sectors-section h3 {
  color: var(--white);
}

.sectors-section .section-number {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.sectors-section .section-heading p {
  color: #bfd2dd;
}

.sector-workbench {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
}

.sector-tabs {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.sector-tab {
  min-height: 46px;
  padding: 0 14px;
  color: #d5e4eb;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease);
}

.sector-tab:hover,
.sector-tab:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.sector-tab.is-active {
  color: var(--white);
  background: var(--aceris-blue);
  box-shadow: 0 14px 28px rgba(0, 144, 215, 0.22);
  transform: translateX(4px);
}

.sector-panels {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.sector-panels::before {
  position: absolute;
  inset: 22px 26px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  border-radius: var(--radius);
}

.sector-panel {
  position: relative;
  z-index: 1;
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  gap: 38px;
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.sector-panel[hidden] {
  display: none;
}

.sector-panel h3 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.04;
  font-weight: 840;
}

.sector-panel p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #d8e7ef;
  font-size: 1.05rem;
  line-height: 1.7;
}

.sector-panel ul {
  display: grid;
  align-content: start;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.sector-panel li {
  position: relative;
  padding: 12px 14px 12px 34px;
  color: #e9f2f7;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.sector-panel li::before {
  position: absolute;
  top: 19px;
  left: 15px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--aceris-blue);
  border-radius: 50%;
}

.solution-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--aceris-blue-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sectors-section .solution-eyebrow {
  color: #7dd1ff;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 26px;
  color: var(--white);
  border-bottom: 1px solid currentColor;
  font-weight: 820;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  color: #7dd1ff;
  transform: translateX(4px);
}

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

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

.solution-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 22, 32, 0.05);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 144, 215, 0.36);
  box-shadow: 0 24px 58px rgba(7, 22, 32, 0.1);
}

.primary-solutions-section {
  padding-top: clamp(56px, 6vw, 86px);
  background: var(--white);
}

.primary-solutions-heading {
  max-width: 780px;
  margin: 0 auto clamp(28px, 3vw, 42px);
  text-align: center;
}

.primary-solutions-heading h2 {
  max-width: 720px;
  margin: 0 auto;
  color: #06142c;
  font-size: clamp(1.95rem, 2.7vw, 3rem);
  font-weight: 860;
  line-height: 1.14;
  letter-spacing: 0;
}

.primary-solutions-heading span {
  display: block;
  width: 42px;
  height: 2px;
  margin: 18px auto 16px;
  background: #0052e0;
}

.primary-solutions-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #263746;
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  line-height: 1.5;
}

.primary-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.primary-solution-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(216, 227, 234, 0.96);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(7, 22, 32, 0.08);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.primary-solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 82, 224, 0.36);
  box-shadow: 0 26px 64px rgba(7, 22, 32, 0.12);
}

.primary-solution-media {
  display: block;
  aspect-ratio: 1.62;
  overflow: hidden;
  background: #eef4f8;
}

.primary-solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}

.primary-solution-card:hover .primary-solution-media img {
  transform: scale(1.04);
}

.primary-solution-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 18px;
}

.primary-solution-title {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 46px;
}

.primary-solution-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #0052e0;
  border: 1.5px solid #0052e0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 82, 224, 0.18);
}

.primary-solution-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.primary-solution-title h3 {
  margin: 0;
  color: #06142c;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  font-weight: 840;
  line-height: 1.16;
}

.primary-solution-content p {
  margin: 18px 0 24px;
  color: #263746;
  font-size: 0.96rem;
  line-height: 1.48;
}

.primary-solution-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding: 0 16px;
  color: #0052e0;
  border: 1px solid #0052e0;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 820;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease);
}

.primary-solution-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms var(--ease);
}

.primary-solution-link:hover,
.primary-solution-link:focus-visible {
  color: var(--white);
  background: #0052e0;
  transform: translateY(-1px);
}

.primary-solution-link:hover svg,
.primary-solution-link:focus-visible svg {
  transform: translateX(4px);
}

.needs-control-section {
  padding-top: clamp(54px, 5vw, 76px);
  background: var(--white);
}

.needs-control-heading {
  max-width: 720px;
  margin: 0 auto clamp(26px, 3vw, 38px);
  text-align: center;
}

.needs-control-heading h2 {
  margin: 0;
  color: #06142c;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 860;
  line-height: 1.1;
}

.needs-control-heading p {
  margin: 12px 0 0;
  color: #263746;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
}

.needs-control-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.need-card {
  display: grid;
  justify-items: center;
  gap: 13px;
  min-height: 220px;
  padding: 24px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 227, 234, 0.9);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(7, 22, 32, 0.07);
}

.need-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: #0052e0;
}

.need-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.need-card h3 {
  max-width: 150px;
  margin: 0;
  color: #06142c;
  font-size: 1.08rem;
  font-weight: 830;
  line-height: 1.18;
}

.need-card p {
  margin: 0;
  color: #263746;
  font-size: 0.9rem;
  line-height: 1.45;
}

.feature-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.92fr);
}

.product-media {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(216, 227, 234, 0.52) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 227, 234, 0.45) 1px, transparent 1px),
    #fbfcfd;
  background-size: 36px 36px;
}

.product-media::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 42%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--aceris-blue));
  opacity: 0.58;
}

.product-media.wide {
  min-height: 440px;
  padding: 0;
  background: #e9f0f5;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
}

.product-media.wide img {
  max-height: none;
  object-fit: cover;
}

.solution-content {
  padding: 26px;
}

.feature-card .solution-content {
  align-self: center;
  padding: clamp(28px, 4vw, 44px);
}

.solution-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.18;
}

.feature-card .solution-content h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.65rem);
  line-height: 1.04;
}

.solution-content p,
.solution-content li {
  color: var(--muted);
}

.solution-content p {
  margin: 13px 0 0;
}

.solution-meta {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.solution-meta div {
  padding-top: 14px;
  border-top: 1px solid #e5edf2;
}

.solution-meta strong,
.solution-meta span {
  display: block;
}

.solution-meta strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.solution-meta span {
  margin-top: 4px;
  color: var(--muted);
}

.guarantee-section {
  padding-top: 76px;
  padding-bottom: 76px;
  background: var(--white);
}

.guarantee-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.22), rgba(0, 144, 215, 0) 44%),
    var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.guarantee-panel h2 {
  color: var(--white);
}

.guarantee-panel p {
  color: #d1e0e8;
}

.guarantee-panel .solution-eyebrow {
  color: #7dd1ff;
}

.guarantee-number {
  width: clamp(144px, 18vw, 220px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.06);
}

.guarantee-number strong {
  font-size: clamp(4rem, 10vw, 7.4rem);
  line-height: 0.86;
}

.guarantee-number span {
  margin-top: 8px;
  color: #dce7ef;
  font-size: 1rem;
  font-weight: 860;
  text-transform: uppercase;
}

.process-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 82, 224, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 82, 224, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 12%, rgba(0, 82, 224, 0.16), transparent 36%),
    linear-gradient(180deg, #f7fbff 0%, #eaf4ff 100%);
  background-size: 76px 76px, 76px 76px, auto, auto;
}

.process-heading {
  max-width: 920px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms var(--ease);
}

.process-heading span {
  display: block;
  margin-bottom: 12px;
  color: #005ee8;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.process-heading h2 {
  max-width: 920px;
  margin: 0 auto;
  color: #06142c;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  font-weight: 870;
  line-height: 1.08;
  letter-spacing: 0;
}

.process-heading i {
  display: block;
  width: 42px;
  height: 2px;
  margin: 20px auto 22px;
  background: #005ee8;
}

.process-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #3a4958;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.process-track {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 30px;
  padding: 0 28px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 420ms ease 120ms,
    transform 420ms var(--ease) 120ms;
}

.process-track-line {
  position: absolute;
  top: 25px;
  right: 74px;
  left: 74px;
  height: 3px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 82, 224, 0.22) 0 8px, transparent 8px 19px);
}

.process-track-line span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, #004bd6, #2f8cff);
  transform: scaleX(var(--process-progress, 0));
  transform-origin: left;
  transition: transform 880ms var(--ease);
}

.process-track-line::after {
  position: absolute;
  top: 50%;
  left: calc(var(--process-progress, 0) * 100%);
  width: 13px;
  height: 13px;
  content: "";
  background: #005ee8;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0, 94, 232, 0.12), 0 10px 22px rgba(0, 82, 224, 0.24);
  transform: translate(-50%, -50%);
  transition: left 880ms var(--ease);
}

.process-markers {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.process-markers span {
  justify-self: center;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #005ee8;
  background: rgba(255, 255, 255, 0.76);
  border: 2px solid rgba(0, 82, 224, 0.2);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(7, 22, 32, 0.08);
  font-size: 1.25rem;
  font-weight: 880;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.process-markers span.is-active {
  color: var(--white);
  background: #005ee8;
  border-color: #005ee8;
  box-shadow: 0 14px 30px rgba(0, 82, 224, 0.22);
  transform: translateY(-2px);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.process-step-card {
  display: grid;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  padding: 24px 18px 26px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 22, 32, 0.055);
  backdrop-filter: blur(16px);
  transition:
    opacity 520ms ease,
    transform 520ms var(--ease),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.process-step-icon {
  display: inline-flex;
  width: 162px;
  height: 162px;
  align-items: center;
  justify-content: center;
  color: #005ee8;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 94, 232, 0.13), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(238,247,255,0.88));
  border: 1px solid rgba(0, 82, 224, 0.12);
  border-radius: 32px;
  transition:
    color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease);
}

.process-step-icon svg {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.process-step-icon svg * {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
}

.process-step-card h3 {
  margin: 24px 0 0;
  color: #06142c;
  font-size: clamp(1.1rem, 1.45vw, 1.55rem);
  font-weight: 850;
  line-height: 1.16;
}

.process-step-card > span {
  display: block;
  width: 38px;
  height: 2px;
  margin: 18px 0 16px;
  background: #005ee8;
  transform: scaleX(0);
  transition: transform 320ms var(--ease);
}

.process-step-card p {
  max-width: 278px;
  margin: 0;
  color: #17283a;
  font-size: clamp(0.95rem, 1.04vw, 1.06rem);
  line-height: 1.48;
}

.process-step-card.is-active {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 94, 232, 0.16);
  box-shadow: 0 26px 62px rgba(0, 44, 112, 0.08);
}

.process-step-card.is-active .process-step-icon {
  color: #005ee8;
  box-shadow: 0 18px 42px rgba(0, 82, 224, 0.14);
  transform: translateY(-2px);
}

.process-step-card.is-active .process-step-icon svg * {
  animation: process-icon-draw 720ms ease forwards;
}

.process-step-card.is-active > span {
  transform: scaleX(1);
}

.process-cta {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin: clamp(54px, 6vw, 82px) auto 0;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(0, 94, 232, 0.1), rgba(0, 94, 232, 0.035)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 94, 232, 0.12);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms var(--ease);
}

.process-cta-icon {
  display: inline-flex;
  width: 110px;
  height: 110px;
  align-items: center;
  justify-content: center;
  color: #005ee8;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(0, 82, 224, 0.1);
  border-radius: 50%;
}

.process-cta-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.process-cta h3 {
  margin: 0;
  color: #06142c;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 850;
}

.process-cta p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #3a4958;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.55;
}

.process-cta .button {
  min-width: 300px;
}

@keyframes process-icon-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-heading,
  .process-track,
  .process-step-card,
  .process-cta {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .process-step-icon svg * {
    stroke-dashoffset: 0;
    animation: none;
  }
}

.process-section.is-animating .process-heading,
.process-section.is-complete .process-heading,
.process-section.is-animating .process-track,
.process-section.is-complete .process-track,
.process-section.is-complete .process-step-card,
.process-section.is-complete .process-cta,
.process-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(7, 22, 32, 0.04);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 20px 52px 20px 24px;
  color: var(--ink);
  font-weight: 820;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.qrdtime-faq-section-inner {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

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

.qrdtime-faq-shell {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

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

.qrdtime-faq-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 792px);
  gap: 28px;
  align-items: start;
  justify-content: center;
  width: 100%;
}

.qrdtime-faq-tabs {
  display: grid;
  gap: 10px;
  width: 300px;
}

.qrdtime-faq-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  color: #071a42;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20, 48, 84, 0.045);
  cursor: pointer;
  font-weight: 820;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.qrdtime-faq-tab-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #075be8;
}

.qrdtime-faq-tab-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.qrdtime-faq-tab:hover,
.qrdtime-faq-tab:focus-visible {
  border-color: #9dc4f7;
  box-shadow: 0 16px 30px rgba(7, 91, 232, 0.08);
}

#qrdtime-faq-general:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-general"],
#qrdtime-faq-registro:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-registro"],
#qrdtime-faq-dispositivos:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-dispositivos"],
#qrdtime-faq-precios:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-precios"],
#qrdtime-faq-integraciones:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-integraciones"],
#qrdtime-faq-soporte:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-soporte"] {
  color: #ffffff;
  background: linear-gradient(135deg, #075be8 0%, #0b66ff 100%);
  border-color: #075be8;
  box-shadow: 0 20px 42px rgba(7, 91, 232, 0.22);
}

#qrdtime-faq-general:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-general"] .qrdtime-faq-tab-icon,
#qrdtime-faq-registro:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-registro"] .qrdtime-faq-tab-icon,
#qrdtime-faq-dispositivos:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-dispositivos"] .qrdtime-faq-tab-icon,
#qrdtime-faq-precios:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-precios"] .qrdtime-faq-tab-icon,
#qrdtime-faq-integraciones:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-integraciones"] .qrdtime-faq-tab-icon,
#qrdtime-faq-soporte:checked ~ .qrdtime-faq-layout label[for="qrdtime-faq-soporte"] .qrdtime-faq-tab-icon {
  color: #ffffff;
}

.qrdtime-faq-panels {
  min-width: 0;
  width: 100%;
}

.qrdtime-faq-panel {
  display: none;
  gap: 10px;
  width: 100%;
}

#qrdtime-faq-general:checked ~ .qrdtime-faq-layout [data-faq-panel="general"],
#qrdtime-faq-registro:checked ~ .qrdtime-faq-layout [data-faq-panel="registro"],
#qrdtime-faq-dispositivos:checked ~ .qrdtime-faq-layout [data-faq-panel="dispositivos"],
#qrdtime-faq-precios:checked ~ .qrdtime-faq-layout [data-faq-panel="precios"],
#qrdtime-faq-integraciones:checked ~ .qrdtime-faq-layout [data-faq-panel="integraciones"],
#qrdtime-faq-soporte:checked ~ .qrdtime-faq-layout [data-faq-panel="soporte"] {
  display: grid;
}

.qrdtime-faq-panel details {
  overflow: hidden;
  border-color: #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 48, 84, 0.055);
}

.qrdtime-faq-panel details[open] {
  border-color: #9dc4f7;
  box-shadow: 0 18px 38px rgba(7, 91, 232, 0.09);
}

.qrdtime-faq-panel summary {
  padding: 19px 54px 19px 24px;
  color: #071a42;
  font-size: 0.98rem;
}

.qrdtime-faq-panel details[open] summary {
  color: #075be8;
}

.qrdtime-faq-panel details p {
  margin: 0 14px 14px;
  padding: 16px 18px;
  color: #263b57;
  background: #f4f7fb;
  border-radius: 7px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .qrdtime-faq-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-content: stretch;
  }

  .qrdtime-faq-tabs {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 2px 0 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .qrdtime-faq-tabs::-webkit-scrollbar {
    display: none;
  }

  .qrdtime-faq-tab {
    grid-template-columns: auto auto;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 11px 14px;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .qrdtime-faq-tab-icon {
    width: 24px;
    height: 24px;
  }

  .qrdtime-faq-tab-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 560px) {
  .qrdtime-faq-section-inner {
    gap: 18px;
  }

  .qrdtime-faq-panel summary {
    padding: 17px 46px 17px 18px;
    font-size: 0.94rem;
  }

  .qrdtime-faq-panel details p {
    margin: 0 10px 10px;
    padding: 14px;
    font-size: 0.9rem;
  }
}

.contact-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 8%, rgba(0, 144, 215, 0.22), transparent 34%),
    var(--navy);
}

.contact-page-section {
  padding-top: clamp(48px, 6vw, 82px);
}

.contact-page-section .lead-form.reveal {
  opacity: 1;
  transform: none;
}

.contact-section h2,
.contact-section h1,
.contact-section .contact-note strong {
  color: var(--white);
}

.contact-section .section-number {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-copy p {
  color: #c6d8e2;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy h2 {
  margin-top: 20px;
}

.contact-copy h1 {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(2.45rem, 4.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-note {
  margin-top: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.contact-note span {
  display: block;
  margin-top: 7px;
  color: #c7d9e2;
}

.contact-intent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-intent-list li {
  padding: 9px 12px;
  color: #dbe8ee;
  font-size: 0.84rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

body[data-page="/contacto/"] main {
  background: #f4f9fd;
}

body[data-page="/contacto/"] .contact-page-section {
  padding: clamp(58px, 7vw, 86px) 0 clamp(74px, 8vw, 104px);
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fcff 0%, #edf6fc 100%);
  border-bottom: 1px solid #dbe8f1;
}

body[data-page="/contacto/"] .contact-grid {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}

body[data-page="/contacto/"] .contact-copy {
  position: static;
}

body[data-page="/contacto/"] .contact-section h1,
body[data-page="/contacto/"] .contact-section h2,
body[data-page="/contacto/"] .contact-section .contact-note strong {
  color: #061a2d;
}

body[data-page="/contacto/"] .contact-section .section-number {
  display: none;
}

body[data-page="/contacto/"] .contact-copy h1 {
  max-width: 620px;
  margin-top: 0;
  color: #061a2d;
  font-size: clamp(2.75rem, 4.7vw, 4.85rem);
  line-height: 1.06;
}

body[data-page="/contacto/"] .contact-copy p {
  max-width: 600px;
  margin-top: 22px;
  color: #395168;
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  line-height: 1.72;
}

body[data-page="/contacto/"] .contact-note {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding: 22px 24px;
  color: #1e354a;
  background:
    linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
  border: 1px solid #c9e2f4;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 66, 104, 0.08);
}

body[data-page="/contacto/"] .contact-note::before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  grid-row: span 2;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 144, 215, 0.14), rgba(0, 144, 215, 0.05) 56%, transparent 57%),
    url("data:image/svg+xml,%3Csvg width='58' height='58' viewBox='0 0 58 58' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26' cy='25' r='10' fill='none' stroke='%23005bea' stroke-width='2.5'/%3E%3Cpath d='m33.5 32.5 8 8' stroke='%23005bea' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M21 27.5h3.5l2-6 3 9 2-5h3.5' fill='none' stroke='%23005bea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 58px 58px no-repeat;
  border-radius: 50%;
}

body[data-page="/contacto/"] .contact-note strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.25;
}

body[data-page="/contacto/"] .contact-note span {
  margin-top: 6px;
  color: #4c6477;
  line-height: 1.55;
}

body[data-page="/contacto/"] .contact-intent-list {
  gap: 12px;
  margin-top: 28px;
}

body[data-page="/contacto/"] .contact-intent-list li {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  color: #075cae;
  background: rgba(255, 255, 255, 0.72);
  border-color: #d3e8f8;
  box-shadow: 0 8px 20px rgba(15, 66, 104, 0.05);
}

body[data-page="/contacto/"] .lead-form {
  padding: clamp(26px, 3vw, 38px);
  background: #ffffff;
  border-color: #d7e5ef;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 66, 104, 0.13);
}

body[data-page="/contacto/"] .form-group {
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom-color: #dfeaf2;
}

body[data-page="/contacto/"] .form-group legend {
  margin-bottom: 18px;
  font-size: 1.08rem;
}

body[data-page="/contacto/"] label,
body[data-page="/contacto/"] .privacy-check {
  color: #2d4357;
}

body[data-page="/contacto/"] input,
body[data-page="/contacto/"] select,
body[data-page="/contacto/"] textarea {
  border-color: #cbdbe6;
  border-radius: 7px;
  box-shadow: 0 1px 0 rgba(6, 26, 45, 0.02);
}

@media (max-width: 900px) {
  body[data-page="/contacto/"] .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  body[data-page="/contacto/"] .contact-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  body[data-page="/contacto/"] .contact-copy p {
    max-width: 100%;
  }

  body[data-page="/contacto/"] .lead-form {
    width: 100%;
  }
}

@media (max-width: 560px) {
  body[data-page="/contacto/"] .contact-page-section {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  body[data-page="/contacto/"] .contact-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  body[data-page="/contacto/"] .contact-note::before {
    width: 46px;
    height: 46px;
    grid-row: auto;
    background-size: 46px 46px;
  }
}

.lead-form {
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(216, 227, 234, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.selection-summary {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 16px 18px;
  background:
    linear-gradient(90deg, rgba(0, 144, 215, 0.11), rgba(0, 144, 215, 0)),
    #f4faff;
  border: 1px solid rgba(0, 144, 215, 0.22);
  border-radius: var(--radius);
}

.selection-summary[hidden],
.selection-summary.is-empty {
  display: none !important;
}

.selection-summary span {
  color: var(--aceris-blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.selection-summary strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.form-group {
  margin: 0 0 22px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.form-group legend {
  margin-bottom: 16px;
  padding: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label,
.privacy-check {
  color: #2e3b45;
  font-size: 0.93rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c6d3dc;
  border-radius: var(--radius);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #fcfdff;
  border-color: var(--aceris-blue);
  box-shadow: 0 0 0 3px rgba(0, 144, 215, 0.14);
}

.privacy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 2px 0 20px;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
}

.form-microcopy {
  margin: 14px 0 0;
  color: #587082;
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--aceris-blue-dark);
  font-weight: 780;
}

.site-footer {
  padding: clamp(42px, 5vw, 64px) 0 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 82, 224, 0.15), transparent 34%),
    linear-gradient(135deg, #071426 0%, #020a12 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(220px, 0.9fr) minmax(260px, 1fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}

.footer-logo {
  width: min(280px, 100%);
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-block p {
  max-width: 390px;
  margin: 28px 0 0;
  color: rgba(229, 238, 246, 0.78);
  font-size: 1.08rem;
  line-height: 1.62;
}

.footer-accent {
  display: block;
  width: 58px;
  height: 2px;
  margin: 32px 0 24px;
  background: #2f83ff;
}

.footer-certification {
  display: grid;
  gap: 14px;
  align-items: start;
  max-width: 310px;
}

.footer-link-icon svg,
.footer-contact svg,
.footer-socials svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-certification span {
  display: block;
  color: rgba(229, 238, 246, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-certification strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.35;
}

.footer-qualicard-logo {
  display: block;
  width: min(235px, 100%);
  height: auto;
  max-height: 72px;
  margin-top: 10px;
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid rgba(229, 238, 246, 0.18);
  border-radius: 6px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.footer-qualicard-wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 10px;
  padding: 8px 12px;
  color: #06182d;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  background: #ffffff;
  border: 1px solid rgba(229, 238, 246, 0.18);
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-column h2 {
  margin: 8px 0 24px;
  color: #4089ff;
  font-size: 0.96rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
}

.footer-sectors .footer-link-list {
  grid-template-columns: 1fr;
  gap: 8px;
}

.footer-solution-link,
.footer-sector-link,
.footer-contact address > * {
  min-height: 62px;
  display: grid;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 227, 234, 0.15);
  font-size: 1.02rem;
  line-height: 1.35;
}

.footer-solution-link {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
}

.footer-link-icon,
.footer-contact svg {
  color: #2f83ff;
}

.footer-link-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
}

.footer-link-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.footer-sector-link {
  grid-template-columns: minmax(0, 1fr) 16px;
  gap: 18px;
  min-height: 48px;
  padding: 8px 0;
}

.footer-sector-link svg,
.footer-sector-link .nav-row-arrow {
  display: block;
  width: 15px;
  height: 15px;
  color: #2f83ff;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.footer-contact address {
  display: grid;
  margin: 0;
  font-style: normal;
}

.footer-contact address > * {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
}

.footer-contact svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.9;
}

.footer-cta {
  width: 100%;
  min-height: 64px;
  margin-top: 38px;
  border-radius: 6px;
  font-size: 1rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(120px, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: clamp(48px, 5vw, 72px);
  padding-top: 28px;
  border-top: 1px solid rgba(216, 227, 234, 0.18);
}

.footer-bottom p {
  margin: 0;
  color: rgba(229, 238, 246, 0.72);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  color: rgba(229, 238, 246, 0.72);
}

.footer-bottom nav a {
  padding: 0 28px;
  border-left: 1px solid rgba(216, 227, 234, 0.2);
}

.footer-bottom nav a:first-child {
  border-left: 0;
}

.footer-socials {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.footer-socials span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: rgba(229, 238, 246, 0.8);
  border: 1px solid rgba(229, 238, 246, 0.42);
  border-radius: 6px;
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--white);
  background: var(--aceris-blue);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  font-size: 0.94rem;
  font-weight: 820;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease);
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.floating-whatsapp-widget {
  position: fixed;
  right: 28px;
  bottom: calc(28px + env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.floating-whatsapp {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: 68px;
  min-width: 68px;
  min-height: 68px;
  justify-content: center;
  gap: 0;
  padding: 8px;
  overflow: hidden;
  cursor: pointer;
  color: #0b5f3a;
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow:
    0 14px 32px rgba(3, 22, 52, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    width 260ms var(--ease),
    min-width 260ms var(--ease),
    gap 260ms var(--ease),
    padding 260ms var(--ease),
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.floating-whatsapp::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: transparent;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 220ms ease, background 220ms ease;
}

.floating-whatsapp__text,
.whatsapp-float__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 190ms ease,
    transform 220ms var(--ease);
  pointer-events: none;
  white-space: nowrap;
}

@media (min-width: 721px) {
  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible,
  .floating-whatsapp-widget.is-previewing .floating-whatsapp,
  .floating-whatsapp-widget.is-open .floating-whatsapp {
    width: 268px;
    min-width: 268px;
    gap: 18px;
    padding: 12px 14px 12px 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(228, 246, 255, 0.68)),
      radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.96), transparent 34%),
      radial-gradient(circle at 82% 90%, rgba(37, 211, 102, 0.22), transparent 44%);
    border: 1px solid rgba(169, 211, 228, 0.72);
    box-shadow:
      0 18px 45px rgba(3, 22, 52, 0.2),
      0 0 0 1px rgba(8, 104, 63, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      inset 0 -1px 0 rgba(40, 80, 120, 0.18);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .floating-whatsapp:hover::before,
  .floating-whatsapp:focus-visible::before,
  .floating-whatsapp-widget.is-previewing .floating-whatsapp::before,
  .floating-whatsapp-widget.is-open .floating-whatsapp::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 46%),
      linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    opacity: 0.86;
  }

  .floating-whatsapp:hover .whatsapp-float__text,
  .floating-whatsapp:focus-visible .whatsapp-float__text,
  .floating-whatsapp-widget.is-previewing .whatsapp-float__text,
  .floating-whatsapp-widget.is-open .whatsapp-float__text {
    opacity: 1;
    transform: translateX(0);
  }
}

.whatsapp-float__eyebrow {
  color: #0b6b43;
  font-size: 0.95rem;
  font-weight: 900;
}

.whatsapp-float__label {
  margin-top: 5px;
  color: #08683f;
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 18px rgba(255, 255, 255, 0.42);
}

.whatsapp-float__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, #7dff9f, #20c961 38%, #0a9f47 100%);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(18, 180, 82, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.floating-whatsapp:hover .whatsapp-float__icon,
.floating-whatsapp:focus-visible .whatsapp-float__icon {
  box-shadow:
    0 0 0 10px rgba(37, 211, 102, 0.08),
    0 0 0 20px rgba(37, 211, 102, 0.05),
    0 12px 28px rgba(18, 180, 82, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.whatsapp-float__icon svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  color: #ffffff;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  color: #0b5f3a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(228, 246, 255, 0.72)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.98), transparent 34%),
    radial-gradient(circle at 82% 90%, rgba(37, 211, 102, 0.24), transparent 44%);
  box-shadow:
    0 24px 60px rgba(3, 22, 52, 0.26),
    0 0 0 1px rgba(8, 104, 63, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(40, 80, 120, 0.2);
  transform: translateY(-3px);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.45);
  outline-offset: 4px;
}

.floating-whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(342px, calc(100vw - 32px));
  padding: 14px;
  color: #0d2440;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(236, 248, 255, 0.56)),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.92), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(37, 211, 102, 0.14), transparent 45%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  box-shadow:
    0 24px 64px rgba(3, 22, 52, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(40, 80, 120, 0.12);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease);
}

.floating-whatsapp-panel::before {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 46%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  border-radius: inherit;
}

.floating-whatsapp-widget.is-open .floating-whatsapp-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp-panel[hidden] {
  display: block;
  visibility: hidden;
}

.floating-whatsapp-widget.is-open .floating-whatsapp-panel[hidden] {
  visibility: visible;
}

.floating-whatsapp-panel__head,
.floating-whatsapp-panel > p,
.floating-whatsapp-panel__options,
.floating-whatsapp-panel__main {
  position: relative;
  z-index: 1;
}

.floating-whatsapp-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 3px 2px 10px;
}

.floating-whatsapp-panel__head span {
  display: block;
  margin-bottom: 3px;
  color: #0b6b43;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp-panel__head strong {
  display: block;
  color: #08243f;
  font-size: 1.12rem;
  line-height: 1.15;
}

.floating-whatsapp-panel__head button {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  cursor: pointer;
  color: #0d2440;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
}

.floating-whatsapp-panel > p {
  margin: 0 2px 12px;
  color: rgba(13, 36, 64, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.floating-whatsapp-panel__options {
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
}

.floating-whatsapp-panel__options a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  color: #0b2440;
  border-bottom: 1px solid rgba(68, 104, 138, 0.13);
  font-size: 0.94rem;
  font-weight: 820;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    padding 180ms var(--ease);
}

.floating-whatsapp-panel__options a:last-child {
  border-bottom: 0;
}

.floating-whatsapp-panel__options a:hover,
.floating-whatsapp-panel__options a:focus-visible {
  color: #075d38;
  background: rgba(37, 211, 102, 0.12);
  padding-left: 18px;
}

.floating-whatsapp-panel__main {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #20c961, #0a9f47);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(18, 180, 82, 0.26);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    box-shadow 180ms ease,
    transform 180ms var(--ease);
}

.floating-whatsapp-panel__main:hover,
.floating-whatsapp-panel__main:focus-visible {
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(18, 180, 82, 0.34);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms var(--ease);
}

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

:focus-visible {
  outline: 3px solid rgba(0, 144, 215, 0.34);
  outline-offset: 3px;
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -84;
  }
}

@keyframes heroDrift {
  to {
    transform: scale(1.045) translate3d(0, -6px, 0);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stage"
      "overview";
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-overview {
    grid-template-columns: 1fr;
  }

  .overview-block + .overview-block {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .overview-items,
  .sector-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .overview-items a,
  .overview-items a + a,
  .sector-icons a,
  .sector-icons a + a {
    padding: 0;
    border-left: 0;
  }

  .sector-workbench,
  .feature-card,
  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .contact-copy {
    position: static;
  }

  .feature-card {
    grid-column: span 2;
  }

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

@media (max-width: 1120px) {
  .site-header {
    width: min(520px, calc(100% - 32px));
    min-height: 72px;
    margin-top: 16px;
    padding: 0 20px 0 28px;
    border-radius: 2px;
    box-shadow: 0 14px 34px rgba(7, 22, 32, 0.12);
  }

  .site-header.is-compact {
    min-height: 72px;
    margin-top: 0;
  }

  .brand {
    width: 174px;
    min-width: 174px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(216, 227, 234, 0.72);
    border-top: 1px solid rgba(216, 227, 234, 0.9);
    border-radius: 0 0 2px 2px;
    box-shadow: 0 20px 42px rgba(7, 22, 32, 0.12);
  }

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

  .nav-item {
    display: block;
  }

  .site-nav a {
    min-height: 54px;
    display: grid;
    grid-template-columns: 32px 1fr 24px;
    gap: 16px;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(216, 227, 234, 0.86);
    font-size: 0.92rem;
    font-weight: 860;
  }

  .mega-menu {
    position: static;
    width: 100%;
    max-height: 58vh;
    margin: -1px 0 8px;
    overflow: auto;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mega-menu::before,
  .mega-menu::after {
    display: none;
  }

  .mega-menu-content {
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .mega-menu-list {
    padding: 0 0 12px 48px;
    border-right: 0;
  }

  .mega-menu-heading,
  .mega-menu-feature img {
    display: none;
  }

  .site-nav .mega-menu-link,
  .site-nav .mega-menu-all {
    grid-template-columns: 34px 1fr 20px;
    min-height: 56px;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.86rem;
    font-weight: 820;
  }

  .mega-menu-icon {
    width: 32px;
    height: 32px;
  }

  .mega-menu-icon svg {
    width: 20px;
    height: 20px;
  }

  .mega-menu-feature {
    display: block;
    padding-left: 48px;
  }

  .mega-menu-help {
    display: block;
    padding: 16px;
    background: #f4f7ff;
  }

  .mega-menu-help-icon {
    display: none;
  }

  .mega-menu-help strong,
  .mega-menu-help span span {
    font-size: 0.88rem;
  }

  .site-nav .mega-menu-help-cta {
    display: flex;
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .nav-cta {
    display: flex !important;
    min-height: 56px !important;
    margin-top: 20px;
    border-bottom: 0 !important;
    grid-template-columns: none;
    font-size: 1rem;
    text-align: center;
  }

  .nav-mobile-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: #0052e0;
  }

  .nav-mobile-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .nav-chevron {
    display: none;
  }

  .nav-row-arrow {
    display: block;
    width: 20px;
    height: 20px;
    justify-self: end;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
  }

  .nav-cta .nav-row-arrow,
  .nav-cta .nav-mobile-icon {
    display: none;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
    background-size: 72px 72px;
  }

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

  .section {
    padding: 64px 0;
  }

  .primary-solutions-heading {
    text-align: left;
  }

  .primary-solutions-heading h2,
  .primary-solutions-heading p {
    margin-right: 0;
    margin-left: 0;
  }

  .primary-solutions-heading h2 {
    font-size: 1.75rem;
  }

  .primary-solutions-heading span {
    margin-right: 0;
    margin-left: 0;
  }

  .primary-solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .primary-solution-content {
    padding: 18px;
  }

  .primary-solution-media {
    aspect-ratio: 1.78;
  }

  .needs-control-heading {
    text-align: left;
  }

  .needs-control-heading h2 {
    font-size: 1.9rem;
  }

  .needs-control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .need-card {
    min-height: auto;
    padding: 20px 14px;
  }

  .brand {
    width: 144px;
  }

  .hero {
    margin-top: -82px;
    padding-top: 112px;
  }

  .hero-copy {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 440px;
  }

  .hero-stage::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7, 22, 32, 0) 0 48%, rgba(7, 22, 32, 0.52) 100%),
      linear-gradient(90deg, rgba(7, 22, 32, 0) 0 62%, rgba(7, 22, 32, 0.44) 62% 100%);
  }

  .hero-stage::after {
    inset: 0 0 0 62%;
  }

  .hero-image-frame {
    inset: 0;
  }

  .floating-badge {
    top: 18px;
    right: 0;
    width: 134px;
    min-height: 92px;
    padding: 12px;
  }

  .floating-badge strong {
    font-size: 2rem;
  }

  .floating-card {
    right: 18px;
    bottom: 18px;
    left: 14px;
    width: auto;
  }

  .flow-line {
    left: 16px;
    right: auto;
    bottom: 110px;
    width: 78%;
  }

  .problem-grid,
  .solution-showcase,
  .form-row.split,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .overview-block {
    padding: 24px;
  }

  .overview-items,
  .sector-icons {
    grid-template-columns: 1fr;
  }

  .sector-icons a {
    min-height: auto;
    grid-template-columns: 34px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .sector-icons span {
    font-size: 1.55rem;
  }

  .blueprint-note {
    display: none;
  }

  .partner-corner {
    width: 216px;
    padding: 14px 18px;
  }

  .partner-corner img {
    width: 126px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sector-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .sector-tab {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .sector-tab.is-active {
    transform: none;
  }

  .sector-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px;
  }

  .sector-panel h3 {
    font-size: clamp(1.6rem, 8vw, 2.25rem);
  }

  .sector-panel ul {
    margin-top: 20px;
  }

  .feature-card {
    grid-column: auto;
  }

  .product-media.wide {
    min-height: 280px;
  }

  .guarantee-panel {
    grid-template-columns: 1fr;
  }

  .guarantee-number {
    width: min(100%, 180px);
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-step {
    grid-template-columns: 50px 1fr;
    padding-right: 0;
  }

  .timeline-step span {
    width: 50px;
    height: 50px;
    border-width: 7px;
  }

  .lead-form {
    padding: 22px;
  }

  .footer-main {
    gap: 22px;
  }

  .footer-logo {
    width: 168px;
    max-height: 42px;
  }

  .footer-brand-block p {
    max-width: none;
    margin-top: 18px;
    color: rgba(229, 238, 246, 0.76);
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .footer-accent {
    display: none;
  }

  .footer-certification {
    max-width: none;
    margin-top: 18px;
  }

  .footer-certification > div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(216, 227, 234, 0.14);
    border-radius: 8px;
  }

  .footer-certification span {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .footer-qualicard-logo {
    width: min(150px, 100%);
    max-height: 42px;
    margin-top: 0;
    justify-self: end;
    padding: 6px 8px;
  }

  .footer-qualicard-wordmark {
    justify-self: end;
    margin-top: 0;
    padding: 7px 10px;
    font-size: 0.94rem;
  }

  .footer-column h2 {
    margin: 0 0 12px;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
  }

  .footer-solutions .footer-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-sectors .footer-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-solution-link,
  .footer-sector-link,
  .footer-contact address > * {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .footer-solution-link {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 227, 234, 0.12);
    border-radius: 8px;
  }

  .footer-link-icon {
    width: 24px;
    height: 24px;
  }

  .footer-link-icon svg {
    width: 22px;
    height: 22px;
  }

  .footer-sector-link {
    min-height: 0;
    display: inline-flex;
    gap: 0;
    padding: 8px 10px;
    color: rgba(229, 238, 246, 0.82);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 227, 234, 0.12);
    border-radius: 999px;
    font-size: 0.82rem;
  }

  .footer-sector-link svg,
  .footer-sector-link .nav-row-arrow {
    display: none;
  }

  .footer-contact address {
    gap: 6px;
  }

  .footer-contact address > * {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    min-height: 38px;
    border-bottom-color: rgba(216, 227, 234, 0.1);
  }

  .footer-contact svg {
    width: 21px;
    height: 21px;
  }

  .footer-cta {
    min-height: 48px;
    margin-top: 16px;
  }

  .footer-bottom {
    gap: 14px;
    justify-items: stretch;
    margin-top: 28px;
    padding-top: 20px;
    font-size: 0.84rem;
    text-align: left;
  }

  .footer-bottom p {
    text-align: center;
  }

  .footer-bottom nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-bottom nav a,
  .footer-cookie-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-left: 0;
    border: 1px solid rgba(216, 227, 234, 0.12);
    border-radius: 8px;
  }

  .footer-cookie-button {
    width: 100%;
    color: rgba(229, 238, 246, 0.72);
    font: inherit;
  }

  .footer-socials {
    display: none;
  }

  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: flex;
    min-height: 52px;
  }

  .floating-whatsapp-widget {
    right: 10px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp {
    width: 48px;
    min-width: auto;
    min-height: 48px;
    gap: 0;
    padding: 0;
    border-radius: 50%;
  }

  body:has(.mobile-sticky-cta) .floating-whatsapp-widget {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  body.whatsapp-near-form .floating-whatsapp-widget {
    bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp-panel {
    right: 0;
    bottom: calc(100% + 12px);
    width: min(320px, calc(100vw - 28px));
    max-height: min(72vh, 440px);
    overflow-y: auto;
    border-radius: 24px;
  }

  .floating-whatsapp-widget.is-open .floating-whatsapp {
    width: 48px;
    min-width: 48px;
    gap: 0;
    padding: 0;
  }

  .whatsapp-float__icon {
    width: 38px;
    height: 38px;
    border-width: 2px;
  }

  .whatsapp-float__icon svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 420px) {
  .whatsapp-float__text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-stage {
    min-height: 396px;
  }

  .floating-badge {
    width: 124px;
  }

  .floating-card {
    padding: 17px;
  }

  .sector-tabs {
    grid-template-columns: 1fr;
  }
}

.hero-support {
  max-width: 560px;
  margin: 18px 0 0;
  color: #172b39;
  font-size: 1.02rem;
  font-weight: 760;
  line-height: 1.55;
}

.hero-actions.compact {
  margin-top: 22px;
}

.site-nav {
  gap: 20px;
  font-size: 0.9rem;
}

.diagnostic-grid,
.lineup-grid,
.landing-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.diagnostic-card,
.line-card,
.landing-section {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 22, 32, 0.05);
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.diagnostic-card:hover,
.diagnostic-card:focus-visible,
.line-card:hover,
.line-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 144, 215, 0.38);
  box-shadow: 0 22px 52px rgba(7, 22, 32, 0.1);
}

.diagnostic-card strong,
.line-card .solution-eyebrow,
.landing-section h2,
.landing-section h3 {
  color: var(--ink);
}

.diagnostic-card span,
.line-card p,
.landing-section li,
.landing-section p {
  color: var(--muted);
}

.lineup-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.line-card {
  min-height: 240px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.line-card .solution-eyebrow,
.line-card p {
  color: var(--white);
}

.line-card p {
  opacity: 0.82;
}

.card-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.text-link.light {
  color: var(--white);
  border-bottom-color: currentColor;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 52px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 22, 32, 0.05);
}

.feature-strip h3 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.08;
}

.feature-strip p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.feature-strip img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(216, 227, 234, 0.52) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 227, 234, 0.45) 1px, transparent 1px),
    #fbfcfd;
  background-size: 36px 36px;
  border-radius: var(--radius);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 52px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.22), rgba(0, 144, 215, 0) 44%),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.cta-panel h2,
.cta-panel p {
  margin: 0;
  color: var(--white);
}

.cta-panel p {
  max-width: 780px;
  margin-top: 14px;
  color: #d1e0e8;
}

.care-section {
  background: var(--white);
}

.home-final-section {
  padding: 0;
  background: var(--white);
}

.home-final-card {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(330px, 32vw, 460px);
  overflow: hidden;
  display: grid;
  align-content: center;
  padding: clamp(46px, 5vw, 78px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 14, 28, 0.98) 0%, rgba(2, 14, 28, 0.92) 35%, rgba(2, 14, 28, 0.44) 68%, rgba(2, 14, 28, 0.78) 100%),
    linear-gradient(0deg, rgba(2, 14, 28, 0.88), rgba(2, 14, 28, 0.08) 55%),
    url("/assets/hero/accesos-corporativos-vega-final-desktop.jpg") center / cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-final-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 82, 224, 0.18), transparent 28%),
    radial-gradient(circle at 78% 42%, rgba(0, 144, 215, 0.16), transparent 34%);
}

.home-final-copy,
.home-final-card-inner {
  position: relative;
  z-index: 1;
}

.home-final-copy {
  max-width: 580px;
}

.home-final-mark {
  display: block;
  width: 86px;
  height: 8px;
  margin-bottom: 34px;
  background:
    linear-gradient(90deg, #0062ff 0 64%, transparent 64% 78%, #0062ff 78% 100%);
  border-radius: 999px;
}

.home-final-copy h2 {
  max-width: 580px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 2.45vw, 2.75rem);
  font-weight: 870;
  line-height: 1.14;
  letter-spacing: 0;
}

.home-final-copy p {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.58;
}

.home-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.home-final-actions .button {
  min-width: 236px;
  min-height: 58px;
  border-radius: 6px;
  font-size: 0.94rem;
}

.home-final-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.72);
}

.home-final-secondary:hover,
.home-final-secondary:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.home-final-proof-band {
  padding: clamp(28px, 4vw, 46px) 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.home-final-proof-inner {
  display: grid;
  gap: 22px;
}

.home-final-proofs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 0;
}

.home-final-proofs article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.home-final-proofs article:first-child {
  padding-left: 0;
  border-left: 0;
}

.home-final-proofs span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: #0052e0;
  background: rgba(0, 82, 224, 0.045);
  border: 1px solid rgba(0, 82, 224, 0.2);
  border-radius: 50%;
}

.home-final-proofs svg,
.home-final-note svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.home-final-proofs p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.02vw, 1.05rem);
  font-weight: 780;
  line-height: 1.32;
}

.home-final-note {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.home-final-note svg {
  width: 22px;
  height: 22px;
  color: #3a87ff;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.breadcrumb a {
  color: var(--aceris-blue-dark);
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.landing-hero {
  margin-top: -92px;
  padding-top: 132px;
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 144, 215, 0.11), transparent 31%),
    var(--white);
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.landing-hero h1,
.thanks-panel h1,
.legal-content h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: 3.45rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.landing-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #334653;
  font-size: 1.12rem;
  line-height: 1.65;
}

.landing-media {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(216, 227, 234, 0.52) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 227, 234, 0.45) 1px, transparent 1px),
    #fbfcfd;
  background-size: 36px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.landing-media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.landing-stack {
  display: grid;
  gap: 22px;
}

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

.landing-section {
  min-height: auto;
}

.landing-section h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.18;
}

.landing-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.access-hero {
  margin-top: -92px;
  padding: 0;
  background: #061726;
}

.access-hero-full {
  position: relative;
  min-height: clamp(640px, calc(100svh - 12px), 820px);
  overflow: hidden;
  color: var(--white);
}

.access-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.access-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 15, 27, 0.95) 0%, rgba(2, 15, 27, 0.88) 28%, rgba(2, 15, 27, 0.45) 58%, rgba(2, 15, 27, 0.16) 100%),
    linear-gradient(180deg, rgba(2, 15, 27, 0.38) 0%, rgba(2, 15, 27, 0.05) 44%, rgba(2, 15, 27, 0.58) 100%);
}

.access-hero-full-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: center;
}

.access-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
  padding: 132px 0 70px;
}

.access-hero-copy .solution-eyebrow {
  color: #58a2ff;
}

.access-hero-copy h1 {
  max-width: 690px;
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 5.7vw, 78px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.access-hero-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.62;
}

.time-hero-full .time-hero-bg {
  object-position: center right;
}

.time-hero-full {
  min-height: clamp(560px, 68svh, 700px);
}

.time-hero-full .time-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 15, 27, 0.97) 0%, rgba(2, 15, 27, 0.9) 30%, rgba(2, 15, 27, 0.5) 58%, rgba(2, 15, 27, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 15, 27, 0.38) 0%, rgba(2, 15, 27, 0.04) 42%, rgba(2, 15, 27, 0.58) 100%);
}

.time-hero-full .time-hero-copy h1 {
  color: var(--white);
  font-size: clamp(46px, 5.7vw, 78px);
  line-height: 0.98;
}

.time-hero-full .time-hero-copy p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.62;
}

.access-scenario-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #075be8;
}

.access-scenario-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-scenarios-section {
  padding-top: clamp(56px, 6vw, 78px);
  background: var(--white);
}

.access-principle-section {
  padding: clamp(46px, 6vw, 74px) 0;
  background: #ffffff;
}

.access-principle-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(300px, 0.46fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(20, 48, 84, 0.08);
}

.access-principle-copy h2,
.access-maintenance-panel h2 {
  margin: 10px 0 0;
  color: #071a42;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.access-principle-copy p,
.access-maintenance-panel p {
  margin: 18px 0 0;
  color: #213859;
  line-height: 1.68;
}

.access-flow-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.access-flow-mini span,
.access-flow-mini strong {
  position: relative;
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
}

.access-flow-mini span {
  color: #071a42;
  background: #ffffff;
  border: 1px solid #dbe5f0;
}

.access-flow-mini strong {
  color: #ffffff;
  background: #075be8;
  box-shadow: 0 16px 34px rgba(7, 91, 232, 0.18);
}

.access-flow-mini span:first-child::after,
.access-flow-mini strong::after {
  position: absolute;
  top: 50%;
  right: -23px;
  color: #075be8;
  font-size: 1.7rem;
  font-weight: 900;
  content: "→";
  transform: translateY(-52%);
}

.access-system-section {
  background: #f7faff;
}

.access-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.access-system-card {
  min-height: 236px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.045);
}

.access-system-card .access-line-icon {
  width: 52px;
  height: 52px;
}

.access-system-card h3 {
  margin: 18px 0 0;
  color: #071a42;
  font-size: 1.16rem;
  line-height: 1.28;
}

.access-system-card p {
  margin: 12px 0 0;
  color: #213859;
  font-size: 0.96rem;
  line-height: 1.66;
}

.access-scenarios-section .access-section-heading {
  display: block;
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.access-scenarios-section .access-section-heading h2 {
  margin: 0;
}

.access-scenarios-section .access-section-heading .section-rule {
  display: block;
  width: 44px;
  height: 3px;
  margin: 0 auto 16px;
  background: #0a6cff;
}

.access-scenarios-section .access-section-heading p {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.55;
}

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

.access-scenario-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) minmax(0, 0.54fr);
  min-height: 270px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(10, 25, 41, 0.055);
}

.access-scenario-card--compact {
  grid-template-columns: 1fr;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.78), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.access-scenario-image {
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbff 0%, #edf4fb 100%);
}

.access-scenario-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms var(--ease);
}

.access-scenario-card.is-contain .access-scenario-image {
  display: grid;
  place-items: center;
  padding: 20px;
}

.access-scenario-card.is-contain .access-scenario-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.access-scenario-card:hover .access-scenario-image img {
  transform: scale(1.035);
}

.access-scenario-content {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 22px;
}

.access-scenario-card--compact .access-scenario-content {
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
}

.access-scenario-card--compact .access-scenario-icon {
  width: 44px;
  height: 44px;
  background: #edf4ff;
}

.access-scenario-card--compact h3 {
  margin-top: 2px;
}

.access-scenario-card--compact p {
  max-width: 34rem;
}

.access-scenario-solution {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(53, 103, 214, 0.14);
  color: #213859;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
}

.access-scenario-points {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.access-scenario-points li {
  display: grid;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(53, 103, 214, 0.12);
}

.access-scenario-points strong {
  color: #0a55d8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.access-scenario-points span {
  color: #314968;
  font-size: 0.86rem;
  line-height: 1.45;
}

.access-scenario-content .access-scenario-icon {
  width: 56px;
  height: 56px;
  color: #075be8;
  background: #edf5ff;
  border-radius: 50%;
}

.access-scenario-content .access-scenario-icon svg {
  width: 30px;
  height: 30px;
}

.access-scenario-content h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.3;
}

.access-scenario-content p {
  margin: 0;
  color: #334653;
  font-size: 0.96rem;
  line-height: 1.68;
}

.access-scenario-content a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #075be8;
  font-size: 0.84rem;
  font-weight: 820;
}

.access-scenario-content a svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-final-cta {
  padding-top: 0;
  background: var(--white);
}

.access-inline-cta {
  margin-top: 22px;
}

.access-maintenance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding: clamp(26px, 5vw, 46px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 48, 84, 0.07);
}

.access-review-section {
  background: #ffffff;
}

.access-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-review-item {
  min-height: 150px;
  padding: 22px;
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.access-review-item strong {
  display: block;
  margin-top: 18px;
  color: #071a42;
  font-size: 1.02rem;
  line-height: 1.44;
}

@media (max-width: 1240px) {
  .access-scenarios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-system-grid,
  .access-solution-grid,
  .access-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-scenario-card {
    grid-template-columns: minmax(170px, 0.43fr) minmax(0, 0.57fr);
  }
}

@media (max-width: 820px) {
  .access-hero-full {
    min-height: 720px;
  }

  .access-hero-bg {
    object-position: 62% center;
  }

  .time-hero-full .time-hero-bg {
    object-position: 72% center;
  }

  .time-hero-full {
    min-height: 640px;
  }

  .access-hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 15, 27, 0.95) 0%, rgba(2, 15, 27, 0.82) 58%, rgba(2, 15, 27, 0.34) 100%),
      linear-gradient(180deg, rgba(2, 15, 27, 0.34) 0%, rgba(2, 15, 27, 0.12) 44%, rgba(2, 15, 27, 0.7) 100%);
  }

  .time-hero-full .time-hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 15, 27, 0.97) 0%, rgba(2, 15, 27, 0.86) 60%, rgba(2, 15, 27, 0.38) 100%),
      linear-gradient(180deg, rgba(2, 15, 27, 0.42) 0%, rgba(2, 15, 27, 0.14) 42%, rgba(2, 15, 27, 0.76) 100%);
  }

  .access-hero-copy {
    padding: 132px 0 58px;
  }

  .access-hero-copy h1 {
    font-size: 46px;
  }
}

/* Proyectos: four visible references in the standard ACERIS card system. */
body[data-page="proyectos"] .projects-grid-heading {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

body[data-page="proyectos"] .projects-grid-heading .projects-list__kicker {
  margin-bottom: 10px;
  color: #0865d8;
}

body[data-page="proyectos"] .projects-grid-heading h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

body[data-page="proyectos"] .projects-grid-heading > p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: #52677d;
  font-size: 1rem;
  line-height: 1.68;
}

body[data-page="proyectos"] .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
  align-items: stretch;
}

body[data-page="proyectos"] .projects-more-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
}

body[data-page="proyectos"] .projects-more-toggle {
  min-width: 220px;
  color: #0865d8;
  background: #fff;
  border-color: #9bbfe5;
  box-shadow: 0 12px 28px rgba(11, 49, 88, 0.1);
}

body[data-page="proyectos"] .projects-more-toggle:hover,
body[data-page="proyectos"] .projects-more-toggle:focus-visible {
  color: #fff;
  background: #0869d6;
  border-color: #0869d6;
}

body[data-page="proyectos"] .projects-more-toggle svg {
  transform: rotate(90deg);
  transition: transform 220ms ease;
}

body[data-page="proyectos"] .projects-more-toggle[aria-expanded="true"] svg {
  transform: rotate(-90deg);
}

body[data-page="proyectos"] .projects-grid--more {
  margin-top: clamp(28px, 4vw, 44px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body[data-page="proyectos"] .projects-grid--more[hidden] {
  display: none;
  margin-top: 0;
}

body[data-page="proyectos"] .projects-grid--more.is-visible {
  opacity: 1;
  transform: none;
}

body[data-page="proyectos"] .projects-grid-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d9e5f0;
  border-radius: 22px 5px 22px 5px;
  box-shadow: 0 18px 48px rgba(11, 39, 72, 0.08);
}

body[data-page="proyectos"] .projects-grid-card__representative {
  display: block;
  margin: 0;
  overflow: hidden;
  background: #eef5fb;
  border-bottom: 1px solid #d9e5f0;
}

body[data-page="proyectos"] .projects-grid-card__representative.project-reference-context {
  display: block;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #d9e5f0;
  border-radius: 0;
}

body[data-page="proyectos"] .projects-grid-card__representative > img,
body[data-page="proyectos"] .projects-grid-card__representative.project-reference-context > img {
  display: block;
  width: 100%;
  height: clamp(280px, 25vw, 350px);
  object-fit: cover;
}

body[data-page="proyectos"] .projects-grid-card__representative figcaption,
body[data-page="proyectos"] .projects-grid-card__representative.project-reference-context figcaption {
  display: grid;
  gap: 5px;
  padding: 12px 16px 14px;
  color: #607389;
  background: #fff;
  font-size: 0.67rem;
  line-height: 1.42;
}

body[data-page="proyectos"] .projects-grid-card__representative figcaption strong {
  color: #314b66;
  font-size: 0.7rem;
}

body[data-page="proyectos"] .projects-grid-card__representative figcaption a {
  color: #0865c8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body[data-page="proyectos"] .projects-grid-card__representative--owned .projects-visual {
  min-height: clamp(280px, 25vw, 350px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="proyectos"] .projects-grid-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
}

body[data-page="proyectos"] .projects-grid-card__meta {
  margin: 0 0 9px;
  color: #0870e6;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .projects-grid-card__content h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(1.8rem, 2.4vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

body[data-page="proyectos"] .projects-grid-card .project-case__byline {
  margin: 10px 0 18px;
  color: #718197;
  font-size: 0.82rem;
}

body[data-page="proyectos"] .projects-grid-card__context {
  margin: 0 0 22px;
  color: #52677d;
  font-size: 0.94rem;
  line-height: 1.62;
}

body[data-page="proyectos"] .projects-grid-card__facts {
  border-top: 1px solid #d5e2ee;
}

body[data-page="proyectos"] .projects-grid-card__facts > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #d5e2ee;
}

body[data-page="proyectos"] .projects-grid-card__facts span {
  color: #0870e6;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .projects-grid-card__facts p {
  margin: 0;
  color: #425870;
  font-size: 0.9rem;
  line-height: 1.5;
}

body[data-page="proyectos"] .projects-grid-card__equipment {
  margin-top: 24px;
}

body[data-page="proyectos"] .projects-grid-card__equipment > h3 {
  margin: 0 0 12px;
  color: #10263f;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .projects-grid-card__equipment .project-solution-showcase {
  min-height: 270px;
  padding: 18px;
  border-radius: 16px 4px 16px 4px;
  box-shadow: 0 12px 30px rgba(11, 49, 88, 0.08);
}

body[data-page="proyectos"] .projects-grid-card__equipment .project-solution-card__image {
  min-height: 180px;
  padding: 12px;
}

body[data-page="proyectos"] .projects-grid-card__equipment .project-solution-card__image img {
  max-height: 190px;
}

body[data-page="proyectos"] .projects-grid-card .project-case__actions {
  margin-top: 16px;
}

body[data-page="proyectos"] .projects-grid-card .project-case__product {
  color: #fff;
  background: #0874e8;
  border-color: #0874e8;
  box-shadow: 0 12px 28px rgba(0, 91, 196, 0.2);
}

body[data-page="proyectos"] .projects-grid-card .project-case__product:hover,
body[data-page="proyectos"] .projects-grid-card .project-case__product:focus-visible {
  color: #fff;
  background: #0b82ff;
  border-color: #0b82ff;
}

body[data-page="proyectos"] .projects-gallery-section .projects-notice {
  margin-top: 30px;
}

@media (max-width: 760px) {
  body[data-page="proyectos"] .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="proyectos"] .projects-grid-card__content {
    padding: 20px;
  }

  body[data-page="proyectos"] .projects-grid-card__representative > img,
  body[data-page="proyectos"] .projects-grid-card__representative--owned .projects-visual {
    min-height: 240px;
    height: 240px;
  }

  body[data-page="proyectos"] .projects-grid-card__equipment .project-solution-showcase {
    min-height: 240px;
    padding: 14px;
  }

  body[data-page="proyectos"] .projects-grid-card__equipment .project-solution-showcase--multiple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="proyectos"] .projects-grid-card__equipment .project-solution-card__image {
    min-height: 150px;
    padding: 8px;
  }

  body[data-page="proyectos"] .projects-grid-card__content h2 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  body[data-page="proyectos"] .projects-grid-card__facts > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="proyectos"] .projects-grid--more,
  body[data-page="proyectos"] .projects-more-toggle svg {
    transition: none;
  }
}

/* Proyectos: reusable client-safe case studies with neutral abstract visuals. */
body[data-page="proyectos"] {
  background: #f7f9fc;
}

body[data-page="proyectos"] .projects-hero {
  position: relative;
  box-sizing: border-box;
  min-height: 0;
  height: var(--aceris-main-hero-height);
  margin-top: -92px !important;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 26%, rgba(44, 132, 255, 0.36), transparent 29%),
    linear-gradient(118deg, #061528 0%, #0a2851 58%, #073f86 100%);
}

body[data-page="proyectos"] .projects-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body[data-page="proyectos"] .projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 15, 29, 0.42) 0%, rgba(2, 15, 29, 0.16) 46%, rgba(2, 15, 29, 0.02) 72%),
    linear-gradient(180deg, rgba(2, 15, 29, 0.12), rgba(2, 15, 29, 0.18));
}

body[data-page="proyectos"] .projects-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -52% 42%;
  height: 105%;
  z-index: 1;
  border: 1px solid rgba(127, 190, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-8deg);
}

body[data-page="proyectos"] .projects-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  height: 100%;
  align-items: flex-start;
  gap: clamp(52px, 8vw, 120px);
  padding: 0;
}

body[data-page="proyectos"] .projects-hero__copy {
  box-sizing: border-box;
  max-width: 680px;
  padding-top: var(--aceris-main-hero-copy-top);
  padding-bottom: var(--aceris-main-hero-copy-bottom);
}

body[data-page="proyectos"] .projects-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: var(--aceris-main-hero-title);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body[data-page="proyectos"] .projects-hero__copy p {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(235, 244, 255, 0.88);
  font-size: var(--aceris-main-hero-text);
  line-height: 1.68;
}

body[data-page="proyectos"] .projects-hero__copy .hero-actions {
  margin-top: 26px;
}

body[data-page="proyectos"] .projects-hero__copy .button {
  min-height: 58px;
  padding-inline: 26px;
}

body[data-page="proyectos"] .projects-hero__motif {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1 / 0.82;
  justify-self: end;
  margin-top: calc(var(--aceris-main-hero-copy-top) - 36px);
  border: 1px solid rgba(133, 197, 255, 0.34);
  border-radius: 28px 4px 28px 4px;
  background: rgba(5, 21, 40, 0.24);
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.025), 0 35px 80px rgba(0, 0, 0, 0.24);
  transform: perspective(780px) rotateY(-11deg) rotateX(4deg);
}

body[data-page="proyectos"] .projects-hero__motif span {
  position: absolute;
  top: 13%;
  bottom: 13%;
  width: 3px;
  background: linear-gradient(#58b8ff, rgba(88, 184, 255, 0.08));
  box-shadow: 0 0 18px rgba(88, 184, 255, 0.42);
}

body[data-page="proyectos"] .projects-hero__motif span:nth-child(1) { left: 15%; }
body[data-page="proyectos"] .projects-hero__motif span:nth-child(2) { left: 32%; }
body[data-page="proyectos"] .projects-hero__motif span:nth-child(3) { left: 50%; }
body[data-page="proyectos"] .projects-hero__motif span:nth-child(4) { left: 68%; }
body[data-page="proyectos"] .projects-hero__motif span:nth-child(5) { left: 85%; }

body[data-page="proyectos"] .projects-list {
  padding-top: clamp(82px, 9vw, 132px);
  background: #fff;
}

body[data-page="proyectos"] .projects-list__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.62fr);
  column-gap: clamp(42px, 8vw, 112px);
  align-items: end;
  max-width: 1120px;
  margin-bottom: clamp(64px, 8vw, 112px);
}

body[data-page="proyectos"] .projects-list__kicker {
  grid-column: 1 / -1;
  margin: 0 0 14px;
  color: #0865d8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .projects-list__intro h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(2.15rem, 3.5vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

body[data-page="proyectos"] .projects-list__intro > p:last-child {
  margin: 0 0 5px;
  color: #506176;
  font-size: 1.05rem;
  line-height: 1.68;
}

body[data-page="proyectos"] .projects-list__items {
  display: grid;
  gap: clamp(70px, 10vw, 150px);
}

body[data-page="proyectos"] .project-case {
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: center;
}

body[data-page="proyectos"] .project-case:nth-child(even) .project-case__media {
  order: 2;
}

body[data-page="proyectos"] .project-case__media {
  position: relative;
}

body[data-page="proyectos"] .project-solution-showcase {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid #dce7f2;
  border-radius: 28px 5px 28px 5px;
  background:
    radial-gradient(circle at 88% 10%, rgba(17, 111, 217, 0.09), transparent 31%),
    linear-gradient(145deg, #fff, #edf5fd);
  box-shadow: 0 28px 70px rgba(11, 39, 72, 0.12);
}

body[data-page="proyectos"] .project-solution-showcase--multiple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

body[data-page="proyectos"] .project-solution-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  color: #0b2440;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d7e5f2;
  border-radius: 18px 4px 18px 4px;
  box-shadow: 0 14px 34px rgba(13, 48, 85, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

a.project-solution-card:hover,
a.project-solution-card:focus-visible {
  border-color: #77afe7;
  box-shadow: 0 18px 42px rgba(13, 72, 137, 0.14);
  transform: translateY(-3px);
}

body[data-page="proyectos"] .project-solution-card__image {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}

body[data-page="proyectos"] .project-solution-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
}

body[data-page="proyectos"] .project-solution-card__caption {
  display: grid;
  gap: 5px;
  padding: 15px 18px 17px;
  border-top: 1px solid #e1eaf3;
}

body[data-page="proyectos"] .project-solution-card__caption strong {
  color: #0b2440;
  font-size: 0.92rem;
  line-height: 1.25;
}

body[data-page="proyectos"] .project-solution-card__caption small {
  color: #62758a;
  font-size: 0.76rem;
  line-height: 1.35;
}

body[data-page="proyectos"] .project-solution-card--neutral .project-solution-card__image {
  background: linear-gradient(145deg, #eef6fe, #dcecfb);
}

body[data-page="proyectos"] .project-solution-card--neutral svg {
  width: min(100%, 240px);
  fill: none;
  stroke: #1d70c8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

body[data-page="proyectos"] .project-case__gallery {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  padding: 16px 18px;
  color: #587089;
  background: #f7fafd;
  border: 1px dashed #b9ccdf;
  border-radius: 12px 3px 12px 3px;
}

body[data-page="proyectos"] .project-case__gallery svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: #397bbd;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

body[data-page="proyectos"] .project-case__gallery h3 {
  margin: 0;
  color: #173554;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

body[data-page="proyectos"] .project-case__gallery p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  font-weight: 760;
}

body[data-page="proyectos"] .project-case__gallery--image {
  display: block;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border-style: solid;
}

body[data-page="proyectos"] .project-case__gallery--image img {
  display: block;
  width: 100%;
  height: clamp(280px, 30vw, 390px);
  object-fit: cover;
}

body[data-page="proyectos"] .project-case__gallery--context img {
  height: 170px;
}

body[data-page="proyectos"] .project-case__gallery--image figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
  color: #506176;
  font-size: 0.76rem;
  line-height: 1.5;
}

body[data-page="proyectos"] .project-case__gallery--image figcaption strong {
  color: #173554;
  font-size: 0.79rem;
}

body[data-page="proyectos"] .project-case__context-label {
  color: #0870e6;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .project-case__gallery--image figcaption a {
  color: #1769aa;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

body[data-page="proyectos"] .project-case__index {
  position: absolute;
  right: -4px;
  bottom: -27px;
  z-index: 2;
  color: #dbe8f7;
  font-size: clamp(4.6rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
}

body[data-page="proyectos"] .projects-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #dce7f2;
  border-radius: 28px 5px 28px 5px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(222,236,250,0.82)),
    #eaf2fa;
  box-shadow: 0 28px 70px rgba(11, 39, 72, 0.12);
}

body[data-page="proyectos"] .projects-visual::before,
body[data-page="proyectos"] .projects-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

body[data-page="proyectos"] .projects-visual::before {
  width: 270px;
  height: 270px;
  right: -80px;
  top: -80px;
  border: 1px solid rgba(0, 96, 210, 0.21);
}

body[data-page="proyectos"] .projects-visual::after {
  width: 150px;
  height: 150px;
  left: -44px;
  bottom: -38px;
  background: rgba(12, 105, 218, 0.07);
}

body[data-page="proyectos"] .projects-visual__grid {
  position: absolute;
  inset: 15% 12% 16%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  transform: perspective(800px) rotateX(8deg) rotateY(-10deg);
}

body[data-page="proyectos"] .projects-visual__grid span {
  border: 2px solid #176ecb;
  border-radius: 12px 3px 12px 3px;
  background: linear-gradient(180deg, rgba(44, 140, 246, 0.05), rgba(15, 95, 186, 0.22));
  box-shadow: inset 0 0 0 6px rgba(255,255,255,0.46);
}

body[data-page="proyectos"] .projects-visual__line {
  position: absolute;
  right: 11%;
  bottom: 13%;
  left: 11%;
  height: 3px;
  background: #0a61c5;
  box-shadow: 0 0 20px rgba(10, 97, 197, 0.3);
}

body[data-page="proyectos"] .projects-visual__signal {
  position: absolute;
  top: 12%;
  right: 11%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #16bd80;
  box-shadow: 0 0 0 8px rgba(22, 189, 128, 0.13), 0 0 22px rgba(22, 189, 128, 0.44);
}

body[data-page="proyectos"] .projects-visual--full-height .projects-visual__grid {
  grid-template-columns: repeat(4, 1fr);
}

body[data-page="proyectos"] .projects-visual--full-height .projects-visual__grid span:nth-child(n+5) {
  transform: translateY(-9px);
}

body[data-page="proyectos"] .projects-visual--parking-gates .projects-visual__grid {
  inset: 30% 11% 24%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 26px 48px;
}

body[data-page="proyectos"] .projects-visual--parking-gates .projects-visual__grid span:nth-child(n+5) {
  display: none;
}

body[data-page="proyectos"] .projects-visual--parking-gates .projects-visual__grid span {
  border-radius: 50px 4px 4px 50px;
  transform: skewY(-8deg);
}

body[data-page="proyectos"] .projects-visual--speed-lanes .projects-visual__grid {
  inset: 22% 10% 19%;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

body[data-page="proyectos"] .projects-visual--speed-lanes .projects-visual__grid span:nth-child(even) {
  transform: translateY(18px);
}

body[data-page="proyectos"] .project-case__content {
  max-width: 640px;
}

body[data-page="proyectos"] .project-case__location {
  margin: 0 0 10px;
  color: #0870e6;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .project-case__heading h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

body[data-page="proyectos"] .project-case__byline {
  margin: 12px 0 30px;
  color: #718197;
  font-size: 0.9rem;
  font-weight: 720;
}

body[data-page="proyectos"] .project-case__section {
  padding: 22px 0;
  border-top: 1px solid #dfe8f1;
}

body[data-page="proyectos"] .project-case__section h3 {
  margin: 0 0 8px;
  color: #10263f;
  font-size: 0.86rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .project-case__section p {
  margin: 0;
  color: #4b5e73;
  font-size: 1rem;
  line-height: 1.66;
}

body[data-page="proyectos"] .project-case__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
}

body[data-page="proyectos"] .project-case__facts > div {
  padding: 16px;
  background: #f1f6fb;
  border: 1px solid #e0eaf4;
  border-radius: 10px 3px 10px 3px;
}

body[data-page="proyectos"] .project-case__facts dt {
  color: #597087;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .project-case__facts dd {
  margin: 7px 0 0;
  color: #0c2541;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.4;
}

body[data-page="proyectos"] .project-case__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

body[data-page="proyectos"] .project-case__product {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  color: #075fc8;
  border: 1px solid #a9c9eb;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

body[data-page="proyectos"] .project-case__product:hover,
body[data-page="proyectos"] .project-case__product:focus-visible {
  background: #edf6ff;
  border-color: #5a9ee5;
  transform: translateY(-2px);
}

body[data-page="proyectos"] .project-case__product svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

body[data-page="proyectos"] .projects-notice {
  max-width: 860px;
  margin: clamp(70px, 9vw, 130px) auto 0;
  padding-top: 24px;
  color: #77869a;
  border-top: 1px solid #dce6f0;
  font-size: 0.82rem;
  line-height: 1.62;
  text-align: center;
}

/* Proyectos: horizontal installation stories. */
body[data-page="proyectos"] .projects-gallery-section {
  padding: clamp(68px, 7vw, 104px) 0 clamp(24px, 3vw, 36px);
  color: #0b2440;
  background: #f7f9fc;
}

body[data-page="proyectos"] .projects-gallery-shell {
  padding-top: 0;
}

body[data-page="proyectos"] .projects-slider {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #d9e5f0;
  border-radius: 24px 5px 24px 5px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(11, 39, 72, 0.09);
}

body[data-page="proyectos"] .projects-slider__topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 30px clamp(30px, 4.5vw, 62px);
  background: #fff;
  border-bottom: 1px solid #d9e5f0;
}

body[data-page="proyectos"] .projects-slider__topbar .projects-list__kicker {
  margin-bottom: 8px;
  color: #0865d8;
}

body[data-page="proyectos"] .projects-slider__topbar h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(1.75rem, 2.7vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

body[data-page="proyectos"] .projects-slider__viewport {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

body[data-page="proyectos"] .projects-slider__viewport::-webkit-scrollbar {
  display: none;
}

body[data-page="proyectos"] .projects-slider__viewport:focus-visible {
  outline: 3px solid rgba(9, 103, 213, 0.33);
  outline-offset: -5px;
}

body[data-page="proyectos"] .projects-slider__track {
  display: flex;
  width: 100%;
  align-items: stretch;
}

body[data-page="proyectos"] .projects-story {
  display: grid;
  box-sizing: border-box;
  min-width: 0;
  flex: 0 0 100%;
  grid-template-columns: minmax(360px, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(46px, 6vw, 86px);
  align-items: center;
  padding: clamp(40px, 4.6vw, 64px);
  background: linear-gradient(135deg, #fff, #f2f7fc);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body[data-page="proyectos"] .projects-story__visual,
body[data-page="proyectos"] .projects-story__content {
  min-width: 0;
}

body[data-page="proyectos"] .projects-story__visual .project-solution-showcase {
  min-height: 440px;
  background:
    radial-gradient(circle at 88% 10%, rgba(17, 111, 217, 0.08), transparent 31%),
    #fff;
  border-color: #d7e4f0;
  box-shadow: 0 20px 52px rgba(11, 49, 88, 0.1);
}

body[data-page="proyectos"] .projects-story__visual .project-reference-context {
  margin-top: 14px;
}

body[data-page="proyectos"] .projects-story__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 13px;
  color: #0870e6;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .projects-story__content h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(2.45rem, 4.2vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.048em;
}

body[data-page="proyectos"] .projects-story__context {
  margin: 0 0 24px;
  color: #52677d;
  font-size: 1rem;
  line-height: 1.65;
}

body[data-page="proyectos"] .projects-story__chapters {
  border-top: 1px solid #d5e2ee;
}

body[data-page="proyectos"] .projects-story__chapters > div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid #d5e2ee;
}

body[data-page="proyectos"] .projects-story__chapters span {
  color: #0870e6;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .projects-story__chapters p {
  margin: 0;
  color: #425870;
  line-height: 1.58;
}

body[data-page="proyectos"] .projects-slider__controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
}

body[data-page="proyectos"] .projects-slider__arrows {
  display: flex;
  gap: 10px;
}

body[data-page="proyectos"] .projects-slider__arrow {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: #075fc8;
  background: #fff;
  border: 1px solid #abc9e8;
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

body[data-page="proyectos"] .projects-slider__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: rotate(180deg);
}

body[data-page="proyectos"] .projects-slider__arrow--next svg {
  transform: none;
}

body[data-page="proyectos"] .projects-slider__arrow:hover:not(:disabled),
body[data-page="proyectos"] .projects-slider__arrow:focus-visible {
  color: #fff;
  background: #0869d6;
  border-color: #0869d6;
}

body[data-page="proyectos"] .projects-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

body[data-page="proyectos"] .projects-slider__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

body[data-page="proyectos"] .projects-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #b7c9da;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

body[data-page="proyectos"] .projects-slider__dots button[aria-current="true"] {
  width: 30px;
  background: #0869d6;
  border-radius: 10px;
}

body[data-page="proyectos"] .projects-slider__dots button:focus-visible {
  outline: 3px solid rgba(9, 103, 213, 0.28);
  outline-offset: 4px;
}

body[data-page="proyectos"] .projects-slider__counter {
  justify-self: end;
  margin: 0;
  color: #6a7d91;
  font-size: 0.86rem;
  font-weight: 780;
  letter-spacing: 0.08em;
}

body[data-page="proyectos"] .projects-slider__counter span {
  color: #0b2440;
}

body[data-page="proyectos"] .projects-story .project-case__byline {
  color: #718197;
}

body[data-page="proyectos"] .projects-story .project-case__product {
  color: #fff;
  background: #0874e8;
  border-color: #0874e8;
  box-shadow: 0 14px 34px rgba(0, 91, 196, 0.24);
}

body[data-page="proyectos"] .projects-story .project-case__product:hover,
body[data-page="proyectos"] .projects-story .project-case__product:focus-visible {
  color: #fff;
  background: #0b82ff;
  border-color: #0b82ff;
}

body[data-page="proyectos"] .projects-gallery-section .projects-notice {
  margin-top: 28px;
  padding-top: 20px;
  color: #77869a;
  border-color: #dce6f0;
}

/* Proyectos: editorial references layout. */
body[data-page="proyectos"] .projects-editorial {
  padding-top: clamp(82px, 9vw, 132px);
  background: #fff;
}

body[data-page="proyectos"] .project-featured {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid #dce7f2;
  border-radius: 30px 6px 30px 6px;
  background: linear-gradient(135deg, #f7fbff, #eef5fc);
  box-shadow: 0 30px 80px rgba(11, 39, 72, 0.1);
}

body[data-page="proyectos"] .project-featured__visual .project-solution-showcase {
  min-height: 455px;
  box-shadow: none;
}

body[data-page="proyectos"] .project-featured__content h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

body[data-page="proyectos"] .project-featured__story {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid #d5e2ef;
}

body[data-page="proyectos"] .project-featured__story > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid #d5e2ef;
}

body[data-page="proyectos"] .project-featured__story span {
  color: #0870e6;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .project-featured__story p {
  margin: 0;
  color: #425870;
  line-height: 1.58;
}

body[data-page="proyectos"] .project-reference-context {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 14px 0 0;
  overflow: hidden;
  color: #607389;
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 11px 3px 11px 3px;
}

body[data-page="proyectos"] .project-reference-context img {
  width: 128px;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
}

body[data-page="proyectos"] .project-reference-context figcaption {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px 12px 10px 0;
  font-size: 0.67rem;
  line-height: 1.42;
}

body[data-page="proyectos"] .project-reference-context figcaption strong {
  color: #314b66;
  font-size: 0.7rem;
}

body[data-page="proyectos"] .project-reference-context a {
  color: #0865c8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body[data-page="proyectos"] .projects-references-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 46px;
  align-items: end;
  margin: clamp(86px, 10vw, 142px) 0 42px;
}

body[data-page="proyectos"] .projects-references-heading h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

body[data-page="proyectos"] .projects-references-heading > p {
  margin: 0 0 4px;
  color: #52677d;
  line-height: 1.62;
}

body[data-page="proyectos"] .projects-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body[data-page="proyectos"] .project-reference-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 20px 4px 20px 4px;
  box-shadow: 0 18px 48px rgba(13, 49, 88, 0.08);
}

body[data-page="proyectos"] .project-reference-card__visual .project-solution-showcase,
body[data-page="proyectos"] .project-reference-card__visual .projects-visual {
  min-height: 275px;
  padding: 16px;
  border: 0;
  border-bottom: 1px solid #dce7f2;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="proyectos"] .project-reference-card__visual .project-solution-card__image {
  min-height: 170px;
  padding: 10px;
}

body[data-page="proyectos"] .project-reference-card__visual .project-solution-card__image img {
  max-height: 180px;
}

body[data-page="proyectos"] .project-reference-card__visual .project-solution-card__caption {
  padding: 11px 13px 13px;
}

body[data-page="proyectos"] .project-reference-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

body[data-page="proyectos"] .project-reference-card__body h3 {
  margin: 0;
  color: #071629;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

body[data-page="proyectos"] .project-reference-card__solution {
  margin: 14px 0 0;
  color: #52677d;
  font-size: 0.92rem;
  line-height: 1.56;
}

body[data-page="proyectos"] .project-reference-card__status {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 15px;
  padding: 6px 9px;
  color: #31516f;
  background: #edf5fc;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 780;
  line-height: 1.35;
}

body[data-page="proyectos"] .project-reference-card__details {
  margin-top: auto;
  padding-top: 22px;
}

body[data-page="proyectos"] .project-reference-card__details summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #075fc8;
  border-top: 1px solid #dde7f1;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 820;
  list-style: none;
}

body[data-page="proyectos"] .project-reference-card__details summary::-webkit-details-marker {
  display: none;
}

body[data-page="proyectos"] .project-reference-card__details summary::after {
  display: none;
  content: none;
}

body[data-page="proyectos"] .project-reference-card__details summary span {
  font-size: 1.3rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

body[data-page="proyectos"] .project-reference-card__details[open] summary span {
  transform: rotate(45deg);
}

body[data-page="proyectos"] .project-reference-card__details summary:focus-visible {
  outline: 3px solid rgba(9, 103, 213, 0.28);
  outline-offset: 4px;
}

body[data-page="proyectos"] .project-reference-card__details-body {
  padding: 5px 0 2px;
}

body[data-page="proyectos"] .project-reference-card__details-body h4 {
  margin: 18px 0 6px;
  color: #19334e;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body[data-page="proyectos"] .project-reference-card__details-body > p {
  margin: 0;
  color: #52677d;
  font-size: 0.86rem;
  line-height: 1.54;
}

body[data-page="proyectos"] .project-reference-card .project-case__facts {
  grid-template-columns: 1fr;
}

body[data-page="proyectos"] .project-reference-card .project-case__actions {
  margin-top: 17px;
}

body[data-page="proyectos"] .project-reference-card .project-case__product {
  width: 100%;
  justify-content: center;
}

body[data-page="proyectos"] .projects-cta {
  padding-top: 0;
  background: #eaf2fb;
}

body[data-page="proyectos"] .projects-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(34px, 5vw, 66px);
  color: #fff;
  background: linear-gradient(125deg, #07182c, #0b3d77);
  border-radius: 24px 5px 24px 5px;
  box-shadow: 0 28px 70px rgba(8, 38, 72, 0.18);
}

body[data-page="proyectos"] .projects-cta__panel > div {
  max-width: 700px;
}

body[data-page="proyectos"] .projects-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

body[data-page="proyectos"] .projects-cta__panel > div > p:last-child {
  margin: 16px 0 0;
  color: rgba(232, 241, 252, 0.83);
  line-height: 1.62;
}

body[data-page="proyectos"] .projects-cta .projects-list__kicker {
  color: #7fc4ff;
}

body[data-page="proyectos"] .projects-cta .button {
  flex: 0 0 auto;
  min-width: 210px;
  color: #fff;
}

@media (max-width: 900px) {
  body[data-page="proyectos"] .projects-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }

  body[data-page="proyectos"] .projects-hero__motif {
    position: absolute;
    right: -90px;
    bottom: -80px;
    width: 330px;
    opacity: 0.38;
    margin-top: 0;
  }

  body[data-page="proyectos"] .projects-list__intro,
  body[data-page="proyectos"] .project-case {
    grid-template-columns: 1fr;
  }

  body[data-page="proyectos"] .projects-list__intro > p:last-child {
    margin-top: 24px;
  }

  body[data-page="proyectos"] .project-case {
    gap: 46px;
  }

  body[data-page="proyectos"] .project-case:nth-child(even) .project-case__media {
    order: 0;
  }

  body[data-page="proyectos"] .project-case__content {
    max-width: none;
  }

  body[data-page="proyectos"] .projects-cta__panel {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page="proyectos"] .project-featured,
  body[data-page="proyectos"] .projects-references-heading {
    grid-template-columns: 1fr;
  }

  body[data-page="proyectos"] .projects-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="proyectos"] .projects-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  body[data-page="proyectos"] .projects-hero {
    min-height: 0;
    height: var(--aceris-main-hero-height);
  }

  body[data-page="proyectos"] .projects-hero__background {
    object-position: 46% center;
  }

  body[data-page="proyectos"] .projects-hero::before {
    background:
      linear-gradient(90deg, rgba(2, 15, 29, 0.62) 0%, rgba(2, 15, 29, 0.34) 72%, rgba(2, 15, 29, 0.2) 100%),
      linear-gradient(180deg, rgba(2, 15, 29, 0.14), rgba(2, 15, 29, 0.26));
  }

  body[data-page="proyectos"] .projects-hero__grid {
    min-height: 0;
    padding: 0;
  }

  body[data-page="proyectos"] .projects-hero h1 {
    font-size: var(--aceris-main-hero-title);
  }

  body[data-page="proyectos"] .projects-list {
    padding-top: 72px;
  }

  body[data-page="proyectos"] .projects-list__intro {
    margin-bottom: 58px;
  }

  body[data-page="proyectos"] .projects-list__items {
    gap: 84px;
  }

  body[data-page="proyectos"] .projects-visual {
    min-height: 300px;
    border-radius: 20px 4px 20px 4px;
  }

  body[data-page="proyectos"] .project-solution-showcase {
    min-height: 340px;
    padding: 20px;
    border-radius: 20px 4px 20px 4px;
  }

  body[data-page="proyectos"] .project-solution-showcase--multiple {
    grid-template-columns: 1fr;
  }

  body[data-page="proyectos"] .project-solution-card__image {
    min-height: 230px;
  }

  body[data-page="proyectos"] .project-case__gallery--context img {
    height: 150px;
  }

  body[data-page="proyectos"] .project-case__facts {
    grid-template-columns: 1fr;
  }

  body[data-page="proyectos"] .project-case__product,
  body[data-page="proyectos"] .projects-cta .button {
    width: 100%;
    justify-content: center;
  }

  body[data-page="proyectos"] .projects-cta__panel {
    gap: 30px;
    padding: 32px 24px;
    border-radius: 18px 4px 18px 4px;
  }

  body[data-page="proyectos"] .projects-editorial {
    padding-top: 72px;
  }

  body[data-page="proyectos"] .project-featured {
    gap: 34px;
    padding: 20px;
    border-radius: 22px 4px 22px 4px;
  }

  body[data-page="proyectos"] .project-featured__visual .project-solution-showcase {
    min-height: 340px;
  }

  body[data-page="proyectos"] .project-featured__story > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body[data-page="proyectos"] .project-reference-context {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  body[data-page="proyectos"] .project-reference-context img {
    width: 94px;
  }

  body[data-page="proyectos"] .projects-references-heading {
    gap: 18px;
    margin-top: 86px;
  }

  body[data-page="proyectos"] .projects-reference-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="proyectos"] .project-reference-card__visual .project-solution-showcase,
  body[data-page="proyectos"] .project-reference-card__visual .projects-visual {
    min-height: 300px;
  }

  body[data-page="proyectos"] .projects-gallery-section {
    padding: 48px 0 24px;
  }

  body[data-page="proyectos"] .projects-slider {
    border-radius: 20px 4px 20px 4px;
  }

  body[data-page="proyectos"] .projects-slider__topbar {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px;
  }

  body[data-page="proyectos"] .projects-slider__topbar h2 {
    font-size: 1.75rem;
  }

  body[data-page="proyectos"] .projects-story {
    gap: 28px;
    padding: 28px 20px 34px;
  }

  body[data-page="proyectos"] .projects-story__visual .project-solution-showcase {
    min-height: 330px;
    padding: 18px;
  }

  body[data-page="proyectos"] .projects-story__visual .project-solution-showcase--multiple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="proyectos"] .projects-story__visual .project-solution-card__image {
    min-height: 180px;
    padding: 8px;
  }

  body[data-page="proyectos"] .projects-story__content h2 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  body[data-page="proyectos"] .projects-story__chapters > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  body[data-page="proyectos"] .projects-slider__controls {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 0;
  }

  body[data-page="proyectos"] .projects-slider__arrow {
    width: 44px;
    height: 44px;
  }

  body[data-page="proyectos"] .projects-slider__dots {
    gap: 7px;
  }

  body[data-page="proyectos"] .projects-slider__dots button {
    width: 8px;
    height: 8px;
  }

  body[data-page="proyectos"] .projects-slider__dots button[aria-current="true"] {
    width: 22px;
  }

  body[data-page="proyectos"] .projects-slider__counter {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="proyectos"] .projects-slider__viewport {
    scroll-behavior: auto;
  }
}


@media (max-width: 720px) {
  .access-scenarios-grid {
    grid-template-columns: 1fr;
  }

  .access-scenario-card,
  .access-principle-panel,
  .access-maintenance-panel {
    grid-template-columns: 1fr;
  }

  .access-flow-mini {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-flow-mini span:first-child::after,
  .access-flow-mini strong::after {
    top: auto;
    right: auto;
    bottom: -27px;
    left: 50%;
    content: "↓";
    transform: translateX(-50%);
  }

  .access-system-grid,
  .access-solution-grid,
  .access-review-grid {
    grid-template-columns: 1fr;
  }

  .access-scenario-image {
    aspect-ratio: 16 / 9;
  }

  .access-scenario-content {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .access-hero-full {
    min-height: 690px;
  }

  .access-hero-copy h1 {
    font-size: 38px;
  }
}

.access-reception-hero {
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid rgba(216, 227, 234, 0.72);
}

.access-reception-hero-grid {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(420px, 0.47fr) minmax(0, 0.53fr);
  min-height: clamp(520px, 56vw, 640px);
}

.access-reception-copy {
  position: relative;
  z-index: 2;
  align-self: stretch;
  padding: clamp(32px, 4vw, 58px) clamp(28px, 5.2vw, 70px) clamp(42px, 5vw, 68px) clamp(34px, 6vw, 78px);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 72%, rgba(255, 255, 255, 0.8) 88%, rgba(255, 255, 255, 0) 100%);
}

.access-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: clamp(32px, 4vw, 52px);
  color: #42566b;
  font-size: 0.78rem;
  font-weight: 650;
}

.access-breadcrumbs a {
  color: #314761;
}

.access-reception-copy h1 {
  max-width: 660px;
  margin: 0;
  color: #071a42;
  font-size: clamp(2.65rem, 4.15vw, 4.6rem);
  font-weight: 870;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.access-reception-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #0d2448;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.7;
}

.access-reception-actions {
  margin-top: 32px;
}

.access-outline-button {
  color: #075be8;
  background: #ffffff;
  border-color: #075be8;
  box-shadow: none;
}

.access-outline-button:hover,
.access-outline-button:focus-visible {
  color: #034bbd;
  background: #f4f8ff;
  border-color: #034bbd;
}

.access-reception-media {
  position: relative;
  min-width: 0;
  min-height: inherit;
  margin-left: -72px;
}

.access-reception-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 26%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.84) 28%, rgba(255, 255, 255, 0) 100%);
}

.access-reception-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 59% center;
}

.access-reception-hero.is-product-hero .access-reception-media {
  background:
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
}

.access-reception-hero.is-product-hero .access-reception-media img {
  padding: clamp(42px, 7vw, 92px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 34px rgba(15, 35, 64, 0.16));
}

.access-flow-section {
  padding: clamp(42px, 5.8vw, 68px) 0 clamp(34px, 4.8vw, 58px);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.access-section-heading {
  display: block;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.access-section-heading h2,
.access-options-heading h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.16;
  text-wrap: balance;
}

.access-section-heading p {
  max-width: 820px;
  margin: 15px auto 0;
  color: #17304f;
  line-height: 1.65;
}

.access-benefits-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-benefit {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 0 clamp(18px, 2.6vw, 36px);
  border-left: 1px solid #d5e1f2;
}

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

.access-line-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #075be8;
}

.access-line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.access-benefit strong,
.access-benefit small {
  display: block;
}

.access-benefit strong {
  color: #071a42;
  font-size: 0.98rem;
  line-height: 1.24;
}

.access-benefit small {
  margin-top: 7px;
  color: #243b5d;
  font-size: 0.86rem;
  line-height: 1.5;
}

.access-system-section,
.access-options-section {
  background: #ffffff;
}

.access-system-section {
  padding: clamp(28px, 4.8vw, 54px) 0 clamp(24px, 3.8vw, 38px);
}

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

.access-system-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(190px, 0.42fr);
  min-height: 360px;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 42px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.07);
}

.access-software-card {
  grid-template-columns: minmax(0, 0.48fr) minmax(230px, 0.52fr);
}

.access-system-copy {
  position: relative;
  z-index: 2;
}

.access-system-copy h2 {
  margin: 0 0 23px;
  color: #071a42;
  font-size: clamp(1.28rem, 1.55vw, 1.65rem);
  line-height: 1.16;
}

.access-feature-list,
.access-check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  color: #213859;
  font-size: 0.86rem;
  line-height: 1.42;
}

.access-feature-list strong {
  display: block;
  margin-bottom: 3px;
  color: #071a42;
  font-size: 0.91rem;
}

.access-feature-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #075be8;
  background: #eef5ff;
  border-radius: 6px;
}

.access-feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.access-credential-visual {
  position: relative;
  min-height: 250px;
}

.access-card-token {
  position: absolute;
  top: 52px;
  left: 4px;
  display: grid;
  width: 116px;
  height: 162px;
  place-items: center;
  padding: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #eef2f7 100%);
  border: 1px solid #e1e8f2;
  border-radius: 8px;
  box-shadow: 0 24px 34px rgba(10, 25, 45, 0.13);
  transform: rotate(-7deg);
}

.access-card-token img {
  width: 86px;
}

.access-fob-token {
  position: absolute;
  right: 18px;
  bottom: 38px;
  width: 96px;
  height: 124px;
  background:
    radial-gradient(circle at 50% 17%, #4b5563 0 5px, transparent 6px),
    linear-gradient(145deg, #1c2229, #05080d);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px 48px 42px 42px;
  box-shadow: 0 22px 38px rgba(3, 10, 20, 0.22);
}

.access-fob-token::before {
  position: absolute;
  top: -40px;
  right: -15px;
  width: 42px;
  height: 60px;
  border: 2px solid #aeb8c5;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  content: "";
  transform: rotate(17deg);
}

.access-system-grid.access-solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.access-solution-grid .access-system-card {
  display: block;
  min-height: 236px;
  overflow: visible;
  padding: 24px;
}

.access-solution-grid .access-system-card .access-line-icon {
  width: 52px;
  height: 52px;
}

.access-solution-grid .access-system-card h3 {
  margin: 18px 0 0;
  font-size: 1.16rem;
  line-height: 1.28;
}

.access-solution-grid .access-system-card p {
  margin: 12px 0 0;
  font-size: 0.96rem;
  line-height: 1.66;
}

.access-product-visual {
  display: grid;
  min-height: 250px;
  align-items: center;
  justify-items: center;
}

.access-product-visual img {
  width: min(100%, 260px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(16, 36, 68, 0.14));
}

.access-software-visual {
  position: relative;
  display: grid;
  min-height: 250px;
  align-items: center;
  justify-items: end;
}

.access-laptop-mock {
  position: relative;
  width: min(100%, 340px);
  padding-bottom: 18px;
  filter: drop-shadow(0 22px 26px rgba(16, 36, 68, 0.16));
}

.access-laptop-screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ffffff;
  border: 9px solid #141922;
  border-radius: 10px 10px 5px 5px;
}

.access-app-topbar {
  height: 28px;
  background:
    linear-gradient(90deg, #075be8 0 44px, transparent 44px 100%),
    linear-gradient(90deg, #eef4ff, #ffffff);
  border-bottom: 1px solid #d9e4f4;
}

.access-app-layout {
  display: grid;
  grid-template-columns: 44px repeat(3, 1fr);
  grid-auto-rows: 21px;
  gap: 10px;
  padding: 16px;
}

.access-app-layout::before {
  grid-row: 1 / 7;
  width: 100%;
  min-height: 100%;
  background: #edf4ff;
  border-radius: 4px;
  content: "";
}

.access-app-layout span,
.access-app-layout strong,
.access-app-layout i {
  display: block;
  border-radius: 4px;
}

.access-app-layout span {
  background: #e8f0fb;
}

.access-app-layout strong {
  background: linear-gradient(90deg, #075be8, #34a9ff);
}

.access-app-layout i {
  background: #f0f4fa;
}

.access-laptop-base {
  width: 112%;
  height: 16px;
  margin: -1px 0 0 -6%;
  background: linear-gradient(180deg, #e9eef6, #cdd7e5);
  border-radius: 0 0 28px 28px;
}

.access-phone-mock {
  position: absolute;
  right: 0;
  bottom: 26px;
  display: grid;
  width: 88px;
  height: 158px;
  align-content: start;
  gap: 9px;
  padding: 18px 10px;
  background: #ffffff;
  border: 7px solid #161b23;
  border-radius: 20px;
  box-shadow: 0 14px 24px rgba(16, 36, 68, 0.16);
}

.access-phone-mock span,
.access-phone-mock strong,
.access-phone-mock i {
  display: block;
  border-radius: 4px;
}

.access-phone-mock span {
  height: 38px;
  background: linear-gradient(135deg, #075be8, #34a9ff);
}

.access-phone-mock strong {
  height: 14px;
  background: #dfeaff;
}

.access-phone-mock i {
  height: 11px;
  background: #edf2f8;
}

.access-check-list {
  gap: 18px;
  padding-top: 11px;
}

.access-check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  color: #122b4d;
  font-size: 0.92rem;
}

.access-check {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  border: 2px solid #075be8;
  border-radius: 50%;
}

.access-check::after {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid #075be8;
  border-left: 2px solid #075be8;
  content: "";
  transform: rotate(-45deg);
}

.access-options-section {
  padding: clamp(26px, 4.2vw, 44px) 0 clamp(26px, 4vw, 42px);
}

.access-options-heading {
  display: block;
  max-width: 820px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.access-options-heading h2 {
  margin: 0 auto;
}

.access-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.access-option-card {
  display: grid;
  min-height: 342px;
  align-content: start;
  padding: 22px 22px 18px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(20, 48, 84, 0.055);
}

.access-option-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 3px 9px;
  color: #ffffff;
  background: #075be8;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.access-option-card h3 {
  max-width: 310px;
  margin: 0;
  color: #071a42;
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
  line-height: 1.22;
}

.access-option-card p {
  max-width: 330px;
  margin: 12px 0 0;
  color: #213859;
  font-size: 0.91rem;
  line-height: 1.5;
}

.access-option-include-title {
  display: block;
  margin-top: 15px;
  color: #071a42;
  font-size: 0.86rem;
  line-height: 1.2;
}

.access-option-includes {
  display: grid;
  gap: 7px;
  margin: 9px 0 0;
  padding-left: 18px;
  color: #213859;
  font-size: 0.84rem;
  line-height: 1.42;
}

.access-option-image {
  display: grid;
  min-height: 130px;
  margin-top: 16px;
  align-items: end;
  justify-items: center;
}

.access-option-image img {
  width: min(100%, 265px);
  max-height: 145px;
  object-fit: contain;
  filter: drop-shadow(0 15px 22px rgba(12, 31, 55, 0.12));
}

.access-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #075be8;
  font-size: 0.88rem;
  font-weight: 850;
}

.access-text-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms var(--ease);
}

.access-text-link:hover svg,
.access-text-link:focus-visible svg {
  transform: translateX(4px);
}

.access-spotlight-section {
  padding: clamp(24px, 4vw, 46px) 0;
  background: #ffffff;
}

.access-spotlight-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(250px, 0.44fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  background:
    linear-gradient(120deg, #ffffff 0%, #ffffff 55%, #eef5ff 100%);
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.07);
}

.access-spotlight-copy h2,
.access-catalog-panel h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}

.access-spotlight-copy p,
.access-catalog-panel p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #213859;
  font-size: 1rem;
  line-height: 1.65;
}

.access-spotlight-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: #122b4d;
  list-style: none;
}

.access-spotlight-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.access-spotlight-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 17px;
  height: 17px;
  border: 2px solid #075be8;
  border-radius: 50%;
  content: "";
}

.access-spotlight-list li::after {
  position: absolute;
  top: 0.55em;
  left: 5px;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid #075be8;
  border-left: 2px solid #075be8;
  content: "";
  transform: rotate(-45deg);
}

.access-spotlight-media {
  display: grid;
  min-height: 260px;
  align-items: center;
  justify-items: center;
}

.access-spotlight-media img {
  width: min(100%, 420px);
  max-height: 285px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(16, 36, 68, 0.14));
}

.access-catalog-section {
  padding: clamp(24px, 3.8vw, 44px) 0 clamp(30px, 4vw, 54px);
  background: #ffffff;
}

.access-catalog-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  background: linear-gradient(135deg, #eef5ff 0%, #ffffff 64%, #e8f2ff 100%);
  border: 1px solid #d7e4f4;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.07);
}

.access-catalog-panel .hero-actions {
  margin-top: 22px;
}

.access-catalog-mark {
  display: grid;
  min-height: 230px;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 26px;
  color: #071a42;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 66, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 36px rgba(20, 48, 84, 0.08);
}

.access-catalog-mark img {
  width: 168px;
  max-width: 100%;
}

.access-catalog-mark strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.access-catalog-mark span {
  color: #47617e;
  font-weight: 760;
}

.access-final-band {
  padding: 0 0 12px;
  background: #ffffff;
}

.access-final-panel {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 25px 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 50%, rgba(0, 144, 215, 0.35), transparent 38%),
    linear-gradient(135deg, #042563 0%, #021535 100%);
  border-radius: 8px;
}

.access-final-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 1.85vw, 1.85rem);
  line-height: 1.15;
}

.access-final-panel p {
  max-width: 760px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.access-chat-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #075be8;
  border-radius: 50%;
}

.access-chat-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.access-final-panel .button-secondary {
  min-width: 230px;
  color: #075be8;
  background: #ffffff;
  border-color: #ffffff;
}

.access-final-panel .button-secondary:hover,
.access-final-panel .button-secondary:focus-visible {
  color: #034bbd;
  background: #f4f8ff;
  border-color: #f4f8ff;
}

@media (max-width: 1180px) {
  .access-reception-hero-grid {
    grid-template-columns: minmax(380px, 0.5fr) minmax(0, 0.5fr);
  }

  .access-benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .access-benefit:nth-child(3) {
    border-left: 0;
  }

  .access-system-card,
  .access-software-card {
    grid-template-columns: 1fr;
  }

  .access-credential-visual,
  .access-software-visual {
    min-height: 210px;
  }
}

@media (max-width: 900px) {
  .access-reception-hero-grid,
  .access-system-grid,
  .access-options-grid,
  .access-spotlight-panel,
  .access-catalog-panel {
    grid-template-columns: 1fr;
  }

  .access-reception-copy {
    padding-top: 30px;
    background: #ffffff;
  }

  .access-reception-media {
    min-height: 330px;
    margin-left: 0;
    order: -1;
  }

  .access-reception-media::before {
    display: none;
  }

  .access-reception-media img {
    min-height: 330px;
    object-position: 62% center;
  }

  .access-breadcrumbs {
    margin-bottom: 22px;
  }

  .access-final-panel {
    grid-template-columns: 58px 1fr;
  }

  .access-final-panel .button {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 1240px) {
  .access-system-grid.access-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .access-system-grid.access-solution-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-page-section {
    padding-top: 36px;
  }

  .contact-page-section .contact-note {
    margin-top: 22px;
    padding: 18px;
  }

  .contact-page-section .contact-intent-list {
    display: none;
  }

  .access-reception-hero-grid {
    min-height: 0;
  }

  .access-reception-copy {
    padding-right: 22px;
    padding-left: 22px;
  }

  .access-reception-copy h1 {
    font-size: 2.35rem;
  }

  .access-reception-actions,
  .access-reception-actions .button {
    width: 100%;
  }

  .access-benefits-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .access-benefit,
  .access-benefit:nth-child(3) {
    min-height: 0;
    padding: 0;
    border-left: 0;
  }

  .access-system-card {
    padding: 24px 20px;
  }

  .access-spotlight-panel,
  .access-catalog-panel {
    padding: 24px 20px;
  }

  .access-catalog-panel .hero-actions,
  .access-catalog-panel .button {
    width: 100%;
  }

  .access-catalog-mark {
    min-height: 190px;
    padding: 22px;
  }

  .access-final-panel {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

.access-final-panel .button {
    grid-column: auto;
    width: 100%;
  }
}

.time-hero {
  padding: clamp(52px, 7vw, 92px) 0 clamp(56px, 7vw, 96px);
  background:
    linear-gradient(110deg, #ffffff 0%, #ffffff 48%, #eef5ff 100%);
  border-bottom: 1px solid #dbe5f0;
}

.time-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.time-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #071a42;
  font-size: clamp(3.2rem, 5vw, 5.7rem);
  font-weight: 880;
  line-height: 0.98;
}

.time-hero-copy p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #122b4d;
  font-size: clamp(1.03rem, 1.24vw, 1.22rem);
  line-height: 1.65;
}

.time-hero-media {
  display: grid;
  min-height: 470px;
  align-items: center;
  justify-items: center;
}

.time-hero-media img {
  width: min(100%, 620px);
  max-height: 470px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  box-shadow: 0 28px 60px rgba(20, 48, 84, 0.12);
}

.time-intro-section,
.time-methods-section,
.time-scenarios-section,
.time-analysis-section {
  padding: clamp(44px, 5.4vw, 72px) 0;
  background: #ffffff;
}

.time-quick-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.time-quick-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 0 28px;
  color: #071a42;
  border-left: 1px solid #dbe5f0;
}

.time-quick-list li:first-child {
  border-left: 0;
}

.time-line-icon,
.time-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #075be8;
}

.time-line-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.time-quick-list strong {
  font-size: 0.96rem;
  line-height: 1.32;
}

.time-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.time-method-card,
.time-scenario-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 48, 84, 0.055);
}

.time-method-card {
  min-height: 235px;
}

.time-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  background: #eef5ff;
  border-radius: 6px;
}

.time-card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.time-method-card h3,
.time-scenario-card h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.16rem;
  line-height: 1.2;
}

.time-method-card p,
.time-scenario-card p {
  margin: 12px 0 0;
  color: #213859;
  font-size: 0.92rem;
  line-height: 1.55;
}

.time-scenario-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.time-scenario-card {
  min-height: 190px;
}

.time-software-section {
  padding: clamp(30px, 5vw, 62px) 0;
  background: #ffffff;
}

.time-software-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(300px, 0.46fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 52px);
  background:
    linear-gradient(120deg, #ffffff 0%, #ffffff 58%, #eef5ff 100%);
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.07);
}

.time-software-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #071a42;
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  line-height: 1.08;
}

.time-software-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #213859;
  line-height: 1.65;
}

.time-software-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin-top: 24px;
}

.time-software-media {
  display: grid;
  align-items: center;
  justify-items: center;
}

.time-software-media img {
  width: min(100%, 430px);
  object-fit: contain;
  border: 1px solid #dbe5f0;
  box-shadow: 0 22px 42px rgba(20, 48, 84, 0.13);
}

.qrdtime-platform-section {
  overflow-x: hidden;
  padding: clamp(34px, 5vw, 70px) 0;
  background: #ffffff;
}

.qrdtime-panel {
  grid-template-columns: 1fr;
  align-items: start;
}

.qrdtime-capture {
  align-self: center;
  width: min(100%, 560px);
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(20, 48, 84, 0.13);
}

.qrdtime-capture img {
  display: block;
  width: 100%;
  height: auto;
}

.qrdtime-capture figcaption {
  margin: 0;
  padding: 12px 14px;
  color: #52657a;
  font-size: 0.82rem;
  line-height: 1.35;
  background: #f7faff;
  border-top: 1px solid #dbe5f0;
}

.qrdtime-platform-capture {
  background: #f4f6f9;
}

.qrdtime-gallery {
  align-self: center;
  width: 100%;
  min-width: 0;
}

.qrdtime-gallery-stage {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(20, 48, 84, 0.13);
}

.qrdtime-gallery-panel {
  display: none;
}

.qrdtime-gallery-panel.is-active {
  display: block;
}

.qrdtime-gallery-panel img {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
}

.qrdtime-gallery-panel--portrait img {
  width: min(100%, 560px);
  margin: 0 auto;
  background: #eef4fa;
}

.qrdtime-gallery-copy {
  padding: 16px 18px 18px;
  background: #f7faff;
  border-top: 1px solid #dbe5f0;
}

.qrdtime-gallery-copy h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.02rem;
  line-height: 1.25;
}

.qrdtime-gallery-copy p {
  margin: 8px 0 0;
  color: #52657a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.qrdtime-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  max-width: 980px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
}

.qrdtime-gallery-thumb {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 6px;
  color: #213859;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.qrdtime-gallery-thumb.is-active,
.qrdtime-gallery-thumb:focus-visible {
  border-color: #075be8;
  box-shadow: 0 0 0 3px rgba(7, 91, 232, 0.14);
  outline: 0;
}

.qrdtime-gallery-thumb img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #e4edf7;
}

.qrdtime-gallery-thumb span {
  overflow: hidden;
  color: #071a42;
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qrdtime-mobile-capture {
  max-width: 360px;
  margin: 22px auto 0;
  border-radius: 18px;
}

.qrdtime-mobile-capture img {
  aspect-ratio: 544 / 900;
  object-fit: cover;
}

.qrdtime-overview-capture {
  max-width: 720px;
  margin: 22px auto 0;
}

.qrdtime-overview-capture img {
  object-fit: contain;
  background: #ffffff;
}

.qrdtime-calendar-capture {
  width: min(100%, 620px);
}

.software-mockup,
.time-calendar-mockup,
.time-listings-mockup,
.time-flow-diagram {
  position: relative;
  width: min(100%, 520px);
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  background: #f5f9ff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(20, 48, 84, 0.12);
}

.mock-browser {
  display: flex;
  gap: 7px;
  margin: -6px 0 22px;
}

.mock-browser span {
  width: 10px;
  height: 10px;
  background: #b8c9d8;
  border-radius: 999px;
}

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

.mock-dashboard-grid strong {
  grid-column: 1 / -1;
  color: #071a42;
  font-size: 1.45rem;
}

.mock-dashboard-grid i,
.mock-dashboard-grid b,
.mock-calendar-grid i,
.time-listings-mockup i {
  display: block;
  min-height: 42px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 6px;
}

.mock-dashboard-grid i {
  grid-column: span 1;
  min-height: 82px;
  background: linear-gradient(180deg, #ffffff, #eaf3ff);
}

.mock-phone {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 12px;
  width: 132px;
  min-height: 210px;
  padding: 18px 14px;
  background: #071a42;
  border: 6px solid #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(7, 26, 66, 0.22);
}

.mock-phone span,
.mock-phone i {
  display: block;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.mock-phone strong {
  display: grid;
  min-height: 68px;
  place-items: center;
  color: #ffffff;
  background: #075be8;
  border-radius: 10px;
  font-size: 0.95rem;
}

.time-capture-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.time-capture-row span {
  display: grid;
  min-height: 118px;
  place-items: center;
  color: #075be8;
  font-weight: 850;
  background:
    linear-gradient(135deg, rgba(7, 91, 232, 0.1), rgba(7, 91, 232, 0)),
    #f5f9ff;
  border: 1px dashed #9ab6df;
  border-radius: 8px;
}

.time-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: #52657a;
  font-size: 0.93rem;
  line-height: 1.6;
}

.time-note p {
  margin: 0;
}

.time-note p + p {
  margin-top: 8px;
}

.time-note-callout {
  padding: 14px 16px;
  color: #213859;
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-left: 4px solid #075be8;
  border-radius: 8px;
}

.mock-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.mock-calendar-grid strong {
  grid-column: 1 / -1;
  color: #071a42;
  font-size: 1.25rem;
}

.mock-calendar-grid i:nth-child(6n) {
  background: #dceaff;
}

.time-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.time-module-card {
  min-height: 210px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.045);
}

.time-module-card h3 {
  margin: 18px 0 0;
  color: #071a42;
  font-size: 1.12rem;
}

.time-module-card p {
  margin: 12px 0 0;
  color: #213859;
  font-size: 0.92rem;
  line-height: 1.55;
}

.qrdtime-organize-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.qrdtime-organize-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

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

.qrdtime-feature-card {
  min-height: 180px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.045);
}

.qrdtime-feature-card h3 {
  margin: 16px 0 0;
  color: #071a42;
  font-size: 1.04rem;
}

.qrdtime-feature-card p {
  margin: 10px 0 0;
  color: #213859;
  font-size: 0.9rem;
  line-height: 1.52;
}

.qrdtime-feature-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.qrdtime-growth-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 48, 84, 0.07);
}

.qrdtime-growth-panel h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.qrdtime-growth-panel p {
  margin: 12px 0 0;
  color: #213859;
  line-height: 1.65;
}

.time-listings-mockup {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-height: 230px;
  margin-top: 20px;
}

.time-listings-mockup span {
  color: #071a42;
  font-size: 0.82rem;
  font-weight: 900;
}

.time-listings-mockup i {
  min-height: 34px;
}

.time-flow-diagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  min-height: 300px;
}

.time-flow-diagram span,
.time-flow-diagram strong {
  display: grid;
  min-height: 72px;
  place-items: center;
  text-align: center;
  border-radius: 8px;
}

.time-flow-diagram span {
  color: #122b4d;
  background: #ffffff;
  border: 1px solid #dbe5f0;
}

.time-flow-diagram strong {
  grid-column: 1 / -1;
  color: #ffffff;
  background: #075be8;
  box-shadow: 0 16px 34px rgba(7, 91, 232, 0.18);
}

.time-rollout-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.time-rollout-step {
  min-height: 245px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.045);
}

.time-rollout-step span {
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #075be8;
  background: #eef5ff;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
}

.time-rollout-step strong {
  display: block;
  margin-top: 18px;
  color: #071a42;
  line-height: 1.25;
}

.time-rollout-step p {
  margin: 12px 0 0;
  color: #213859;
  font-size: 0.91rem;
  line-height: 1.55;
}

.time-analysis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.time-analysis-grid li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.045);
}

.time-analysis-number {
  display: inline-flex;
  width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #075be8;
  background: #eef5ff;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
}

.time-analysis-grid strong {
  color: #071a42;
  font-size: 0.94rem;
  line-height: 1.28;
}

.home-focus-hero,
.home-problems-section,
.home-solutions-section,
.home-steps-section,
.home-qualicard-section,
.home-maintenance-section,
.home-cases-section,
.home-seo-section,
.home-short-contact-section {
  background: #ffffff;
}

.home-focus-hero {
  padding: clamp(36px, 5vw, 62px) 0 clamp(30px, 4vw, 46px);
  background:
    linear-gradient(110deg, #ffffff 0%, #ffffff 52%, #eef5ff 100%);
  border-bottom: 1px solid #dbe5f0;
}

.home-focus-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 0.45fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.home-preheadline {
  margin: 0 0 18px;
  color: #075be8;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-focus-copy h1 {
  max-width: 850px;
  margin: 0;
  color: #071a42;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  font-weight: 880;
  line-height: 0.98;
}

.home-hero-subtitle {
  max-width: 760px;
  margin: 26px 0 0;
  color: #122b4d;
  font-size: clamp(1.03rem, 1.25vw, 1.22rem);
  line-height: 1.65;
}

.home-hero-highlight,
.home-panel-highlight {
  max-width: 720px;
  margin-top: 22px;
  padding: 16px 18px;
  color: #071a42;
  background: #eef5ff;
  border-left: 3px solid #075be8;
  border-radius: 6px;
  font-weight: 780;
  line-height: 1.45;
}

.home-focus-copy .hero-actions {
  margin-top: 26px;
}

.home-microtags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.home-microtags li {
  padding: 8px 11px;
  color: #213859;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 780;
}

.home-focus-media,
.home-solution-media,
.home-dual-media {
  display: grid;
  align-items: center;
  justify-items: center;
}

.home-image-placeholder img,
.home-solution-media img,
.home-dual-media img {
  width: min(100%, 560px);
  max-height: 380px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  box-shadow: 0 24px 54px rgba(20, 48, 84, 0.12);
}

.home-section-heading {
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}

.home-section-heading h2,
.home-seo-copy h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.home-section-heading p,
.home-seo-copy p {
  margin: 18px auto 0;
  color: #213859;
  font-size: 1.03rem;
  line-height: 1.7;
}

.home-problem-grid,
.home-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-problem-card,
.home-case-card,
.home-step-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 48, 84, 0.055);
}

.home-problem-card {
  min-height: 240px;
}

.home-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: #075be8;
  background: #eef5ff;
  border-radius: 6px;
}

.home-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.home-problem-card h3,
.home-case-card h3,
.home-step-card h3,
.home-solution-copy h3 {
  margin: 20px 0 0;
  color: #071a42;
  font-size: 1.3rem;
  line-height: 1.18;
}

.home-problem-card p,
.home-case-card p,
.home-step-card p,
.home-solution-copy p,
.home-dual-copy p {
  color: #213859;
  line-height: 1.62;
}

.home-solution-stack {
  display: grid;
  gap: 18px;
}

.home-solution-block,
.home-dual-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(270px, 0.42fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 3.4vw, 38px);
  background:
    linear-gradient(120deg, #ffffff 0%, #ffffff 60%, #eef5ff 100%);
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.07);
}

.home-solution-copy h3 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
}

.home-solution-copy strong {
  display: block;
  margin-top: 8px;
  color: #075be8;
  line-height: 1.35;
}

.home-solution-copy ul,
.home-dual-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: #122b4d;
}

.home-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-step-card span {
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #075be8;
  background: #eef5ff;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
}

.home-dual-copy h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
  line-height: 1.08;
}

.home-dual-media img[src*="logo-qualicard"] {
  max-width: 320px;
  padding: 46px;
}

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

.home-case-card {
  min-height: 180px;
}

.home-case-card h3 {
  margin-top: 0;
  font-size: 1.06rem;
}

.home-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.home-seo-copy {
  max-width: 1040px;
  padding: clamp(28px, 4vw, 44px);
  background: #f5f9ff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.home-seo-section {
  padding-bottom: clamp(34px, 5vw, 60px);
}

.home-short-contact-section {
  padding-top: clamp(42px, 6vw, 72px);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(420px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.home-contact-grid .home-section-heading {
  margin: 0;
  text-align: left;
}

.home-short-form {
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.08);
}

.home-form-microcopy {
  margin: 14px 0 0;
  color: #47617e;
  font-size: 0.9rem;
}

.ac-home-hero,
.ac-home-method,
.ac-home-resolve,
.ac-home-why,
.ac-home-projects,
.ac-home-connected,
.ac-home-tech,
.ac-home-distributor,
.ac-home-final {
  background: #ffffff;
}

body[data-page="home"] .reveal {
  opacity: 1;
  transform: none;
}

.ac-home-hero {
  padding: clamp(28px, 4vw, 50px) 0 clamp(34px, 4.4vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(115deg, #ffffff 0%, #ffffff 49%, #eef6ff 100%);
  border-bottom: 1px solid rgba(216, 227, 234, 0.9);
}

.ac-home-hero--photo {
  display: flex;
  min-height: clamp(360px, 30vw, 470px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 27%, rgba(255, 255, 255, 0.54) 39%, rgba(255, 255, 255, 0.08) 54%, rgba(255, 255, 255, 0) 66%),
    radial-gradient(circle at 15% 50%, rgba(238, 246, 255, 0.72), rgba(238, 246, 255, 0) 34%),
    linear-gradient(180deg, rgba(244, 249, 255, 0), rgba(239, 246, 255, 0.03)),
    url("/assets/hero/qualica-rd-vega-hero-home-wide.jpg") center / cover;
}

.ac-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
  gap: clamp(30px, 4.2vw, 58px);
  align-items: center;
}

.ac-home-hero--photo .ac-home-hero__grid {
  display: block;
}

.ac-home-hero__copy {
  padding-top: clamp(10px, 1.8vw, 24px);
}

.ac-home-hero--photo .ac-home-hero__copy {
  max-width: 620px;
  padding-top: clamp(18px, 3vw, 46px);
  padding-bottom: clamp(18px, 3vw, 44px);
}

.ac-home-hero--photo .ac-home-hero__copy h1 {
  max-width: 610px;
}

.ac-home-hero--photo .ac-home-hero__copy p {
  max-width: 560px;
}

.ac-home-hero__lead {
  max-width: 580px;
  margin-top: 18px;
  color: #17324f;
  font-size: clamp(1.02rem, 1.08vw, 1.13rem);
  line-height: 1.58;
}

.ac-home-hero--photo .ac-home-microcopy {
  max-width: 560px;
  margin-top: 24px !important;
}

.ac-home-hero__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  max-width: 630px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 34, 64, 0.14);
}

.ac-home-hero__quicklinks a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 0;
  color: #24415f;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
}

.ac-home-hero__quicklinks a:hover {
  color: #0052e0;
}

.ac-home-hero__copy h1 {
  max-width: 780px;
  margin: 0;
  color: #061a36;
  font-size: clamp(2.55rem, 3.55vw, 3.95rem);
  font-weight: 890;
  line-height: 1.01;
}

.ac-home-hero__copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #17324f;
  font-size: clamp(1.04rem, 1.2vw, 1.2rem);
  line-height: 1.62;
}

.ac-home-hero__actions,
.ac-home-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ac-home-microcopy {
  max-width: 640px;
  margin-top: 22px !important;
  color: #4b6074 !important;
  font-size: 0.94rem !important;
}

.ac-home-button-secondary {
  color: #061a36;
  background: #ffffff;
  border-color: rgba(7, 34, 64, 0.22);
}

.ac-home-hero__media {
  position: relative;
  justify-self: end;
  width: min(100%, 470px);
  margin: 0;
}

.ac-home-hero__media::before {
  position: absolute;
  inset: 8% -8% -8% 18%;
  content: "";
  background: #0052e0;
  opacity: 0.09;
  filter: blur(42px);
}

.ac-home-hero__media img {
  position: relative;
  width: 100%;
  max-height: 460px;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: 58% center;
  border: 1px solid rgba(216, 227, 234, 0.92);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 22, 32, 0.16);
}

.ac-home-heading {
  max-width: 910px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  text-align: center;
}

.ac-home-heading h2,
.ac-home-why__copy h2,
.ac-home-tech__copy h2,
.ac-home-final__panel h2 {
  margin: 0;
  color: #061a36;
  font-size: clamp(2rem, 3.25vw, 3.25rem);
  font-weight: 860;
  line-height: 1.06;
}

.ac-home-heading p,
.ac-home-why__copy p,
.ac-home-tech__copy p,
.ac-home-final__panel p {
  margin: 18px auto 0;
  color: #263f59;
  font-size: 1.02rem;
  line-height: 1.7;
}

.ac-home-heading--light h2,
.ac-home-heading--light p {
  color: #ffffff;
}

.ac-home-heading--light p {
  color: #c6d9ee;
}

.ac-home-resolve {
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(46px, 5.2vw, 68px);
}

.ac-home-card-grid {
  display: grid;
  gap: 16px;
}

.ac-home-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ac-home-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-home-card-grid--scenarios {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-home-card,
.ac-home-case,
.ac-home-argument {
  min-width: 0;
  padding: clamp(18px, 2vw, 24px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 48, 84, 0.055);
}

.ac-home-case {
  display: grid;
  align-content: start;
}

.ac-home-case__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #0052e0;
  background: rgba(238, 246, 255, 0.88);
  border: 1px solid rgba(0, 82, 224, 0.08);
  border-radius: 6px;
}

.ac-home-case__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.ac-home-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #0052e0;
  background: #eef6ff;
  border-radius: 6px;
}

.ac-home-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.ac-home-card h3,
.ac-home-solution h3,
.ac-home-case h3,
.ac-home-argument h3 {
  margin: 18px 0 0;
  color: #061a36;
  font-size: 1.16rem;
  line-height: 1.2;
}

.ac-home-card p,
.ac-home-solution p,
.ac-home-case p,
.ac-home-argument p {
  margin: 12px 0 0;
  color: #263f59;
  line-height: 1.62;
}

.ac-home-card .access-text-link,
.ac-home-solution .access-text-link {
  margin-top: 18px;
}

.ac-home-main-solutions {
  padding-top: clamp(46px, 5.2vw, 64px);
  padding-bottom: clamp(46px, 5.4vw, 66px);
  background:
    linear-gradient(180deg, #061a36 0%, #08274c 100%);
}

.ac-home-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ac-home-solution {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(198, 217, 238, 0.22);
  border-radius: 8px;
}

.ac-home-solution img {
  width: 100%;
  height: clamp(144px, 11.5vw, 168px);
  object-fit: cover;
  background: #eef6ff;
  border-bottom: 1px solid rgba(198, 217, 238, 0.18);
  filter: saturate(0.92) contrast(1.03);
}

.ac-home-solution div {
  padding: 16px;
}

.ac-home-solution h3 {
  margin: 0;
  color: #ffffff;
}

.ac-home-solution p {
  color: #c6d9ee;
  line-height: 1.55;
}

.ac-home-solution ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: #d8e8f8;
  font-size: 0.91rem;
  line-height: 1.45;
}

.ac-home-solution .access-text-link {
  color: #ffffff;
}

.ac-home-why {
  padding-top: clamp(50px, 6vw, 76px);
  padding-bottom: clamp(50px, 6vw, 76px);
}

.ac-home-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.ac-home-why__copy {
  position: sticky;
  top: 104px;
}

.ac-home-argument-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ac-home-argument span {
  display: inline-flex;
  width: 40px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #0052e0;
  background: #eef6ff;
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 900;
}

.ac-home-projects {
  padding-top: clamp(42px, 5vw, 62px);
  padding-bottom: clamp(42px, 5vw, 64px);
  background: #f5f9ff;
  border-top: 1px solid #dbe5f0;
  border-bottom: 1px solid #dbe5f0;
}

.ac-home-case {
  min-height: 142px;
}

.ac-home-case h3 {
  margin-top: 16px;
}

.ac-home-section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.ac-home-tech {
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(42px, 5.2vw, 64px);
}

.ac-home-tech__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 0.45fr);
  gap: clamp(22px, 3.2vw, 40px);
  align-items: center;
  padding: clamp(22px, 2.8vw, 32px);
  background:
    linear-gradient(120deg, #061a36 0%, #08274c 60%, #0a61d8 100%);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(7, 22, 32, 0.16);
}

.ac-home-tech__copy h2,
.ac-home-tech__copy p {
  color: #ffffff;
}

.ac-home-tech__copy p {
  max-width: 780px;
  margin-right: 0;
  margin-left: 0;
  color: #d8e8f8;
}

.ac-home-tech__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.ac-home-tech__proof {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.ac-home-tech__proof article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 9px 0;
  border-top: 1px solid rgba(216, 227, 234, 0.18);
}

.ac-home-tech__proof span {
  display: inline-flex;
  width: 30px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #8fc6ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
}

.ac-home-tech__proof strong {
  display: block;
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.25;
}

.ac-home-tech__proof p {
  grid-column: 2;
  margin: -4px 0 0;
  color: #c6d9ee;
  font-size: 0.92rem;
  line-height: 1.52;
}

.ac-home-tech__visual {
  display: grid;
  gap: 14px;
}

.ac-home-tech__showcase {
  display: grid;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(216, 227, 234, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 22, 32, 0.18);
}

.ac-home-tech__main,
.ac-home-tech__strip img {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(216, 227, 234, 0.78);
  border-radius: 7px;
}

.ac-home-tech__main img {
  width: 100%;
  height: clamp(150px, 12.5vw, 190px);
  object-fit: cover;
}

.ac-home-tech__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ac-home-tech__strip img {
  width: 100%;
  height: clamp(68px, 6vw, 82px);
  object-fit: cover;
}

.ac-home-tech__brand {
  display: grid;
  gap: 8px;
  align-items: center;
  justify-items: start;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid rgba(216, 227, 234, 0.78);
  border-radius: 8px;
}

.ac-home-tech__brand span {
  color: #4b6074;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ac-home-tech__brand img {
  width: min(100%, 128px);
  height: auto;
}

.ac-home-final {
  padding-top: 0;
}

.ac-home-final__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(360px, 0.52fr);
  gap: clamp(22px, 3.6vw, 48px);
  align-items: center;
  padding: clamp(22px, 3.2vw, 36px);
  background: #eef6ff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.ac-home-final__panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

.ac-home-final__panel p {
  max-width: 760px;
  margin-right: 0;
  margin-left: 0;
}

.ac-home-final__actions {
  justify-content: flex-end;
  margin-top: 0;
}

.ac-home-final__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  padding: clamp(16px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(196, 215, 235, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.1);
}

.ac-home-final__form label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.ac-home-final__form span {
  color: #24415f;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
}

.ac-home-final__form input:not([type="checkbox"]),
.ac-home-final__form textarea {
  width: 100%;
  min-width: 0;
  color: #061a36;
  background: #ffffff;
  border: 1px solid rgba(123, 166, 225, 0.42);
  border-radius: 7px;
  font: inherit;
  font-size: 0.92rem;
}

.ac-home-final__form input:not([type="checkbox"]) {
  height: 42px;
  padding: 0 12px;
}

.ac-home-final__form textarea {
  min-height: 72px;
  padding: 10px 12px;
  resize: vertical;
}

.ac-home-final__form input:not([type="checkbox"]):focus,
.ac-home-final__form textarea:focus {
  border-color: rgba(0, 82, 224, 0.64);
  box-shadow: 0 0 0 3px rgba(0, 82, 224, 0.1);
  outline: 0;
}

.ac-home-final__message,
.ac-home-final__form .privacy-check,
.ac-home-final__form .privacy-first-layer,
.ac-home-final__form button {
  grid-column: 1 / -1;
}

.ac-home-final__form .privacy-check {
  margin: 2px 0 0;
  color: #17324f;
  font-size: 0.78rem;
  line-height: 1.35;
}

.ac-home-final__form .privacy-check input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 1px;
  padding: 0;
}

.ac-home-final__form .privacy-first-layer {
  margin: -2px 0 0;
  padding: 10px 12px;
  background: #fbfdff;
  border-color: #e2ebf3;
}

.ac-home-final__form .privacy-first-layer strong {
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.ac-home-final__form .privacy-first-layer p {
  color: #465766;
  font-size: 0.78rem;
  line-height: 1.42;
}

.ac-home-final__form button {
  width: 100%;
  min-height: 44px;
}

.ac-home-editorial {
  padding-top: clamp(42px, 4.8vw, 62px);
  padding-bottom: clamp(42px, 4.8vw, 62px);
  background: #ffffff;
}

.ac-home-distributor {
  padding-top: clamp(30px, 4vw, 48px);
  padding-bottom: clamp(30px, 4vw, 48px);
  border-top: 1px solid rgba(216, 227, 234, 0.78);
  border-bottom: 1px solid rgba(216, 227, 234, 0.78);
}

.ac-home-distributor + .ac-home-final {
  padding-top: clamp(30px, 4vw, 46px);
}

.ac-home-distributor .access-brand-trust-panel {
  max-width: 1080px;
  padding: clamp(24px, 3.2vw, 38px) clamp(20px, 3.6vw, 42px);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(20, 48, 84, 0.1);
}

.ac-home-distributor .access-brand-logo-card img {
  width: min(100%, 220px);
}

.ac-home-distributor .access-brand-trust-intro h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
}

.ac-home-distributor .access-brand-trust-intro p {
  max-width: 740px;
  font-size: clamp(0.96rem, 1vw, 1.04rem);
}

.ac-home-distributor .access-brand-trust-grid {
  width: min(100%, 760px);
}

.ac-home-distributor .access-brand-trust-grid article {
  min-height: 82px;
}

.ac-home-distributor .access-brand-trust-icon {
  width: clamp(46px, 4.3vw, 56px);
  height: clamp(46px, 4.3vw, 56px);
  margin-bottom: 10px;
}

.ac-home-service--tint,
.ac-home-projects--compact {
  background: #f5f9ff;
}

.ac-home-method {
  padding-top: clamp(34px, 4.2vw, 52px);
  padding-bottom: clamp(34px, 4.2vw, 52px);
}

.ac-home-method__panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.39fr) minmax(0, 0.61fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(135deg, #061a36 0%, #08274c 64%, #0a4fb0 100%);
  border: 1px solid rgba(216, 227, 234, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 62px rgba(7, 22, 32, 0.15);
}

.ac-home-method__intro h2 {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.95rem, 2.8vw, 2.85rem);
  font-weight: 860;
  line-height: 1.06;
}

.ac-home-method__intro p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #d8e8f8;
  font-size: 1rem;
  line-height: 1.68;
}

.ac-home-service__eyebrow,
.ac-home-method .ac-home-service__number {
  display: inline-flex;
  margin-bottom: 16px;
  color: #0052e0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ac-home-method .ac-home-service__eyebrow,
.ac-home-method .ac-home-service__number {
  color: #8fc6ff;
}

.ac-home-method__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 8px;
}

.ac-home-method__steps article {
  position: relative;
  min-width: 0;
  padding: 0 18px 0 0;
}

.ac-home-method__steps article::before {
  position: absolute;
  top: 5px;
  right: 18px;
  left: 30px;
  height: 1px;
  content: "";
  background: rgba(216, 227, 234, 0.28);
}

.ac-home-method__steps article:last-child::before {
  content: none;
}

.ac-home-method__steps span {
  display: inline-flex;
  width: 11px;
  height: 11px;
  align-items: center;
  justify-content: center;
  background: #0052e0;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(0, 82, 224, 0.16);
}

.ac-home-method__steps h3 {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.ac-home-method__steps p {
  margin: 8px 0 0;
  color: #c6d9ee;
  font-size: 0.92rem;
  line-height: 1.5;
}

.ac-home-service__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(360px, 0.52fr);
  gap: clamp(28px, 4.4vw, 64px);
  align-items: center;
}

.ac-home-service--reverse .ac-home-service__copy {
  order: 2;
}

.ac-home-service--reverse .ac-home-service__media,
.ac-home-service--reverse .ac-home-service__media-stack {
  order: 1;
}

.ac-home-service__copy {
  min-width: 0;
}

.ac-home-service__number {
  display: inline-flex;
  margin-bottom: 16px;
  color: #0052e0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ac-home-service__copy h2,
.ac-home-why__editorial h2,
.ac-home-projects__intro h2 {
  max-width: 760px;
  margin: 0;
  color: #061a36;
  font-size: clamp(1.95rem, 2.8vw, 2.95rem);
  font-weight: 860;
  line-height: 1.06;
}

.ac-home-service__copy p,
.ac-home-why__editorial p,
.ac-home-projects__intro p {
  max-width: 690px;
  margin: 16px 0 0;
  color: #263f59;
  font-size: 1.02rem;
  line-height: 1.68;
}

.ac-home-service__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ac-home-service__points li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  color: #17324f;
  font-size: 0.94rem;
  line-height: 1.5;
}

.ac-home-service__points li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #0052e0;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(0, 82, 224, 0.08);
}

.ac-home-service__copy .access-text-link {
  margin-top: 22px;
}

.ac-home-service__button {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  color: #061a36;
  background: #ffffff;
  border-color: rgba(7, 34, 64, 0.22);
  border-radius: 7px;
  font-size: 0.9rem;
  box-shadow: none;
}

.ac-home-service__button:hover,
.ac-home-service__button:focus-visible {
  color: #0052e0;
  background: #ffffff;
  border-color: rgba(0, 82, 224, 0.34);
  box-shadow: 0 10px 24px rgba(20, 48, 84, 0.08);
}

.ac-home-service__media,
.ac-home-service__media-stack figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #eef6ff;
  border: 1px solid rgba(216, 227, 234, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(20, 48, 84, 0.12);
}

.ac-home-service__media img,
.ac-home-service__media-stack img {
  display: block;
  width: 100%;
  height: clamp(250px, 24vw, 380px);
  object-fit: cover;
}

.ac-home-service__media-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 12px;
  align-items: end;
}

.ac-home-service__media-stack .ac-home-service__media--main {
  grid-row: 1 / span 2;
}

.ac-home-service__media-stack .ac-home-service__media--detail img {
  height: 148px;
}

.ac-home-service__media-stack--qrdtime {
  position: relative;
  display: block;
  min-height: clamp(340px, 32vw, 470px);
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 82, 224, 0.12), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(143, 198, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #edf5ff 100%);
  border: 1px solid rgba(196, 215, 235, 0.78);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.12);
}

.ac-home-service__media-stack--qrdtime::before {
  position: absolute;
  right: 10%;
  bottom: 9%;
  left: 9%;
  height: 20%;
  content: "";
  background: rgba(6, 26, 54, 0.09);
  border-radius: 999px;
  filter: blur(20px);
}

.ac-home-service__media-stack--qrdtime .ac-home-service__media {
  position: absolute;
  z-index: 1;
  display: block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(196, 215, 235, 0.78);
  box-shadow: 0 22px 48px rgba(20, 48, 84, 0.14);
}

.ac-home-service__media-stack--qrdtime .ac-home-service__media--main {
  top: clamp(26px, 3.5vw, 44px);
  right: clamp(64px, 8vw, 110px);
  left: clamp(18px, 2.8vw, 34px);
  border-radius: 10px;
  animation: ac-home-qrdtime-float 6.8s ease-in-out infinite;
}

.ac-home-service__media-stack--qrdtime .ac-home-service__media--main img {
  height: clamp(210px, 20vw, 310px);
  object-fit: cover;
  object-position: left top;
}

.ac-home-service__media-stack--qrdtime .ac-home-service__media--phone {
  right: clamp(14px, 2.2vw, 26px);
  bottom: clamp(18px, 2.6vw, 34px);
  width: clamp(132px, 12.8vw, 190px);
  border-radius: 18px;
  animation: ac-home-qrdtime-phone-float 5.8s ease-in-out -1.5s infinite;
}

.ac-home-service__media-stack--qrdtime .ac-home-service__media--phone img {
  height: auto;
  object-fit: cover;
}

@keyframes ac-home-qrdtime-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes ac-home-qrdtime-phone-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0.8deg);
  }

  50% {
    transform: translate3d(-5px, -16px, 0) rotate(-1deg);
  }
}

.ac-home-service--access .ac-home-service__media-stack {
  position: relative;
  gap: 0;
  min-height: clamp(360px, 31vw, 460px);
  padding: clamp(22px, 3.2vw, 38px);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 26%, rgba(7, 91, 232, 0.1), transparent 32%),
    radial-gradient(circle at 76% 76%, rgba(143, 198, 255, 0.18), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #edf5ff 100%);
  border: 1px solid rgba(196, 215, 235, 0.78);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.12);
}

.ac-home-service--access .ac-home-service__media-stack::before {
  position: absolute;
  right: 8%;
  bottom: 12%;
  left: 10%;
  height: 24%;
  content: "";
  background: rgba(6, 26, 54, 0.08);
  border-radius: 999px;
  filter: blur(18px);
}

.ac-home-service--access .ac-home-service__media-stack figure {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ac-home-service--access .ac-home-service__media-stack img {
  height: auto;
  max-height: clamp(260px, 26vw, 380px);
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 24px 28px rgba(12, 31, 55, 0.2));
}

.ac-home-service--access .ac-home-service__media--main img {
  width: min(100%, 430px);
}

.ac-home-service--access .ac-home-service__media--detail img {
  width: min(100%, 230px);
}

@keyframes ac-home-product-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.ac-home-service--access .ac-home-service__media--main {
  animation: ac-home-product-float 8s ease-in-out infinite;
}

.ac-home-service--access .ac-home-service__media--detail {
  animation: ac-home-product-float 7s ease-in-out -2.2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ac-home-service__media-stack--qrdtime .ac-home-service__media--main,
  .ac-home-service__media-stack--qrdtime .ac-home-service__media--phone,
  .ac-home-service--access .ac-home-service__media--main,
  .ac-home-service--access .ac-home-service__media--detail {
    animation: none;
  }
}

.ac-home-connected {
  padding-top: clamp(42px, 4.8vw, 60px);
  padding-bottom: clamp(42px, 4.8vw, 60px);
  background: #f5f9ff;
  border-top: 1px solid #dbe5f0;
  border-bottom: 1px solid #dbe5f0;
}

.ac-home-connected__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(360px, 0.52fr);
  gap: clamp(28px, 4.4vw, 60px);
  align-items: center;
}

.ac-home-connected__copy h2 {
  max-width: 760px;
  margin: 0;
  color: #061a36;
  font-size: clamp(1.95rem, 2.75vw, 2.9rem);
  font-weight: 860;
  line-height: 1.06;
}

.ac-home-connected__copy p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #263f59;
  font-size: 1.02rem;
  line-height: 1.68;
}

.ac-home-connected__copy .access-text-link {
  margin-top: 24px;
}

.ac-home-connected__media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(216, 227, 234, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(20, 48, 84, 0.12);
}

.ac-home-connected__media img {
  display: block;
  width: 100%;
  height: clamp(240px, 22vw, 340px);
  object-fit: cover;
}

.ac-home-why--editorial {
  padding-top: clamp(50px, 5.8vw, 76px);
  padding-bottom: clamp(50px, 5.8vw, 76px);
  background: #061a36;
}

.ac-home-why__editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}

.ac-home-why__editorial h2,
.ac-home-why__editorial p {
  color: #ffffff;
}

.ac-home-why__editorial p {
  color: #d8e8f8;
}

.ac-home-why__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(216, 227, 234, 0.2);
}

.ac-home-why__list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(216, 227, 234, 0.2);
}

.ac-home-why__list span {
  color: #8fc6ff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ac-home-why__list h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.ac-home-why__list p {
  margin: 0;
  color: #c6d9ee;
  font-size: 0.94rem;
  line-height: 1.55;
}

.ac-home-projects--compact {
  padding-top: clamp(38px, 4.6vw, 56px);
  padding-bottom: clamp(40px, 4.8vw, 58px);
  border-top: 1px solid #dbe5f0;
  border-bottom: 1px solid #dbe5f0;
}

.ac-home-projects__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 3.6vw, 48px);
  align-items: start;
}

.ac-home-projects__intro {
  position: sticky;
  top: 104px;
}

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

.ac-home-projects__cases article {
  min-width: 0;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.ac-home-projects__cases h3 {
  margin: 0;
  color: #061a36;
  font-size: 1.06rem;
  line-height: 1.25;
}

.ac-home-projects__cases p {
  margin: 10px 0 0;
  color: #263f59;
  font-size: 0.94rem;
  line-height: 1.55;
}

.ac-home-tech--editorial .ac-home-tech__panel {
  background:
    linear-gradient(120deg, #061a36 0%, #08274c 70%, #0a4fb0 100%);
}

.ac-home-tech--editorial .ac-home-tech__showcase {
  padding: 8px;
}

.ac-home-tech--editorial .ac-home-tech__main img {
  height: clamp(220px, 20vw, 286px);
}

.ac-home-tech--compact {
  padding-top: clamp(26px, 3.4vw, 42px);
  padding-bottom: clamp(30px, 3.8vw, 46px);
}

.ac-home-tech--compact .ac-home-tech__panel {
  grid-template-columns: minmax(0, 0.68fr) minmax(240px, 0.32fr);
  padding: clamp(20px, 2.5vw, 28px);
  box-shadow: 0 20px 46px rgba(7, 22, 32, 0.13);
}

.ac-home-tech--compact .ac-home-tech__copy h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
}

.ac-home-tech--compact .ac-home-tech__copy p {
  max-width: 860px;
  font-size: 0.98rem;
  line-height: 1.62;
}

.ac-home-tech__support {
  display: grid;
  gap: 12px;
}

.ac-home-tech__tags {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ac-home-tech__tags li {
  padding: 9px 11px;
  color: #d8e8f8;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(216, 227, 234, 0.14);
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 760;
}

@media (min-width: 941px) {
  .ac-home-service--access .ac-home-service__layout {
    grid-template-columns: minmax(360px, 0.52fr) minmax(0, 0.48fr);
  }

  .ac-home-service--access .ac-home-service__media-stack {
    grid-template-columns: minmax(0, 0.62fr) minmax(190px, 0.38fr);
    transform: translateY(-4px);
  }

  .ac-home-service--access .ac-home-service__media--main img {
    object-fit: contain;
  }

  .ac-home-service--access .ac-home-service__media--detail img {
    height: clamp(250px, 23vw, 360px);
    object-fit: contain;
  }
}

.ac-home-service--credentials .ac-home-service__media {
  box-shadow: 0 18px 48px rgba(20, 48, 84, 0.09);
}

.ac-home-service--printers .ac-home-service__media img {
  object-position: 48% center;
}

@media (max-width: 1180px) {
  .ac-home-card-grid--four,
  .ac-home-card-grid--scenarios,
  .ac-home-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ac-home-final__panel {
    grid-template-columns: 1fr;
  }

  .ac-home-final__form {
    max-width: 680px;
  }

  .ac-home-final__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 940px) {
  .ac-home-hero__grid,
  .ac-home-why__grid,
  .ac-home-tech__panel {
    grid-template-columns: 1fr;
  }

  .ac-home-service__layout,
  .ac-home-why__editorial,
  .ac-home-projects__layout,
  .ac-home-method__panel,
  .ac-home-connected__layout,
  .ac-home-tech__panel {
    grid-template-columns: 1fr;
  }

  .ac-home-method__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .ac-home-method__steps article::before {
    content: none;
  }

  .ac-home-service--reverse .ac-home-service__copy,
  .ac-home-service--reverse .ac-home-service__media,
  .ac-home-service--reverse .ac-home-service__media-stack {
    order: initial;
  }

  .ac-home-projects__intro {
    position: static;
  }

  .ac-home-why__copy {
    position: static;
  }

  .ac-home-hero__media {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .ac-home-hero {
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .ac-home-hero--photo {
    padding-top: 26px;
    padding-bottom: 28px;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 56%, rgba(239, 246, 255, 0.5) 100%),
      url("/assets/hero/qualica-rd-vega-hero-home-wide.jpg") 58% center / cover;
  }

  .ac-home-hero--photo .ac-home-hero__copy {
    padding-top: 0;
    padding-bottom: 0;
  }

  .ac-home-hero__copy h1 {
    font-size: 2.28rem;
    line-height: 1.04;
  }

  .ac-home-hero__copy p,
  .ac-home-heading p,
  .ac-home-why__copy p,
  .ac-home-tech__copy p,
  .ac-home-final__panel p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .ac-home-hero__actions,
  .ac-home-hero__actions .button,
  .ac-home-final__actions,
  .ac-home-final__actions .button {
    width: 100%;
  }

  .ac-home-hero--photo .ac-home-hero__copy p {
    margin-top: 18px;
  }

  .ac-home-hero--photo .ac-home-hero__actions {
    gap: 10px;
    margin-top: 20px;
  }

  .ac-home-hero--photo .ac-home-microcopy {
    margin-top: 16px !important;
  }

  .ac-home-hero__quicklinks {
    gap: 7px;
    margin-top: 16px;
  }

  .ac-home-hero__quicklinks a {
    min-height: 32px;
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .ac-home-card-grid--four,
  .ac-home-card-grid--three,
  .ac-home-card-grid--scenarios,
  .ac-home-solution-grid,
  .ac-home-argument-grid,
  .ac-home-service__points,
  .ac-home-projects__cases {
    grid-template-columns: 1fr;
  }

  .ac-home-hero__bar {
    grid-template-columns: 1fr;
  }

  .ac-home-card,
  .ac-home-case,
  .ac-home-argument,
  .ac-home-solution div,
  .ac-home-tech__panel,
  .ac-home-final__panel {
    padding: 20px;
  }

  .ac-home-hero__media img {
    max-height: 260px;
    aspect-ratio: 4 / 3;
    object-position: 58% center;
  }

  .ac-home-solution img {
    height: 148px;
  }

  .ac-home-resolve,
  .ac-home-main-solutions,
  .ac-home-why,
  .ac-home-projects,
  .ac-home-editorial,
  .ac-home-method,
  .ac-home-connected,
  .ac-home-tech {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .ac-home-service__media img,
  .ac-home-service__media-stack img,
  .ac-home-connected__media img {
    height: 230px;
  }

  .ac-home-service__media-stack {
    grid-template-columns: 1fr;
  }

  .ac-home-service__media-stack .ac-home-service__media--main {
    grid-row: auto;
  }

  .ac-home-service__media-stack--qrdtime {
    min-height: 440px;
    padding: 18px;
  }

  .ac-home-service__media-stack--qrdtime .ac-home-service__media--main {
    top: 18px;
    right: 18px;
    left: 18px;
  }

  .ac-home-service__media-stack--qrdtime .ac-home-service__media--main img {
    height: 190px;
  }

  .ac-home-service__media-stack--qrdtime .ac-home-service__media--phone {
    right: 50%;
    bottom: 20px;
    width: min(62%, 170px);
    transform: translateX(50%);
    animation-name: ac-home-qrdtime-phone-float-mobile;
  }

  .ac-home-service__media-stack--qrdtime .ac-home-service__media--phone img {
    height: auto;
  }

  @keyframes ac-home-qrdtime-phone-float-mobile {
    0%,
    100% {
      transform: translateX(50%) translateY(0);
    }

    50% {
      transform: translateX(50%) translateY(-12px);
    }
  }

  .ac-home-service--access .ac-home-service__media-stack {
    min-height: 0;
    padding: 22px 18px;
  }

  .ac-home-service--access .ac-home-service__media-stack img {
    max-height: 230px;
  }

  .ac-home-service--access .ac-home-service__media--detail img {
    width: min(100%, 190px);
  }

  .ac-home-service__media-stack .ac-home-service__media--detail img {
    height: 150px;
  }

  .ac-home-final__form {
    grid-template-columns: 1fr;
  }

  .ac-home-why__list article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .ac-home-why__list p {
    grid-column: 2;
  }

  .ac-home-tech__actions,
  .ac-home-tech__actions .button {
    width: 100%;
  }

  .ac-home-tech__brand {
    padding: 16px;
  }

  .ac-home-tech__copy p {
    padding-right: 42px;
  }

  .ac-home-tech__proof p {
    padding-right: 42px;
  }

  .ac-home-tech__main img {
    height: 170px;
  }

  .ac-home-tech__showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ac-home-tech--editorial .ac-home-tech__showcase {
    grid-template-columns: 1fr;
  }

  .ac-home-tech--editorial .ac-home-tech__main img {
    height: 190px;
  }

  .ac-home-tech__strip {
    display: contents;
  }

  .ac-home-tech__strip img {
    height: 96px;
  }
}

@media (max-width: 520px) {
  .ac-home-method__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .home-problem-grid,
  .home-cases-grid,
  .home-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-focus-hero-grid,
  .home-solution-block,
  .home-dual-panel,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-focus-media {
    order: 2;
    margin-top: 16px;
  }

  .home-focus-copy {
    order: 1;
  }
}

@media (max-width: 640px) {
  .home-focus-hero {
    padding: 24px 0 26px;
  }

  .home-image-placeholder img {
    max-height: 210px;
  }

  .home-microtags {
    margin-top: 14px;
  }

  .home-focus-copy h1 {
    font-size: 2.12rem;
  }

  .home-problems-section {
    padding-top: 34px;
  }

  .home-focus-copy .hero-actions,
  .home-focus-copy .button {
    width: 100%;
  }

  .home-problem-grid,
  .home-cases-grid,
  .home-steps-grid {
    grid-template-columns: 1fr;
  }

  .home-solution-block,
  .home-dual-panel,
  .home-seo-copy,
  .home-short-form {
    padding: 22px;
  }
}

@media (max-width: 1180px) {
  .time-quick-list,
  .time-scenario-grid,
  .time-analysis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-quick-list li,
  .time-quick-list li:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .time-hero-grid,
  .time-software-panel,
  .qrdtime-organize-layout,
  .qrdtime-growth-panel {
    grid-template-columns: 1fr;
  }

  .time-hero-media {
    min-height: 280px;
    order: 2;
  }

  .time-hero-copy {
    order: 1;
  }

  .time-hero-media img {
    max-height: 300px;
  }

  .time-software-list {
    grid-template-columns: 1fr;
  }

  .qrdtime-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .time-module-grid,
  .time-rollout-list,
  .qrdtime-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .time-hero {
    padding-top: 42px;
  }

  .time-hero-copy h1 {
    font-size: 2.45rem;
  }

  .time-hero-copy .hero-actions,
  .time-hero-copy .button {
    width: 100%;
  }

  .time-quick-list,
  .time-scenario-grid,
  .time-analysis-grid,
  .time-capture-row,
  .time-module-grid,
  .qrdtime-feature-grid,
  .time-rollout-list,
  .time-flow-diagram {
    grid-template-columns: 1fr;
  }

  .qrdtime-gallery-copy {
    padding: 14px;
  }

  .qrdtime-gallery-copy h3 {
    font-size: 0.98rem;
  }

  .qrdtime-gallery-copy p {
    font-size: 0.86rem;
  }

  .qrdtime-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-mockup,
  .time-calendar-mockup,
  .time-listings-mockup,
  .time-flow-diagram,
  .qrdtime-capture {
    min-height: 250px;
    padding: 18px;
  }

  .qrdtime-capture {
    min-height: 0;
    padding: 0;
  }

  .qrdtime-mobile-capture {
    max-width: 320px;
  }

  .mock-phone {
    position: static;
    width: 100%;
    min-height: 150px;
    margin-top: 18px;
  }

  .mock-dashboard-grid,
  .time-listings-mockup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-quick-list li {
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid #dbe5f0;
  }

  .time-quick-list li:first-child {
    border-top: 0;
  }

  .time-method-card,
  .time-scenario-card,
  .time-software-panel {
    padding: 22px;
  }
}

.critical-note {
  padding: 24px 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(224, 36, 43, 0.2), rgba(224, 36, 43, 0)),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.critical-note strong {
  display: block;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.critical-note p {
  max-width: 1050px;
  margin: 10px 0 0;
  color: #dbe8ee;
}

.credentials-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 144, 215, 0.12), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.credentials-hero-media {
  min-height: 390px;
  overflow: hidden;
  padding: 0;
}

.credentials-hero-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.credentials-principle-section,
.credentials-pvc-section {
  background: #ffffff;
}

.credentials-critical-section {
  padding-top: 0;
  padding-bottom: clamp(36px, 5vw, 70px);
  background: #ffffff;
}

.credentials-options-section,
.credentials-visual-section,
.credentials-system-section,
.credentials-review-section {
  background: #f7faff;
}

.credentials-type-card {
  min-height: 250px;
}

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

.credentials-principle-grid .time-method-card {
  min-height: 220px;
}

.credentials-visual-section {
  background: #ffffff;
}

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

.credentials-visual-card {
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: center;
  min-height: 210px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 48, 84, 0.055);
}

.credentials-visual-media {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-visual-media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.credentials-visual-card h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.08rem;
  line-height: 1.18;
}

.credentials-visual-card p {
  margin: 10px 0 0;
  color: #213859;
  font-size: 0.92rem;
  line-height: 1.55;
}

.credentials-pvc-panel h2 {
  margin: 8px 0 0;
  color: #071a42;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.08;
}

.credentials-pvc-panel p {
  margin-top: 18px;
}

.credentials-pvc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pvc-printers-hero .access-breadcrumbs {
  margin-bottom: 26px;
}

.pvc-printers-hero-media img {
  object-position: center;
}

.pvc-printers-intro-section,
.pvc-printers-types-section,
.pvc-printers-consumables-section {
  background: #ffffff;
}

.pvc-printers-decision-section,
.pvc-printers-choose-section,
.pvc-printers-models-section,
.pvc-printers-rfid-section,
.pvc-printers-review-section {
  background: #f7faff;
}

.pvc-printers-use-card,
.pvc-printers-list-panel {
  align-self: stretch;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(20, 48, 84, 0.06);
}

.pvc-printers-use-card h3 {
  margin: 0 0 18px;
  color: #071a42;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.pvc-printers-note {
  margin-top: 26px;
}

.pvc-printers-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pvc-printers-choice-card {
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 48, 84, 0.055);
}

.pvc-printers-choice-card--featured {
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.1), rgba(0, 144, 215, 0)),
    #ffffff;
  border-color: rgba(0, 102, 255, 0.24);
}

.pvc-printers-choice-card h3,
.pvc-printers-check-panel h2 {
  margin: 8px 0 0;
  color: #071a42;
  line-height: 1.12;
}

.pvc-printers-choice-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.pvc-printers-choice-card p,
.pvc-printers-check-panel p {
  margin: 14px 0 0;
}

.pvc-printers-choice-card .access-check-list {
  margin-top: 20px;
}

.pvc-printers-check-panel h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
}

.pvc-printers-type-grid .time-method-card {
  min-height: 245px;
}

.pvc-printers-model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pvc-printers-model-grid .credentials-visual-card {
  min-height: 230px;
}

.pvc-printers-rfid-note {
  margin-bottom: 22px;
}

.pvc-printers-rfid-grid {
  margin-top: 0;
}

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

.pvc-printers-back-link {
  display: inline-flex;
  margin-top: 16px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pvc-printers-final-cta .cta-panel p {
  max-width: 760px;
}

.credentials-mid-cta {
  padding-top: clamp(42px, 5vw, 72px);
}

.credentials-hero {
  min-height: clamp(560px, 70vh, 720px);
  display: flex;
  align-items: center;
  padding-bottom: clamp(46px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 144, 215, 0.2), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.credentials-hero .landing-hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}

.credentials-hero h1 {
  max-width: 820px;
  font-size: clamp(3.05rem, 4.7vw, 5.4rem);
  line-height: 0.98;
}

.credentials-hero p {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  line-height: 1.72;
}

.credentials-hero-media {
  min-height: 0;
  height: clamp(360px, 35vw, 510px);
  background: #ffffff;
  border: 1px solid rgba(166, 194, 218, 0.72);
  border-radius: 8px;
  box-shadow: 0 28px 74px rgba(12, 42, 74, 0.16);
}

.credentials-hero-media img {
  object-fit: cover;
  object-position: center;
}

.credentials-hero-kit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 38% 52%, rgba(0, 144, 215, 0.18), transparent 34%),
    linear-gradient(135deg, #f9fcff 0%, #eef6ff 52%, #ffffff 100%);
}

.credentials-hero-kit::before,
.credentials-hero-kit::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.credentials-hero-kit::before {
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(130, 165, 199, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(rgba(7, 26, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 66, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 76%);
}

.credentials-hero-kit::after {
  right: -12%;
  bottom: -28%;
  width: 62%;
  aspect-ratio: 1;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 214, 166, 0.18), transparent 62%);
}

.credentials-kit-stage {
  position: absolute;
  inset: clamp(16px, 3vw, 32px);
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(149, 181, 213, 0.38);
}

.credentials-hero-kit img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
}

.credentials-kit-printer {
  position: absolute;
  right: clamp(8px, 2vw, 28px);
  top: clamp(8px, 3vw, 30px);
  width: min(46%, 360px);
  filter: drop-shadow(0 32px 42px rgba(15, 46, 82, 0.18));
}

.credentials-hero-kit .credentials-kit-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.08);
}

.credentials-kit-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.credentials-kit-card {
  position: absolute;
  display: grid;
  align-content: start;
  aspect-ratio: 1.58;
  color: #071a42;
  background: linear-gradient(140deg, #ffffff 0%, #edf6ff 100%);
  border: 1px solid rgba(149, 181, 213, 0.55);
  border-radius: 8px;
  box-shadow: 0 26px 54px rgba(15, 46, 82, 0.18);
}

.credentials-kit-card--employee {
  left: 5%;
  bottom: 6%;
  z-index: 2;
  width: min(29%, 218px);
  padding: clamp(14px, 1.7vw, 20px);
  transform: rotate(-3deg);
}

.credentials-kit-card--employee span,
.credentials-kit-card--employee strong,
.credentials-kit-card--employee small,
.credentials-kit-card--employee em {
  display: block;
  font-style: normal;
}

.credentials-kit-card--employee span {
  color: var(--aceris-blue-dark);
  font-size: 0.76rem;
  font-weight: 950;
}

.credentials-kit-card--employee strong {
  margin-top: auto;
  font-size: clamp(0.9rem, 1.35vw, 1.18rem);
  line-height: 1.04;
}

.credentials-kit-card--employee small,
.credentials-kit-card--employee em {
  margin-top: 5px;
  color: #5a6e86;
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 800;
}

.credentials-kit-card--employee i {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  background:
    linear-gradient(90deg, #071a42 5px, transparent 5px) 0 0 / 11px 11px,
    linear-gradient(#071a42 5px, transparent 5px) 0 0 / 11px 11px;
  opacity: 0.15;
}

.credentials-kit-card--blank {
  left: 31%;
  top: 35%;
  width: min(26%, 190px);
  transform: rotate(2deg);
}

.credentials-kit-fob {
  position: absolute;
  right: 19%;
  bottom: 10%;
  width: min(17%, 124px);
  filter: drop-shadow(0 20px 24px rgba(15, 46, 82, 0.2));
}

.credentials-kit-band {
  position: absolute;
  left: 7%;
  bottom: 7%;
  width: min(42%, 318px);
  filter: drop-shadow(0 24px 30px rgba(15, 46, 82, 0.16));
}

.credentials-kit-stack {
  position: absolute;
  right: 32%;
  bottom: 12%;
  width: min(20%, 150px);
  height: 66px;
}

.credentials-kit-stack span {
  position: absolute;
  inset: auto 0 0;
  height: 46px;
  border: 1px solid rgba(149, 181, 213, 0.56);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 46, 82, 0.11);
}

.credentials-kit-stack span:nth-child(1) {
  transform: translateY(-16px) rotate(-4deg);
}

.credentials-kit-stack span:nth-child(2) {
  transform: translateY(-8px) rotate(2deg);
}

.credentials-kit-note {
  position: absolute;
  right: 6%;
  bottom: 6%;
  z-index: 2;
  max-width: 245px;
  padding: 12px 14px;
  color: #071a42;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(149, 181, 213, 0.48);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(15, 46, 82, 0.13);
  backdrop-filter: blur(10px);
}

.credentials-product-section {
  background: #ffffff;
  padding-top: clamp(48px, 6vw, 82px);
}

.credentials-product-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.credentials-product-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 144, 215, 0.18), transparent 42%),
    #f5faff;
  border: 1px solid rgba(183, 207, 227, 0.9);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(11, 43, 76, 0.12);
}

.credentials-product-media img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  object-position: center;
}

.credentials-product-copy h2,
.credentials-compatibility-copy h2,
.credentials-pvc-copy h2 {
  margin: 14px 0 0;
  color: #071a42;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.credentials-product-copy p,
.credentials-compatibility-copy p,
.credentials-pvc-copy p {
  max-width: 710px;
  margin: 20px 0 0;
  color: #213859;
  font-size: 1.02rem;
  line-height: 1.75;
}

.credentials-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.credentials-product-list article {
  padding: 18px;
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-product-list strong,
.credentials-product-list span {
  display: block;
}

.credentials-product-list strong {
  color: #071a42;
  font-size: 0.95rem;
  line-height: 1.2;
}

.credentials-product-list span {
  margin-top: 8px;
  color: #40536c;
  font-size: 0.88rem;
  line-height: 1.5;
}

.credentials-compatibility-section {
  padding-top: clamp(42px, 6vw, 82px);
  padding-bottom: clamp(42px, 6vw, 82px);
  background: #ffffff;
}

.credentials-compatibility-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 8%, rgba(0, 144, 215, 0.24), transparent 34%),
    linear-gradient(135deg, #071620, #0b2a48);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(7, 22, 32, 0.22);
}

.credentials-compatibility-panel .section-number {
  color: #dff3ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.credentials-compatibility-copy h2,
.credentials-compatibility-copy p {
  color: #ffffff;
}

.credentials-compatibility-copy p {
  color: #d3e3ef;
}

.credentials-compatibility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials-compatibility-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 16px 16px 44px;
  color: #f5fbff;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.28;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.credentials-compatibility-list li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--aceris-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 144, 215, 0.14);
}

.credentials-options-section {
  padding-top: clamp(60px, 8vw, 104px);
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.credentials-type-grid {
  gap: 14px;
}

.credentials-type-card {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
}

.credentials-system-section {
  background: #ffffff;
}

.credentials-system-section .access-system-grid.access-solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.credentials-system-section .access-system-card {
  min-height: 188px;
  box-shadow: none;
}

.credentials-pvc-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.credentials-pvc-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.48fr) minmax(0, 0.86fr) minmax(280px, 0.66fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 26px 68px rgba(20, 48, 84, 0.1);
}

.credentials-pvc-media {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 144, 215, 0.18), transparent 48%),
    #f5faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-pvc-media img {
  width: min(100%, 300px);
  object-fit: contain;
}

.credentials-pvc-copy h2 {
  max-width: 620px;
}

.credentials-pvc-actions .button-secondary {
  color: var(--aceris-blue-dark);
  background: #eff8ff;
  border-color: rgba(0, 144, 215, 0.2);
}

.credentials-pvc-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials-pvc-list li {
  position: relative;
  padding: 13px 14px 13px 38px;
  color: #213859;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.28;
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-pvc-list li::before {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.credentials-mid-cta .cta-panel {
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 144, 215, 0.24), transparent 34%),
    linear-gradient(135deg, #071620, #10345b);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.credentials-contact-section {
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(60px, 8vw, 96px);
}

.credentials-contact-section .contact-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 4vw, 54px);
}

.credentials-contact-section .contact-copy {
  position: static;
}

.credentials-contact-section .lead-form {
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 20px 52px rgba(7, 22, 32, 0.16);
}

.credentials-contact-section .privacy-first-layer {
  max-height: 118px;
  overflow: auto;
}

@media (max-width: 900px) {
  .credentials-hero {
    min-height: 0;
  }

  .credentials-hero .landing-hero-grid,
  .credentials-product-layout,
  .credentials-compatibility-panel,
  .credentials-pvc-layout,
  .credentials-contact-section .contact-grid {
    grid-template-columns: 1fr;
  }

  .credentials-hero h1 {
    font-size: clamp(2.55rem, 9vw, 4.2rem);
  }

  .credentials-hero-media {
    min-height: 0;
    height: 260px;
  }

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

  .credentials-system-section .access-system-grid.access-solution-grid,
  .credentials-visual-grid {
    grid-template-columns: 1fr;
  }

  .credentials-pvc-layout {
    align-items: stretch;
  }

  .pvc-printers-choice-grid,
  .pvc-printers-model-grid,
  .pvc-printers-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .credentials-tech-card {
    min-height: 0;
    padding: 22px;
  }

  .credentials-tech-visual {
    min-height: 162px;
    margin: -22px -22px 20px;
  }

  .pvc-visual-card--daily,
  .pvc-visual-card--premium {
    width: 68%;
  }

  .tech-printer-mini {
    width: 78px;
    height: 50px;
  }

  .tech-white-stack {
    width: 72px;
  }

  .tech-batch-stack {
    right: 4%;
    width: 168px;
    scale: 0.9;
    transform-origin: right top;
  }

  .credentials-edge-demo {
    grid-template-columns: 1fr;
  }

  .credentials-hero .landing-hero-grid {
    gap: 26px;
  }

  .credentials-hero-media {
    min-height: 0;
    height: 210px;
  }

  .credentials-product-list,
  .credentials-compatibility-list {
    grid-template-columns: 1fr;
  }

  .credentials-product-layout,
  .credentials-compatibility-panel,
  .credentials-pvc-layout {
    gap: 20px;
  }

  .credentials-compatibility-panel,
  .credentials-pvc-layout {
    padding: 22px;
  }

  .credentials-product-media img {
    aspect-ratio: 1;
  }

  .credentials-type-grid {
    grid-template-columns: 1fr;
  }

  .credentials-visual-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .pvc-printers-hero .access-breadcrumbs {
    margin-bottom: 18px;
  }

  .pvc-printers-use-card,
  .pvc-printers-list-panel,
  .pvc-printers-choice-card {
    padding: 20px;
  }

  .pvc-printers-model-grid .credentials-visual-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

.credentials-hero .solution-eyebrow {
  display: none;
}

.credentials-decision-section {
  background: #ffffff;
}

.credentials-decision-layout {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.credentials-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.credentials-decision-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.055);
}

.credentials-decision-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--aceris-blue-dark);
  background: #eff8ff;
  border: 1px solid rgba(0, 144, 215, 0.18);
  border-radius: 8px;
}

.credentials-decision-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credentials-decision-card h3 {
  margin: 22px 0 0;
  color: #071a42;
  font-size: clamp(1.22rem, 1.8vw, 1.58rem);
  line-height: 1.12;
}

.credentials-decision-card p {
  margin: 12px 0 0;
  color: #40536c;
  font-size: 0.98rem;
  line-height: 1.64;
}

.credentials-case-section {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.credentials-case-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.credentials-case-intro {
  position: sticky;
  top: 118px;
}

.credentials-case-intro h2,
.credentials-personalization-copy h2,
.credentials-proposal-copy h2 {
  margin: 14px 0 0;
  color: #071a42;
  font-size: clamp(2.05rem, 3.4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.credentials-case-intro p,
.credentials-personalization-copy p,
.credentials-proposal-copy p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #40536c;
  font-size: 1rem;
  line-height: 1.74;
}

.credentials-case-list {
  display: grid;
  gap: 14px;
}

.credentials-case-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  min-height: 156px;
  padding: clamp(18px, 3vw, 26px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 48, 84, 0.06);
}

.credentials-case-visual {
  display: grid;
  place-items: center;
  height: 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 144, 215, 0.16), transparent 58%),
    #f5faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-case-visual img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.credentials-case-visual--cards {
  position: relative;
}

.credentials-case-visual--cards span {
  position: absolute;
  width: 70px;
  height: 46px;
  background: #ffffff;
  border: 1px solid #c9d9e9;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(20, 48, 84, 0.12);
}

.credentials-case-visual--cards span:first-child {
  transform: translate(-14px, -7px) rotate(-8deg);
}

.credentials-case-visual--cards span:last-child {
  transform: translate(18px, 10px) rotate(7deg);
}

.credentials-case-visual--visitor span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 52px;
  color: #071a42;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  background: #ffffff;
  border: 1px solid #c9d9e9;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 48, 84, 0.12);
}

.credentials-case-copy span {
  display: inline-block;
  color: var(--aceris-blue-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials-case-copy h3 {
  margin: 8px 0 0;
  color: #071a42;
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
  line-height: 1.15;
}

.credentials-case-copy p {
  max-width: 680px;
  margin: 9px 0 0;
  color: #40536c;
  font-size: 0.95rem;
  line-height: 1.58;
}

.credentials-case-row > a {
  align-self: center;
  justify-self: end;
  white-space: nowrap;
  color: var(--aceris-blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.credentials-format-section {
  background: #ffffff;
}

.credentials-format-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.credentials-format-card {
  display: grid;
  grid-template-rows: 164px 1fr;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 144, 215, 0.22), rgba(53, 214, 166, 0.14)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.07);
}

.credentials-format-card img {
  width: 100%;
  height: 100%;
  padding: 18px 20px 10px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 64%, rgba(0, 144, 215, 0.15), transparent 42%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border-bottom: 1px solid rgba(219, 229, 240, 0.78);
}

.credentials-format-card div {
  padding: 18px;
}

.credentials-format-card h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.02rem;
  line-height: 1.18;
}

.credentials-format-card p {
  margin: 10px 0 0;
  color: #40536c;
  font-size: 0.9rem;
  line-height: 1.5;
}

.credentials-format-card span {
  display: block;
  margin-top: 14px;
  color: #071a42;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.credentials-personalization-section {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.credentials-personalization-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.credentials-personalization-copy .button {
  margin-top: 26px;
}

.credentials-card-mockup {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 28% 22%, rgba(0, 144, 215, 0.18), transparent 35%),
    linear-gradient(135deg, #071620, #10345b);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 26px 68px rgba(7, 22, 32, 0.22);
}

.mock-credential {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.58;
  max-width: 420px;
  padding: 28px;
  color: #071a42;
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.1), rgba(53, 214, 166, 0.08)),
    #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(-4deg);
}

.mock-credential::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -44px;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 144, 215, 0.2), transparent 68%);
}

.mock-credential::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 78px;
  width: 66px;
  height: 78px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 34%, rgba(7, 26, 66, 0.32) 0 16%, transparent 17%),
    linear-gradient(180deg, rgba(0, 144, 215, 0.16), rgba(53, 214, 166, 0.12));
  border: 1px solid rgba(149, 181, 213, 0.5);
}

.mock-credential-brand,
.mock-credential strong,
.mock-credential small {
  display: block;
}

.mock-credential-brand {
  color: var(--aceris-blue-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.mock-credential strong {
  margin-top: 46px;
  margin-left: 88px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.mock-credential small {
  margin-left: 88px;
  margin-top: 8px;
  color: #40536c;
  font-size: 0.95rem;
  font-weight: 800;
}

.mock-credential-footer {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: #40536c;
  font-size: 0.8rem;
  font-weight: 900;
}

.mock-credential-footer span:last-child {
  width: 48px;
  height: 48px;
  background:
    linear-gradient(90deg, #071a42 6px, transparent 6px) 0 0 / 12px 12px,
    linear-gradient(#071a42 6px, transparent 6px) 0 0 / 12px 12px;
  opacity: 0.18;
}

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

.credentials-personalization-list li {
  padding: 13px 16px;
  color: #edf8ff;
  font-size: 0.9rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.credentials-photo-stack {
  display: grid;
  gap: 16px;
}

.credentials-photo-card {
  display: grid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  background: #f6f9fc;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 26, 66, 0.14);
}

.credentials-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-photo-stack .credentials-personalization-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="tarjetas-rfid-mifare"] .credentials-photo-stack .credentials-personalization-list li {
  color: #071a42;
  background: #ffffff;
  border-color: #dbe5f0;
}

.credentials-compatibility-copy .button {
  margin-top: 26px;
}

.credentials-compatibility-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-list li {
  padding-left: 54px;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-list li::before {
  left: 20px;
}

body[data-page="tarjetas-rfid-mifare"] #contacto {
  scroll-margin-top: 132px;
}

@media (max-width: 720px) {
  body[data-page="tarjetas-rfid-mifare"] .credentials-photo-stack .credentials-personalization-list {
    grid-template-columns: 1fr;
  }
}

.credentials-pvc-layout {
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 0.88fr) minmax(260px, 0.64fr);
}

.credentials-pvc-kit {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 58%, rgba(0, 144, 215, 0.16), transparent 40%),
    linear-gradient(145deg, #ffffff 0%, #f1f7ff 100%);
  border: 1px solid rgba(166, 194, 218, 0.62);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(12, 42, 74, 0.12);
}

.credentials-pvc-kit img {
  position: relative;
  z-index: 2;
  width: min(82%, 300px);
  height: auto;
  filter: drop-shadow(0 24px 26px rgba(15, 46, 82, 0.15));
}

.credentials-pvc-card-stack,
.credentials-pvc-ribbon {
  position: absolute;
  z-index: 3;
  border-radius: 8px;
}

.credentials-pvc-card-stack {
  left: 9%;
  bottom: 12%;
  width: 118px;
  height: 76px;
  background:
    linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid rgba(149, 181, 213, 0.62);
  box-shadow:
    12px -8px 0 rgba(255, 255, 255, 0.72),
    24px -16px 0 rgba(238, 246, 255, 0.86),
    0 18px 30px rgba(15, 46, 82, 0.12);
  transform: rotate(-5deg);
}

.credentials-pvc-ribbon {
  right: 10%;
  top: 12%;
  width: 86px;
  height: 86px;
  background:
    linear-gradient(135deg, transparent 40%, rgba(0, 144, 215, 0.38) 41% 58%, transparent 59%),
    #071a42;
  box-shadow: 0 18px 28px rgba(15, 46, 82, 0.16);
  opacity: 0.9;
}

.credentials-proposal-section {
  background: #ffffff;
}

.credentials-proposal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.credentials-case-layout > *,
.credentials-personalization-layout > *,
.credentials-pvc-layout > *,
.credentials-proposal-layout > * {
  min-width: 0;
}

.credentials-proposal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials-proposal-list li {
  min-height: 72px;
  padding: 18px;
  color: #071a42;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.3;
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-mid-cta .cta-panel h2 {
  margin-top: 0;
}

.anchor-target {
  display: block;
  height: 1px;
  scroll-margin-top: 120px;
}

@media (max-width: 1180px) {
  .credentials-format-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .credentials-case-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .credentials-case-row > a {
    grid-column: 2;
    justify-self: start;
  }

  .credentials-compatibility-list,
  .credentials-proposal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .credentials-decision-grid,
  .credentials-case-layout,
  .credentials-personalization-layout,
  .credentials-proposal-layout {
    grid-template-columns: 1fr;
  }

  .credentials-case-intro {
    position: static;
  }

  .credentials-pvc-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .credentials-decision-card {
    min-height: 0;
  }

  .credentials-case-row {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .credentials-case-visual {
    height: 86px;
  }

  .credentials-case-row > a {
    grid-column: 1 / -1;
  }

  .credentials-format-grid,
  .credentials-compatibility-list,
  .credentials-proposal-list {
    grid-template-columns: 1fr;
  }

  .credentials-format-card {
    grid-template-rows: 128px 1fr;
  }

  .mock-credential {
    transform: none;
  }
}

@media (max-width: 900px) {
  .credentials-hero-kit {
    height: clamp(310px, 58vw, 430px);
  }

  .credentials-kit-printer {
    right: 4%;
    top: 7%;
    width: min(43%, 280px);
  }

  .credentials-kit-card--employee {
    left: 5%;
    top: auto;
    bottom: 8%;
    width: min(37%, 230px);
  }

  .credentials-kit-card--blank {
    left: 33%;
    top: 40%;
    width: min(27%, 170px);
  }

  .credentials-kit-band {
    left: 6%;
    bottom: 6%;
    width: min(44%, 260px);
  }

  .credentials-kit-fob {
    right: 22%;
    bottom: 11%;
    width: min(17%, 104px);
  }

  .credentials-kit-note {
    right: 5%;
    bottom: 8%;
    max-width: 190px;
  }
}

@media (max-width: 640px) {
  .credentials-hero-kit {
    height: 320px;
  }

  .credentials-hero-kit::before {
    inset: 10px;
    background-size: 34px 34px;
  }

  .credentials-kit-stage {
    inset: 12px;
  }

  .credentials-kit-printer {
    right: -2%;
    top: 8%;
    width: 48%;
  }

  .credentials-kit-card--employee {
    left: 3%;
    top: auto;
    bottom: 8%;
    width: 44%;
    padding: 14px;
  }

  .credentials-kit-card--blank {
    left: 27%;
    top: 47%;
    width: 34%;
  }

  .credentials-kit-band {
    left: 2%;
    bottom: 6%;
    width: 52%;
  }

  .credentials-kit-fob {
    right: 14%;
    bottom: 12%;
    width: 20%;
  }

  .credentials-kit-stack {
    right: 26%;
    bottom: 8%;
    width: 24%;
  }

  .credentials-kit-note {
    display: none;
  }

  .mock-credential strong,
  .mock-credential small {
    margin-left: 74px;
  }

  .mock-credential::after {
    left: 22px;
    width: 54px;
    height: 66px;
  }

  .credentials-pvc-kit {
    min-height: 260px;
  }
}

/* Credenciales PVC/RFID: hero y enfoque consultivo 20260623 */
.credentials-hero {
  position: relative;
  min-height: clamp(650px, 82vh, 820px);
  overflow: hidden;
  background-color: #ffffff;
  background-image: url("/assets/hero/credenciales-rfid-identificacion-hero-v1.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.credentials-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 31%, rgba(255, 255, 255, 0.76) 47%, rgba(255, 255, 255, 0.18) 68%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 58%, #ffffff 100%);
}

.credentials-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 108px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 82%);
}

.credentials-hero .landing-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  min-height: clamp(540px, 72vh, 700px);
}

.credentials-hero .landing-hero-grid > .reveal:first-child {
  max-width: 640px;
}

.credentials-hero h1 {
  max-width: 650px;
  font-size: clamp(2.65rem, 3.9vw, 3.7rem);
  line-height: 1.02;
}

.credentials-hero p {
  max-width: 610px;
  color: #20344d;
}

.credentials-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  max-width: 610px;
  margin: 24px 0 0;
  padding: 0;
  color: #071a42;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

.credentials-hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.credentials-hero-benefits li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  background: #0090d7;
  border-radius: 999px;
}

.credentials-hero .button-secondary {
  color: #0557d8;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(5, 87, 216, 0.18);
  box-shadow: 0 14px 32px rgba(20, 48, 84, 0.08);
  backdrop-filter: blur(10px);
}

.credentials-hero .button-secondary:hover,
.credentials-hero .button-secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(5, 87, 216, 0.3);
}

.credentials-hero-media {
  display: none;
}

.credentials-choice-section,
.credentials-tech-section,
.credentials-rfid-section,
.credentials-accessories-section {
  background: #ffffff;
}

.credentials-choice-section {
  padding-top: clamp(38px, 5vw, 64px);
}

.credentials-fit-section,
.credentials-printer-section,
.credentials-consumables-section,
.credentials-production-section {
  background: #f7faff;
}

.credentials-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(40px, 5vw, 58px);
}

.credentials-path-section {
  padding-top: clamp(34px, 4vw, 54px);
}

.credentials-path-section .section-heading {
  max-width: 820px;
}

.credentials-route-grid--compact {
  gap: 14px;
  margin-top: clamp(28px, 4vw, 42px);
}

.credentials-route-grid--compact .credentials-route-card {
  min-height: 290px;
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: 0 14px 34px rgba(20, 48, 84, 0.035);
}

.credentials-route-grid--compact .credentials-route-card:hover,
.credentials-route-grid--compact .credentials-route-card:focus-within {
  box-shadow: 0 20px 44px rgba(20, 48, 84, 0.075);
}

.credentials-route-grid--compact .credentials-route-icon {
  width: 46px;
  height: 46px;
}

.credentials-route-grid--compact .credentials-route-icon svg {
  width: 25px;
  height: 25px;
}

.credentials-route-grid--compact .credentials-route-card h3 {
  margin-top: 18px;
  font-size: clamp(1.08rem, 1.28vw, 1.24rem);
  line-height: 1.18;
}

.credentials-route-grid--compact .credentials-route-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.credentials-route-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: clamp(28px, 3.1vw, 38px);
  color: #071a42;
  background: #ffffff;
  border: 1px solid rgba(167, 190, 214, 0.46);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.credentials-route-card:hover,
.credentials-route-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 144, 215, 0.28);
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.085);
}

.credentials-route-card--featured {
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.12), rgba(53, 214, 166, 0.06)),
    #ffffff;
  border-color: rgba(0, 144, 215, 0.26);
}

.credentials-route-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--aceris-blue-dark);
  background: #eff8ff;
  border: 1px solid rgba(0, 144, 215, 0.2);
  border-radius: 8px;
}

.credentials-route-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credentials-route-tag {
  width: fit-content;
  margin-top: 18px;
  padding: 7px 10px;
  color: var(--aceris-blue-dark);
  background: rgba(0, 144, 215, 0.1);
  border: 1px solid rgba(0, 144, 215, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.credentials-route-card h3 {
  margin: 22px 0 0;
  font-size: clamp(1.28rem, 1.75vw, 1.58rem);
  line-height: 1.12;
}

.credentials-route-card p {
  margin: 16px 0 0;
  color: #40536c;
  font-size: 0.96rem;
  line-height: 1.62;
}

.credentials-route-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--aceris-blue-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.credentials-route-card a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credentials-route-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 20px 24px;
  background: #f7faff;
  border: 1px solid rgba(167, 190, 214, 0.5);
  border-radius: 8px;
}

.credentials-route-support p {
  max-width: 760px;
  margin: 0;
  color: #20344d;
  font-size: 1rem;
  line-height: 1.55;
}

.credentials-route-support .button {
  flex: 0 0 auto;
}

.credentials-fit-layout,
.credentials-consumables-layout,
.credentials-rfid-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.credentials-fit-copy h2,
.credentials-consumables-copy h2,
.credentials-rfid-copy h2,
.credentials-accessories-panel h2 {
  margin: 14px 0 0;
  color: #071a42;
  font-size: clamp(2.05rem, 3.4vw, 3.65rem);
  line-height: 1.04;
}

.credentials-fit-copy p,
.credentials-consumables-copy p,
.credentials-rfid-copy p,
.credentials-accessories-panel p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #40536c;
  font-size: 1rem;
  line-height: 1.74;
}

.credentials-decision-table-wrap,
.credentials-model-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(20, 48, 84, 0.075);
}

.credentials-decision-table,
.credentials-model-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.credentials-model-table {
  min-width: 920px;
}

.credentials-decision-table th,
.credentials-decision-table td,
.credentials-model-table th,
.credentials-model-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #dbe5f0;
}

.credentials-decision-table th,
.credentials-model-table th {
  color: #071a42;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eff8ff;
}

.credentials-decision-table td,
.credentials-model-table td {
  color: #2f4560;
  font-size: 0.92rem;
  line-height: 1.45;
}

.credentials-decision-table td:last-child,
.credentials-model-table td:first-child {
  color: #071a42;
  font-weight: 850;
}

.credentials-decision-table tr:last-child td,
.credentials-model-table tr:last-child td {
  border-bottom: 0;
}

.credentials-printer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-top: clamp(38px, 5vw, 62px);
}

.credentials-printer-layout > * {
  min-width: 0;
}

.credentials-printer-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}

.credentials-printer-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  color: #071a42;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.055);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    filter 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.credentials-printer-gallery.is-selecting .credentials-printer-card:not(.is-active) {
  opacity: 0.62;
  filter: saturate(0.72);
  background: #f8fbfe;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.035);
}

.credentials-printer-gallery.is-selecting .credentials-printer-card:not(.is-active):hover,
.credentials-printer-gallery.is-selecting .credentials-printer-card:not(.is-active):focus-within {
  opacity: 0.9;
  filter: saturate(0.92);
}

.credentials-printer-card:hover,
.credentials-printer-card:focus-within {
  transform: translateY(-2px);
  border-color: #b9c7d6;
  box-shadow: 0 20px 46px rgba(20, 48, 84, 0.075);
}

.credentials-printer-card--primary {
  background: #fbfdff;
  border-color: #cbd8e6;
  box-shadow: 0 20px 48px rgba(20, 48, 84, 0.07);
}

.credentials-printer-card.is-active {
  background: #ffffff;
  border-color: #006fa8;
  box-shadow:
    inset 0 3px 0 #006fa8,
    0 24px 54px rgba(20, 48, 84, 0.11);
  opacity: 1;
  filter: none;
  transform: translateY(-3px);
}

.credentials-printer-card img {
  width: 100%;
  height: clamp(150px, 12vw, 190px);
  object-fit: contain;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e6edf6;
  border-radius: 8px;
}

.credentials-printer-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.credentials-printer-card span {
  display: block;
  color: var(--aceris-blue-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.credentials-printer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #071a42;
  background: #eef4f8;
  border: 1px solid #cbd8e6;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(20, 48, 84, 0.08);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: none;
}

.credentials-printer-card h3 {
  margin: 8px 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.08;
}

.credentials-printer-card p {
  margin: 10px 0 0;
  color: #40536c;
  font-size: 0.88rem;
  line-height: 1.55;
}

.credentials-printer-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: auto;
  padding: 10px 13px;
  color: var(--aceris-blue-dark);
  background: #ffffff;
  border: 1px solid #c6d4e2;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(20, 48, 84, 0.045);
  cursor: pointer;
  font: inherit;
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.credentials-printer-select:hover,
.credentials-printer-select:focus-visible,
.credentials-printer-select[aria-pressed="true"] {
  color: #ffffff;
  background: var(--aceris-blue-dark);
  border-color: var(--aceris-blue-dark);
  box-shadow: 0 12px 24px rgba(20, 48, 84, 0.12);
  outline: 0;
}

.credentials-printer-detail {
  position: relative;
  scroll-margin-top: 110px;
  padding: clamp(28px, 4.6vw, 52px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(20, 48, 84, 0.09);
}

.credentials-printer-detail[hidden] {
  display: none;
}

.credentials-printer-detail:focus {
  outline: 2px solid rgba(0, 111, 168, 0.34);
  outline-offset: 4px;
}

.credentials-printer-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #40536c;
  background: #f6f8fb;
  border: 1px solid #dbe5f0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.credentials-printer-detail-close:hover,
.credentials-printer-detail-close:focus-visible {
  color: #071a42;
  background: #ffffff;
  border-color: #b9c7d6;
  outline: 0;
}

.credentials-printer-detail-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.credentials-printer-detail-main {
  display: grid;
  gap: clamp(18px, 2.4vw, 26px);
  min-width: 0;
  padding-right: 42px;
}

.credentials-printer-detail-label {
  display: block;
  color: var(--aceris-blue-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.credentials-printer-detail h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(2.2rem, 4.2vw, 3.65rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.credentials-printer-detail p {
  margin: 0;
  color: #40536c;
  font-size: clamp(0.98rem, 1.08vw, 1.06rem);
  line-height: 1.62;
}

.credentials-printer-detail-media {
  display: grid;
  min-height: clamp(210px, 22vw, 310px);
  margin: 0;
  place-items: center;
  background: #f7f9fc;
  border: 1px solid #e4ebf3;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.credentials-printer-detail-media img {
  display: block;
  width: 100%;
  max-height: clamp(190px, 20vw, 290px);
  object-fit: contain;
  padding: clamp(18px, 3vw, 34px);
}

.credentials-printer-spec-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 3.9vw, 56px);
  margin-top: clamp(50px, 5.2vw, 76px);
}

.credentials-printer-spec-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #dbe5f0;
  transform: translateX(-0.5px);
}

.credentials-printer-spec-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 118px;
  padding: 18px 0 24px;
  border-bottom: 1px solid #dbe5f0;
}

.credentials-printer-spec-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.credentials-printer-spec-item svg {
  width: 44px;
  height: 44px;
  color: #0052e0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.credentials-printer-spec-item h4 {
  margin: 0;
  color: #071a42;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.025em;
  line-height: 1.28;
  text-transform: uppercase;
}

.credentials-printer-spec-item p {
  margin-top: 10px;
  color: #071a42;
  font-size: 1rem;
  line-height: 1.52;
}

.credentials-printer-detail-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
  margin-top: clamp(28px, 4vw, 44px);
}

.credentials-printer-sublimation-note {
  max-width: 650px;
  margin: 0;
  padding: 16px 18px;
  color: #27415f;
  background: #f5f8fe;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.credentials-printer-sublimation-note[hidden] {
  display: none;
}

.credentials-printer-detail-footer:has(.credentials-printer-sublimation-note[hidden]) {
  grid-template-columns: 1fr;
}

.credentials-printer-detail-footer:has(.credentials-printer-sublimation-note[hidden]) .credentials-printer-detail-actions {
  justify-self: end;
}

.credentials-printer-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 0;
}

.credentials-printer-detail-actions .button {
  min-height: 44px;
}

.credentials-printer-comparison {
  padding: clamp(18px, 2.4vw, 26px);
  background: #fafcfe;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 48, 84, 0.055);
}

.credentials-printer-comparison-intro {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.credentials-printer-comparison-intro h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  line-height: 1.12;
}

.credentials-printer-comparison-intro p {
  max-width: 680px;
  margin: 8px 0 0;
  color: #40536c;
  font-size: 0.93rem;
  line-height: 1.55;
}

.credentials-printer-comparison-toggle {
  display: inline-flex;
  min-width: max-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  color: #071a42;
  background: #ffffff;
  border: 1px solid #cbd8e6;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.credentials-printer-comparison-toggle:hover,
.credentials-printer-comparison-toggle:focus-visible {
  color: var(--aceris-blue-dark);
  background: #f7fafc;
  border-color: #b9c7d6;
  outline: 0;
}

.credentials-printer-comparison-arrow {
  display: inline-block;
  transition: transform 320ms ease;
}

.credentials-printer-comparison-toggle[aria-expanded="true"] .credentials-printer-comparison-arrow {
  transform: rotate(180deg);
}

.credentials-printer-comparison-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    grid-template-rows 360ms ease,
    opacity 300ms ease,
    transform 360ms ease;
}

.credentials-printer-comparison-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.credentials-printer-comparison-panel-inner {
  min-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: padding-top 360ms ease;
}

.credentials-printer-comparison-panel.is-open .credentials-printer-comparison-panel-inner {
  padding-top: 20px;
}

.credentials-printer-comparison-close-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.credentials-printer-comparison-close-row button {
  appearance: none;
  padding: 0;
  color: #40536c;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(64, 83, 108, 0.28);
  border-radius: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
}

.credentials-printer-comparison-close-row button:hover,
.credentials-printer-comparison-close-row button:focus-visible {
  color: var(--aceris-blue-dark);
  border-bottom-color: currentColor;
  outline: 0;
}

.credentials-printer-comparison-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(219, 229, 240, 0.95);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.credentials-printer-comparison-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.credentials-printer-comparison-table th,
.credentials-printer-comparison-table td {
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(219, 229, 240, 0.88);
  border-left: 1px solid rgba(219, 229, 240, 0.7);
}

.credentials-printer-comparison-table th {
  color: #071a42;
  background: #f7fbff;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.credentials-printer-comparison-table td {
  color: #2f4560;
  background: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
}

.credentials-printer-comparison-table th:first-child,
.credentials-printer-comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  text-align: left;
  border-left: 0;
  box-shadow: 8px 0 16px rgba(20, 48, 84, 0.035);
}

.credentials-printer-comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 190px;
  background: #ffffff;
}

.credentials-printer-comparison-table thead th:first-child {
  z-index: 4;
  color: #071a42;
  background: #f1f7fc;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials-printer-comparison-table thead img {
  display: block;
  width: 100%;
  height: 92px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.credentials-printer-comparison-table thead strong {
  display: block;
  color: #071a42;
  font-size: 1rem;
  line-height: 1.16;
}

.credentials-printer-comparison-table thead b {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 6px 8px;
  color: #071a42;
  background: #eef4f8;
  border: 1px solid #cbd8e6;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: none;
}

.credentials-printer-comparison-table tbody th {
  color: #071a42;
  background: #f4f9fd;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.credentials-printer-comparison-table tbody th span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  place-items: center;
  color: #50647d;
  background: #eef3f7;
  border-radius: 999px;
  font-size: 0.86rem;
  vertical-align: middle;
}

.credentials-printer-comparison-table tbody tr:hover td,
.credentials-printer-comparison-table tbody tr:hover th {
  background-color: #fbfdff;
}

.credentials-printer-comparison-table td:first-child {
  color: #071a42;
  font-weight: 900;
}

.credentials-printer-comparison-table tr:last-child td {
  border-bottom: 0;
}

.credentials-comparison-feature-heading {
  width: 190px;
}

.credentials-printer-comparison-note {
  margin: 16px 0 0;
  color: #40536c;
  font-size: 0.94rem;
  line-height: 1.6;
}

.credentials-printer-comparison-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-printer-comparison-cta p {
  margin: 0;
  color: #071a42;
  font-weight: 900;
}

.credentials-printer-comparison-cta .button {
  min-height: 40px;
}

.credentials-tech-grid,
.credentials-production-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.credentials-tech-card,
.credentials-production-card {
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.055);
}

.credentials-tech-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.credentials-tech-card.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.credentials-tech-card.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.credentials-tech-card:hover,
.credentials-tech-card:focus-within {
  border-color: rgba(0, 144, 215, 0.34);
  box-shadow: 0 24px 54px rgba(20, 48, 84, 0.11);
  transform: translateY(-5px);
}

.credentials-tech-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 188px;
  margin: calc(clamp(24px, 3vw, 34px) * -1) calc(clamp(24px, 3vw, 34px) * -1) 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 144, 215, 0.18), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #edf5fc 100%);
  border-bottom: 1px solid rgba(219, 229, 240, 0.82);
}

.credentials-tech-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(7, 26, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 66, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 74%);
}

.credentials-tech-visual > * {
  position: absolute;
  transition: scale 280ms ease;
}

.credentials-tech-card:hover .credentials-tech-visual > *,
.credentials-tech-card:focus-within .credentials-tech-visual > * {
  scale: 1.025;
}

.pvc-visual-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.586;
  color: #071a42;
  background: #ffffff;
  border: 1px solid rgba(166, 194, 218, 0.72);
  border-radius: 7px;
  box-shadow: 0 18px 34px rgba(15, 46, 82, 0.15);
}

.pvc-visual-card strong,
.pvc-visual-card small,
.pvc-card-label {
  position: relative;
  z-index: 2;
  display: block;
}

.pvc-visual-card strong {
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  line-height: 1.06;
}

.pvc-visual-card small {
  margin-top: 5px;
  color: #5c6f87;
  font-size: 0.63rem;
  font-weight: 850;
}

.pvc-card-label {
  color: var(--aceris-blue-dark);
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pvc-qr {
  position: absolute;
  right: 13px;
  bottom: 12px;
  z-index: 2;
  width: 28px;
  height: 28px;
  background:
    linear-gradient(90deg, #071a42 5px, transparent 5px) 0 0 / 10px 10px,
    linear-gradient(#071a42 5px, transparent 5px) 0 0 / 10px 10px;
  opacity: 0.18;
}

.pvc-card-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  width: 32px;
  height: 24px;
  background:
    linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.38) 30% 36%, transparent 36% 64%, rgba(255,255,255,0.34) 64% 70%, transparent 70%),
    linear-gradient(135deg, #d6b36a, #fff0b8 46%, #b78a35);
  border: 1px solid rgba(89, 68, 28, 0.24);
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.pvc-card-rfid {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.pvc-visual-card--daily {
  left: 16%;
  bottom: 20px;
  width: min(68%, 238px);
  padding: 22px 22px 30px;
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.18), rgba(53, 214, 166, 0.1)),
    linear-gradient(100deg, #ffffff 0 58%, #dff2fb 58% 100%);
  transform: rotate(-4deg);
}

.pvc-visual-card--daily::before {
  position: absolute;
  right: -24px;
  top: -40px;
  width: 120px;
  height: 120px;
  content: "";
  background: radial-gradient(circle, rgba(0, 144, 215, 0.22), transparent 68%);
  border-radius: 50%;
}

.pvc-visual-card--daily::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 17px;
  content: "";
  background: linear-gradient(90deg, #071a42, #0090d7);
}

.pvc-visual-card--daily .pvc-qr {
  right: 15px;
  bottom: 27px;
  opacity: 0.28;
}

.tech-printer-mini {
  right: 13%;
  top: 25px;
  width: 92px;
  height: 58px;
  background:
    linear-gradient(90deg, #111827 0 34%, #ffffff 34% 100%);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px 22px 16px 16px;
  box-shadow: 0 16px 28px rgba(15, 46, 82, 0.16);
}

.tech-printer-mini::before {
  position: absolute;
  left: 17px;
  top: 18px;
  width: 14px;
  height: 25px;
  content: "";
  background: #ffffff;
  border-radius: 999px;
  opacity: 0.8;
}

.tech-white-stack {
  left: 12%;
  top: 44px;
  width: 88px;
  height: 48px;
}

.tech-white-stack span {
  position: absolute;
  inset: auto 0 0;
  aspect-ratio: 1.586;
  background: #ffffff;
  border: 1px solid #d4dee8;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(20, 48, 84, 0.08);
}

.tech-white-stack span:nth-child(1) { transform: translateY(-15px) rotate(-4deg); }
.tech-white-stack span:nth-child(2) { transform: translateY(-8px) rotate(2deg); }

.credentials-tech-visual--retransfer {
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 144, 215, 0.22), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #edf3f8 48%, #ffffff 100%);
}

.pvc-visual-card--premium {
  left: 17%;
  top: 38px;
  width: min(70%, 250px);
  padding: 58px 24px 22px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 34%),
    linear-gradient(125deg, #081a3d 0%, #0e4f86 56%, #00a5d9 100%);
  border-color: rgba(255, 255, 255, 0.28);
  transform: rotate(-2deg);
}

.pvc-visual-card--premium strong,
.pvc-visual-card--premium small,
.pvc-visual-card--premium .pvc-card-label {
  color: #ffffff;
}

.pvc-visual-card--premium small {
  color: rgba(255, 255, 255, 0.78);
}

.tech-film-strip {
  right: 10%;
  bottom: 22px;
  display: flex;
  gap: 5px;
  width: 94px;
  height: 44px;
  padding: 8px;
  background: rgba(7, 26, 66, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 22px rgba(15, 46, 82, 0.2);
  transform: rotate(4deg);
}

.tech-film-strip span {
  flex: 1;
  border-radius: 3px;
}

.tech-film-strip span:nth-child(1) { background: #f5cd33; }
.tech-film-strip span:nth-child(2) { background: #db3c6b; }
.tech-film-strip span:nth-child(3) { background: #008ec7; }

.credentials-tech-visual--factory {
  background:
    radial-gradient(circle at 68% 28%, rgba(0, 144, 215, 0.15), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
}

.tech-card-box {
  left: 11%;
  bottom: 28px;
  width: 116px;
  height: 72px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), transparent 34%),
    #e4ebf2;
  border: 1px solid #c9d6e4;
  border-radius: 7px;
  box-shadow: 0 16px 28px rgba(20, 48, 84, 0.1);
}

.tech-card-box::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 1px;
  content: "";
  background: #c7d3df;
}

.tech-batch-stack {
  right: 8%;
  top: 34px;
  width: 190px;
  height: 122px;
}

.pvc-visual-card--batch {
  position: absolute;
  width: 158px;
  padding: 22px 20px 22px 26px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent 32%),
    linear-gradient(125deg, #062f58 0%, #0875b5 60%, #00a7d8 100%);
}

.pvc-visual-card--batch::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 38px;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent),
    rgba(255, 255, 255, 0.13);
}

.pvc-visual-card--batch::after {
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 92px;
  height: 92px;
  content: "";
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.pvc-visual-card--batch strong,
.pvc-visual-card--batch small,
.pvc-visual-card--batch .pvc-card-label {
  color: #ffffff;
}

.pvc-visual-card--batch small {
  color: rgba(255, 255, 255, 0.76);
}

.pvc-visual-card--batch .pvc-card-label {
  margin-bottom: 4px;
  opacity: 0.82;
}

.pvc-visual-card--batch .pvc-qr {
  right: 15px;
  bottom: 14px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(90deg, #ffffff 4px, transparent 4px) 0 0 / 8px 8px,
    linear-gradient(#ffffff 4px, transparent 4px) 0 0 / 8px 8px;
  opacity: 0.2;
}

.pvc-visual-card--batch .pvc-card-rfid {
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-color: rgba(255, 255, 255, 0.62);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.tech-batch-stack .pvc-visual-card:nth-child(1) { left: 0; top: 28px; transform: rotate(-9deg); }
.tech-batch-stack .pvc-visual-card:nth-child(2) { left: 18px; top: 18px; transform: rotate(-2deg); }
.tech-batch-stack .pvc-visual-card:nth-child(3) { left: 36px; top: 8px; transform: rotate(5deg); }

.credentials-tech-card span {
  color: var(--aceris-blue-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials-tech-card h3,
.credentials-production-card h3 {
  margin: 16px 0 0;
  color: #071a42;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.14;
}

.credentials-tech-card p,
.credentials-production-card p {
  margin: 12px 0 0;
  color: #40536c;
  font-size: 0.95rem;
  line-height: 1.6;
}

.credentials-edge-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  margin-top: 20px;
  padding: clamp(24px, 3vw, 34px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 144, 215, 0.26), transparent 34%),
    linear-gradient(135deg, #071620, #10345b);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(7, 22, 32, 0.18);
}

.credentials-edge-note strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
}

.credentials-edge-note p {
  margin: 10px 0 0;
  color: #d8e7f2;
  line-height: 1.65;
}

.credentials-edge-demo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credentials-edge-card {
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.credentials-edge-note.is-visible .credentials-edge-card {
  opacity: 1;
  transform: translateY(0);
}

.credentials-edge-note.is-visible .credentials-edge-card:nth-child(2) {
  transition-delay: 120ms;
}

.credentials-edge-card > span {
  color: #d8e7f2;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.pvc-visual-card--edge {
  width: 100%;
  min-width: 0;
  padding: 18px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #dfe8f2, #f5f8fb) border-box;
  border: 8px solid transparent;
}

.pvc-visual-card--edge::before,
.pvc-visual-card--edge-pro::before {
  position: absolute;
  inset: 8px;
  content: "";
  background:
    radial-gradient(circle at 82% 24%, rgba(0, 144, 215, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(0, 144, 215, 0.12), rgba(7, 26, 66, 0.05));
  border-radius: 4px;
}

.pvc-visual-card--edge::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px dashed rgba(0, 144, 215, 0.5);
  border-radius: 5px;
}

.pvc-visual-card--edge strong,
.pvc-visual-card--edge small {
  margin-left: 4px;
}

.pvc-visual-card--edge:not(.pvc-visual-card--edge-pro) strong {
  color: #071a42;
}

.pvc-visual-card--edge:not(.pvc-visual-card--edge-pro) small {
  color: #40536c;
}

.pvc-visual-card--edge-pro {
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,0.2), transparent 35%),
    linear-gradient(135deg, #071a42, #0090d7);
  border-color: rgba(255, 255, 255, 0.22);
}

.pvc-visual-card--edge-pro::before {
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  border-radius: inherit;
}

.pvc-visual-card--edge-pro::after {
  display: none;
}

.pvc-visual-card--edge-pro strong,
.pvc-visual-card--edge-pro small {
  color: #ffffff;
}

.pvc-visual-card--edge-pro small {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 640px) {
  .credentials-tech-card {
    min-height: 0;
    padding: 22px;
  }

  .credentials-tech-visual {
    min-height: 162px;
    margin: -22px -22px 20px;
  }

  .pvc-visual-card--daily,
  .pvc-visual-card--premium {
    width: 68%;
  }

  .tech-printer-mini {
    width: 78px;
    height: 50px;
  }

  .tech-white-stack {
    width: 72px;
  }

  .tech-batch-stack {
    right: 4%;
    width: 168px;
    scale: 0.9;
    transform-origin: right top;
  }

  .credentials-edge-demo {
    grid-template-columns: 1fr;
  }
}

.credentials-consumables-copy .button,
.credentials-rfid-copy .button {
  margin-top: 26px;
}

.credentials-consumables-grid,
.credentials-accessory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials-consumables-grid li,
.credentials-accessory-list li {
  min-height: 64px;
  padding: 17px 18px;
  color: #071a42;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.32;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-rfid-layout {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 0.9fr);
}

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

.credentials-production-visual {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 144, 215, 0.16), transparent 48%),
    #f5faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-production-visual--offset {
  position: relative;
  overflow: hidden;
}

.credentials-production-visual--offset span {
  position: absolute;
  width: 185px;
  height: 116px;
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.18), rgba(53, 214, 166, 0.1)),
    #ffffff;
  border: 1px solid #c9d9e9;
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(20, 48, 84, 0.12);
}

.credentials-production-visual--offset span:nth-child(1) {
  transform: translate(-28px, -18px) rotate(-6deg);
}

.credentials-production-visual--offset span:nth-child(2) {
  transform: translate(8px, 0) rotate(2deg);
}

.credentials-production-visual--offset span:nth-child(3) {
  transform: translate(38px, 20px) rotate(7deg);
}

.credentials-production-visual--dragon span {
  display: grid;
  place-items: center;
  width: min(78%, 330px);
  aspect-ratio: 1.95;
  color: #071a42;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 950;
  letter-spacing: 0.04em;
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.14), rgba(53, 214, 166, 0.08)),
    #ffffff;
  border: 1px solid #c9d9e9;
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(20, 48, 84, 0.12);
}

.credentials-accessories-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.credentials-smart-fields {
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .credentials-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credentials-printer-layout,
  .credentials-fit-layout,
  .credentials-consumables-layout,
  .credentials-rfid-layout,
  .credentials-accessories-panel {
    grid-template-columns: 1fr;
  }

  .credentials-printer-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .credentials-printer-detail-body {
    grid-template-columns: 1fr;
  }

  .credentials-printer-detail-main {
    padding-right: 0;
  }

  .credentials-printer-detail-actions {
    margin-top: 18px;
  }

  .credentials-hero {
    min-height: 680px;
    background-position: 62% bottom;
    background-size: auto 100%;
  }

  .credentials-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.18) 100%);
  }

  .credentials-hero .landing-hero-grid {
    grid-template-columns: 1fr;
    min-height: 560px;
    align-content: start;
  }

  .credentials-tech-grid,
  .credentials-production-grid,
  .credentials-edge-note {
    grid-template-columns: 1fr;
  }

  .credentials-printer-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credentials-printer-detail-head {
    grid-template-columns: 1fr;
  }

  .credentials-printer-comparison-head {
    grid-template-columns: 1fr;
  }

  .credentials-route-support {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .credentials-hero {
    min-height: 650px;
    background-position: 69% bottom;
    background-size: auto 88%;
  }

  .credentials-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .credentials-hero-benefits {
    display: grid;
    gap: 9px;
    margin-top: 20px;
    font-size: 0.9rem;
  }

  .credentials-hero-benefits li {
    gap: 9px;
  }

  .credentials-hero-benefits li::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    background: #0090d7;
    border-radius: 999px;
  }

  .credentials-hero-benefits li:not(:last-child)::after {
    display: none;
  }

  .credentials-route-grid,
  .credentials-printer-gallery,
  .credentials-consumables-grid,
  .credentials-accessory-list {
    grid-template-columns: 1fr;
  }

  .credentials-printer-card {
    min-height: 0;
  }

  .credentials-printer-card img {
    height: 165px;
  }

  .credentials-printer-detail {
    padding: 24px 18px;
  }

  .credentials-printer-detail-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .credentials-printer-detail-main {
    padding-right: 0;
  }

  .credentials-printer-detail h3 {
    padding-right: 40px;
    font-size: clamp(2.05rem, 12vw, 3rem);
  }

  .credentials-printer-detail-media {
    min-height: 210px;
  }

  .credentials-printer-detail-media img {
    max-height: 220px;
  }

  .credentials-printer-select,
  .credentials-printer-detail-actions .button {
    width: 100%;
  }

  .credentials-printer-spec-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    border-left: 0;
    margin-top: 0;
  }

  .credentials-printer-spec-grid::before {
    display: none;
  }

  .credentials-printer-spec-item {
    min-height: auto;
    padding: 15px 0;
  }

  .credentials-printer-spec-item:nth-last-child(2) {
    border-bottom: 1px solid #dbe5f0;
  }

  .credentials-printer-spec-item svg {
    width: 34px;
    height: 34px;
  }

  .credentials-printer-detail-footer,
  .credentials-printer-detail-footer:has(.credentials-printer-sublimation-note[hidden]) {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .credentials-printer-sublimation-note {
    max-width: none;
  }

  .credentials-printer-detail-actions,
  .credentials-printer-detail-footer:has(.credentials-printer-sublimation-note[hidden]) .credentials-printer-detail-actions {
    justify-content: stretch;
    justify-self: stretch;
    margin-top: 16px;
  }

  .credentials-printer-comparison-intro,
  .credentials-printer-comparison-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .credentials-printer-comparison-toggle,
  .credentials-printer-comparison-cta .button {
    width: 100%;
  }

  .credentials-printer-spec-table {
    min-width: 0;
  }

  .credentials-printer-spec-wrap {
    overflow-x: visible;
  }

  .credentials-printer-spec-table,
  .credentials-printer-spec-table tbody,
  .credentials-printer-spec-table tr,
  .credentials-printer-spec-table th,
  .credentials-printer-spec-table td {
    display: block;
    width: 100%;
  }

  .credentials-printer-spec-table tr {
    border-bottom: 1px solid #dbe5f0;
  }

  .credentials-printer-spec-table tr:last-child {
    border-bottom: 0;
  }

  .credentials-printer-spec-table th,
  .credentials-printer-spec-table td {
    padding: 13px 14px;
    border-bottom: 0;
  }

  .credentials-printer-spec-table th {
    width: 100%;
    padding-bottom: 5px;
  }

  .credentials-printer-spec-table td {
    padding-top: 3px;
  }

  .credentials-printer-comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .credentials-printer-comparison-table {
    min-width: 1180px;
  }

  .credentials-route-card {
    min-height: 0;
  }

  .credentials-route-support {
    padding: 20px;
  }

  .credentials-route-support .button {
    width: 100%;
  }
}

.contact-hero .contact-note {
  align-self: stretch;
  margin: 0;
  color: var(--white);
  background: var(--navy);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.dynamic-fields[hidden] {
  display: none;
}

.privacy-check a {
  color: var(--aceris-blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-section {
  min-height: calc(100svh - 100px);
  display: grid;
  align-items: center;
  margin-top: -92px;
  padding-top: 142px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 144, 215, 0.12), transparent 32%),
    var(--white);
}

.thanks-panel {
  max-width: 900px;
  padding: clamp(34px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.thanks-panel p,
.legal-content p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 1.35rem;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
    min-height: 82px;
    padding-inline: 20px;
  }

  .brand {
    width: 154px;
    min-width: 138px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.76rem;
  }

  .nav-cta {
    padding: 0 14px;
  }

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

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

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

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .home-final-card {
    min-height: auto;
  }

  .home-final-proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
  }

  .home-final-proofs article {
    padding: 0;
    border-left: 0;
  }

  .process-steps {
    gap: 18px;
  }

  .process-step-icon {
    width: 132px;
    height: 132px;
  }

  .process-step-icon svg {
    width: 68px;
    height: 68px;
  }

  .process-cta {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .process-cta .button {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    font-size: 0.88rem;
  }

  .site-header {
    width: min(520px, calc(100% - 32px));
    gap: 18px;
    min-height: 72px;
    padding: 0 20px 0 28px;
  }

  .brand {
    width: 156px;
    min-width: 156px;
  }

  .site-nav {
    gap: 0;
  }

  .nav-cta {
    padding: 0 22px;
  }
}

@media (max-width: 820px) {
  .landing-hero-grid,
  .feature-strip,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .landing-hero h1,
  .thanks-panel h1,
  .legal-content h1 {
    font-size: 2.65rem;
  }

  .landing-media {
    min-height: 280px;
  }

  .landing-sections-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .diagnostic-grid,
  .lineup-grid,
  .primary-solutions-grid {
    grid-template-columns: 1fr;
  }

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

  .process-heading {
    text-align: left;
  }

  .process-heading h2 {
    font-size: 2rem;
  }

  .process-heading i {
    margin-right: 0;
    margin-left: 0;
  }

  .process-track {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-step-card {
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 18px;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .process-step-icon {
    grid-row: span 3;
    width: 72px;
    height: 72px;
  }

  .process-step-icon svg {
    width: 42px;
    height: 42px;
  }

  .process-step-card h3 {
    margin-top: 0;
  }

  .process-step-card > span {
    margin: 10px 0 8px;
  }

  .process-step-card p {
    max-width: none;
  }

  .home-final-section {
    padding: 0;
  }

  .home-final-card {
    padding: 30px 22px;
    border-radius: 0;
  }

  .home-final-mark {
    width: 66px;
    height: 6px;
    margin-bottom: 22px;
  }

  .home-final-copy h2 {
    font-size: 2rem;
  }

  .home-final-copy p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .home-final-actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .home-final-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .home-final-proofs {
    grid-template-columns: 1fr;
    margin-top: 34px;
    padding-top: 22px;
  }

  .home-final-proofs article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .home-final-proofs span {
    width: 44px;
    height: 44px;
  }

  .home-final-proofs svg {
    width: 22px;
    height: 22px;
  }

  .home-final-note {
    justify-content: flex-start;
    margin-top: 28px;
    font-size: 0.92rem;
  }

  .process-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .process-cta-icon {
    width: 78px;
    height: 78px;
  }

  .process-cta-icon svg {
    width: 50px;
    height: 50px;
  }

  .process-cta .button {
    grid-column: auto;
    width: 100%;
    min-width: 0;
  }

  .feature-strip {
    padding: 24px;
  }

  .feature-strip h3 {
    font-size: 1.65rem;
  }

  .feature-strip img {
    height: 240px;
  }

  .landing-hero {
    margin-top: -82px;
    padding-top: 116px;
  }

  .landing-hero h1,
  .thanks-panel h1,
  .legal-content h1 {
    font-size: 2.25rem;
  }

  .thanks-section {
    margin-top: -82px;
    padding-top: 116px;
  }

  .cta-panel {
    padding: 24px;
  }
}

.hero-carousel {
  position: relative;
  height: min(760px, calc(100svh - 96px));
  min-height: 560px;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #061018;
}

.hero-carousel::before {
  display: none;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 18, 31, 0.98) 0%, rgba(4, 18, 31, 0.9) 23%, rgba(4, 18, 31, 0.44) 46%, rgba(4, 18, 31, 0.1) 68%, rgba(4, 18, 31, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 18, 31, 0.36), rgba(4, 18, 31, 0.04) 42%);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide picture {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 7200ms ease;
}

.hero-slide.is-active img {
  transform: scale(1.06);
}

.hero-slide-copy {
  position: absolute;
  top: 17%;
  left: clamp(62px, 6vw, 108px);
  z-index: 2;
  width: min(500px, 39vw);
}

.hero-slide-copy h1,
.hero-slide-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.55rem, 4vw, 4.45rem);
  font-weight: 860;
  line-height: 1.07;
  letter-spacing: 0;
}

.hero-slide-subtitle {
  max-width: 620px;
  margin: 12px 0 0;
  color: #3a87ff;
  font-size: clamp(1.1rem, 1.6vw, 1.58rem);
  font-weight: 780;
  line-height: 1.22;
}

.hero-slide-rule {
  display: block;
  width: 68px;
  height: 3px;
  margin: 26px 0 22px;
  background: #3a87ff;
}

.hero-carousel .hero-actions {
  margin-top: 26px;
}

.hero-carousel .button {
  min-width: 196px;
  min-height: 54px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.hero-carousel .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.64);
}

.hero-carousel .button-secondary:hover,
.hero-carousel .button-secondary:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.hero-tabs {
  position: absolute;
  top: 58px;
  right: clamp(32px, 3.6vw, 72px);
  z-index: 5;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.hero-tab {
  position: relative;
  min-width: 28px;
  padding: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border: 0;
  font-size: 1.05rem;
  font-weight: 820;
}

.hero-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: #3a87ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.hero-tab.is-active {
  color: #3a87ff;
}

.hero-tab.is-active::after {
  transform: scaleX(1);
}

.hero-next {
  position: absolute;
  right: clamp(32px, 3vw, 58px);
  top: 50%;
  z-index: 5;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(4, 18, 31, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
}

.hero-next svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero-progress {
  position: absolute;
  right: clamp(32px, 4vw, 84px);
  bottom: 48px;
  left: clamp(62px, 6vw, 108px);
  z-index: 5;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.44);
}

.hero-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: #3a87ff;
  transition: width 420ms ease;
}

.trust-strip-section {
  padding: clamp(34px, 4vw, 56px) 0;
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 2.8vw, 42px);
  background: var(--white);
  border: 1px solid rgba(216, 227, 234, 0.9);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(7, 22, 32, 0.08);
}

.trust-brand {
  padding-right: clamp(18px, 2vw, 34px);
}

.trust-kicker,
.trust-subkicker {
  display: block;
  text-transform: uppercase;
}

.trust-kicker {
  color: #0052e0;
  font-size: 0.95rem;
  font-weight: 880;
  line-height: 1.2;
}

.trust-subkicker {
  display: none;
}

.trust-brand img {
  width: min(290px, 100%);
  margin-top: 12px;
}

.trust-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #10243a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.trust-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 118px;
  padding: 4px clamp(12px, 1.35vw, 22px) 0;
  text-align: center;
  border-left: 1px solid #d8e3ea;
}

.trust-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: #0052e0;
}

.trust-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.trust-item h3 {
  margin: 0;
  color: #09213d;
  font-size: clamp(1.02rem, 1.2vw, 1.34rem);
  font-weight: 860;
  line-height: 1.23;
}

.trust-item p {
  display: none;
}

@media (max-width: 1120px) {
  .hero-carousel {
    height: auto;
    min-height: 700px;
  }

  .hero-slide-copy {
    top: 190px;
    left: clamp(44px, 6vw, 72px);
    width: min(620px, calc(100% - 56px));
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    font-size: clamp(2.4rem, 7vw, 3.8rem);
  }

  .hero-tabs {
    top: auto;
    right: auto;
    bottom: 82px;
    left: clamp(44px, 6vw, 72px);
  }

  .hero-next {
    top: auto;
    right: 28px;
    bottom: 64px;
    width: 52px;
    height: 52px;
    transform: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-brand {
    padding-right: 0;
  }

  .trust-brand p {
    max-width: 620px;
  }

  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #d8e3ea;
  }

  .trust-item {
    border-left: 0;
    border-top: 1px solid #d8e3ea;
  }

  .trust-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .trust-item:nth-child(even) {
    border-left: 1px solid #d8e3ea;
  }
}

@media (max-width: 720px) {
  .hero-carousel {
    min-height: 720px;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(4, 18, 31, 0.98) 0%, rgba(4, 18, 31, 0.86) 36%, rgba(4, 18, 31, 0.38) 70%, rgba(4, 18, 31, 0.72) 100%);
  }

  .hero-slide img {
    object-position: 63% center;
  }

  .hero-slide-copy {
    top: 142px;
    left: 22px;
    width: calc(100% - 44px);
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    font-size: 2.25rem;
  }

  .hero-slide-subtitle {
    font-size: 1.05rem;
  }

  .hero-slide-rule {
    margin: 18px 0 16px;
  }

  .hero-carousel .hero-actions,
  .hero-carousel .button {
    width: 100%;
  }

  .hero-carousel .hero-actions {
    margin-top: 18px;
  }

  .hero-carousel .button {
    min-height: 50px;
  }

  .hero-tabs {
    bottom: 74px;
    left: 22px;
    gap: 15px;
  }

  .hero-tab {
    font-size: 1rem;
  }

  .hero-next {
    right: 18px;
    bottom: 54px;
    width: 52px;
    height: 52px;
  }

  .hero-progress {
    right: 18px;
    bottom: 28px;
    left: 22px;
  }

  .trust-strip-section {
    padding: 26px 0;
  }

  .trust-strip {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .trust-brand img {
    width: min(230px, 100%);
  }

  .trust-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
  }

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

  .trust-item,
  .trust-item:nth-child(even) {
    min-height: auto;
    padding: 16px 8px;
    border-left: 0;
    border-top: 1px solid #d8e3ea;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-top: 0;
  }

  .trust-item:nth-child(even) {
    border-left: 1px solid #d8e3ea;
  }

  .trust-icon {
    width: 50px;
    height: 50px;
  }

  .trust-icon svg {
    width: 46px;
    height: 46px;
  }

  .trust-item h3 {
    font-size: 0.95rem;
  }

  .trust-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-item:nth-child(2) {
    border-top: 1px solid #d8e3ea;
  }

  .trust-item:nth-child(even) {
    border-left: 0;
  }
}

/* Unified large-title scale.
   Applies across the site. Hero carousel titles are intentionally excluded so the Hero can have its own art direction. */
.hero-copy h1,
.section-heading h2,
.primary-solutions-heading h2,
.needs-control-heading h2,
.process-heading h2,
.faq-grid h2,
.home-final-copy h2,
.contact-copy h2,
.cta-panel h2,
.guarantee-panel h2,
.landing-hero h1,
.thanks-panel h1,
.legal-content h1 {
  font-size: var(--title-large);
  font-weight: var(--title-large-weight);
  line-height: var(--title-large-line);
  letter-spacing: 0;
}

.hero-slide-copy h1,
.hero-slide-copy h2 {
  font-size: clamp(2.55rem, 4vw, 4.45rem);
  font-weight: 880;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-slide-copy h1,
.hero-slide-copy h2,
.hero-slide-subtitle,
.hero-slide-rule,
.hero-carousel .hero-actions {
  opacity: 0;
  transform: translateY(16px);
}

.hero-slide.is-active .hero-slide-copy h1,
.hero-slide.is-active .hero-slide-copy h2 {
  animation: hero-copy-rise 620ms var(--ease) 100ms forwards;
}

.hero-slide.is-active .hero-slide-subtitle {
  animation: hero-copy-rise 620ms var(--ease) 200ms forwards;
}

.hero-slide.is-active .hero-slide-rule {
  animation: hero-copy-rise 520ms var(--ease) 300ms forwards;
}

.hero-slide.is-active .hero-actions {
  animation: hero-copy-rise 620ms var(--ease) 380ms forwards;
}

@keyframes hero-copy-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.primary-solutions-heading p,
.needs-control-heading p,
.process-heading p,
.home-final-copy p,
.landing-hero p,
.contact-copy p,
.cta-panel p {
  font-size: var(--title-body);
}

@media (max-width: 720px) {
  :root {
    --title-large: 2rem;
    --title-body: 0.98rem;
  }
}

@media (max-width: 420px) {
  :root {
    --title-large: 1.82rem;
  }
}

.time-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.time-hero-chips li {
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 800;
}

.time-law-section,
.time-options-section,
.time-calculator-section,
.time-optional-section {
  background: #ffffff;
}

#opciones-fichaje,
#calculadora-control-horario,
#qrdtime,
#todo-qrdtime,
#puesta-en-marcha {
  scroll-margin-top: 104px;
}

.time-law-section {
  padding-top: clamp(30px, 4vw, 54px);
}

.time-law-panel,
.time-optional-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  background: #f5f9ff;
  border: 1px solid #dbe5f0;
  border-left: 4px solid #075be8;
  border-radius: 8px;
}

.time-law-panel h2,
.time-optional-panel h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.12;
}

.time-law-panel p,
.time-optional-panel p,
.time-muted-note {
  color: #334155;
  line-height: 1.65;
}

.time-muted-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.time-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.time-option-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.07);
}

.time-option-card h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
}

.time-option-card p {
  margin: 0;
  color: #213859;
  line-height: 1.62;
}

.time-option-card .button {
  width: fit-content;
  margin-top: auto;
}

.time-price-box {
  padding: 18px;
  background: #071a42;
  border-radius: 8px;
  color: #ffffff;
}

.time-price-box span {
  display: block;
  color: #a9c6ff;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.time-price-box strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.time-price-box p {
  margin-top: 10px;
  color: #e5edff;
  font-size: 0.95rem;
}

.time-terminal-subblock {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: #f8fbff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.time-terminal-subblock img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #e4ecf6;
  border-radius: 8px;
}

.time-terminal-subblock h4 {
  margin: 0 0 8px;
  color: #071a42;
  font-size: 1.1rem;
}

.time-terminal-features {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.time-terminal-features li {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid #dbe5f0;
}

.time-terminal-features strong {
  color: #071a42;
  font-size: 0.92rem;
}

.time-terminal-features span {
  color: #52657a;
  font-size: 0.88rem;
  line-height: 1.45;
}

.time-calculator-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(270px, 0.62fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(24px, 3.4vw, 38px);
  color: #071a42;
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 56%, #eef5ff 100%);
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.07);
}

.time-calculator-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
  line-height: 1.08;
}

.time-calculator-copy p {
  color: #213859;
  line-height: 1.65;
}

.time-calculator-form {
  display: grid;
  gap: 16px;
  align-content: start;
}

.time-calculator-form label span,
.time-calculator-form legend {
  display: block;
  margin-bottom: 8px;
  color: #071a42;
  font-weight: 850;
}

.time-calculator-form input[type="number"] {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: #071a42;
  background: #ffffff;
  border: 1px solid #cdd9e7;
  border-radius: 6px;
  font: inherit;
  font-weight: 760;
}

.time-calculator-form fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.time-calculator-form fieldset label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  color: #334155;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 6px;
  line-height: 1.35;
}

.time-calculator-form input[type="radio"] {
  margin-top: 2px;
  accent-color: #075be8;
}

.time-calculator-result {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  background: #071a42;
  border-radius: 8px;
  color: #ffffff;
}

.time-calculator-result > span {
  color: #a9c6ff;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.time-calculator-result > strong {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1;
}

.time-calculator-result dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.time-calculator-result dl div {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.time-calculator-result dt {
  color: #a9c6ff;
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

.time-calculator-result dd {
  margin: 4px 0 0;
  font-weight: 820;
}

.time-calculator-result p {
  margin: 0;
  color: #d8e6ff;
  font-size: 0.92rem;
  line-height: 1.55;
}

.time-calculator-result .button {
  justify-self: start;
  margin-top: 2px;
}

.time-screen-showcase {
  display: grid;
  gap: 18px;
}

.time-screen-main,
.time-screen-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.06);
}

.time-screen-main {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  align-items: center;
}

.time-screen-main img,
.time-screen-card img {
  width: 100%;
  background: #f8fbff;
  object-fit: contain;
}

.time-screen-main img {
  aspect-ratio: 1215 / 720;
}

.time-screen-main div,
.time-screen-card div {
  padding: 22px;
}

.time-screen-main h3,
.time-screen-card h3,
.time-feature-card h3 {
  margin: 0;
  color: #071a42;
}

.time-screen-main p,
.time-screen-card p,
.time-feature-card p {
  color: #334155;
  line-height: 1.58;
}

.time-screen-grid,
.time-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.time-screen-card img {
  height: 210px;
  padding: 10px;
}

.time-screen-card--portrait img {
  object-fit: contain;
}

.time-feature-card {
  min-height: 240px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 48, 84, 0.055);
}

.time-feature-card .time-card-icon {
  margin-bottom: 18px;
}

.time-optional-panel {
  grid-template-columns: minmax(0, 0.55fr) minmax(260px, 0.45fr);
  align-items: center;
}

.time-optional-list {
  margin: 0;
}

@media (max-width: 1120px) {
  .time-calculator-panel {
    grid-template-columns: 1fr 1fr;
  }

  .time-calculator-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .time-options-grid,
  .time-screen-main,
  .time-screen-grid,
  .time-feature-grid,
  .time-optional-panel {
    grid-template-columns: 1fr;
  }

  .time-terminal-subblock,
  .time-law-panel {
    grid-template-columns: 1fr;
  }

  .time-terminal-subblock img {
    max-width: 280px;
  }
}

@media (max-width: 720px) {
  .time-hero-chips {
    margin-top: 16px;
    gap: 8px;
  }

  .time-hero-chips li {
    font-size: 0.8rem;
  }

  .time-calculator-panel {
    grid-template-columns: 1fr;
  }

  .time-option-card .button,
  .time-calculator-result .button {
    width: 100%;
  }

  .time-screen-main div,
  .time-screen-card div {
    padding: 18px;
  }

  .time-screen-card img {
    height: 190px;
  }
}

.time-hero-full {
  min-height: clamp(560px, 68svh, 720px);
  isolation: isolate;
}

.time-hero-full::after {
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
}

.time-hero-full .access-hero-full-content {
  position: relative;
  z-index: 2;
}

.time-hero-full .time-hero-bg {
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.015);
}

.time-hero-full .time-hero-overlay {
  background:
    radial-gradient(circle at 68% 42%, rgba(7, 91, 232, 0.18) 0, rgba(7, 91, 232, 0) 34%),
    linear-gradient(90deg, rgba(2, 15, 27, 0.98) 0%, rgba(2, 15, 27, 0.92) 34%, rgba(2, 15, 27, 0.46) 63%, rgba(2, 15, 27, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 15, 27, 0.2) 0%, rgba(2, 15, 27, 0.1) 54%, rgba(2, 15, 27, 0.68) 100%);
}

.time-hero-full .time-hero-copy {
  max-width: 760px;
  padding-top: clamp(108px, 12svh, 145px);
  padding-bottom: clamp(76px, 9svh, 110px);
}

.time-hero-full .time-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(44px, 4.9vw, 68px);
  letter-spacing: 0;
}

.time-hero-full .time-hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
}

.time-hero-full .hero-actions {
  margin-top: 24px;
}

.time-hero-chips {
  max-width: 690px;
  margin-top: 24px;
}

.time-hero-chips li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.time-law-section {
  position: relative;
  padding-top: clamp(18px, 2.2vw, 30px);
  padding-bottom: clamp(28px, 4vw, 54px);
}

.time-law-panel {
  max-width: 1180px;
  margin: -34px auto 0;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 65%, #edf5ff 100%);
  border: 1px solid rgba(185, 206, 230, 0.86);
  border-left: 0;
  box-shadow: 0 22px 56px rgba(20, 48, 84, 0.11);
}

.time-law-panel .time-card-icon {
  color: #ffffff;
  background: #075be8;
}

.time-options-section {
  padding-top: clamp(38px, 5.4vw, 82px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.time-options-grid {
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.time-option-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.3vw, 40px);
  border-color: rgba(194, 211, 229, 0.9);
  box-shadow: 0 24px 64px rgba(20, 48, 84, 0.1);
}

.time-option-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #075be8, #00a8e8);
}

.time-option-card--software {
  background:
    linear-gradient(145deg, #ffffff 0%, #ffffff 54%, #eef6ff 100%);
}

.time-option-card--terminal {
  background:
    linear-gradient(145deg, #ffffff 0%, #ffffff 52%, #f7fbff 100%);
}

.time-choice-label {
  width: fit-content;
  padding: 7px 10px;
  color: #075be8;
  background: #eef5ff;
  border: 1px solid #cfe0f5;
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.time-option-preview {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: #071a42;
  border-radius: 8px;
  color: #ffffff;
}

.time-option-preview img {
  width: 100%;
  height: 138px;
  object-fit: contain;
  object-position: top center;
  border-radius: 7px;
  background: linear-gradient(180deg, #f8fbff, #e9f2ff);
}

.time-option-preview strong,
.time-option-preview span {
  display: block;
}

.time-option-preview strong {
  font-size: 1.02rem;
}

.time-option-preview span {
  margin-top: 6px;
  color: #d8e6ff;
  line-height: 1.5;
}

.time-price-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(7, 26, 66, 0.16);
}

.time-price-box::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(0, 168, 232, 0.26), rgba(0, 168, 232, 0));
}

.time-terminal-subblock {
  background:
    linear-gradient(145deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: inset 0 1px 0 #ffffff;
}

.time-terminal-subblock img {
  box-shadow: 0 18px 36px rgba(20, 48, 84, 0.08);
}

.time-calculator-section {
  padding-top: clamp(46px, 6vw, 86px);
  padding-bottom: clamp(46px, 6vw, 86px);
  background:
    linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
}

.time-calculator-panel {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.54fr) minmax(320px, 0.64fr);
  padding: clamp(28px, 3.6vw, 46px);
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 52%, #edf5ff 100%);
  border-color: rgba(194, 211, 229, 0.95);
  box-shadow: 0 30px 80px rgba(20, 48, 84, 0.13);
}

.time-calculator-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 91, 232, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(7, 91, 232, 0.05) 0 1px, transparent 1px 100%);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

.time-calculator-panel > * {
  position: relative;
  z-index: 1;
}

.time-calculator-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.time-calculator-rail span {
  padding: 8px 10px;
  color: #075be8;
  background: #eef5ff;
  border: 1px solid #cfe0f5;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 850;
}

.time-calculator-form fieldset label {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.time-calculator-form fieldset label:has(input:checked) {
  border-color: #075be8;
  box-shadow: 0 10px 26px rgba(7, 91, 232, 0.12);
  transform: translateY(-1px);
}

.time-calculator-result {
  background:
    linear-gradient(145deg, #071a42 0%, #0d2e5b 100%);
  box-shadow: 0 18px 44px rgba(7, 26, 66, 0.2);
}

.qrdtime-platform-section {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.time-screen-main,
.time-screen-card {
  border-color: rgba(194, 211, 229, 0.9);
  box-shadow: 0 24px 64px rgba(20, 48, 84, 0.1);
}

.time-screen-main {
  background:
    linear-gradient(135deg, #071a42 0%, #0d2e5b 100%);
  color: #ffffff;
}

.time-screen-main img {
  padding: 16px;
  background: #f7fbff;
}

.time-screen-main h3 {
  color: #ffffff;
}

.time-screen-main p {
  color: #d8e6ff;
}

.time-screen-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.time-screen-card img {
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

.qrdtime-organize-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.time-feature-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(194, 211, 229, 0.9);
  box-shadow: 0 18px 46px rgba(20, 48, 84, 0.08);
}

.time-feature-card::after {
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  content: "";
  background: #075be8;
  opacity: 0.12;
}

.time-optional-panel {
  background:
    linear-gradient(135deg, #071a42 0%, #0d2e5b 100%);
  border: 0;
  box-shadow: 0 28px 70px rgba(7, 26, 66, 0.18);
}

.time-optional-panel h2,
.time-optional-panel p {
  color: #ffffff;
}

.time-optional-panel p {
  color: #d8e6ff;
}

.time-optional-panel .section-number {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.time-optional-panel .access-check-list li {
  color: #ffffff;
}

.time-optional-panel .access-check {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .time-hero-full .time-hero-copy {
    max-width: 620px;
  }

  .time-option-preview {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .time-calculator-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .time-hero-full {
    min-height: 700px;
  }

  .time-hero-full .time-hero-copy {
    padding-top: 116px;
    padding-bottom: 82px;
  }

  .time-hero-full .time-hero-copy h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .time-hero-full .time-hero-copy p {
    font-size: 1rem;
    line-height: 1.52;
    margin-top: 18px;
  }

  .time-hero-chips li {
    min-height: 34px;
    padding: 8px 10px;
  }

  .time-hero-full .hero-actions {
    margin-top: 18px;
  }

  .time-law-panel {
    margin-top: -24px;
  }

  .time-option-preview {
    grid-template-columns: 1fr;
  }

  .time-option-preview img {
    width: min(150px, 58vw);
    height: 170px;
  }

  .time-calculator-panel,
  .time-option-card,
  .time-law-panel,
  .time-optional-panel {
    padding: 22px;
  }

  .time-screen-main img {
    padding: 10px;
  }
}

/* Control Horario landing reference layout, v20260609-16 */
.time-hero-full {
  min-height: clamp(540px, 58svh, 650px);
  background: #020f1b;
}

.time-hero-full .time-hero-bg {
  object-position: 58% center;
  filter: saturate(0.98) contrast(1.02);
  transform: none;
}

.time-hero-full .time-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 15, 27, 0.98) 0%, rgba(2, 15, 27, 0.94) 29%, rgba(2, 15, 27, 0.76) 46%, rgba(2, 15, 27, 0.28) 67%, rgba(2, 15, 27, 0.02) 100%),
    linear-gradient(180deg, rgba(2, 15, 27, 0.05) 0%, rgba(2, 15, 27, 0.16) 70%, rgba(2, 15, 27, 0.56) 100%);
}

.time-hero-full .time-hero-copy {
  max-width: 570px;
  padding-top: clamp(54px, 7svh, 82px);
  padding-bottom: clamp(38px, 5svh, 62px);
}

.time-hero-full .time-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(2.65rem, 3.8vw, 3.55rem);
  line-height: 1.02;
}

.time-hero-full .time-hero-copy p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.68;
}

.time-hero-full .hero-actions {
  margin-top: 26px;
}

.time-hero-full .hero-actions .button {
  min-height: 58px;
  padding-inline: 26px;
}

.time-hero-proofs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
  width: min(100%, 760px);
  margin: clamp(26px, 3.8vw, 38px) 0 0;
  padding: 0;
  list-style: none;
}

.time-hero-proofs li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #ffffff;
}

.time-hero-proofs span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #2f8cff;
}

.time-hero-proofs svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.time-hero-proofs strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 780;
  line-height: 1.35;
}

.time-options-section {
  padding-top: clamp(76px, 7vw, 104px);
  padding-bottom: clamp(34px, 4.8vw, 58px);
  background: #ffffff;
}

.time-options-section .section-heading {
  margin-bottom: clamp(26px, 3.6vw, 40px);
  text-align: center;
}

.time-options-section .section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.time-options-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.02fr) minmax(260px, 0.82fr);
  gap: 30px;
  align-items: center;
}

.time-option-card,
.time-compliance-card {
  border: 1px solid #d7e3f1;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 48, 84, 0.06);
}

.time-option-card {
  min-height: 680px;
  padding: clamp(24px, 2.8vw, 34px);
  gap: 18px;
}

.time-option-card::before {
  display: none;
}

.time-option-card--software {
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 58%, #f0f6ff 100%);
}

.time-option-badge {
  width: fit-content;
  padding: 8px 10px;
  color: #ffffff;
  background: #075be8;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.time-option-devices {
  position: relative;
  min-height: 210px;
  margin-top: 4px;
}

.time-device {
  display: block;
  background: #eef5ff;
  border: 1px solid #dbe8f7;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(20, 48, 84, 0.09);
}

.time-device--desktop {
  width: 86%;
  height: 166px;
  object-fit: contain;
  object-position: top center;
  padding: 8px;
}

.time-device--phone {
  position: absolute;
  right: 2px;
  bottom: 0;
  width: 104px;
  height: 170px;
  object-fit: contain;
  object-position: top center;
  padding: 6px;
}

.time-terminal-visual {
  display: grid;
  min-height: 245px;
  place-items: center;
}

.time-terminal-visual img {
  width: min(88%, 280px);
  height: 245px;
  object-fit: contain;
}

.time-option-card h3,
.time-compliance-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.16;
}

.time-option-card p,
.time-compliance-card p {
  font-size: 0.98rem;
  line-height: 1.62;
}

.time-option-card .access-check-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.time-option-card .access-check-list li {
  color: #263b57;
  font-size: 0.95rem;
}

.time-option-card .button {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  margin-top: auto;
}

.time-compliance-card {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 460px;
  padding: clamp(28px, 3vw, 38px);
  background: linear-gradient(150deg, #ffffff 0%, #f4f9ff 100%);
}

.time-compliance-card .time-card-icon {
  width: 72px;
  height: 72px;
  color: #075be8;
  background: transparent;
  border: 0;
}

.time-compliance-card .time-card-icon svg {
  width: 72px;
  height: 72px;
  stroke-width: 1.7;
}

.time-calculator-section {
  padding-top: clamp(28px, 4vw, 46px);
  background: #ffffff;
}

.time-calculator-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(26px, 3.4vw, 42px);
  background: #ffffff;
  border: 1px solid #d7e3f1;
  border-radius: 8px;
  box-shadow: none;
}

.time-calculator-panel::before {
  display: none;
}

.time-calculator-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.time-calculator-head h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  line-height: 1.12;
}

.time-calculator-head p {
  margin: 10px 0 0;
  color: #334155;
  line-height: 1.58;
}

.time-calculator-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 70px);
  align-items: stretch;
}

.time-calculator-form {
  align-content: center;
  gap: 20px;
}

.time-employee-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px 56px;
  overflow: hidden;
  min-height: 58px;
  background: #ffffff;
  border: 1px solid #cdd9e7;
  border-radius: 7px;
}

.time-employee-control input[type="number"] {
  min-height: 58px;
  border: 0;
  border-radius: 0;
}

.time-employee-control button {
  display: grid;
  place-items: center;
  color: #071a42;
  background: #f8fbff;
  border: 0;
  border-left: 1px solid #cdd9e7;
  font: inherit;
  font-size: 1.5rem;
  font-weight: 760;
  cursor: pointer;
}

.time-employee-control button:focus-visible {
  outline: 3px solid rgba(7, 91, 232, 0.28);
  outline-offset: -3px;
}

.time-calculator-form fieldset label {
  padding: 16px;
  border-radius: 7px;
}

.time-calculator-result {
  min-height: 300px;
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(145deg, #071a42 0%, #082844 100%);
  border-radius: 8px;
}

.time-calculator-result > strong {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.time-calculator-info {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 18px 22px;
  color: #334155;
  background: #f1f6fd;
  border-radius: 7px;
  line-height: 1.48;
}

.time-calculator-info span {
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #075be8;
  border: 1px solid #8cb9ff;
  border-radius: 999px;
  font-weight: 850;
}

.time-calculator-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.time-calculator-benefits li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #263b57;
  font-weight: 760;
  line-height: 1.35;
}

.time-calculator-benefits span {
  color: #075be8;
}

.time-calculator-benefits svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (min-width: 1280px) {
  .time-hero-full .access-hero-full-content {
    padding-left: 0;
  }
}

@media (max-width: 1040px) {
  .time-options-grid,
  .time-calculator-body {
    grid-template-columns: 1fr;
  }

  .time-option-card,
  .time-compliance-card {
    min-height: auto;
  }

  .time-compliance-card {
    align-content: start;
  }

  .time-calculator-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .time-hero-full {
    min-height: 720px;
  }

  .time-hero-full .time-hero-bg {
    object-position: 62% center;
  }

  .time-hero-full .time-hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 15, 27, 0.9) 0%, rgba(2, 15, 27, 0.82) 45%, rgba(2, 15, 27, 0.45) 100%),
      linear-gradient(90deg, rgba(2, 15, 27, 0.94), rgba(2, 15, 27, 0.38));
  }

  .time-hero-full .time-hero-copy {
    padding-top: 92px;
    padding-bottom: 44px;
  }

  .time-hero-full .time-hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  .time-hero-full .hero-actions {
    display: grid;
    gap: 12px;
  }

  .time-hero-full .hero-actions .button {
    width: 100%;
  }

  .time-hero-proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .time-options-section .section-heading {
    text-align: left;
  }

  .time-options-section .section-heading h2 {
    margin-inline: 0;
  }

  .time-option-card,
  .time-compliance-card,
  .time-calculator-panel {
    padding: 22px;
  }

  .time-option-devices {
    min-height: 190px;
  }

  .time-device--desktop {
    height: 142px;
  }

  .time-device--phone {
    width: 92px;
    height: 152px;
  }

  .time-terminal-visual {
    min-height: 190px;
  }

  .time-terminal-visual img {
    height: 188px;
  }

  .time-calculator-benefits {
    grid-template-columns: 1fr;
  }

  .time-calculator-result .button {
    width: 100%;
  }
}

.privacy-first-layer {
  margin: 14px 0 0;
  padding: 14px 16px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.privacy-first-layer strong {
  display: block;
  margin-bottom: 6px;
  color: #071a42;
  font-size: 0.9rem;
}

.privacy-first-layer p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.privacy-first-layer a,
.legal-content a {
  color: #005bea;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body[data-page="/contacto/"] .privacy-check {
  margin-bottom: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}

body[data-page="/contacto/"] .privacy-first-layer {
  margin: 8px 0 16px;
  padding: 10px 12px;
  background: #fbfdff;
  border-color: #e2ebf3;
}

body[data-page="/contacto/"] .privacy-first-layer strong {
  margin-bottom: 4px;
  font-size: 0.82rem;
}

body[data-page="/contacto/"] .privacy-first-layer p {
  color: #465766;
  font-size: 0.8rem;
  line-height: 1.42;
}

.legal-table {
  width: 100%;
  margin: 18px 0 26px;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #dbe5f0;
}

.legal-table th {
  color: #071a42;
  font-size: 0.82rem;
  background: #f4f8fd;
}

.legal-table td {
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-cookie-button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(760px, calc(100vw - 36px));
  align-items: center;
  padding: 18px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(7, 26, 66, 0.2);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 6px;
  color: #071a42;
  font-size: 1rem;
}

.cookie-banner__copy p {
  margin: 0;
  color: #52657a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-banner .button,
.cookie-modal .button {
  min-height: 42px;
  padding: 10px 14px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(2, 15, 27, 0.58);
}

.cookie-modal__panel {
  width: min(620px, 100%);
  padding: 24px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(2, 15, 27, 0.28);
}

.cookie-modal__panel h2 {
  margin: 0;
  color: #071a42;
  font-size: 1.35rem;
  line-height: 1.2;
}

.cookie-modal__panel p {
  margin: 12px 0 18px;
  color: #52657a;
  line-height: 1.55;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #dbe5f0;
}

.cookie-option strong,
.cookie-option span {
  display: block;
}

.cookie-option span {
  margin-top: 4px;
  color: #52657a;
  font-size: 0.88rem;
  line-height: 1.4;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: #075be8;
}

.cookie-required {
  color: #075be8;
  font-size: 0.82rem;
  font-weight: 820;
}

@media (max-width: 720px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner .button,
  .cookie-modal .button {
    width: 100%;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .legal-table {
    display: block;
    overflow-x: auto;
  }
}

/* Control Horario landing de producto, v20260610-02 */
#calculadora-control-horario,
#terminal-qrd1000t800,
#opciones-fichaje {
  scroll-margin-top: 86px;
}

.time-hero-price {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
  margin: 22px 0 0;
}

.time-hero-price strong {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.3vw, 1.85rem);
  font-weight: 880;
  letter-spacing: -0.01em;
}

.time-hero-price span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 680;
}

.qrdtime-product-bar {
  background: #071a42;
  border-bottom: 1px solid #dbe5f0;
}

.qrdtime-product-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Logo QRDTime real, v20260610-13 */
.qrdtime-logo {
  display: inline-grid;
  align-items: center;
  justify-items: start;
  line-height: 1;
}

.qrdtime-logo-img {
  display: block;
  width: 156px;
  height: auto;
  object-fit: contain;
}

.time-hero-brand .qrdtime-logo {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.time-hero-brand .qrdtime-logo-img {
  width: 170px;
}

.qrdtime-logo--sm .qrdtime-logo-img {
  width: 120px;
}

.qrdtime-product-bar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qrdtime-product-bar li {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #d8e6ff;
  font-size: 0.88rem;
  font-weight: 740;
}

.qrdtime-product-bar li::before {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  content: "";
  background: #2f8cff;
  border-radius: 999px;
}

.qrdtime-ways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.qrdtime-way-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.6vw, 30px);
  background: #ffffff;
  border: 1px solid #d7e3f1;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 48, 84, 0.06);
}

.qrdtime-way-media {
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid #dbe8f7;
  border-radius: 8px;
}

.qrdtime-way-media img {
  display: block;
  width: 100%;
  height: 215px;
  padding: 12px;
  object-fit: contain;
}

.qrdtime-way-card h3 {
  margin: 4px 0 0;
  color: #071a42;
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  line-height: 1.16;
}

.qrdtime-way-card p {
  margin: 0;
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.6;
}

.qrdtime-way-card .access-check-list {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
}

.qrdtime-way-card .access-check-list li {
  color: #263b57;
  font-size: 0.93rem;
}

.qrdtime-way-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  color: #075be8;
  font-size: 0.93rem;
  font-weight: 820;
  text-decoration: none;
}

.qrdtime-way-link:hover,
.qrdtime-way-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qrdtime-way-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.qrdtime-ways-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 36px);
}

.qrdtime-compliance-section {
  padding-top: 0;
  padding-bottom: clamp(28px, 4vw, 54px);
}

.qrdtime-compliance-band {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 65%, #edf5ff 100%);
  border: 1px solid rgba(185, 206, 230, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 48, 84, 0.08);
}

.qrdtime-compliance-band .time-card-icon {
  width: 72px;
  height: 72px;
  color: #075be8;
  background: transparent;
  border: 0;
}

.qrdtime-compliance-band .time-card-icon svg {
  width: 72px;
  height: 72px;
  stroke-width: 1.7;
}

.qrdtime-compliance-band h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.14;
}

.qrdtime-compliance-band p {
  margin: 10px 0 0;
  color: #334155;
  line-height: 1.6;
}

.qrdtime-terminal-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.qrdtime-terminal-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(26px, 3.6vw, 52px);
  align-items: center;
  padding: clamp(26px, 3.6vw, 48px);
  background: linear-gradient(145deg, #071a42 0%, #0d2e5b 100%);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 26, 66, 0.18);
}

.qrdtime-terminal-media {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: clamp(18px, 2.4vw, 30px);
  background: linear-gradient(180deg, #ffffff, #eef5ff);
  border-radius: 8px;
}

.qrdtime-terminal-media img {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

.qrdtime-terminal-copy {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.qrdtime-terminal-copy .section-number {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.qrdtime-terminal-tag {
  padding: 7px 10px;
  color: #9cc4ff;
  background: rgba(47, 140, 255, 0.14);
  border: 1px solid rgba(47, 140, 255, 0.4);
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.qrdtime-terminal-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.1;
}

.qrdtime-terminal-copy > p {
  margin: 0;
  color: #d8e6ff;
  line-height: 1.62;
}

.qrdtime-terminal-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.qrdtime-terminal-specs li {
  padding-left: 14px;
  border-left: 2px solid rgba(47, 140, 255, 0.55);
}

.qrdtime-terminal-specs strong {
  display: block;
  color: #ffffff;
  font-size: 0.93rem;
  font-weight: 840;
}

.qrdtime-terminal-specs span {
  display: block;
  margin-top: 3px;
  color: #b9cdf2;
  font-size: 0.87rem;
  line-height: 1.5;
}

.qrdtime-terminal-note {
  margin: 4px 0 0;
  color: #b9cdf2;
  font-size: 0.88rem;
  line-height: 1.55;
}

.qrdtime-terminal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  margin-top: 8px;
}

.qrdtime-terminal-download {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #9cc4ff;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qrdtime-terminal-download:hover,
.qrdtime-terminal-download:focus-visible {
  color: #ffffff;
}

@media (max-width: 1040px) {
  .qrdtime-ways-grid {
    grid-template-columns: 1fr;
  }

  .qrdtime-way-media img {
    height: 230px;
  }

  .qrdtime-terminal-panel {
    grid-template-columns: 1fr;
  }

  .qrdtime-terminal-media img {
    width: min(100%, 300px);
  }
}

@media (max-width: 720px) {
  .time-hero-price {
    margin-top: 18px;
  }

  .qrdtime-product-bar-inner {
    justify-content: flex-start;
  }

  .qrdtime-way-card,
  .qrdtime-compliance-band,
  .qrdtime-terminal-panel {
    padding: 22px;
  }

  .qrdtime-compliance-band {
    grid-template-columns: 1fr;
  }

  .qrdtime-compliance-band .time-card-icon,
  .qrdtime-compliance-band .time-card-icon svg {
    width: 56px;
    height: 56px;
  }

  .qrdtime-terminal-specs {
    grid-template-columns: 1fr;
  }

  .qrdtime-ways-actions .button,
  .qrdtime-terminal-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Registro horario: tarjeta legal compacta, v20260610-47 */
.qrdtime-legal-info-section {
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 46px);
  background: #ffffff;
}

.qrdtime-legal-band {
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(22px, 2.6vw, 30px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0 7%, transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.72) 0 6%, transparent 18%),
    linear-gradient(135deg, #eef6ff 0%, #f7fbff 100%);
  border: 1px solid #dbe8f6;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.07);
}

.qrdtime-legal-band--compact {
  display: grid;
  gap: clamp(16px, 2vw, 21px);
}

.qrdtime-legal-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 2vw, 22px);
  align-items: center;
  max-width: 900px;
}

.qrdtime-legal-intro .time-card-icon {
  width: clamp(56px, 5vw, 66px);
  height: clamp(56px, 5vw, 66px);
  color: #075be8;
  background: #ffffff;
  border: 1px solid #e1ebf7;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.08);
}

.qrdtime-legal-intro .time-card-icon svg {
  width: clamp(30px, 3vw, 38px);
  height: clamp(30px, 3vw, 38px);
}

.qrdtime-legal-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(18px, 2.4vw, 24px);
  text-align: center;
}

.qrdtime-legal-heading h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.qrdtime-legal-intro h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.qrdtime-legal-heading p {
  max-width: 680px;
  margin: 8px auto 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.45;
}

.qrdtime-legal-intro p {
  max-width: 740px;
  margin: 8px 0 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.5;
}

.qrdtime-legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.qrdtime-legal-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.qrdtime-legal-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.qrdtime-legal-grid--four .qrdtime-legal-card {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 9px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(215, 230, 247, 0.9);
  border-radius: 8px;
}

.qrdtime-legal-card .time-card-icon {
  width: clamp(58px, 6vw, 74px);
  height: clamp(58px, 6vw, 74px);
  color: #075be8;
  background: #ffffff;
  border: 1px solid #e1ebf7;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.08);
}

.qrdtime-legal-grid--four .time-card-icon {
  width: 34px;
  height: 34px;
  color: #075be8;
  background: #f1f7ff;
  border: 1px solid #dbe8f6;
  box-shadow: none;
}

.qrdtime-legal-card .time-card-icon svg {
  width: clamp(28px, 3vw, 36px);
  height: clamp(28px, 3vw, 36px);
}

.qrdtime-legal-grid--four .time-card-icon svg {
  width: 19px;
  height: 19px;
}

.qrdtime-legal-card h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.02rem;
  line-height: 1.25;
}

.qrdtime-legal-card p {
  margin: 7px 0 0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.45;
}

.qrdtime-legal-disclaimer {
  max-width: 980px;
  margin: 12px auto 0;
  color: #61717e;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
}

.qrdtime-legal-band--compact .qrdtime-legal-disclaimer {
  max-width: none;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(190, 211, 235, 0.78);
  text-align: left;
}

@media (max-width: 980px) {
  .qrdtime-legal-grid {
    gap: 18px;
  }

  .qrdtime-legal-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qrdtime-legal-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .qrdtime-legal-band {
    padding: 18px 14px;
  }

  .qrdtime-legal-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .qrdtime-legal-intro .time-card-icon {
    width: 42px;
    height: 42px;
  }

  .qrdtime-legal-intro .time-card-icon svg {
    width: 23px;
    height: 23px;
  }

  .qrdtime-legal-intro h2 {
    font-size: 1.24rem;
    line-height: 1.14;
  }

  .qrdtime-legal-intro p {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .qrdtime-legal-heading {
    margin-bottom: 16px;
  }

  .qrdtime-legal-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .qrdtime-legal-grid--four {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .qrdtime-legal-card {
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 14px;
    text-align: left;
  }

  .qrdtime-legal-card .time-card-icon {
    width: 48px;
    height: 48px;
  }

  .qrdtime-legal-card .time-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .qrdtime-legal-card h3 {
    font-size: 0.98rem;
  }

  .qrdtime-legal-card p {
    margin-top: 4px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .qrdtime-legal-grid--four .qrdtime-legal-card {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 11px;
  }

  .qrdtime-legal-grid--four .time-card-icon {
    width: 32px;
    height: 32px;
  }

  .qrdtime-legal-grid--four .time-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .qrdtime-legal-band--compact .qrdtime-legal-disclaimer {
    font-size: 0.8rem;
    line-height: 1.35;
  }
}

/* Seccion de precios por tramos, v20260610-03 */
#precios,
#tarifas-qrdtime {
  scroll-margin-top: 86px;
}

.qrdtime-pricing-section {
  background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
}

.qrdtime-pricing-section .section-heading {
  margin-bottom: clamp(30px, 3.8vw, 46px);
  text-align: center;
}

.qrdtime-pricing-section .section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.qrdtime-pricing-logo {
  display: grid;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.qrdtime-logo--pricing .qrdtime-logo-img {
  width: min(284px, 54vw);
}

.qrdtime-section-logo {
  display: grid;
  width: fit-content;
  margin: 0 auto 18px;
}

.qrdtime-logo--section .qrdtime-logo-img {
  width: min(220px, 48vw);
}

.qrdtime-pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.45vw, 22px);
  align-items: stretch;
  max-width: 1080px;
  margin-inline: auto;
}

.qrdtime-price-card {
  position: relative;
  display: grid;
  gap: 11px;
  align-content: start;
  min-height: 292px;
  padding: 34px 18px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d7e3f1;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(20, 48, 84, 0.055);
  appearance: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.qrdtime-price-card:hover,
.qrdtime-price-card:focus-visible {
  border-color: #74a8ff;
  box-shadow: 0 22px 46px rgba(7, 91, 232, 0.12);
  transform: translateY(-2px);
}

.qrdtime-price-card.is-selected,
.qrdtime-price-card--featured.is-selected {
  border-color: #075be8;
  box-shadow: 0 22px 46px rgba(7, 91, 232, 0.13);
}

.qrdtime-price-card.is-selected::after {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 9px;
  height: 9px;
  content: "";
  background: #075be8;
  border-radius: 999px;
  box-shadow: 0 0 0 4px #eaf2ff;
}

.qrdtime-price-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 5px 10px;
  color: #ffffff;
  background: #075be8;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.qrdtime-price-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-inline: auto;
  color: #075be8;
}

.qrdtime-price-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.qrdtime-price-size {
  max-width: 118px;
  margin-inline: auto;
  color: #071a42;
  font-size: 0.94rem;
  font-weight: 830;
  line-height: 1.28;
}

.qrdtime-price-main {
  margin: 10px 0 0;
}

.qrdtime-price-main strong {
  display: block;
  color: #071a42;
  font-size: clamp(2.1rem, 3vw, 2.65rem);
  font-weight: 890;
  letter-spacing: 0;
  line-height: 1.15;
}

.qrdtime-price-main span {
  display: block;
  margin-top: 1px;
  color: #071a42;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.25;
}

.qrdtime-price-year {
  margin: 10px 0 0;
  padding-top: 16px;
  color: #075be8;
  border-top: 1px dashed #dbe5f0;
  font-size: 0.92rem;
  font-weight: 880;
  line-height: 1.35;
}

.qrdtime-price-cloud,
.qrdtime-price-per {
  margin: 0;
  color: #61717e;
  font-size: 0.8rem;
  line-height: 1.4;
}

.qrdtime-price-cloud {
  color: #334155;
  font-weight: 780;
}

.qrdtime-pricing-footnote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 1040px;
  margin: 22px auto 0;
  padding: 16px 22px;
  color: #475569;
  background: #ffffff;
  border: 1px solid #d7e3f1;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(20, 48, 84, 0.05);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

.qrdtime-pricing-footnote p {
  margin: 0;
}

.qrdtime-pricing-footnote strong {
  color: #071a42;
}

.qrdtime-pricing-note-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #075be8;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  font-family: Georgia, serif;
  line-height: 1;
}

.qrdtime-pricing-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 18px auto 0;
  padding: 20px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #071a42 0%, #075be8 100%);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 26, 66, 0.16);
}

.qrdtime-pricing-extra-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
}

.qrdtime-pricing-extra-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.qrdtime-pricing-extra > div {
  flex: 1 1 320px;
}

.qrdtime-pricing-extra strong {
  display: block;
  color: #ffffff;
  font-size: 1.18rem;
}

.qrdtime-pricing-extra span {
  display: block;
  margin-top: 4px;
  color: #d8e6ff;
  font-size: 0.92rem;
  line-height: 1.5;
}

.qrdtime-pricing-extra .button {
  flex: 0 0 auto;
}

.qrdtime-pricing-included {
  margin-top: 26px;
  padding: clamp(24px, 3vw, 38px);
  background: #ffffff;
  border: 1px solid #d7e3f1;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 48, 84, 0.06);
}

.qrdtime-pricing-included h3 {
  margin: 0 0 18px;
  color: #071a42;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
}

.qrdtime-pricing-included .access-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  margin: 0;
}

.qrdtime-pricing-included .access-check-list li {
  color: #263b57;
  font-size: 0.95rem;
}

.qrdtime-pricing-setup {
  margin: 20px 0 0;
  padding: 16px 18px;
  color: #334155;
  background: #f1f6fd;
  border-radius: 7px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.qrdtime-pricing-setup strong {
  color: #071a42;
}

.qrdtime-pricing-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.qrdtime-pricing-actions .button {
  min-height: 58px;
  padding-inline: clamp(28px, 4vw, 46px);
  font-size: 1.02rem;
  box-shadow: 0 20px 44px rgba(7, 91, 232, 0.2);
}

@media (max-width: 1120px) {
  .qrdtime-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .qrdtime-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 500px;
  }

  .qrdtime-price-card {
    min-height: 238px;
    padding: 26px 14px 20px;
  }

  .qrdtime-price-main strong {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .qrdtime-pricing-footnote {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    text-align: left;
  }

  .qrdtime-pricing-extra {
    padding: 20px;
    text-align: left;
  }

  .qrdtime-pricing-extra .button,
  .qrdtime-pricing-actions .button {
    width: 100%;
    justify-content: center;
  }

  .qrdtime-pricing-included .access-check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .qrdtime-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.qrdtime-pricing-extra .button.button-secondary {
  color: #071a42;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.qrdtime-pricing-extra .button.button-secondary:hover,
.qrdtime-pricing-extra .button.button-secondary:focus-visible {
  color: #075be8;
  background: #f5f8ff;
  border-color: #f5f8ff;
}

/* Hero producto Control Horario, v20260610-04 */
.time-hero-full {
  overflow: hidden;
}

.time-hero-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin: 0 0 16px;
  color: #ffffff;
}

.time-hero-brand-tag {
  padding-left: 14px;
  color: #8fc1ff;
  border-left: 2px solid rgba(143, 193, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.time-hero-price {
  display: inline-grid;
  gap: 5px;
  margin: 22px 0 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.time-hero-price strong {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.3vw, 1.85rem);
  font-weight: 890;
  letter-spacing: -0.01em;
}

.time-hero-price strong i {
  font-size: 0.55em;
  font-style: normal;
  font-weight: 760;
  color: rgba(255, 255, 255, 0.85);
}

.time-hero-price span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 640;
}

.time-hero-visual {
  position: absolute;
  top: 19%;
  right: clamp(175px, 16vw, 265px);
  z-index: 3;
  display: none;
}

.time-hero-toast {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(2, 15, 27, 0.38);
  animation: time-hero-float 6s ease-in-out 0.8s infinite;
}

.time-hero-toast-icon {
  display: inline-grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
}

.time-hero-toast-icon--ok {
  color: #ffffff;
  background: #21a574;
}

.time-hero-toast-icon--doc {
  color: #ffffff;
  background: #075be8;
}

.time-hero-toast-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.time-hero-toast-text strong {
  display: block;
  color: #071a42;
  font-size: 0.84rem;
  font-weight: 860;
  line-height: 1.2;
  white-space: nowrap;
}

.time-hero-toast-text em {
  display: block;
  color: #61717e;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 680;
  white-space: nowrap;
}

@keyframes time-hero-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@media (min-width: 1140px) {
  .time-hero-visual {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .time-hero-visual > img,
  .time-hero-toast {
    animation: none;
  }
}

@media (max-width: 720px) {
  .time-hero-brand {
    font-size: 1.06rem;
  }

  .time-hero-price {
    width: 100%;
    padding: 12px 14px;
  }
}

/* Ajustes hero: sin degradado inferior y mas aire arriba, v20260610-08 */
.time-hero-full::after {
  content: none;
}

.time-hero-full .time-hero-copy {
  padding-top: clamp(88px, 11svh, 132px);
  padding-bottom: clamp(52px, 7svh, 84px);
}

/* Imagenes amplias en tarjetas de formas de fichar, v20260610-10 */
.qrdtime-way-media--cover img {
  padding: 0;
  object-fit: cover;
}

/* QRDTime captura principal con pie de imagen, v20260610-15 */
.time-screen-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0;
  background: #ffffff;
}

.time-screen-main img {
  width: 100%;
  padding: clamp(12px, 1.8vw, 20px);
  background: #f7fbff;
  object-fit: contain;
}

.time-screen-main figcaption {
  display: grid;
  gap: 4px;
  padding: 16px clamp(18px, 2.2vw, 26px) 20px;
  background: #ffffff;
  border-top: 1px solid #dbe5f0;
}

.time-screen-main figcaption h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.08rem;
}

.time-screen-main figcaption p {
  margin: 0;
  color: #334155;
  line-height: 1.55;
}

/* Galeria QRDTime: miniaturas rellenan el recuadro, v20260610-16 */
.time-screen-card img {
  height: 209px;
  padding: 0;
  object-fit: cover;
  object-position: center top;
}

.time-screen-card--portrait img {
  object-fit: cover;
}

.time-screen-card--cover img {
  height: 209px;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

.time-screen-card--mobile img {
  object-position: center 38%;
  transform: scale(0.95) translateY(-10px);
  transform-origin: center top;
}

.time-screen-card > div {
  background: linear-gradient(180deg, #f3f8ff 0%, #eaf3ff 100%);
  border-top: 1px solid #d7e6f7;
}

#todo-qrdtime .time-feature-grid {
  display: block;
  position: relative;
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  padding: 4px 0;
  border-radius: 8px;
}

#todo-qrdtime .time-feature-grid::before,
#todo-qrdtime .time-feature-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 7vw, 86px);
  pointer-events: none;
}

#todo-qrdtime .time-feature-grid::before {
  left: 0;
  background: linear-gradient(90deg, #f7fbff 0%, rgba(247, 251, 255, 0) 100%);
}

#todo-qrdtime .time-feature-grid::after {
  right: 0;
  background: linear-gradient(270deg, #f7fbff 0%, rgba(247, 251, 255, 0) 100%);
}

#todo-qrdtime .time-feature-track {
  display: flex;
  width: max-content;
  animation: qrdtimeFeatureMarquee 42s linear infinite;
  will-change: transform;
}

#todo-qrdtime .time-feature-track.is-manual {
  animation: none;
  transition: transform 420ms ease;
}

#todo-qrdtime .time-feature-grid:hover .time-feature-track,
#todo-qrdtime .time-feature-grid:focus-within .time-feature-track {
  animation-play-state: paused;
}

#todo-qrdtime .time-feature-set {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(14px, 1.6vw, 20px);
  padding-right: clamp(14px, 1.6vw, 20px);
}

#todo-qrdtime .time-feature-card {
  flex: 0 0 clamp(260px, 25vw, 330px);
  width: clamp(260px, 25vw, 330px);
  min-height: 220px;
}

#todo-qrdtime .time-feature-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -10px 0 18px;
  color: #075be8;
}

#todo-qrdtime .time-feature-arrow {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #c8dcf7;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 48, 84, 0.08);
  color: #075be8;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
}

#todo-qrdtime .time-feature-arrow:hover,
#todo-qrdtime .time-feature-arrow:focus-visible {
  background: #075be8;
  border-color: #075be8;
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

#todo-qrdtime .time-feature-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#todo-qrdtime .time-feature-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #8db7f6;
}

#todo-qrdtime .time-feature-dots i:first-child {
  width: 18px;
  background: #075be8;
}

@media (max-width: 720px) {
  #todo-qrdtime .time-feature-card {
    flex-basis: min(82vw, 330px);
    width: min(82vw, 330px);
  }

  #todo-qrdtime .time-feature-controls {
    margin-top: -4px;
    margin-bottom: 14px;
  }
}

@keyframes qrdtimeFeatureMarquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #todo-qrdtime .time-feature-track {
    animation: none;
  }
}

/* Ajustes UX/copy Control Horario, v20260610-14 */
.time-hero-full {
  min-height: clamp(520px, 58svh, 640px);
}

.time-hero-full .time-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 15, 27, 0.96) 0%, rgba(2, 15, 27, 0.9) 30%, rgba(2, 15, 27, 0.7) 48%, rgba(2, 15, 27, 0.24) 68%, rgba(2, 15, 27, 0.02) 100%),
    linear-gradient(180deg, rgba(2, 15, 27, 0.04) 0%, rgba(2, 15, 27, 0.18) 100%);
}

.time-hero-full .time-hero-copy {
  max-width: 610px;
  padding-top: clamp(140px, 16svh, 190px);
  padding-bottom: clamp(36px, 5svh, 60px);
}

.time-hero-brand {
  margin-bottom: 12px;
}

.time-hero-brand .qrdtime-logo {
  padding: 6px 9px;
  border-radius: 7px;
}

.time-hero-brand .qrdtime-logo-img {
  width: 132px;
}

.time-hero-brand-tag {
  font-size: 0.72rem;
}

.time-hero-full .time-hero-copy h1 {
  font-size: clamp(2.65rem, 3.9vw, 3.7rem);
}

.time-hero-full .time-hero-copy p {
  max-width: 575px;
}

.time-hero-price {
  gap: 4px;
  margin-top: 18px;
  padding: 11px 14px;
}

.time-hero-price strong {
  font-size: clamp(1.22rem, 1.9vw, 1.55rem);
}

.time-hero-price span {
  max-width: 420px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.qrdtime-product-bar {
  background: #071a42;
}

.qrdtime-product-bar-inner {
  justify-content: center;
  padding-top: 11px;
  padding-bottom: 11px;
}

.qrdtime-product-bar ul {
  justify-content: center;
  gap: 8px 22px;
}

.qrdtime-product-bar li {
  font-size: 0.82rem;
}

.qrdtime-way-card {
  gap: 12px;
  padding: clamp(20px, 2.2vw, 26px);
}

.qrdtime-way-media img {
  height: 185px;
}

.qrdtime-way-card p {
  font-size: 0.94rem;
}

.qrdtime-way-card .access-check-list li {
  font-size: 0.9rem;
}

.qrdtime-pricing-section .section-heading p {
  max-width: 760px;
  margin-inline: auto;
}

.qrdtime-pricing-footnote {
  max-width: 880px;
  margin-inline: auto;
  line-height: 1.55;
}

.qrdtime-terminal-copy {
  gap: 12px;
}

.qrdtime-terminal-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qrdtime-terminal-specs span {
  font-size: 0.86rem;
}

@media (max-width: 720px) {
  .time-hero-full {
    min-height: auto;
  }

  .time-hero-full .time-hero-bg {
    object-position: 63% center;
  }

  .time-hero-full .time-hero-copy {
    padding-top: 146px;
    padding-bottom: 34px;
  }

  .time-hero-brand {
    gap: 8px 12px;
  }

  .time-hero-brand .qrdtime-logo-img {
    width: 108px;
  }

  .time-hero-brand-tag {
    max-width: 190px;
    padding-left: 10px;
    font-size: 0.64rem;
    line-height: 1.35;
  }

  .time-hero-full .time-hero-copy h1 {
    font-size: clamp(2.15rem, 10.2vw, 2.95rem);
  }

  .time-hero-full .time-hero-copy p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .time-hero-price {
    width: auto;
    max-width: 100%;
    margin-top: 16px;
  }

  .qrdtime-product-bar-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .qrdtime-product-bar ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .qrdtime-way-media img {
    height: 160px;
  }

  .qrdtime-terminal-specs {
    grid-template-columns: 1fr;
  }
}

/* Footer movil compacto, v20260610-48 */
@media (max-width: 720px) {
  .site-footer {
    padding: 34px 0 22px;
    overflow: hidden;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand-block {
    display: grid;
    gap: 14px;
  }

  .footer-logo {
    width: 164px;
    max-height: 40px;
  }

  .footer-brand-block p {
    display: -webkit-box;
    max-width: none;
    margin: 0;
    overflow: hidden;
    color: rgba(229, 238, 246, 0.76);
    font-size: 0.9rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .footer-accent {
    display: none;
  }

  .footer-certification {
    max-width: none;
    margin: 0;
  }

  .footer-certification > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(216, 227, 234, 0.14);
    border-radius: 8px;
  }

  .footer-certification span {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .footer-qualicard-logo {
    width: 132px;
    max-width: 38vw;
    max-height: 38px;
    margin: 0;
    padding: 6px 8px;
  }

  .footer-qualicard-wordmark {
    margin: 0;
    padding: 7px 10px;
    font-size: 0.9rem;
  }

  .footer-column h2 {
    margin: 0 0 10px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .footer-solutions .footer-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-solution-link {
    min-height: 42px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 9px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 227, 234, 0.12);
    border-radius: 8px;
    font-size: 0.86rem;
  }

  .footer-link-icon {
    width: 22px;
    height: 22px;
  }

  .footer-link-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-sectors {
    display: block;
  }

  .footer-sectors .footer-link-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-sector-link {
    min-height: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 7px;
    align-items: center;
    padding: 8px 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 227, 234, 0.12);
    border-radius: 8px;
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .footer-contact address {
    display: grid;
    gap: 6px;
  }

  .footer-contact address > * {
    min-height: 36px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    border-bottom-color: rgba(216, 227, 234, 0.1);
    font-size: 0.9rem;
  }

  .footer-contact svg {
    width: 20px;
    height: 20px;
  }

  .footer-cta {
    min-height: 46px;
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: stretch;
    margin-top: 24px;
    padding-top: 18px;
    font-size: 0.82rem;
    text-align: center;
  }

  .footer-bottom p {
    text-align: center;
  }

  .footer-bottom nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-bottom nav a,
  .footer-cookie-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 9px;
    border: 1px solid rgba(216, 227, 234, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .footer-cookie-button {
    width: 100%;
    color: rgba(229, 238, 246, 0.72);
    font: inherit;
  }

  .footer-socials {
    display: none;
  }
}

/* QRDTime por dentro: composicion comercial con capturas reales, v20260610-49 */
#qrdtime.qrdtime-platform-section {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(47, 131, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

#qrdtime .section-heading {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 3vw, 34px);
  text-align: center;
}

#qrdtime .section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
}

#qrdtime .section-heading p {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

#qrdtime .time-screen-showcase {
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(18px, 2.6vw, 30px);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.95) 0 7%, transparent 20%),
    linear-gradient(135deg, #f1f7ff 0%, #fbfdff 100%);
  border: 1px solid #d7e6f7;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(20, 48, 84, 0.08);
}

#qrdtime .time-screen-main {
  overflow: hidden;
  border: 1px solid #c8d9ed;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(20, 48, 84, 0.08);
}

#qrdtime .time-screen-main img {
  display: block;
  width: 100%;
  max-height: 500px;
  padding: clamp(14px, 1.8vw, 22px);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  object-fit: contain;
}

#qrdtime .time-screen-main figcaption {
  padding: 14px clamp(18px, 3vw, 34px) 18px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #dbe8f6;
}

#qrdtime .time-screen-main figcaption h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

#qrdtime .time-screen-main figcaption p {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

#qrdtime .time-screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

#qrdtime .time-screen-card {
  display: grid;
  grid-template-rows: 178px 1fr;
  min-height: 360px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d2e1f2;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 48, 84, 0.06);
}

#qrdtime .time-screen-card img {
  width: 100%;
  height: 178px;
  padding: 0;
  background: #f7fbff;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

#qrdtime .time-screen-grid .time-screen-card:first-child img {
  padding: 10px;
  background: #edf6ff;
  object-fit: contain;
}

#qrdtime .time-screen-grid .time-screen-card:nth-child(3) img {
  padding: 10px;
  background: #edf6ff;
  object-fit: contain;
}

#qrdtime .time-screen-grid .time-screen-card:nth-child(4) img {
  padding: 10px;
  background: #edf6ff;
  object-fit: contain;
}

#qrdtime .time-screen-card--mobile img {
  object-position: center 34%;
  transform: scale(0.98);
  transform-origin: center top;
}

#qrdtime .time-screen-card > div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: clamp(16px, 1.8vw, 22px);
  background: #ffffff;
  border-top: 1px solid #dbe8f6;
}

#qrdtime .time-screen-card h3 {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.18;
}

#qrdtime .time-screen-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

#qrdtime .time-screen-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  color: #334155;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dbe8f6;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.45;
}

#qrdtime .time-screen-note::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: #075be8;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #e9f2ff;
}

@media (max-width: 1080px) {
  #qrdtime .time-screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #qrdtime .section-heading {
    margin-bottom: 20px;
  }

  #qrdtime .time-screen-showcase {
    padding: 12px;
  }

  #qrdtime .time-screen-main img {
    max-height: none;
    padding: 8px;
  }

  #qrdtime .time-screen-main figcaption {
    padding: 14px;
    text-align: left;
  }

  #qrdtime .time-screen-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #qrdtime .time-screen-card {
    grid-template-rows: 210px auto;
    min-height: auto;
  }

  #qrdtime .time-screen-card img {
    height: 210px;
  }

  #qrdtime .time-screen-grid .time-screen-card:first-child img {
    padding: 12px;
  }

  #qrdtime .time-screen-grid .time-screen-card:nth-child(3) img {
    padding: 12px;
  }

  #qrdtime .time-screen-grid .time-screen-card:nth-child(4) img {
    padding: 12px;
  }

  #qrdtime .time-screen-card--mobile img {
    object-position: center 30%;
  }

  #qrdtime .time-screen-card > div {
    padding: 16px;
  }

  #qrdtime .time-screen-note {
    align-items: flex-start;
    padding: 12px;
    font-size: 0.84rem;
  }
}

/* ---- Control de accesos v2 ---- */

.access-intro-section {
  padding: clamp(40px, 5vw, 64px) 0;
  background: #ffffff;
}

.access-intro-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px) clamp(22px, 4vw, 48px);
  text-align: center;
  background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 48, 84, 0.07);
}

.access-intro-panel h2 {
  max-width: 720px;
  margin: 10px auto 0;
  color: #071a42;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.12;
}

.access-intro-panel p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #213859;
  line-height: 1.7;
}

.access-decide-section {
  padding: clamp(46px, 6vw, 80px) 0;
  background: #f7faff;
}

.access-decide-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(300px, 0.44fr);
  gap: clamp(26px, 4.5vw, 56px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 48px);
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(0, 144, 215, 0.18), rgba(0, 144, 215, 0) 52%),
    #0a1d30;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.access-decide-copy .solution-eyebrow {
  color: #7dd1ff;
}

.access-decide-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 1.12;
}

.access-decide-copy p {
  margin: 16px 0 0;
  color: #b9cddc;
  line-height: 1.7;
}

.access-decide-copy .access-decide-lead {
  color: #e8f2f9;
  font-size: 1.05rem;
}

.access-flow-chain {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-flow-chain li {
  position: relative;
  display: grid;
  gap: 5px;
  place-items: center;
  padding: 13px 18px;
  text-align: center;
  color: #071a42;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
}

.access-flow-chain li strong {
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.3;
}

.access-flow-step {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4e6d89;
}

.access-flow-chain li:not(:last-child)::after {
  position: absolute;
  bottom: -23px;
  left: 50%;
  color: rgba(125, 209, 255, 0.85);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  content: "↓";
  transform: translateX(-50%);
}

.access-flow-chain li.is-core {
  color: var(--white);
  background: #075be8;
  border-color: #075be8;
  box-shadow: 0 10px 26px rgba(7, 91, 232, 0.3);
}

.access-flow-chain li.is-core .access-flow-step {
  color: #bcd7ff;
}

.access-equip-grid .access-system-card h3 {
  font-size: 1.22rem;
}

.access-fit-label {
  display: inline-flex;
  width: fit-content;
  margin: 14px 0 0;
  padding: 4px 10px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #075be8;
  background: #eaf2ff;
  border-radius: 999px;
}

.access-equip-grid .access-system-card p {
  margin: 10px 0 0;
}

.access-gym-section {
  padding-top: 0;
  background: #f7faff;
}

.access-gym-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px) clamp(22px, 4vw, 40px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.05);
}

.access-gym-panel .section-number {
  width: auto;
  height: auto;
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.access-gym-panel h2 {
  margin: 8px 0 0;
  color: #071a42;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.access-gym-panel p {
  margin: 12px 0 0;
  color: #213859;
  font-size: 0.98rem;
  line-height: 1.66;
}

.access-gym-panel .access-gym-subtitle {
  color: #0a55d8;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .access-decide-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---- Control de accesos premium V4 ---- */

.access-intro-section {
  padding: clamp(34px, 4.8vw, 58px) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.access-intro-panel {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  max-width: 980px;
  text-align: left;
}

.access-intro-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: #ffffff;
  background: linear-gradient(135deg, #075be8 0%, #2d78ff 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(7, 91, 232, 0.22);
}

.access-intro-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.access-intro-copy {
  min-width: 0;
}

.access-intro-panel h2,
.access-intro-panel p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.access-scenarios-section {
  padding: clamp(46px, 5.8vw, 72px) 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(7, 91, 232, 0.06), transparent 38%),
    #ffffff;
}

.access-scenarios-section .access-section-heading {
  margin-bottom: clamp(26px, 3.2vw, 42px);
}

.access-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 42px);
  max-width: 1240px;
  margin: 0 auto;
}

.access-scenario-card--visual {
  display: grid;
  grid-template-columns: minmax(238px, 0.42fr) minmax(0, 0.58fr);
  min-height: 232px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d7e3f2;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(20, 48, 84, 0.075);
}

.access-scenario-card--visual .access-scenario-media {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  background: #edf5ff;
}

.access-scenario-card--visual .access-scenario-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, rgba(7, 26, 66, 0), rgba(7, 26, 66, 0.2));
  pointer-events: none;
}

.access-scenario-card--visual .access-scenario-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.015);
}

.access-scenario-card--visual .access-scenario-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: clamp(18px, 2vw, 24px);
}

.access-scenario-card--visual .access-scenario-icon {
  position: absolute;
  top: clamp(18px, 2vw, 24px);
  left: -24px;
  width: 48px;
  height: 48px;
  color: #075be8;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7e3f2;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(20, 48, 84, 0.13);
}

.access-scenario-card--visual .access-scenario-icon svg {
  width: 25px;
  height: 25px;
}

.access-scenario-card--visual h3 {
  margin-top: 0;
  font-size: clamp(1.12rem, 1.45vw, 1.32rem);
  line-height: 1.12;
}

.access-scenario-card--visual .access-scenario-solution {
  margin-top: 4px;
  padding-top: 11px;
  border-top: 1px solid #dbe7f6;
  color: #17304f;
  font-weight: 720;
}

.access-scenario-card--visual .access-scenario-solution strong {
  display: inline;
  color: #075be8;
}

.access-scenario-card--visual .access-scenario-content p {
  margin: 0;
  color: #334653;
  font-size: 0.9rem;
  line-height: 1.5;
}

.access-scenario-card--visual .access-scenario-content a {
  margin-top: auto;
  padding-top: 6px;
}

.access-scenario-card--visual .access-scenario-content p span {
  display: block;
  margin-bottom: 4px;
  color: #075be8;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-decide-section {
  padding: clamp(42px, 5.6vw, 66px) 0;
  background: #ffffff;
}

.access-decide-panel {
  grid-template-columns: minmax(300px, 0.3fr) minmax(0, 0.7fr);
  column-gap: clamp(22px, 3.2vw, 42px);
  row-gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 78% 16%, rgba(72, 149, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #071a42 0%, #082746 100%);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 26, 66, 0.22);
}

.access-decide-copy {
  display: grid;
  align-content: center;
  max-width: 390px;
}

.access-decide-copy h2 {
  font-size: clamp(1.55rem, 2.05vw, 2.1rem);
  line-height: 1.08;
}

.access-decide-copy p {
  margin-top: 12px;
  line-height: 1.55;
}

.access-decide-copy .access-decide-lead {
  font-size: 0.98rem;
}

.access-flow-chain {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.78fr) minmax(0, 1.42fr) minmax(0, 0.95fr);
  gap: 14px;
  align-self: center;
  min-height: 244px;
  padding: clamp(16px, 2.1vw, 22px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.access-flow-chain li {
  min-height: 162px;
  padding: 20px 14px;
  background: #f8fbff;
  border-color: #dbe8f7;
}

.access-flow-chain li::before {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 8px;
  color: #075be8;
  background: #eaf2ff;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 900;
  content: "•";
}

.access-flow-chain li:nth-child(1)::before { content: "ID"; font-size: 0.8rem; }
.access-flow-chain li:nth-child(2)::before { content: "R"; font-size: 0.9rem; }
.access-flow-chain li:nth-child(3)::before { content: "OK"; font-size: 0.78rem; }
.access-flow-chain li:nth-child(4)::before { content: "↗"; }

.access-flow-chain li:not(:last-child)::after {
  top: 50%;
  right: -15px;
  bottom: auto;
  left: auto;
  z-index: 2;
  color: #075be8;
  content: "→";
  transform: translateY(-50%);
}

.access-flow-chain li.is-core {
  color: #ffffff;
  background: linear-gradient(135deg, #075be8 0%, #2d78ff 100%);
  border-color: #2d78ff;
  box-shadow: 0 18px 32px rgba(7, 91, 232, 0.28);
  transform: translateY(-6px) scale(1.035);
}

.access-flow-chain li.is-core strong {
  font-size: clamp(1.12rem, 1.28vw, 1.28rem);
  line-height: 1.12;
}

.access-flow-chain li.is-core::before {
  color: #075be8;
  background: #ffffff;
}

.access-flow-chain li small {
  display: block;
  margin-top: 10px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.82;
}

.access-decide-copy .access-decide-note {
  margin-top: 10px;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.82);
  border-left: 2px solid rgba(87, 164, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.5;
}

.access-decide-cta {
  display: flex;
  grid-column: 1 / -1;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  justify-self: center;
  width: min(100%, 940px);
  margin-top: 0;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.access-decide-cta p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.42;
}

.access-decide-cta .button {
  flex: 0 0 auto;
  min-height: 42px;
  padding-inline: 18px;
  white-space: nowrap;
}

.access-review-consulting-section {
  padding: clamp(46px, 5.4vw, 72px) 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(7, 91, 232, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fe 100%);
}

.access-review-consulting-panel {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(390px, 0.95fr);
  gap: clamp(28px, 4.2vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(20, 48, 84, 0.08);
}

.access-review-consulting-copy {
  align-self: center;
}

.access-review-consulting-copy .solution-eyebrow {
  color: #075be8;
}

.access-review-consulting-copy h2 {
  margin: 14px 0 18px;
  color: #062347;
  font-size: clamp(1.78rem, 2.35vw, 2.18rem);
  line-height: 1.08;
}

.access-review-consulting-copy h2 span {
  white-space: nowrap;
}

.access-review-consulting-copy p {
  margin: 0 0 14px;
  color: #304356;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.68;
}

.access-review-keyline {
  margin: 22px 0 0;
  padding: 16px 18px;
  color: #062347;
  background: #eef6ff;
  border: 1px solid #cfe0f4;
  border-left: 4px solid #075be8;
  border-radius: 8px;
  font-weight: 800;
}

.access-review-checklist-wrap {
  align-self: center;
  padding: clamp(18px, 2.2vw, 26px);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border: 1px solid #dbe7f4;
  border-radius: 8px;
}

.access-review-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-review-checklist li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #dbe7f4;
}

.access-review-checklist li:first-child {
  padding-top: 0;
}

.access-review-checklist li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.access-review-check-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  color: #075be8;
  place-items: center;
  background: #edf5ff;
  border: 1px solid #cfe0f4;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.access-review-checklist h3 {
  margin: 0 0 5px;
  color: #062347;
  font-size: 1rem;
  line-height: 1.2;
}

.access-review-checklist p {
  margin: 0;
  color: #3b4c5e;
  font-size: 0.93rem;
  line-height: 1.5;
}

.access-review-consulting-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 22px;
}

.access-review-consulting-cta .button-secondary {
  color: #075be8;
  background: #ffffff;
  border-color: #b9d0ec;
  box-shadow: 0 12px 24px rgba(7, 91, 232, 0.08);
}

.access-catalog-resource-section {
  padding: clamp(48px, 6vw, 78px) 0;
  background: #ffffff;
}

.access-catalog-resource-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 22%, rgba(51, 160, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #062347 0%, #06375d 100%);
  border: 1px solid rgba(203, 226, 247, 0.18);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(6, 35, 71, 0.2);
}

.access-catalog-resource-copy h2 {
  max-width: 680px;
  margin: 10px 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1.04;
}

.access-catalog-resource-copy p {
  max-width: 690px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.68;
}

.access-catalog-resource-highlight {
  padding: 14px 16px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid #5fb3ff;
  border-radius: 0 8px 8px 0;
  font-weight: 780;
}

.access-catalog-resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.access-catalog-resource-actions .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.access-catalog-resource-visual {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
}

.access-catalog-resource-visual::before {
  position: absolute;
  inset: 58px 14px 18px 64px;
  content: "";
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transform: rotate(4deg);
}

.access-catalog-document {
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 2;
  width: min(72%, 300px);
  padding: 22px;
  color: #062347;
  background: #ffffff;
  border: 1px solid rgba(220, 231, 242, 0.9);
  border-radius: 12px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.access-catalog-document span,
.access-catalog-document em {
  display: block;
  color: #075be8;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-catalog-document strong {
  display: block;
  margin: 14px 0 18px;
  color: #062347;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.access-catalog-document em {
  color: #40576e;
  font-size: 0.86rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.access-catalog-resource-visual img {
  position: relative;
  z-index: 1;
  width: min(82%, 390px);
  height: auto;
  margin: 100px 0 0 58px;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.24));
}

.access-catalog-resource-section {
  padding: clamp(34px, 4.6vw, 54px) 0;
  overflow: hidden;
}

.access-catalog-resource-panel {
  grid-template-columns: 250px minmax(360px, 620px) minmax(220px, 260px);
  justify-content: center;
  gap: clamp(22px, 2.6vw, 34px);
  width: 100vw;
  min-height: 230px;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(24px, 3vw, 34px) clamp(28px, 4vw, 44px);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.access-catalog-resource-copy {
  align-self: center;
}

.access-catalog-resource-copy .solution-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.access-catalog-resource-copy .solution-eyebrow::after {
  display: block;
  width: 42px;
  height: 2px;
  content: "";
  background: #2d78ff;
}

.access-catalog-resource-copy h2 {
  max-width: 680px;
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.access-catalog-resource-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.48;
}

.access-catalog-resource-actions {
  align-self: center;
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.access-catalog-resource-actions .button {
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding-inline: 18px;
  font-size: 0.94rem;
}

.access-catalog-resource-actions .access-outline-button {
  display: inline-flex;
  gap: 12px;
}

.access-catalog-resource-actions .access-outline-button svg {
  width: 22px;
  height: 22px;
}

.access-catalog-resource-visual {
  min-height: 0;
  padding-left: clamp(14px, 2vw, 30px);
  place-items: center;
}

.access-catalog-resource-visual::before {
  inset: auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(7, 91, 232, 0.32), rgba(7, 91, 232, 0));
  border: 0;
  border-radius: 999px;
  transform: none;
}

.access-catalog-resource-visual img {
  width: 156px;
  margin: 0;
  border-radius: 2px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.34);
  transform: perspective(900px) rotateY(-10deg) rotateZ(-3deg);
}

.access-brand-trust-section {
  padding: clamp(28px, 3.5vw, 46px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(7, 91, 232, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.access-brand-trust-panel {
  position: relative;
  display: grid;
  gap: clamp(20px, 2.8vw, 30px);
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) clamp(22px, 4vw, 46px);
  background:
    radial-gradient(circle at 50% 16%, rgba(7, 91, 232, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
    #ffffff;
  border: 1px solid rgba(123, 166, 225, 0.34);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(20, 48, 84, 0.12);
}

.access-brand-trust-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.access-brand-logo-card {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.access-brand-logo-card img {
  width: min(100%, 260px);
  height: auto;
  object-fit: contain;
}

.access-brand-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(260px, 100%);
  padding: 10px 18px;
  color: #06182d;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  background: #ffffff;
  border: 1px solid rgba(123, 166, 225, 0.22);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(20, 48, 84, 0.08);
}

.access-brand-trust-intro > div:last-child {
  display: grid;
  justify-items: center;
}

.access-brand-trust-intro > div:last-child::before {
  width: 58px;
  height: 3px;
  margin: clamp(12px, 1.6vw, 16px) 0 clamp(10px, 1.4vw, 14px);
  background: #075be8;
  border-radius: 999px;
  content: "";
}

.access-brand-trust-intro h2 {
  max-width: 820px;
  margin: 0;
  color: #071a42;
  font-size: clamp(1.95rem, 3vw, 2.85rem);
  line-height: 1.06;
}

.access-brand-trust-intro p {
  max-width: 760px;
  margin: clamp(10px, 1.4vw, 14px) auto 0;
  color: #263d58;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.access-brand-trust-intro .access-brand-trust-note {
  margin-top: 10px;
  color: #506782;
  font-size: 0.95rem;
}

.access-brand-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  width: min(100%, 820px);
  margin: 0 auto;
}

.access-brand-trust-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 96px;
  padding: 0 clamp(14px, 2vw, 24px);
  text-align: center;
  background: transparent;
  border: 0;
  border-left: 1px solid #d5e1ef;
  border-radius: 0;
  box-shadow: none;
}

.access-brand-trust-grid article:first-child {
  border-left: 0;
}

.access-brand-trust-icon {
  display: inline-grid;
  width: clamp(54px, 5vw, 66px);
  height: clamp(54px, 5vw, 66px);
  place-items: center;
  margin-bottom: 12px;
  color: #075be8;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(20, 48, 84, 0.1);
}

.access-brand-trust-icon svg {
  width: clamp(25px, 2.4vw, 32px);
  height: clamp(25px, 2.4vw, 32px);
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.access-brand-trust-grid h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(0.98rem, 1.25vw, 1.16rem);
  line-height: 1.22;
}

.access-brand-trust-grid p {
  margin: 10px 0 0;
  color: #334653;
  font-size: 0.9rem;
  line-height: 1.45;
}

.access-system-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.access-system-grid.access-solution-grid.access-equip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.access-equip-grid .access-equipment-card {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 340px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.08);
}

.access-equip-grid .access-equipment-card:last-child {
  border-right: 1px solid #dbe5f0;
}

.access-equipment-media {
  display: grid;
  height: 148px;
  place-items: center;
  margin: -2px 0 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 8px;
}

.access-equipment-media img {
  max-width: 92%;
  max-height: 138px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(20, 48, 84, 0.12));
}

.access-equipment-copy h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.12rem, 1.45vw, 1.28rem);
  line-height: 1.18;
}

.access-equipment-copy p {
  margin-top: 10px;
  color: #334653;
  font-size: 0.92rem;
  line-height: 1.45;
}

.access-equipment-copy p strong {
  color: #071a42;
}

.access-equip-grid .access-fit-label {
  margin-top: 8px;
}

.access-principle-panel,
.access-maintenance-panel {
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.34fr) minmax(250px, 0.28fr);
  align-items: center;
  padding: clamp(22px, 3.2vw, 34px);
  background: #ffffff;
}

.access-complement-media {
  overflow: hidden;
  align-self: stretch;
  min-height: 300px;
  background: #edf5ff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.access-complement-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.access-principle-panel .access-check-list,
.access-maintenance-panel .access-check-list {
  padding: 18px;
  background: #f7fbff;
  border: 1px solid #dbe8f7;
  border-radius: 8px;
}

.access-gym-panel {
  max-width: 1040px;
  background:
    linear-gradient(135deg, rgba(7, 91, 232, 0.06), rgba(255, 255, 255, 0) 44%),
    #ffffff;
}

.access-gym-panel .access-gym-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.access-gym-panel .access-gym-flow li {
  position: relative;
  min-height: 106px;
  padding: 18px 14px 16px;
  color: #17304f;
  background: #f7fbff;
  border: 1px solid #dbe8f7;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.access-gym-panel .access-gym-flow li::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 10px;
  color: #ffffff;
  background: #075be8;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  counter-increment: gym-step;
  content: counter(gym-step, decimal-leading-zero);
}

.access-gym-panel .access-gym-flow {
  counter-reset: gym-step;
}

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

.access-faq-compact .faq-grid {
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr);
  gap: 28px;
}

.access-faq-compact .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.access-faq-compact summary {
  padding: 16px 44px 16px 18px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.access-faq-compact details p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.access-final-cta {
  background: #ffffff;
}

.access-final-panel-strong {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 50%, rgba(45, 120, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #071a42 0%, #082746 62%, #075be8 100%);
  border: 0;
  box-shadow: 0 30px 70px rgba(7, 26, 66, 0.22);
}

.access-final-panel-strong h2,
.access-final-panel-strong p {
  color: #ffffff;
}

/* Final visual polish for Control de Accesos */
.access-hero:not(.time-hero-full) .access-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 15, 27, 0.94) 0%, rgba(2, 15, 27, 0.82) 30%, rgba(2, 15, 27, 0.34) 58%, rgba(2, 15, 27, 0.04) 100%),
    linear-gradient(180deg, rgba(2, 15, 27, 0.32) 0%, rgba(2, 15, 27, 0.04) 48%, rgba(2, 15, 27, 0.5) 100%);
}

.access-hero:not(.time-hero-full) .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.access-hero:not(.time-hero-full) .button-secondary:hover {
  color: #071a42;
  background: #ffffff;
}

.access-intro-section {
  padding: clamp(30px, 4vw, 48px) 0 clamp(18px, 2.6vw, 30px);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #fbfdff 100%);
}

.access-intro-panel {
  max-width: 1040px;
  border-color: rgba(123, 166, 225, 0.34);
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.055);
}

.access-scenarios-section {
  padding-top: clamp(34px, 4.6vw, 58px);
}

.access-scenarios-grid {
  gap: clamp(28px, 3.2vw, 42px);
}

.access-scenario-card--visual {
  min-height: 236px;
}

.access-scenario-card--visual .access-scenario-media {
  min-height: 236px;
}

.access-system-grid.access-solution-grid.access-equip-grid {
  gap: clamp(22px, 2.4vw, 30px);
}

.access-equip-grid .access-equipment-card {
  min-height: 360px;
}

.access-equipment-media {
  height: 166px;
  margin-bottom: 20px;
}

.access-equipment-media img {
  max-height: 154px;
}

.access-situation-hero .access-reception-media img {
  object-fit: contain;
  background: #f2f7fc;
}

.access-situation-intro {
  display: grid;
  gap: 22px;
}

.access-role-panel {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 24px);
  color: #17304f;
  background: #f7fbff;
  border: 1px solid #d7e3f2;
  border-radius: 8px;
}

.access-role-panel p {
  margin: 0;
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.62;
}

.access-inline-note {
  margin-top: 16px;
  padding-top: 16px;
  color: #334653;
  border-top: 1px solid #dbe7f6;
}

.access-inline-note a {
  color: #075be8;
  font-weight: 800;
}

.access-authorization-flow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 4px 0 16px;
  padding: 9px 12px;
  color: #075be8;
  font-size: 0.88rem;
  font-weight: 900;
  background: #edf5ff;
  border: 1px solid #d7e3f2;
  border-radius: 999px;
}

.access-situation-product .access-product-visual {
  min-height: 230px;
}

.access-errors-card {
  background:
    radial-gradient(circle at 82% 12%, rgba(235, 90, 71, 0.12), transparent 32%),
    #ffffff;
}

.access-error-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-error-list li {
  position: relative;
  padding-left: 26px;
  color: #334653;
  line-height: 1.55;
}

.access-error-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: #eb5a47;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(235, 90, 71, 0.12);
  transform: translateY(-50%);
}

.access-guide-hero {
  position: relative;
  min-height: clamp(520px, 54vw, 650px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 38%, rgba(255, 255, 255, 0.86) 50%, rgba(255, 255, 255, 0.06) 70%),
    #f3f7fb;
  border-bottom: 1px solid #dbe7f6;
}

.access-guide-hero-bg {
  position: absolute;
  inset: 0 0 0 43%;
}

.access-guide-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.46) 26%, rgba(255, 255, 255, 0) 54%);
  pointer-events: none;
}

.access-guide-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.97) contrast(1.02);
}

.access-guide-hero--doors .access-guide-hero-bg img {
  object-position: right center;
}

.access-guide-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.access-guide-hero-copy {
  max-width: 650px;
}

.access-guide-hero-copy .solution-eyebrow {
  margin-top: clamp(34px, 5vw, 72px);
}

.access-guide-hero-copy h1 {
  max-width: 620px;
  margin: 14px 0 0;
  color: #071a42;
  font-size: clamp(3rem, 4.65vw, 5rem);
  line-height: 1;
}

.access-guide-hero-copy p {
  max-width: 610px;
  margin-top: 24px;
  color: #10294a;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
}

.access-guide-actions {
  margin-top: 30px;
}

.access-guide-seo-section,
.access-guide-config-section,
.access-guide-errors-section {
  background: #ffffff;
}

.access-guide-flow-section,
.access-guide-review-section,
.access-guide-faq-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(7, 91, 232, 0.05), transparent 35%),
    #f6f9fd;
}

.access-guide-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.access-guide-copy {
  max-width: 720px;
}

.access-guide-copy h2 {
  margin: 0 0 18px;
  color: #071a42;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.access-guide-copy p {
  margin: 0 0 18px;
  color: #17304f;
  font-size: 1rem;
  line-height: 1.75;
}

.access-guide-image,
.access-guide-config-image {
  margin: 0;
  overflow: hidden;
  background: #eef4fa;
  border: 1px solid #d7e3f2;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.1);
}

.access-guide-image img {
  display: block;
  width: 100%;
  height: clamp(280px, 28vw, 420px);
  object-fit: cover;
}

.access-guide-role-panel {
  margin: 26px 0 0;
}

.access-guide-flow-section .access-section-heading {
  max-width: 880px;
}

.access-guide-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 54px);
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.access-guide-flow li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 180px;
  padding: 4px 10px;
  text-align: center;
}

.access-guide-flow li:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: calc(-1 * clamp(26px, 3vw, 54px) / 2);
  color: #075be8;
  font-size: 1.45rem;
  font-weight: 900;
  content: "→";
}

.access-guide-flow-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: #071a42;
  background: #ffffff;
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(20, 48, 84, 0.08);
}

.access-guide-flow-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.access-guide-flow strong {
  color: #071a42;
  font-size: 1rem;
}

.access-guide-flow small {
  max-width: 230px;
  color: #334653;
  font-size: 0.88rem;
  line-height: 1.55;
}

.access-guide-config-grid {
  align-items: center;
}

.access-guide-check-list {
  margin-top: 22px;
}

.access-guide-config-image {
  border: 0;
  box-shadow: none;
}

.access-guide-config-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}

.access-guide-review-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin-top: 34px;
}

.access-guide-review-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.access-guide-review-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #075be8;
}

.access-guide-review-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.access-guide-review-item h3 {
  margin: 0;
  color: #071a42;
  font-size: 0.92rem;
  line-height: 1.22;
}

.access-guide-review-item p {
  margin: 0;
  color: #334653;
  font-size: 0.82rem;
  line-height: 1.45;
}

.access-guide-bottom-grid {
  align-items: start;
}

.access-guide-elements {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.access-guide-element {
  min-width: 0;
}

.access-guide-element-media {
  display: flex;
  height: 94px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 12px;
  background: #f4f8fc;
  border: 1px solid #dbe7f6;
  border-radius: 8px;
}

.access-guide-element-media img {
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.access-guide-element-media--icon {
  color: #075be8;
}

.access-guide-element-media--icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.access-guide-element h3 {
  margin: 0;
  color: #071a42;
  font-size: 0.9rem;
  line-height: 1.2;
}

.access-guide-element p {
  margin-top: 8px;
  color: #334653;
  font-size: 0.8rem;
  line-height: 1.45;
}

.access-guide-secondary-contact {
  display: inline-flex;
  margin-top: 10px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.access-guide-final {
  align-items: center;
}

@media (max-width: 1180px) {
  .access-guide-hero {
    min-height: 680px;
    background: #ffffff;
  }

  .access-guide-hero-bg {
    inset: 0 0 auto;
    height: 330px;
  }

  .access-guide-hero-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
  }

  .access-guide-hero-grid {
    align-items: end;
    padding-top: 270px;
  }

  .access-guide-two-col {
    grid-template-columns: 1fr;
  }

  .access-guide-image,
  .access-guide-config-image {
    max-width: 760px;
    width: 100%;
    justify-self: center;
  }

  .access-guide-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-guide-elements {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .access-guide-flow {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .access-guide-flow li {
    min-height: 0;
    justify-items: start;
    grid-template-columns: 64px minmax(0, 1fr);
    text-align: left;
  }

  .access-guide-flow li small,
  .access-guide-flow li strong {
    grid-column: 2;
  }

  .access-guide-flow-icon {
    grid-row: 1 / span 2;
  }

  .access-guide-flow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -22px;
    left: 31px;
    content: "↓";
  }

  .access-guide-review-grid,
  .access-guide-elements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .access-guide-hero {
    min-height: 0;
  }

  .access-guide-hero-bg {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0;
  }

  .access-guide-hero-bg::after {
    display: none;
  }

  .access-guide-hero-grid {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .access-guide-hero-copy .solution-eyebrow {
    margin-top: 0;
  }

  .access-guide-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
    line-height: 1;
  }

  .access-guide-actions {
    display: grid;
    gap: 12px;
  }

  .access-guide-actions .button {
    width: 100%;
    justify-content: center;
  }

  .access-guide-copy h2 {
    font-size: clamp(1.72rem, 9vw, 2.25rem);
  }

  .access-guide-role-panel {
    grid-template-columns: 1fr;
  }

  .access-guide-review-grid,
  .access-guide-elements {
    grid-template-columns: 1fr;
  }

  .access-guide-review-item {
    justify-items: start;
    text-align: left;
  }

  .access-guide-element-media {
    height: 120px;
  }
}

@media (min-width: 1181px) {
  .access-guide-review-grid:has(> .access-guide-review-item:nth-child(8)) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.1vw, 28px);
  }

  .access-guide-review-grid:has(> .access-guide-review-item:nth-child(8)) .access-guide-review-item {
    padding: 0 8px;
  }

  .access-guide-elements:has(> .access-guide-element:nth-child(6)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .access-guide-elements:has(> .access-guide-element:nth-child(6)) .access-guide-element-media {
    height: 112px;
  }

  .access-guide-elements:has(> .access-guide-element:nth-child(6)) .access-guide-element-media img {
    max-height: 92px;
  }
}

@media (max-width: 1240px) {
  .access-system-grid.access-solution-grid.access-equip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-equip-grid .access-equipment-card:nth-child(3n) {
    border-right: 1px solid #dbe5f0;
  }

  .access-equip-grid .access-equipment-card:nth-child(n + 4) {
    border-top: 1px solid #dbe5f0;
  }
}

@media (max-width: 1080px) {
  .access-scenarios-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .access-review-consulting-panel {
    grid-template-columns: 1fr;
  }

  .access-review-consulting-copy {
    max-width: 760px;
  }

  .access-catalog-resource-panel {
    grid-template-columns: 1fr;
  }

  .access-catalog-resource-visual {
    min-height: 340px;
  }

  .access-decide-panel,
  .access-principle-panel,
  .access-maintenance-panel {
    grid-template-columns: 1fr;
  }

  .access-brand-trust-intro {
    grid-template-columns: 1fr;
  }

  .access-brand-logo-card {
    justify-self: center;
    min-width: 0;
  }

  .access-brand-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-brand-trust-grid article:nth-child(odd) {
    border-left: 0;
  }

  .access-brand-trust-grid article:nth-child(n + 3) {
    padding-top: 26px;
    border-top: 1px solid #d5e1ef;
  }

  .access-flow-chain {
    grid-template-columns: 1fr;
  }

  .access-flow-chain li {
    min-height: 0;
  }

  .access-flow-chain li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 50%;
    content: "↓";
    transform: translateX(-50%);
  }

  .access-complement-media {
    min-height: 260px;
  }

  .access-flow-chain li.is-core {
    transform: none;
  }

  .access-decide-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .access-gym-panel .access-gym-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .access-brand-trust-section {
    padding: 34px 0;
  }

  .access-brand-trust-panel {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .access-brand-logo-card {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .access-brand-logo-card img {
    max-width: 190px;
  }

  .access-brand-trust-intro h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .access-brand-trust-grid {
    grid-template-columns: 1fr;
  }

  .access-brand-trust-grid article {
    min-height: 0;
    padding: 14px;
  }

  .access-intro-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .access-intro-icon {
    width: 56px;
    height: 56px;
  }

  .access-scenarios-grid,
  .access-review-grid,
  .access-faq-compact .faq-list {
    grid-template-columns: 1fr;
  }

  .access-scenario-card--visual .access-scenario-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .access-scenario-card--visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .access-scenario-card--visual .access-scenario-icon {
    top: -30px;
    left: 20px;
  }

  .access-scenario-card--visual h3 {
    margin-top: 18px;
  }

  .access-review-consulting-section,
  .access-catalog-resource-section {
    padding: 38px 0;
  }

  .access-review-consulting-panel {
    padding: 22px 18px;
  }

  .access-review-consulting-copy h2 {
    font-size: clamp(1.62rem, 7vw, 2.1rem);
  }

  .access-review-consulting-copy h2 span {
    white-space: normal;
  }

  .access-review-keyline {
    padding: 14px 15px;
  }

  .access-review-checklist-wrap {
    padding: 16px;
  }

  .access-review-checklist li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .access-review-check-number {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .access-review-consulting-cta {
    justify-content: flex-start;
  }

  .access-catalog-resource-panel {
    padding: 24px 18px;
    border-radius: 10px;
  }

  .access-catalog-resource-actions {
    flex-direction: column;
  }

  .access-catalog-resource-actions .button {
    width: 100%;
  }

  .access-catalog-resource-visual {
    min-height: 300px;
  }

  .access-catalog-document {
    width: 72%;
    padding: 18px;
  }

  .access-catalog-resource-visual img {
    width: min(76%, 280px);
    margin: 86px 0 0 56px;
  }

  .access-catalog-resource-panel {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    width: 100vw;
    min-height: 0;
    padding: 20px 16px;
    border-radius: 0;
  }

  .access-catalog-resource-copy {
    align-self: start;
  }

  .access-catalog-resource-copy .solution-eyebrow {
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .access-catalog-resource-copy .solution-eyebrow::after {
    width: 24px;
  }

  .access-catalog-resource-copy h2 {
    font-size: clamp(1.28rem, 7vw, 1.7rem);
    line-height: 1.08;
  }

  .access-catalog-resource-copy p {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .access-catalog-resource-actions {
    grid-column: 1 / -1;
    gap: 10px;
    width: 100%;
  }

  .access-catalog-resource-actions .button {
    min-height: 50px;
  }

  .access-catalog-resource-visual {
    align-self: start;
    min-height: 0;
    padding-left: 0;
    place-items: start center;
  }

  .access-catalog-resource-visual::before {
    width: 98px;
    height: 98px;
  }

  .access-catalog-resource-visual img {
    width: 72px;
    margin: 0;
    transform: perspective(700px) rotateY(-10deg) rotateZ(-4deg);
  }

  .access-decide-panel {
    row-gap: 16px;
    padding: 22px;
  }

  .access-decide-copy h2 {
    font-size: clamp(1.38rem, 7vw, 1.78rem);
  }

  .access-decide-copy p {
    margin-top: 10px;
    line-height: 1.42;
  }

  .access-decide-copy .access-decide-lead {
    font-size: 0.9rem;
  }

  .access-decide-copy .access-decide-note {
    margin-top: 9px;
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .access-flow-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    padding: 12px;
  }

  .access-flow-chain li {
    min-height: 116px;
    padding: 12px 8px;
  }

  .access-flow-chain li::before {
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
  }

  .access-flow-chain li:not(:last-child)::after {
    display: none;
  }

  .access-flow-chain li.is-core {
    transform: none;
  }

  .access-flow-chain li strong {
    font-size: 0.86rem;
  }

  .access-flow-chain li.is-core strong {
    font-size: 0.98rem;
  }

  .access-flow-chain li small {
    margin-top: 6px;
    font-size: 0.68rem;
  }

  .access-decide-cta {
    gap: 12px;
    padding: 12px;
  }

  .access-decide-cta p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .access-decide-cta .button {
    width: 100%;
  }

  .access-system-grid.access-solution-grid.access-equip-grid {
    grid-template-columns: 1fr;
  }

  .access-equip-grid .access-equipment-card,
  .access-equip-grid .access-equipment-card:nth-child(3n) {
    border-right: 1px solid #dbe5f0;
    border-top: 1px solid #dbe5f0;
  }

  .access-equip-grid .access-equipment-card:first-child {
    border-top: 1px solid #dbe5f0;
  }

  .access-equipment-media {
    height: 140px;
  }

  .access-faq-compact .faq-grid {
    grid-template-columns: 1fr;
  }

  .access-gym-panel .access-gym-flow {
    grid-template-columns: 1fr;
  }
}

/* Match Control de Accesos hero scale to Control Horario */
.access-hero-full:not(.time-hero-full) {
  min-height: clamp(520px, 58svh, 640px);
}

.access-hero-full:not(.time-hero-full) .access-hero-copy {
  max-width: 610px;
  padding-top: clamp(124px, 14svh, 174px);
  padding-bottom: clamp(28px, 4svh, 46px);
}

.access-hero-full:not(.time-hero-full) .access-hero-copy h1 {
  max-width: 610px;
  font-size: clamp(2.65rem, 3.9vw, 3.7rem);
  line-height: 1.02;
}

.access-hero-full:not(.time-hero-full) .access-hero-copy p {
  max-width: 575px;
  font-size: 1.05rem;
  line-height: 1.68;
}

.access-hero-full:not(.time-hero-full) .hero-actions {
  margin-top: 26px;
}

.access-hero-full:not(.time-hero-full) .hero-actions .button {
  min-height: 58px;
  padding-inline: 26px;
}

@media (max-width: 820px) {
  .access-hero-full:not(.time-hero-full) {
    min-height: 640px;
  }

  .access-hero-full:not(.time-hero-full) .access-hero-copy {
    padding-top: 128px;
    padding-bottom: 24px;
  }

  .access-hero-full:not(.time-hero-full) .access-hero-copy h1 {
    font-size: clamp(2.15rem, 10.2vw, 2.95rem);
  }

  .access-hero-full:not(.time-hero-full) .access-hero-copy p {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .access-hero-full:not(.time-hero-full) {
    min-height: 640px;
  }
}

/* Match access situation detail heroes to the main Control Horario / Control de Accesos hero scale. */
.access-guide-hero,
.access-reception-hero-grid {
  min-height: clamp(520px, 58svh, 640px);
}

.access-guide-hero-grid {
  min-height: inherit;
  padding-top: clamp(124px, 14svh, 174px);
  padding-bottom: clamp(28px, 4svh, 46px);
}

.access-guide-hero-copy,
.access-reception-copy {
  max-width: 610px;
}

.access-guide-hero-copy .solution-eyebrow {
  margin-top: 0;
}

.access-guide-hero-copy h1,
.access-reception-copy h1 {
  max-width: 610px;
  font-size: clamp(2.65rem, 3.9vw, 3.7rem);
  line-height: 1.02;
}

.access-guide-hero-copy p,
.access-reception-copy p {
  max-width: 575px;
  font-size: 1.05rem;
  line-height: 1.68;
}

@media (max-width: 820px) {
  .access-guide-hero,
  .access-reception-hero-grid {
    min-height: 640px;
  }

  .access-guide-hero-grid {
    padding-top: 128px;
    padding-bottom: 24px;
  }

  .access-guide-hero-copy h1,
  .access-reception-copy h1 {
    font-size: clamp(2.15rem, 10.2vw, 2.95rem);
  }

  .access-guide-hero-copy p,
  .access-reception-copy p {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-copy h2,
body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-copy h2 {
  color: #ffffff;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-copy,
body[data-page="tarjetas-rfid-mifare"] .rfid-form-copy,
body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-copy,
body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-media {
  opacity: 1;
  transform: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-editorial {
  display: block;
  background: #ffffff;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card {
  flex-direction: column;
  align-items: flex-start;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card > span,
body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card > h3,
body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card > p,
body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card > strong {
  position: relative;
  z-index: 1;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card > strong {
  margin-top: auto;
  padding-top: 22px;
  color: #0057bf;
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-layout {
    grid-template-columns: 1fr;
  }
}

/* Final RFID page overrides: keep reusable global section labels from clipping text. */
body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-copy .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-form-copy .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-section-intro .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-use-band .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-copy .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-faq-section .section-number {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-copy .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-form-copy .section-number {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy .section-number {
  color: #075fd4;
  background: rgba(7, 95, 212, 0.08);
  border-color: rgba(7, 95, 212, 0.16);
}

/* Final compatibility block: dark premium editorial layout. */
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 99, 214, 0.22), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(63, 169, 245, 0.14), transparent 30%),
    linear-gradient(135deg, #020817 0%, #061327 48%, #071a42 100%);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  grid-template-areas:
    "media intro"
    "media body"
    "media steps"
    "media action";
  gap: clamp(22px, 3vw, 38px) clamp(46px, 6vw, 88px);
  align-items: center;
  padding: clamp(22px, 3vw, 42px) 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media {
  grid-area: media;
  align-self: stretch;
  min-height: clamp(560px, 58vw, 760px);
  aspect-ratio: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(185, 211, 244, 0.22);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 36% center;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy {
  grid-area: intro;
  max-width: 680px;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy .section-number {
  color: #a8d4ff;
  background: rgba(63, 169, 245, 0.12);
  border-color: rgba(168, 212, 255, 0.24);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy h2 {
  max-width: 640px;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.1vw, 3.18rem);
  line-height: 1.08;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy > .rfid-compatibility-subtitle {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(226, 238, 255, 0.92);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  font-weight: 650;
  line-height: 1.62;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body {
  grid-area: body;
  max-width: 640px;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body > p {
  max-width: 640px;
  color: rgba(218, 230, 248, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps {
  grid-area: steps;
  max-width: 700px;
  border-top: 1px solid rgba(185, 211, 244, 0.22);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps li {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  color: rgba(218, 230, 248, 0.78);
  border-bottom: 1px solid rgba(185, 211, 244, 0.16);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps li::before {
  width: 28px;
  height: 28px;
  color: #a8d4ff;
  font-size: 0.78rem;
  background: rgba(63, 169, 245, 0.09);
  border-color: rgba(168, 212, 255, 0.26);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps strong {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps span {
  color: rgba(218, 230, 248, 0.76);
  line-height: 1.6;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-action {
  grid-area: action;
  max-width: 700px;
  gap: 24px;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-warning {
  color: #071a42;
  background: linear-gradient(135deg, rgba(244, 249, 255, 0.98), rgba(218, 237, 255, 0.95));
  border-color: rgba(168, 212, 255, 0.68);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-action .button-primary {
  min-width: min(100%, 292px);
  min-height: 54px;
  padding-inline: 26px;
  font-size: 0.98rem;
  box-shadow: 0 18px 46px rgba(0, 87, 191, 0.32);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-action .button-primary:hover,
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-action .button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(0, 87, 191, 0.42);
}

@media (max-width: 1180px) {
  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "media"
      "body"
      "steps"
      "action";
    padding-block: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media {
    min-height: auto;
    aspect-ratio: 1.18 / 1;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media img {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-layout {
    gap: 24px;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy h2 {
    font-size: clamp(2rem, 9vw, 2.45rem);
    line-height: 1.08;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy > .rfid-compatibility-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media {
    aspect-ratio: 1 / 0.88;
    border-radius: 14px;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-warning {
    padding: 17px 18px;
  }
}

/* Equal type scale for the three options in the RFID decision selector. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  padding: clamp(19px, 2vw, 25px) clamp(8px, 1.2vw, 18px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  line-height: 1.12;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
  font-size: 0.96rem;
  line-height: 1.52;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:focus-visible strong {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.9rem;
}

/* Main-page heroes: Control horario is the shared visual reference. */
:root {
  --aceris-main-hero-height: clamp(600px, 68svh, 640px);
  --aceris-main-hero-copy-top: clamp(202px, 22.5svh, 214px);
  --aceris-main-hero-copy-bottom: 48px;
  --aceris-main-hero-title: clamp(2.65rem, 3.9vw, 3.7rem);
  --aceris-main-hero-text: 1.05rem;
}

body[data-page="/control-horario-empresas/"] .time-hero-full,
body[data-page="proyectos"] .projects-hero,
body[data-page="/control-de-accesos/"] .access-hero-full,
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero,
body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero {
  box-sizing: border-box;
  min-height: 0 !important;
  height: var(--aceris-main-hero-height) !important;
}

body[data-page="/control-horario-empresas/"] .access-hero-full-content,
body[data-page="proyectos"] .projects-hero__grid,
body[data-page="/control-de-accesos/"] .access-hero-full-content,
body[data-page="tarjetas-rfid-mifare"] .access-hero-full-content,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-inner {
  box-sizing: border-box;
  min-height: 0 !important;
  height: 100% !important;
  align-items: flex-start !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body[data-page="/control-horario-empresas/"] .time-hero-copy,
body[data-page="proyectos"] .projects-hero__copy,
body[data-page="/control-de-accesos/"] .access-hero-copy,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy {
  box-sizing: border-box;
  max-width: 680px;
  margin-top: 0 !important;
  padding-top: var(--aceris-main-hero-copy-top) !important;
  padding-bottom: var(--aceris-main-hero-copy-bottom) !important;
}

body[data-page="/control-horario-empresas/"] .time-hero-copy h1,
body[data-page="proyectos"] .projects-hero__copy h1,
body[data-page="/control-de-accesos/"] .access-hero-copy h1,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy h1 {
  font-size: var(--aceris-main-hero-title) !important;
  line-height: 1.02 !important;
}

body[data-page="/control-horario-empresas/"] .time-hero-copy > p,
body[data-page="proyectos"] .projects-hero__copy > p,
body[data-page="/control-de-accesos/"] .access-hero-copy > p,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy > p {
  font-size: var(--aceris-main-hero-text) !important;
  line-height: 1.68 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-copy > p {
  font-size: var(--aceris-main-hero-text) !important;
  line-height: 1.68 !important;
}

@media (max-width: 820px) {
  :root {
    --aceris-main-hero-height: 660px;
    --aceris-main-hero-copy-top: 142px;
    --aceris-main-hero-copy-bottom: 24px;
    --aceris-main-hero-title: clamp(2.15rem, 10.2vw, 2.95rem);
    --aceris-main-hero-text: 0.98rem;
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero,
  body[data-page="impresoras-tarjetas-pvc"] .service-hero-inner {
    min-height: 0 !important;
    height: var(--aceris-main-hero-height) !important;
  }

  body[data-page="/control-horario-empresas/"] .time-hero-copy,
  body[data-page="proyectos"] .projects-hero__copy,
  body[data-page="/control-de-accesos/"] .access-hero-copy,
  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy,
  body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy {
    width: 100%;
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy > p {
    margin-top: 16px;
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy .hero-actions {
    margin-top: 24px;
  }

  body[data-page="impresoras-tarjetas-pvc"] .credentials-hero-benefits {
    margin-top: 12px;
  }
}

/* RFID landing simplification pass: compact supporting blocks without touching global styles. */
body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid.rfid-education-section {
  padding-top: clamp(46px, 5.2vw, 70px);
  padding-bottom: clamp(44px, 5vw, 68px);
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-education-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-technical-visual {
  display: none !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-education-copy h2 {
  font-size: clamp(1.78rem, 2.35vw, 2.55rem);
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-education-copy h3 {
  margin-top: clamp(18px, 2.4vw, 26px);
  font-size: clamp(1.36rem, 1.8vw, 1.96rem);
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-education-lead {
  font-size: clamp(1rem, 1.05vw, 1.12rem);
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-technical-points {
  gap: 12px;
  padding: clamp(14px, 1.8vw, 20px);
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-technical-points article {
  min-height: 0;
  padding: 16px 18px 16px 20px;
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-technical-points span {
  font-size: 1rem;
}

body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-technical-points p {
  margin-top: 7px;
  font-size: 0.91rem;
  line-height: 1.5;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid.rfid-quality-section {
  padding-top: clamp(56px, 6vw, 82px);
  padding-bottom: clamp(56px, 6vw, 82px);
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-heading {
  margin-bottom: clamp(24px, 3vw, 36px);
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-heading h2 {
  font-size: clamp(1.9rem, 2.7vw, 3rem);
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-heading p {
  font-size: 1rem;
  line-height: 1.58;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-grid {
  gap: 18px;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-card {
  min-height: 0;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-card figure {
  aspect-ratio: 1.78 / 1;
  max-height: 190px;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-card figure img {
  height: 100%;
  object-fit: cover;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-card > div {
  padding: 18px 20px 20px;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-card h3 {
  font-size: clamp(1.06rem, 1.18vw, 1.22rem);
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-card p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.52;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-statement {
  max-width: 880px;
  margin: 22px auto 0;
  padding: clamp(16px, 2.1vw, 22px) clamp(18px, 3vw, 30px);
  color: #ffffff;
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  font-weight: 860;
  line-height: 1.32;
  text-align: center;
  background: linear-gradient(135deg, #0b336c 0%, #124f9c 100%);
  border: 1px solid rgba(108, 178, 255, 0.42);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 50, 120, 0.14);
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-identify-layout {
  display: block;
  max-width: 980px;
  margin: 0 auto;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-route-copy {
  max-width: none;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-nfc-help-panel--route {
  display: none !important;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-identify-steps {
  max-width: none;
  gap: 12px;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-identify-steps article {
  min-height: 0;
  padding: 16px 18px;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-identify-steps h3 {
  font-size: 1rem;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-identify-steps p {
  font-size: 0.93rem;
  line-height: 1.5;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-identify-closing {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 14px 18px;
  color: #31516f;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  background: #f7fbff;
  border: 1px solid rgba(111, 171, 225, 0.28);
  border-radius: 14px;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer {
  display: none !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-layout {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-media {
  max-width: 520px;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-media img {
  aspect-ratio: 1.04 / 1;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3.08rem);
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options {
  gap: 12px;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options article {
  padding: 16px 18px;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid figure {
  aspect-ratio: 1.6 / 1;
  min-height: 0;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid img {
  object-fit: cover;
}

@media (max-width: 900px) {
  body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-education-layout,
  body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid .rfid-education-copy,
  body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-media {
    max-width: none;
  }

  body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-card figure {
    max-height: 170px;
  }
}

@media (max-width: 640px) {
  body[data-page="tarjetas-rfid-mifare"] #que-son-tarjetas-rfid.rfid-education-section,
  body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid.rfid-quality-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-grid {
    gap: 14px;
  }

  body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-card figure {
    max-height: 155px;
  }

  body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-identify-steps article {
    padding: 15px 14px;
  }
}

/* Final scoped lock: compact closing form for the RFID/MIFARE landing. */
body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas.rfid-form-section {
  padding: clamp(42px, 5vw, 62px) 0;
  color: #071a42;
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-prelude {
  max-width: 700px;
  margin-bottom: clamp(18px, 2.4vw, 24px);
  color: #071a42;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-prelude h2 {
  max-width: 620px;
  margin: 0 auto 8px;
  color: #071a42;
  font-size: clamp(1.72rem, 2.6vw, 2.3rem);
  line-height: 1.08;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-prelude p {
  max-width: 620px;
  margin: 0 auto;
  color: #445872;
  font-size: clamp(0.94rem, 0.95vw, 1rem);
  line-height: 1.5;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-layout {
  display: block;
  max-width: 920px;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-technical-form {
  width: 100%;
  max-width: 920px;
  padding: clamp(18px, 2.4vw, 28px);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(159, 178, 205, 0.42);
  border-radius: 16px;
  box-shadow: 0 20px 54px rgba(20, 48, 84, 0.1);
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-compact-form {
  gap: 14px;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-main-fields {
  gap: 10px;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-technical-form label {
  margin-bottom: 5px;
  color: #10264a;
  font-size: 0.88rem;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-technical-form input,
body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-technical-form textarea {
  min-height: 42px;
  border-color: rgba(159, 178, 205, 0.58);
  font-size: 0.92rem;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-technical-form textarea {
  height: 84px;
  min-height: 84px;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0 0;
  color: #263d5f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.42;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .checkbox-field input {
  flex: 0 0 auto;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-actions {
  justify-content: flex-start;
  margin-top: 4px;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-actions .button {
  min-height: 44px;
  padding-inline: 20px;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-after-note {
  margin: -4px 0 0;
  color: #5f718c;
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas.rfid-form-section {
    padding: 38px 0;
  }

  body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-technical-form {
    padding: 18px;
  }
}

/* ABSOLUTE EOF override: printer ad photo fills the commercial frame. */
body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo {
  min-height: clamp(270px, 27vw, 380px) !important;
  overflow: hidden !important;
  place-items: stretch !important;
  border-radius: 18px !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 52% 50% !important;
  filter: saturate(1.02) contrast(1.04) brightness(0.95) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo .rfid-printer-glow,
body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo .rfid-printer-card {
  display: none !important;
}

@media (max-width: 680px) {
  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo {
    min-height: 230px !important;
    border-radius: 14px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo img {
    object-position: 48% 50% !important;
  }
}

/* RFID landing final scale pass: compact support sections without changing content or structure. */
body[data-page="tarjetas-rfid-mifare"] :is(
  #que-son-tarjetas-rfid,
  #identificar-tarjeta,
  #que-necesitas-hacer,
  #tarjetas-personalizadas,
  #credenciales-completas,
  #preguntas-frecuentes-tarjetas-rfid,
  .credentials-final-cta
) {
  padding-top: clamp(52px, 5.8vw, 78px) !important;
  padding-bottom: clamp(52px, 5.8vw, 78px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid {
  padding-top: clamp(62px, 6.8vw, 92px) !important;
  padding-bottom: clamp(62px, 6.8vw, 92px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas {
  padding-top: clamp(66px, 7vw, 104px) !important;
  padding-bottom: clamp(66px, 7vw, 104px) !important;
}

body[data-page="tarjetas-rfid-mifare"] :is(
  #que-son-tarjetas-rfid .rfid-education-copy h2,
  #identificar-tarjeta .rfid-identify-heading h2,
  #que-necesitas-hacer .section-heading h2,
  #tarjetas-personalizadas .rfid-personalization-copy h2,
  #credenciales-completas .rfid-accessories-banner-head h2,
  #preguntas-frecuentes-tarjetas-rfid h2,
  .credentials-final-cta .cta-panel h2
) {
  font-size: clamp(1.86rem, 2.55vw, 2.68rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

body[data-page="tarjetas-rfid-mifare"] :is(
  #calidad-tarjetas-rfid .rfid-quality-heading h2,
  #formulario-tarjetas .rfid-form-prelude h2,
  #formulario-tarjetas .rfid-form-copy h2
) {
  font-size: clamp(1.98rem, 2.85vw, 3rem) !important;
  line-height: 1.07 !important;
  letter-spacing: 0 !important;
}

body[data-page="tarjetas-rfid-mifare"] :is(
  #que-son-tarjetas-rfid .rfid-education-lead,
  #identificar-tarjeta .rfid-route-subtitle,
  #que-necesitas-hacer .section-heading p,
  #tarjetas-personalizadas .rfid-personalization-lead,
  #credenciales-completas .rfid-accessories-banner-head p,
  #calidad-tarjetas-rfid .rfid-quality-heading p,
  #formulario-tarjetas .rfid-form-prelude p
) {
  font-size: clamp(0.97rem, 1vw, 1.05rem) !important;
  line-height: 1.58 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-layout,
body[data-page="tarjetas-rfid-mifare"] .rfid-identify-layout,
body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-layout,
body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-layout {
  gap: clamp(24px, 3.4vw, 48px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy h3 {
  font-size: clamp(1.42rem, 2.05vw, 2.16rem) !important;
  line-height: 1.12 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points {
  gap: 12px !important;
  padding: clamp(16px, 1.9vw, 22px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-visual {
  min-height: 150px !important;
  aspect-ratio: 16 / 7.3 !important;
}

body[data-page="tarjetas-rfid-mifare"] :is(
  .rfid-technical-points article,
  #tarjetas-personalizadas .rfid-personalization-options article,
  #credenciales-completas .rfid-supply-grid article > div
) {
  padding: clamp(14px, 1.6vw, 19px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-heading,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .section-heading,
body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-prelude {
  margin-bottom: clamp(22px, 2.8vw, 34px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps {
  gap: 10px !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article {
  gap: 14px !important;
  padding: 15px 18px !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps h3 {
  font-size: 1.02rem !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps p {
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel--route {
  padding: clamp(18px, 2vw, 24px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-media {
  max-height: 250px !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel {
  gap: clamp(18px, 2.6vw, 32px) !important;
  padding: clamp(14px, 2vw, 22px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media {
  min-height: clamp(300px, 28vw, 420px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  padding: clamp(16px, 1.75vw, 21px) clamp(8px, 1vw, 16px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
  font-size: clamp(1.1rem, 1.25vw, 1.32rem) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
  font-size: 0.92rem !important;
  line-height: 1.48 !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-media {
  max-height: 590px !important;
  align-self: center !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options {
  gap: 12px !important;
  margin-top: 20px !important;
  margin-bottom: 26px !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options article {
  min-height: 0 !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options h3 {
  font-size: 0.98rem !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options p {
  font-size: 0.9rem !important;
  line-height: 1.48 !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner {
  padding: clamp(20px, 2.6vw, 32px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid {
  gap: 12px !important;
  margin-top: clamp(18px, 2.4vw, 28px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid figure {
  aspect-ratio: 1.36 / 0.92 !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid p {
  font-size: 0.86rem !important;
  line-height: 1.42 !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente {
  padding-top: clamp(42px, 5vw, 66px) !important;
  padding-bottom: clamp(42px, 5vw, 66px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel {
  min-height: clamp(300px, 29vw, 390px) !important;
  padding: clamp(28px, 4vw, 46px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel h2 {
  font-size: clamp(1.95rem, 3vw, 3.35rem) !important;
  line-height: 1.03 !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel p {
  font-size: 0.96rem !important;
  line-height: 1.58 !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual {
  min-height: clamp(240px, 24vw, 320px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual img {
  width: min(70%, 370px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid .faq-grid {
  gap: clamp(24px, 3.2vw, 44px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid .rfid-faq-list {
  gap: 10px !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid summary {
  padding: 18px 22px !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid details p {
  padding: 0 22px 18px !important;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-copy,
body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .lead-form,
body[data-page="tarjetas-rfid-mifare"] .credentials-final-cta .cta-panel {
  padding: clamp(22px, 3vw, 34px) !important;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] :is(
    #que-son-tarjetas-rfid,
    #calidad-tarjetas-rfid,
    #identificar-tarjeta,
    #que-necesitas-hacer,
    #tarjetas-personalizadas,
    #credenciales-completas,
    #preguntas-frecuentes-tarjetas-rfid,
    #formulario-tarjetas,
    .credentials-final-cta
  ) {
    padding-top: clamp(42px, 10vw, 58px) !important;
    padding-bottom: clamp(42px, 10vw, 58px) !important;
  }

  body[data-page="tarjetas-rfid-mifare"] :is(
    #que-son-tarjetas-rfid .rfid-education-copy h2,
    #calidad-tarjetas-rfid .rfid-quality-heading h2,
    #identificar-tarjeta .rfid-identify-heading h2,
    #que-necesitas-hacer .section-heading h2,
    #tarjetas-personalizadas .rfid-personalization-copy h2,
    #credenciales-completas .rfid-accessories-banner-head h2,
    #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel h2,
    #preguntas-frecuentes-tarjetas-rfid h2,
    #formulario-tarjetas .rfid-form-prelude h2,
    #formulario-tarjetas .rfid-form-copy h2,
    .credentials-final-cta .cta-panel h2
  ) {
    font-size: clamp(1.68rem, 7.6vw, 2.22rem) !important;
    line-height: 1.08 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy h3 {
    font-size: clamp(1.28rem, 5.8vw, 1.7rem) !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-technical-visual,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media {
    max-height: 250px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-media {
    max-height: 410px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner {
    padding: 16px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel {
    padding: 30px 22px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual {
    min-height: 210px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual img {
    width: min(66vw, 270px) !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-copy,
  body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .lead-form {
    padding: 20px 18px !important;
  }
}

/* RFID printer ad: use the supplied commercial photo as the visual, not a cutout composition. */
body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual--photo {
  min-height: clamp(260px, 27vw, 370px) !important;
  overflow: hidden;
  place-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(6, 20, 39, 0.44);
  border: 1px solid rgba(184, 218, 255, 0.22);
  border-radius: 18px;
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual--photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(1.02) contrast(1.04) brightness(0.95);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 13, 28, 0.34), transparent 38%, rgba(2, 13, 28, 0.08)),
    linear-gradient(180deg, transparent 56%, rgba(2, 13, 28, 0.24));
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual--photo .rfid-printer-glow,
body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual--photo .rfid-printer-card {
  display: none !important;
}

@media (max-width: 680px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual--photo {
    min-height: 220px !important;
    border-radius: 14px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual--photo img {
    object-position: 48% 50%;
  }
}

/* RFID landing global scale pass: compact supporting blocks while keeping hero and form hierarchy. */
body[data-page="tarjetas-rfid-mifare"] :is(
  #que-son-tarjetas-rfid,
  #identificar-tarjeta,
  #que-necesitas-hacer,
  #tarjetas-personalizadas,
  #credenciales-completas,
  #preguntas-frecuentes-tarjetas-rfid,
  .credentials-final-cta
) {
  padding-top: clamp(54px, 6vw, 82px) !important;
  padding-bottom: clamp(54px, 6vw, 82px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid {
  padding-top: clamp(62px, 7vw, 92px) !important;
  padding-bottom: clamp(62px, 7vw, 92px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas {
  padding-top: clamp(66px, 7vw, 104px) !important;
  padding-bottom: clamp(66px, 7vw, 104px) !important;
}

body[data-page="tarjetas-rfid-mifare"] :is(
  #que-son-tarjetas-rfid .rfid-education-copy h2,
  #identificar-tarjeta .rfid-identify-heading h2,
  #que-necesitas-hacer .section-heading h2,
  #tarjetas-personalizadas .rfid-personalization-copy h2,
  #credenciales-completas .rfid-accessories-banner-head h2,
  #preguntas-frecuentes-tarjetas-rfid h2,
  .credentials-final-cta .cta-panel h2
) {
  font-size: clamp(1.9rem, 2.75vw, 2.75rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

body[data-page="tarjetas-rfid-mifare"] #calidad-tarjetas-rfid .rfid-quality-heading h2,
body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-prelude h2,
body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-copy h2 {
  font-size: clamp(2rem, 3vw, 3.05rem) !important;
  line-height: 1.07 !important;
  letter-spacing: 0 !important;
}

body[data-page="tarjetas-rfid-mifare"] :is(
  #que-son-tarjetas-rfid .rfid-education-lead,
  #identificar-tarjeta .rfid-route-subtitle,
  #que-necesitas-hacer .section-heading p,
  #tarjetas-personalizadas .rfid-personalization-lead,
  #credenciales-completas .rfid-accessories-banner-head p,
  #calidad-tarjetas-rfid .rfid-quality-heading p,
  #formulario-tarjetas .rfid-form-prelude p
) {
  font-size: clamp(0.98rem, 1vw, 1.05rem) !important;
  line-height: 1.6 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-layout {
  gap: clamp(24px, 3.6vw, 48px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.25rem) !important;
  line-height: 1.12 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points {
  gap: 12px !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-visual {
  min-height: 160px !important;
  aspect-ratio: 16 / 7.5 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points article {
  padding: clamp(16px, 1.8vw, 22px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-heading {
  margin-bottom: clamp(22px, 3vw, 34px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-layout {
  gap: clamp(24px, 3.6vw, 46px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps {
  gap: 10px !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article {
  gap: 14px !important;
  padding: 15px 18px !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps h3 {
  font-size: 1.02rem !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps p {
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel--route {
  padding: clamp(18px, 2vw, 24px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-media {
  max-height: 255px !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .section-heading {
  margin-bottom: clamp(22px, 3vw, 34px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel {
  gap: clamp(18px, 2.6vw, 34px) !important;
  padding: clamp(14px, 2vw, 24px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media {
  min-height: clamp(320px, 30vw, 440px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  padding: clamp(16px, 1.8vw, 22px) clamp(8px, 1vw, 16px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  margin-bottom: 8px !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
  font-size: clamp(1.1rem, 1.25vw, 1.32rem) !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
  font-size: 0.92rem !important;
  line-height: 1.48 !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-layout {
  gap: clamp(24px, 3.8vw, 54px) !important;
  align-items: center !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-media {
  max-height: 620px !important;
  align-self: center !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options {
  gap: 12px !important;
  margin-top: 20px !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options article {
  padding: clamp(15px, 1.7vw, 19px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options h3 {
  font-size: 0.98rem !important;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options p {
  font-size: 0.9rem !important;
  line-height: 1.48 !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner {
  padding: clamp(20px, 2.6vw, 32px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid {
  gap: 12px !important;
  margin-top: clamp(18px, 2.4vw, 28px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid figure {
  aspect-ratio: 1.36 / 0.92 !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article > div {
  padding: 14px 14px 16px !important;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid p {
  font-size: 0.86rem !important;
  line-height: 1.42 !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente {
  padding-top: clamp(42px, 5vw, 66px) !important;
  padding-bottom: clamp(42px, 5vw, 66px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel {
  min-height: clamp(300px, 29vw, 390px) !important;
  padding: clamp(28px, 4vw, 46px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel h2 {
  font-size: clamp(2rem, 3.25vw, 3.45rem) !important;
  line-height: 1.02 !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel p {
  font-size: 0.96rem !important;
  line-height: 1.58 !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-subtitle {
  font-size: clamp(1rem, 1.1vw, 1.08rem) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual {
  min-height: clamp(250px, 25vw, 330px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual img {
  width: min(70%, 380px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid .faq-grid {
  gap: clamp(24px, 3.2vw, 44px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid .rfid-faq-list {
  gap: 10px !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid details {
  padding: 0 !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid summary {
  padding: 18px 22px !important;
}

body[data-page="tarjetas-rfid-mifare"] #preguntas-frecuentes-tarjetas-rfid details p {
  padding: 0 22px 18px !important;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-prelude {
  margin-bottom: clamp(24px, 3vw, 38px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-layout {
  gap: clamp(22px, 3vw, 42px) !important;
}

body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-copy,
body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .lead-form {
  padding: clamp(22px, 3vw, 34px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-final-cta .cta-panel {
  padding: clamp(24px, 3vw, 38px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-final-cta .cta-panel p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] :is(
    #que-son-tarjetas-rfid,
    #calidad-tarjetas-rfid,
    #identificar-tarjeta,
    #que-necesitas-hacer,
    #tarjetas-personalizadas,
    #credenciales-completas,
    #preguntas-frecuentes-tarjetas-rfid,
    #formulario-tarjetas,
    .credentials-final-cta
  ) {
    padding-top: clamp(42px, 10vw, 58px) !important;
    padding-bottom: clamp(42px, 10vw, 58px) !important;
  }

  body[data-page="tarjetas-rfid-mifare"] :is(
    #que-son-tarjetas-rfid .rfid-education-copy h2,
    #calidad-tarjetas-rfid .rfid-quality-heading h2,
    #identificar-tarjeta .rfid-identify-heading h2,
    #que-necesitas-hacer .section-heading h2,
    #tarjetas-personalizadas .rfid-personalization-copy h2,
    #credenciales-completas .rfid-accessories-banner-head h2,
    #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel h2,
    #preguntas-frecuentes-tarjetas-rfid h2,
    #formulario-tarjetas .rfid-form-prelude h2,
    #formulario-tarjetas .rfid-form-copy h2,
    .credentials-final-cta .cta-panel h2
  ) {
    font-size: clamp(1.72rem, 8vw, 2.3rem) !important;
    line-height: 1.08 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy h3 {
    font-size: clamp(1.32rem, 6vw, 1.75rem) !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-technical-visual,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media {
    max-height: 260px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel {
    margin-top: 20px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-media {
    max-height: 430px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner {
    padding: 16px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid {
    margin-inline: -16px !important;
    padding-inline: 16px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel {
    padding: 30px 22px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual {
    min-height: 220px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual img {
    width: min(68vw, 280px) !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .rfid-form-copy,
  body[data-page="tarjetas-rfid-mifare"] #formulario-tarjetas .lead-form {
    padding: 20px 18px !important;
  }
}

/* Compact credentials and accessories banner. Scoped to avoid changing other RFID blocks. */
body[data-page="tarjetas-rfid-mifare"] #credenciales-completas.rfid-supply-section {
  padding: clamp(50px, 6vw, 82px) 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(0, 111, 214, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner {
  padding: clamp(22px, 3.2vw, 38px);
  color: #071a42;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.92)),
    #ffffff;
  border: 1px solid rgba(111, 171, 225, 0.25);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(20, 48, 84, 0.09);
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner-head h2 {
  max-width: 720px;
  margin: 14px 0 10px;
  color: #061c3d;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner-head p {
  max-width: 860px;
  margin: 0;
  color: #40536c;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.62;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner-head .button {
  min-height: 50px;
  white-space: nowrap;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  margin-top: clamp(22px, 3vw, 34px);
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article,
body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(1),
body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(2),
body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(n+3) {
  display: grid;
  grid-column: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(111, 171, 225, 0.24);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:hover {
  border-color: rgba(0, 87, 191, 0.34);
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.11);
  transform: translateY(-3px);
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid figure {
  aspect-ratio: 1.28 / 1;
  margin: 0;
  overflow: hidden;
  background: #eef6ff;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(1) img {
  object-position: 50% 58%;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(2) img {
  object-position: 44% 58%;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(3) img {
  object-position: 58% 56%;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(4) img {
  object-position: 28% 52%;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(5) img {
  object-position: 55% 58%;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article > div {
  padding: 16px 16px 18px;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid span {
  color: #071a42;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.18;
}

body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid p {
  margin: 7px 0 0;
  color: #40536c;
  font-size: 0.9rem;
  line-height: 1.48;
}

@media (max-width: 1120px) {
  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner-head .button {
    justify-self: start;
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner {
    padding: 18px;
    border-radius: 18px;
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-accessories-banner-head .button {
    width: 100%;
    white-space: normal;
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid {
    display: flex;
    gap: 12px;
    margin-inline: -18px;
    padding: 0 18px 4px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article,
  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(1),
  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(2),
  body[data-page="tarjetas-rfid-mifare"] #credenciales-completas .rfid-supply-grid article:nth-child(n+3) {
    flex: 0 0 min(270px, 78vw);
    scroll-snap-align: start;
  }
}

/* Final hero benefit strip lock: exactly three centered RFID landing items. */
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip .container {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  justify-content: center;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip span {
  justify-content: center;
}

/* Final hero alignment: RFID landing follows the Control Horario / Control de Accesos hero scale. */
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero.access-hero-full {
  display: block;
  min-height: clamp(520px, 58svh, 640px);
  margin-top: -92px !important;
  padding: 0 !important;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 45%, rgba(46, 129, 236, 0.18), rgba(46, 129, 236, 0) 34%),
    #061726;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero.access-hero-full::before {
  display: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  transform: none;
  filter: saturate(0.98) contrast(1.03);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 15, 27, 0.98) 0%, rgba(2, 15, 27, 0.94) 31%, rgba(2, 15, 27, 0.72) 50%, rgba(2, 15, 27, 0.28) 72%, rgba(2, 15, 27, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 15, 27, 0.06) 0%, rgba(2, 15, 27, 0.18) 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-layout {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-top: 0 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-copy {
  max-width: 610px;
  padding-top: clamp(124px, 14svh, 174px);
  padding-bottom: clamp(28px, 4svh, 46px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-copy h1 {
  max-width: 610px;
  color: #ffffff;
  font-size: clamp(2.65rem, 3.9vw, 3.7rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-copy > p {
  max-width: 575px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem !important;
  line-height: 1.68 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .hero-actions {
  margin-top: 26px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .hero-actions .button {
  min-height: 58px;
  padding-inline: 26px;
}

@media (max-width: 820px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero.access-hero-full {
    min-height: 640px;
    margin-top: -88px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-bg {
    width: 100%;
    opacity: 0.76;
    object-position: 70% center !important;
    transform: none;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 15, 27, 0.96) 0%, rgba(2, 15, 27, 0.9) 44%, rgba(2, 15, 27, 0.52) 100%),
      linear-gradient(180deg, rgba(2, 15, 27, 0.24) 0%, rgba(2, 15, 27, 0.1) 38%, rgba(2, 15, 27, 0.68) 100%);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-copy {
    max-width: 360px;
    padding-top: 128px;
    padding-bottom: 24px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-copy h1 {
    max-width: 360px;
    font-size: clamp(2.15rem, 10.2vw, 2.95rem) !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-copy > p {
    max-width: 340px;
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .hero-actions {
    width: min(100%, 340px);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .hero-actions .button {
    min-height: 52px;
    width: 100%;
  }
}

@media (max-width: 420px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero.access-hero-full {
    min-height: 640px;
  }
}

/* RFID landing: personalized cards block, commercial service focus. */
body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-copy h2 {
  max-width: 620px;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-copy .rfid-personalization-lead {
  max-width: 660px;
  color: #10284d;
  font-size: clamp(1.06rem, 1.25vw, 1.18rem);
  font-weight: 850;
  line-height: 1.58;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options article {
  min-height: 132px;
  padding: 18px 18px 17px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94));
  border: 1px solid rgba(156, 190, 226, 0.48);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(20, 48, 84, 0.055);
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options article:last-child {
  grid-column: 1 / -1;
  min-height: 0;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options h3 {
  margin: 0 0 8px;
  color: #071a42;
  font-size: 1rem;
  line-height: 1.22;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options p {
  margin: 0;
  color: #40536d;
  font-size: 0.94rem;
  line-height: 1.52;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-actions {
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-actions > a:not(.button) {
  color: #075fd4;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
}

body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-actions > a:not(.button):hover,
body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-actions > a:not(.button):focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip .container {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip span {
  justify-content: center;
}

@media (max-width: 720px) {
  body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-options article {
    min-height: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] #tarjetas-personalizadas .rfid-personalization-actions {
    align-items: stretch;
  }
}

/* RFID landing reorder: education first, then supply, guidance and request paths. */
body[data-page="tarjetas-rfid-mifare"] .rfid-education-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 87, 191, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fe 100%);
  padding-top: clamp(50px, 5.4vw, 78px);
  padding-bottom: clamp(48px, 5.4vw, 76px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy {
  max-width: 720px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy h2 {
  margin: 16px 0 14px;
  color: #061c3d;
  font-size: clamp(2rem, 2.72vw, 3.05rem);
  line-height: 1.06;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy h3 {
  max-width: 640px;
  margin: clamp(24px, 2.8vw, 32px) 0 16px;
  color: #061c3d;
  font-size: clamp(1.58rem, 2.12vw, 2.34rem);
  line-height: 1.08;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: #102a4a;
  font-size: clamp(1.08rem, 1.25vw, 1.24rem);
  font-weight: 760;
  line-height: 1.55;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy p:not(.rfid-education-lead) {
  max-width: 670px;
  color: #40536c;
  font-size: 1rem;
  line-height: 1.74;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-education-actions {
  margin-top: clamp(22px, 3vw, 34px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points {
  display: grid;
  gap: clamp(14px, 1.6vw, 18px);
  padding: clamp(18px, 2.2vw, 26px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(233, 246, 255, 0.68)),
    #ffffff;
  border: 1px solid rgba(111, 171, 225, 0.22);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(20, 48, 84, 0.08);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-visual {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 8.2;
  background: #eef6ff;
  border: 1px solid rgba(111, 171, 225, 0.18);
  border-radius: 17px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.08);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points article {
  position: relative;
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2vw, 26px);
  color: #071a42;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(111, 171, 225, 0.18);
  border-radius: 16px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points article::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0057bf, #3fa9f5);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points span {
  display: block;
  color: #071a42;
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  font-weight: 900;
  line-height: 1.22;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points p {
  margin: 10px 0 0;
  color: #40536c;
  font-size: 0.96rem;
  line-height: 1.58;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-usage-grid article {
  min-height: 164px;
  padding: clamp(20px, 2vw, 26px);
  color: #071a42;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.92)),
    #ffffff;
  border: 1px solid rgba(111, 171, 225, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(20, 48, 84, 0.07);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-usage-grid span,
body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid span {
  display: block;
  color: #071a42;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  font-weight: 880;
  line-height: 1.22;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-usage-grid p,
body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid p {
  margin: 12px 0 0;
  color: #40536c;
  font-size: 0.95rem;
  line-height: 1.58;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-supply-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(63, 169, 245, 0.1), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-supply-section .rfid-section-intro {
  max-width: 860px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  margin-top: clamp(24px, 3vw, 38px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.97), rgba(235, 246, 255, 0.88)),
    #ffffff;
  border: 1px solid rgba(111, 171, 225, 0.24);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(20, 48, 84, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:hover {
  border-color: rgba(0, 87, 191, 0.34);
  box-shadow: 0 28px 70px rgba(20, 48, 84, 0.105);
  transform: translateY(-3px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(1),
body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(2) {
  grid-column: span 6;
  min-height: 166px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(n+3) {
  grid-column: span 4;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-route-copy h2 {
  max-width: 650px;
  font-size: clamp(2.15rem, 3.3vw, 3.35rem);
  line-height: 1.04;
}

body[data-page="tarjetas-rfid-mifare"] #identificar-tarjeta .rfid-route-copy > p:not(.rfid-route-subtitle) {
  max-width: 660px;
  color: #40536c;
  font-size: 1rem;
  line-height: 1.68;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: clamp(52px, 7vw, 86px) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 48%, rgba(0, 144, 215, 0.24), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(49, 112, 255, 0.18), transparent 30%),
    linear-gradient(128deg, #030b18 0%, #061a33 48%, #07101e 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 78%, transparent);
  opacity: 0.42;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -28vw;
  width: 58vw;
  max-width: 760px;
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  opacity: 0.45;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  min-height: clamp(360px, 34vw, 480px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 4.6vw, 58px);
  color: #ffffff;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026)),
    rgba(4, 18, 38, 0.68);
  border: 1px solid rgba(166, 211, 255, 0.22);
  border-radius: 0;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel > div {
  max-width: 680px;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel--banner {
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  min-height: clamp(315px, 25vw, 390px) !important;
  padding: clamp(22px, 3.2vw, 38px) !important;
  background-repeat: no-repeat !important;
  background-position: center right !important;
  background-size: cover !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel--banner > div {
  max-width: 620px;
}

@media (max-width: 680px) {
  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-cross-sell-panel--banner {
    min-height: 330px !important;
    padding: 24px 20px !important;
    background-position: 58% center !important;
  }
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel .section-rule {
  background: linear-gradient(90deg, rgba(63, 169, 245, 0.95), rgba(255, 255, 255, 0.16));
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-kicker {
  margin: 16px 0 14px;
  color: #7ccfff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel h2 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(232, 242, 255, 0.82);
  font-size: 1rem;
  line-height: 1.68;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel .rfid-printer-subtitle {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.03rem, 1.25vw, 1.18rem);
  font-weight: 760;
  line-height: 1.52;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel .button {
  margin-top: clamp(22px, 3vw, 34px);
  min-width: 190px;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 20px 54px rgba(0, 87, 191, 0.42);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual {
  position: relative;
  display: grid;
  min-height: clamp(280px, 31vw, 390px);
  place-items: center;
  margin: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual img {
  position: relative;
  z-index: 2;
  width: min(78%, 440px);
  height: auto;
  filter: drop-shadow(0 34px 55px rgba(0, 0, 0, 0.38));
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-glow {
  position: absolute;
  inset: 8% 4% 2% 8%;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0, 144, 215, 0.38), rgba(0, 144, 215, 0.08) 46%, transparent 70%);
  filter: blur(4px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-card {
  position: absolute;
  z-index: 1;
  width: clamp(102px, 11vw, 156px);
  aspect-ratio: 1.58 / 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9px;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(0, 111, 214, 0.88) 58% 72%, rgba(255, 255, 255, 0.86) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(222, 235, 250, 0.93));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-card::before,
body[data-page="tarjetas-rfid-mifare"] .rfid-printer-card::after {
  content: "";
  position: absolute;
  left: 15%;
  height: 4px;
  border-radius: 999px;
  background: rgba(8, 31, 65, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-card::before {
  top: 24%;
  width: 46%;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-card::after {
  top: 38%;
  width: 32%;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-card-one {
  right: 7%;
  top: 16%;
  transform: rotate(8deg);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-card-two {
  left: 6%;
  bottom: 13%;
  transform: rotate(-8deg);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-printer-card-three {
  right: 15%;
  bottom: 3%;
  transform: rotate(4deg);
}

@media (max-width: 980px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-education-layout,
  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(1),
  body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(2),
  body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(n+3) {
    grid-column: span 6;
    min-height: 170px;
  }
}

@media (max-width: 680px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-education-section {
    padding-top: 46px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.35rem);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-education-copy h3 {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-technical-visual {
    min-height: 118px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-usage-grid,
  body[data-page="tarjetas-rfid-mifare"] .rfid-technical-points,
  body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(1),
  body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(2),
  body[data-page="tarjetas-rfid-mifare"] .rfid-supply-grid article:nth-child(n+3) {
    grid-column: auto;
    min-height: auto;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel .button {
    width: 100%;
    white-space: normal;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell {
    padding: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell .container {
    width: 100%;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel {
    min-height: 0;
    padding: clamp(32px, 8vw, 44px) 22px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-cross-sell-panel h2 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
    line-height: 1.03;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual {
    min-height: 260px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-printer-ad-visual img {
    width: min(72vw, 330px);
  }
}

/* RFID quality block: professional card material, print and reading confidence. */
body[data-page="tarjetas-rfid-mifare"] .rfid-quality-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 111, 214, 0.11), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-heading {
  max-width: 930px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-heading h2 {
  max-width: 860px;
  margin: 14px auto 0;
  color: #071a42;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-heading p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #40536c;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: #132642;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.98)),
    #ffffff;
  border: 1px solid rgba(151, 177, 208, 0.34);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(20, 48, 84, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card:hover {
  border-color: rgba(0, 111, 214, 0.28);
  box-shadow: 0 30px 84px rgba(20, 48, 84, 0.12);
  transform: translateY(-3px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.7;
  margin: 0;
  background: #eaf2fb;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 26, 66, 0.14));
  pointer-events: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card:hover img {
  transform: scale(1.035);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card > div {
  padding: clamp(20px, 2.2vw, 28px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card h3 {
  margin: 0 0 12px;
  color: #071a42;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card p {
  margin: 0;
  color: #40536c;
  font-size: 0.96rem;
  line-height: 1.62;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card p + p {
  margin-top: 12px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-statement {
  margin-top: clamp(20px, 3vw, 34px);
  padding: clamp(24px, 3.2vw, 38px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 145, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #071a42 0%, #0d2e64 100%);
  border: 1px solid rgba(145, 196, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(7, 26, 66, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quality-statement p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
  letter-spacing: 0;
}

@media (max-width: 920px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card figure {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-section {
    padding: 48px 0;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-heading {
    text-align: left;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-heading h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card {
    border-radius: 12px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card > div {
    padding: 20px 18px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-card p {
    font-size: 0.94rem;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-statement {
    padding: 22px 18px;
    border-radius: 12px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quality-statement p {
    font-size: clamp(1.3rem, 7vw, 1.85rem);
    text-align: left;
  }
}

/* Final scoped locks for the approved RFID/MIFARE polish pass. */
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body > p {
  color: rgba(226, 238, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.72;
}

/* Clean B2B decision selector: three balanced paths, no internal callout boxes. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-options {
  gap: 12px;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  min-height: 156px;
  margin: 0;
  padding: clamp(22px, 2.2vw, 28px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(126, 159, 196, 0.22);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(20, 48, 84, 0.055);
  transform: none;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:hover,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus-visible,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active {
  background:
    linear-gradient(135deg, rgba(234, 246, 255, 0.94), rgba(255, 255, 255, 0.98)),
    #ffffff;
  border-color: rgba(0, 93, 190, 0.32);
  box-shadow: 0 18px 42px rgba(20, 72, 130, 0.09);
  transform: translateY(-2px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
  font-size: clamp(1.28rem, 1.65vw, 1.62rem);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
  font-size: 0.96rem;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active strong {
  min-height: 38px;
  padding: 0 15px;
  color: #075fd4;
  opacity: 1;
  visibility: visible;
  background: rgba(230, 243, 255, 0.72);
  border: 1px solid rgba(7, 95, 212, 0.2);
  border-radius: 999px;
  box-shadow: none;
  text-decoration: none;
  transform: none;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus-visible strong {
  color: #ffffff;
  background: #075fd4;
  border-color: #075fd4;
  box-shadow: 0 12px 24px rgba(7, 95, 212, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:focus-visible strong {
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff;
  background: #075fd4;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 95, 212, 0.28);
}

/* Final balance for the RFID decision selector: active state must not change type scale. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  padding: clamp(19px, 2vw, 25px) clamp(8px, 1.2vw, 18px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  line-height: 1.12;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
  font-size: 0.96rem;
  line-height: 1.52;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:focus-visible strong {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.9rem;
}

/* Final balance for the RFID decision selector: active state must not change type scale. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  padding: clamp(19px, 2vw, 25px) clamp(8px, 1.2vw, 18px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  line-height: 1.12;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
  font-size: 0.96rem;
  line-height: 1.52;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:focus-visible strong {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.9rem;
}

/* RFID/MIFARE consultive landing refinements. */
body[data-page="tarjetas-rfid-mifare"] .rfid-route-warning--light,
body[data-page="tarjetas-rfid-mifare"] .rfid-small-note {
  color: #071a42;
  background: #edf7ff;
  border-color: rgba(0, 87, 191, 0.16);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-small-note {
  padding: 11px 13px;
  margin-top: 12px;
  border: 1px solid rgba(0, 87, 191, 0.16);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.5;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-subtitle {
  color: #20344d;
  font-size: clamp(1.08rem, 1.15vw, 1.2rem);
  font-weight: 780;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-catalog-brief {
  align-self: stretch;
  padding: clamp(24px, 3vw, 38px);
  color: #071a42;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.98)),
    #ffffff;
  border: 1px solid rgba(0, 87, 191, 0.15);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.08);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-catalog-brief > span {
  display: inline-flex;
  padding: 6px 10px;
  color: #0057bf;
  background: rgba(0, 87, 191, 0.08);
  border: 1px solid rgba(0, 87, 191, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-catalog-brief h3 {
  margin: 18px 0 0;
  color: #071a42;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-catalog-brief ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-catalog-brief li {
  padding: 13px 15px;
  color: #20344d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(134, 156, 184, 0.22);
  border-radius: 10px;
  font-weight: 840;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: clamp(22px, 3vw, 34px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid a,
body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid article {
  display: grid;
  min-height: 106px;
  align-content: space-between;
  gap: 16px;
  padding: clamp(16px, 1.8vw, 22px);
  color: #071a42;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(134, 156, 184, 0.25);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid a:hover,
body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid a:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid article:hover {
  border-color: rgba(0, 87, 191, 0.3);
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.1);
  transform: translateY(-3px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid span {
  color: #40536c;
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.45;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid strong {
  display: inline-flex;
  width: fit-content;
  color: #0057bf;
  font-size: 0.95rem;
  font-weight: 920;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-tabs-section,
body[data-page="tarjetas-rfid-mifare"] .rfid-samples-section,
body[data-page="tarjetas-rfid-mifare"] .rfid-faq-section {
  padding-top: clamp(48px, 5vw, 74px);
  padding-bottom: clamp(48px, 5vw, 74px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-tabs-section .rfid-section-intro {
  max-width: 860px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-tabs-section .rfid-section-intro h2,
body[data-page="tarjetas-rfid-mifare"] .rfid-samples-section h2,
body[data-page="tarjetas-rfid-mifare"] .rfid-faq-section h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid {
  gap: 12px;
  margin-top: clamp(24px, 3vw, 34px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid article {
  padding: 18px;
  min-height: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid h3 {
  font-size: 1rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid p {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.48;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-samples-section .rfid-route-layout {
  gap: clamp(22px, 3vw, 38px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-samples-section .rfid-route-panel {
  padding: clamp(22px, 3vw, 30px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-samples-section .rfid-route-checklist {
  gap: 10px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-samples-section .rfid-route-checklist li {
  padding: 12px 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-faq-section .faq-grid {
  gap: clamp(22px, 3vw, 36px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-faq-list {
  gap: 10px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-faq-list summary {
  min-height: 56px;
  padding: 14px 18px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compact-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compact-form .form-row {
  margin: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-main-fields,
body[data-page="tarjetas-rfid-mifare"] .rfid-optional-fields {
  display: grid;
  gap: 16px;
}

body[data-page="tarjetas-rfid-mifare"] .reveal {
  opacity: 1;
  transform: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-optional-fields {
  padding: clamp(18px, 2.4vw, 24px);
  background: #f6f9fd;
  border: 1px solid rgba(134, 156, 184, 0.24);
  border-radius: 14px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-optional-fields__head {
  display: grid;
  gap: 6px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-optional-fields__head strong {
  color: #071a42;
  font-size: 1rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-optional-fields__head span {
  color: #40536c;
  font-size: 0.94rem;
  line-height: 1.5;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compact-form textarea {
  min-height: 112px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compact-form .rfid-form-actions {
  margin-top: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-after-note {
  margin: -4px 0 0;
  color: #5f718c;
  font-size: 0.92rem;
  line-height: 1.5;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .rfid-hero-microcopy {
  display: inline-flex !important;
  max-width: 620px;
  padding: 11px 14px;
  margin-top: 16px;
  color: #ffffff;
  background: rgba(7, 26, 66, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 820;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

@media (max-width: 1100px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid a {
    min-height: auto;
  }
}

/* Tienda profesional ACERIS. */
body[data-page^="tienda"] {
  background: #f5f8fc;
}

body[data-page^="tienda"] .shop-hero {
  padding: clamp(116px, 14vw, 164px) 0 clamp(54px, 8vw, 86px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 21, 54, 0.96), rgba(6, 47, 103, 0.9)),
    radial-gradient(circle at 82% 22%, rgba(42, 162, 255, 0.28), transparent 34%);
  overflow: hidden;
}

body[data-page^="tienda"] .shop-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

body[data-page^="tienda"] .shop-hero__copy {
  max-width: 760px;
}

body[data-page^="tienda"] .shop-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 100%;
  color: #52657d;
  font-size: 0.86rem;
  font-weight: 750;
}

body[data-page^="tienda"] .shop-breadcrumb a {
  color: #075fd4;
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 95, 212, 0.24);
}

body[data-page^="tienda"] .shop-breadcrumb a:hover,
body[data-page^="tienda"] .shop-breadcrumb a:focus-visible {
  color: #071a42;
  border-bottom-color: rgba(7, 26, 66, 0.44);
}

body[data-page^="tienda"] .shop-breadcrumb > span {
  color: #8a99ad;
}

body[data-page^="tienda"] .shop-breadcrumb [aria-current="page"] {
  color: #071a42;
  border-bottom: 0;
}

body[data-page^="tienda"] .shop-hero__copy > span,
body[data-page^="tienda"] .shop-consult-panel > div > span,
body[data-page^="tienda"] .shop-guidance-panel > div > span,
body[data-page^="tienda"] .shop-feature-product > div > span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #c9e7ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(63, 169, 245, 0.12);
  border: 1px solid rgba(168, 212, 255, 0.28);
  border-radius: 999px;
}

body[data-page^="tienda"] .shop-hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.02;
}

body[data-page^="tienda"] .shop-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(226, 238, 255, 0.88);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.72;
}

body[data-page^="tienda"] .shop-hero__notice {
  max-width: 560px;
  margin-top: 20px;
  padding: 14px 16px;
  color: #08224d;
  font-weight: 800;
  line-height: 1.45;
  background: #ffffff;
  border: 1px solid rgba(168, 212, 255, 0.72);
  border-radius: 8px;
}

body[data-page^="tienda"] .shop-hero__media {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(168, 212, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 11, 32, 0.32);
}

body[data-page^="tienda"] .shop-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

body[data-page^="tienda"] .shop-hero .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(226, 238, 255, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body[data-page^="tienda"] .shop-hero .button-secondary:hover,
body[data-page^="tienda"] .shop-hero .button-secondary:focus-visible {
  color: #071a42;
  background: #ffffff;
  border-color: #ffffff;
}

body[data-page^="tienda"] .shop-category-nav-section {
  position: relative;
  z-index: 7;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 26, 66, 0.08);
  box-shadow: 0 10px 28px rgba(7, 26, 66, 0.06);
}

body[data-page^="tienda"] .shop-category-nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

body[data-page^="tienda"] .shop-category-nav {
  display: flex;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

body[data-page^="tienda"] .shop-category-nav a,
body[data-page^="tienda"] .shop-category-help {
  min-height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #0a2a58;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  background: #f7fbff;
  border: 1px solid rgba(7, 26, 66, 0.1);
  border-radius: 999px;
}

body[data-page^="tienda"] .shop-category-nav a:hover,
body[data-page^="tienda"] .shop-category-nav a:focus-visible,
body[data-page^="tienda"] .shop-category-help:hover,
body[data-page^="tienda"] .shop-category-help:focus-visible {
  color: #075fd4;
  border-color: rgba(7, 95, 212, 0.28);
  background: #ffffff;
}

body[data-page^="tienda"] .shop-category-nav a.is-active {
  color: #ffffff;
  background: #075fd4;
  border-color: #075fd4;
  box-shadow: 0 12px 26px rgba(7, 95, 212, 0.18);
}

body[data-page^="tienda"] .shop-category-help {
  color: #075fd4;
  background: #eef6ff;
}

body[data-page^="tienda"] .shop-assurance-strip,
body[data-page^="tienda"] .shop-policy-strip {
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(7, 26, 66, 0.08);
}

body[data-page^="tienda"] .shop-assurance-strip .container,
body[data-page^="tienda"] .shop-policy-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

body[data-page^="tienda"] .shop-assurance-strip span,
body[data-page^="tienda"] .shop-policy-strip article {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #0a2a58;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  background: #f7fbff;
}

body[data-page^="tienda"] .shop-policy-strip .container {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body[data-page^="tienda"] .shop-policy-strip article {
  flex-direction: column;
  gap: 6px;
}

body[data-page^="tienda"] .shop-policy-strip span {
  color: #52657d;
  font-size: 0.86rem;
  font-weight: 700;
}

body[data-page^="tienda"] .shop-categories-section,
body[data-page^="tienda"] .shop-catalog-section,
body[data-page^="tienda"] .shop-consult-section,
body[data-page^="tienda"] .shop-guidance-section,
body[data-page^="tienda"] .shop-category-detail-section,
body[data-page^="tienda"] .shop-family-section,
body[data-page^="tienda"] .shop-accessory-intro-section,
body[data-page^="tienda"] .shop-accessory-request-section {
  background: #f5f8fc;
}

body[data-page^="tienda"] .shop-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body[data-page^="tienda"] .shop-category-card,
body[data-page^="tienda"] .shop-product-card,
body[data-page^="tienda"] .shop-consult-panel,
body[data-page^="tienda"] .shop-guidance-panel,
body[data-page^="tienda"] .shop-feature-product,
body[data-page^="tienda"] .shop-family-card,
body[data-page^="tienda"] .shop-price-notice,
body[data-page^="tienda"] .shop-accessory-selection {
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 66, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 26, 66, 0.08);
}

body[data-page^="tienda"] .shop-category-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 210px minmax(0, 1fr);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body[data-page^="tienda"] .shop-category-card:hover,
body[data-page^="tienda"] .shop-category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(7, 95, 212, 0.35);
  box-shadow: 0 24px 60px rgba(7, 26, 66, 0.12);
}

body[data-page^="tienda"] .shop-category-card figure,
body[data-page^="tienda"] .shop-product-card__media {
  margin: 0;
  overflow: hidden;
  background: #edf5ff;
}

body[data-page^="tienda"] .shop-category-card img,
body[data-page^="tienda"] .shop-product-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body[data-page^="tienda"] .shop-category-card div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

body[data-page^="tienda"] .shop-category-card span,
body[data-page^="tienda"] .shop-product-card__eyebrow span {
  color: #075fd4;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body[data-page^="tienda"] .shop-category-card h2,
body[data-page^="tienda"] .shop-product-card h2,
body[data-page^="tienda"] .shop-consult-panel h2,
body[data-page^="tienda"] .shop-guidance-panel h2,
body[data-page^="tienda"] .shop-feature-product h2,
body[data-page^="tienda"] .shop-family-card h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
  line-height: 1.16;
}

body[data-page^="tienda"] .shop-category-card p,
body[data-page^="tienda"] .shop-product-card p,
body[data-page^="tienda"] .shop-consult-panel p,
body[data-page^="tienda"] .shop-guidance-panel p,
body[data-page^="tienda"] .shop-feature-product p,
body[data-page^="tienda"] .shop-family-card p {
  margin: 0;
  color: #52657d;
  line-height: 1.6;
}

body[data-page^="tienda"] .shop-category-card strong {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  color: #075fd4;
}

body[data-page^="tienda"] .shop-category-card svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

body[data-page^="tienda"] .shop-filter-bar {
  position: sticky;
  top: 82px;
  z-index: 6;
  display: flex;
  gap: 8px;
  margin: 0 0 22px;
  padding: 10px;
  overflow-x: auto;
  background: rgba(245, 248, 252, 0.92);
  border: 1px solid rgba(7, 26, 66, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

body[data-page^="tienda"] .shop-filter-bar button {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 0 15px;
  color: #0a2a58;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 66, 0.12);
  border-radius: 999px;
  cursor: pointer;
}

body[data-page^="tienda"] .shop-filter-bar button.is-active {
  color: #ffffff;
  background: #075fd4;
  border-color: #075fd4;
}

body[data-page^="tienda"] .shop-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body[data-page^="tienda"] .shop-product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
}

body[data-page^="tienda"] .shop-product-card.is-hidden,
body[data-page^="tienda"] .shop-consult-section.is-hidden,
body[data-page^="tienda"] .shop-product-grid.is-hidden {
  display: none;
}

body[data-page^="tienda"] .shop-product-card__media {
  min-height: 100%;
}

body[data-page^="tienda"] .shop-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

body[data-page^="tienda"] .shop-product-card__eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

body[data-page^="tienda"] .shop-product-card__eyebrow strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #0f5d50;
  font-size: 0.78rem;
  background: #e9f8f5;
  border-radius: 999px;
}

body[data-page^="tienda"] .shop-product-meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

body[data-page^="tienda"] .shop-product-meta div {
  display: grid;
  gap: 4px;
}

body[data-page^="tienda"] .shop-product-meta dt {
  color: #7c8ba0;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page^="tienda"] .shop-product-meta dd {
  margin: 0;
  color: #233a57;
  line-height: 1.55;
}

body[data-page^="tienda"] .shop-product-card__notice {
  margin: 0;
  padding: 12px 14px;
  color: #08224d;
  font-weight: 780;
  line-height: 1.45;
  background: #eef6ff;
  border: 1px solid rgba(7, 95, 212, 0.16);
  border-radius: 8px;
}

body[data-page^="tienda"] .shop-price-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 3.4vw, 34px);
}

body[data-page^="tienda"] .shop-price-notice span,
body[data-page^="tienda"] .shop-accessory-selection span {
  color: #075fd4;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body[data-page^="tienda"] .shop-price-notice h2 {
  margin: 8px 0 10px;
  color: #071a42;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.14;
}

body[data-page^="tienda"] .shop-price-notice p {
  margin: 0;
  color: #52657d;
  line-height: 1.6;
}

body[data-page^="tienda"] .shop-price-notice > p {
  padding: 14px 16px;
  color: #08224d;
  font-weight: 820;
  background: #eef6ff;
  border: 1px solid rgba(7, 95, 212, 0.16);
  border-radius: 8px;
}

body[data-page^="tienda"] .shop-accessory-card__media {
  display: grid;
  place-items: center;
  padding: 18px;
}

body[data-page^="tienda"] .shop-accessory-card__media img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

body[data-page^="tienda"] .shop-accessory-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 16px;
  color: #52657d;
  font-weight: 800;
  background: #f7fbff;
  border: 1px solid rgba(7, 26, 66, 0.08);
  border-radius: 8px;
}

body[data-page^="tienda"] .shop-accessory-price strong {
  color: #071a42;
  font-size: 1.2rem;
}

body[data-page^="tienda"] .shop-price-breakdown {
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 66, 0.1);
  border-radius: 8px;
}

body[data-page^="tienda"] .shop-price-breakdown dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

body[data-page^="tienda"] .shop-price-breakdown dl[hidden] {
  display: none;
}

body[data-page^="tienda"] .shop-price-breakdown div {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  color: #52657d;
  font-size: 0.92rem;
}

body[data-page^="tienda"] .shop-price-breakdown dt {
  font-weight: 760;
}

body[data-page^="tienda"] .shop-price-breakdown dd {
  margin: 0;
  color: #071a42;
  font-weight: 860;
  text-align: right;
}

body[data-page^="tienda"] .shop-price-breakdown p {
  margin: 0;
  color: #08224d;
  font-weight: 860;
}

body[data-page^="tienda"] .shop-quantity-control {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

body[data-page^="tienda"] .shop-quantity-control label {
  color: #071a42;
  font-size: 0.88rem;
  font-weight: 850;
}

body[data-page^="tienda"] .shop-quantity-control select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: #071a42;
  font: inherit;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 66, 0.14);
  border-radius: 8px;
}

body[data-page^="tienda"] .shop-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page^="tienda"] .shop-product-actions .button {
  min-height: 46px;
  padding-inline: 17px;
}

body[data-page^="tienda"] .shop-product-data,
body[data-page^="tienda"] .shop-product-card > input[type="hidden"] {
  display: none;
}

body[data-page^="tienda"] .shop-consult-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
}

body[data-page^="tienda"] .shop-guidance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}

body[data-page^="tienda"] .shop-guidance-panel > div:first-child {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

body[data-page^="tienda"] .shop-feature-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 0.86fr);
  overflow: hidden;
}

body[data-page^="tienda"] .shop-feature-product figure {
  margin: 0;
  min-height: 100%;
  background: #edf5ff;
}

body[data-page^="tienda"] .shop-feature-product img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

body[data-page^="tienda"] .shop-feature-product > div {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(24px, 4vw, 40px);
}

body[data-page^="tienda"] .shop-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

body[data-page^="tienda"] .shop-spec-grid div {
  min-height: 78px;
  padding: 14px;
  background: #f7fbff;
  border: 1px solid rgba(7, 26, 66, 0.08);
  border-radius: 8px;
}

body[data-page^="tienda"] .shop-spec-grid dt {
  margin: 0 0 6px;
  color: #7c8ba0;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page^="tienda"] .shop-spec-grid dd {
  margin: 0;
  color: #071a42;
  font-weight: 850;
  line-height: 1.35;
}

body[data-page^="tienda"] .shop-family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page^="tienda"] .shop-family-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page^="tienda"] .shop-family-grid--uses {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body[data-page^="tienda"] .shop-family-card {
  min-height: 184px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(7, 26, 66, 0.07);
}

body[data-page^="tienda"] .shop-family-card h3 {
  font-size: clamp(1.08rem, 1.4vw, 1.34rem);
}

body[data-page^="tienda"] .shop-family-card::before {
  content: "";
  width: 34px;
  height: 4px;
  display: block;
  background: #075fd4;
  border-radius: 999px;
}

body[data-page^="tienda"] .shop-consult-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page^="tienda"] .shop-consult-panel li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #0a2a58;
  font-weight: 800;
  background: #eef6ff;
  border: 1px solid rgba(7, 95, 212, 0.14);
  border-radius: 999px;
}

body[data-page^="tienda"] .shop-consult-panel .shop-product-actions {
  grid-column: 1 / -1;
}

body[data-page^="tienda"] .shop-accessory-request-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.74fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

body[data-page^="tienda"] .shop-accessory-form {
  box-shadow: 0 18px 48px rgba(7, 26, 66, 0.1);
}

body[data-page^="tienda"] .shop-accessory-selection {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  padding: 16px;
  box-shadow: none;
}

body[data-page^="tienda"] .shop-accessory-selection strong {
  color: #071a42;
  line-height: 1.4;
}

@media (max-width: 1120px) {
  body[data-page^="tienda"] .shop-hero__layout,
  body[data-page^="tienda"] .shop-consult-panel,
  body[data-page^="tienda"] .shop-guidance-panel,
  body[data-page^="tienda"] .shop-feature-product,
  body[data-page^="tienda"] .shop-price-notice,
  body[data-page^="tienda"] .shop-accessory-request-layout {
    grid-template-columns: 1fr;
  }

  body[data-page^="tienda"] .shop-category-grid,
  body[data-page^="tienda"] .shop-product-grid,
  body[data-page^="tienda"] .shop-family-grid,
  body[data-page^="tienda"] .shop-family-grid--uses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page^="tienda"] .shop-hero {
    padding-top: 104px;
  }

  body[data-page^="tienda"] .shop-breadcrumb {
    font-size: 0.82rem;
  }

  body[data-page^="tienda"] .shop-hero__media,
  body[data-page^="tienda"] .shop-hero__media img {
    min-height: 260px;
  }

  body[data-page^="tienda"] .shop-category-nav-section {
    padding: 10px 0;
  }

  body[data-page^="tienda"] .shop-category-nav-wrap {
    display: grid;
    gap: 10px;
    min-width: 0;
  }

  body[data-page^="tienda"] .shop-category-nav {
    padding-bottom: 2px;
  }

  body[data-page^="tienda"] .shop-category-help {
    width: max-content;
  }

  body[data-page^="tienda"] .shop-assurance-strip .container,
  body[data-page^="tienda"] .shop-policy-strip .container,
  body[data-page^="tienda"] .shop-category-grid,
  body[data-page^="tienda"] .shop-product-grid,
  body[data-page^="tienda"] .shop-product-card,
  body[data-page^="tienda"] .shop-family-grid,
  body[data-page^="tienda"] .shop-family-grid--uses,
  body[data-page^="tienda"] .shop-spec-grid {
    grid-template-columns: 1fr;
  }

  body[data-page^="tienda"] .shop-feature-product img {
    min-height: 260px;
  }

  body[data-page^="tienda"] .shop-guidance-panel {
    align-items: stretch;
  }

  body[data-page^="tienda"] .shop-product-card__media {
    aspect-ratio: 1.45 / 1;
  }

  body[data-page^="tienda"] .shop-filter-bar {
    top: 68px;
    max-width: 100%;
    margin-inline: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  body[data-page^="tienda"] .shop-product-actions .button {
    width: 100%;
  }
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-section--identify,
body[data-page="tarjetas-rfid-mifare"] .rfid-route-section--new-system {
  background: #ffffff;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-layout,
body[data-page="tarjetas-rfid-mifare"] .rfid-white-cards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-layout--media {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-copy {
  max-width: 680px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-copy h2 {
  margin: 14px 0 18px;
  color: #061c3d;
  font-size: clamp(2.2rem, 4.4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-copy p {
  color: #30445e;
  font-size: 1.02rem;
  line-height: 1.72;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-copy .button {
  margin-top: 22px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-panel,
body[data-page="tarjetas-rfid-mifare"] .rfid-config-preview {
  padding: clamp(24px, 4vw, 42px);
  color: #092145;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(111, 171, 225, 0.26);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(20, 68, 118, 0.11);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-panel h3,
body[data-page="tarjetas-rfid-mifare"] .rfid-config-preview h3 {
  margin: 0 0 20px;
  color: #061c3d;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-checklist li {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(104, 139, 180, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-checklist li:first-child {
  border-top: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-checklist strong {
  color: #075fd4;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-checklist span {
  color: #42546c;
  line-height: 1.6;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-example,
body[data-page="tarjetas-rfid-mifare"] .rfid-route-note {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(229, 242, 255, 0.8);
  border: 1px solid rgba(71, 145, 214, 0.2);
  border-radius: 14px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-example span,
body[data-page="tarjetas-rfid-mifare"] .rfid-config-preview > span {
  display: block;
  margin-bottom: 8px;
  color: #075fd4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-example strong {
  color: #061c3d;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.03em;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-note {
  display: grid;
  gap: 8px;
  margin-bottom: 2px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-note strong {
  color: #061c3d;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-note span {
  color: #40536d;
  line-height: 1.58;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-route-warning {
  margin: 22px 0;
  padding: 16px 18px;
  color: #07224b;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #dff0ff);
  border: 1px solid rgba(123, 185, 240, 0.48);
  border-radius: 14px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps {
  display: grid;
  gap: 12px;
  position: relative;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-heading {
  max-width: 880px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-heading .section-number {
  margin-right: auto;
  margin-left: auto;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-heading h2 {
  max-width: 840px;
  margin: 14px auto 16px;
  color: #061c3d;
  font-size: clamp(2.15rem, 3.8vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-heading .rfid-route-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #30445e;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 800;
  line-height: 1.62;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-layout .rfid-route-copy {
  max-width: 720px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 38px;
  width: 1px;
  background: linear-gradient(180deg, rgba(7, 95, 212, 0.12), rgba(7, 95, 212, 0.28), rgba(7, 95, 212, 0.12));
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  position: relative;
  padding: 18px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(111, 171, 225, 0.22);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(20, 48, 84, 0.045);
  outline: 0;
  transition: opacity 360ms ease, visibility 360ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps.is-sequenced article:not(.is-revealed) {
  opacity: 0.76;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps.is-sequenced article.is-revealed {
  visibility: visible;
  animation: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps.is-sequenced article:not(.is-active) {
  opacity: 0.76;
  background: linear-gradient(135deg, #fbfdff 0%, #f4f8fc 100%);
  border-color: rgba(111, 145, 178, 0.18);
  box-shadow: 0 10px 24px rgba(20, 48, 84, 0.035);
}

@keyframes rfid-step-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article.is-active,
body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article:focus-visible {
  background: linear-gradient(135deg, #eef7ff 0%, #ffffff 100%);
  border-color: rgba(7, 95, 212, 0.42);
  box-shadow: 0 22px 50px rgba(20, 72, 126, 0.1);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #075fd4;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  background: rgba(222, 239, 255, 0.92);
  border: 1px solid rgba(72, 150, 222, 0.26);
  border-radius: 999px;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article.is-active > span,
body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article:focus-visible > span {
  color: #ffffff;
  background: #075fd4;
  border-color: #075fd4;
  box-shadow: 0 10px 24px rgba(7, 95, 212, 0.22);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps h3 {
  margin: 0 0 7px;
  color: #061c3d;
  font-size: 1.08rem;
  line-height: 1.2;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.58;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps p + p {
  margin-top: 10px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-closing {
  max-width: 660px;
  margin: 18px 0 0;
  padding: 15px 17px;
  color: #30445e;
  font-size: 0.98rem;
  line-height: 1.55;
  background: rgba(237, 247, 255, 0.72);
  border: 1px solid rgba(111, 171, 225, 0.22);
  border-radius: 12px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel--route {
  grid-template-columns: 1fr;
  align-self: start;
  margin: 0;
  padding: clamp(20px, 2.6vw, 30px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel--route .rfid-nfc-help-copy {
  max-width: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel--route .rfid-nfc-help-copy h3 {
  margin: 0 0 12px;
  color: #071a42;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.12;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel--route .rfid-nfc-note {
  margin-bottom: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-identify-actions {
  grid-column: 1;
  align-self: start;
  margin-top: -44px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-white-cards-section {
  background: linear-gradient(135deg, #071a34 0%, #0a2c58 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-white-cards-section .section-number,
body[data-page="tarjetas-rfid-mifare"] .rfid-white-cards-section .rfid-route-copy h2,
body[data-page="tarjetas-rfid-mifare"] .rfid-white-cards-section .rfid-route-copy p {
  color: #ffffff;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-config-preview {
  background: rgba(248, 252, 255, 0.96);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quantity-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 22px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quantity-options button,
body[data-page="tarjetas-rfid-mifare"] .rfid-quantity-options a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  color: #0d315e;
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: #f4f9ff;
  border: 1px solid rgba(80, 143, 210, 0.24);
  border-radius: 999px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-quantity-options button:hover,
body[data-page="tarjetas-rfid-mifare"] .rfid-quantity-options button:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .rfid-quantity-options a:hover,
body[data-page="tarjetas-rfid-mifare"] .rfid-quantity-options a:focus-visible {
  color: #ffffff;
  background: #075fd4;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-product-list {
  display: grid;
  gap: 12px;
  max-height: 430px;
  padding-right: 8px;
  overflow: auto;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-product-list article {
  padding: 15px 16px;
  background: #ffffff;
  border: 1px solid rgba(80, 143, 210, 0.18);
  border-radius: 12px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-product-list strong {
  display: block;
  margin-bottom: 6px;
  color: #061c3d;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-product-list p {
  margin: 0 0 8px;
  color: #455a73;
  font-size: 0.93rem;
  line-height: 1.5;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-product-list a {
  color: #075fd4;
  font-weight: 800;
  text-decoration: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-config-preview select:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-config-preview--compact {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-config-preview--compact p {
  margin: 0;
  color: #43576f;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-disabled-action {
  opacity: 0.58;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-route-layout,
  body[data-page="tarjetas-rfid-mifare"] .rfid-route-layout--media,
  body[data-page="tarjetas-rfid-mifare"] .rfid-identify-layout,
  body[data-page="tarjetas-rfid-mifare"] .rfid-white-cards-layout,
  body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel--route {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-identify-actions {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-route-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-route-checklist li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-identify-steps::before {
    left: 54px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-quantity-options {
    grid-template-columns: 1fr 1fr;
  }
}

/* Final scoped locks for the approved RFID/MIFARE polish pass. */
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body > p {
  color: rgba(226, 238, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.72;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:focus-visible strong {
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff;
  background: #075fd4;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 95, 212, 0.28);
}

/* Final RFID/MIFARE polish: keep approved structure, tune hierarchy and emphasis. */
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
  min-height: clamp(650px, 82vh, 760px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 16, 41, 0.88) 0%, rgba(4, 16, 41, 0.66) 37%, rgba(4, 16, 41, 0.22) 68%, rgba(4, 16, 41, 0.1) 100%),
    linear-gradient(0deg, rgba(4, 16, 41, 0.56), rgba(4, 16, 41, 0.12) 44%, rgba(4, 16, 41, 0.28));
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
  object-position: 58% 56%;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.25vw, 4.95rem);
  line-height: 1.02;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p:not(.rfid-hero-microcopy) {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.22vw, 1.18rem);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong {
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: #075fd4;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 95, 212, 0.28);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy > .rfid-compatibility-subtitle {
  font-size: clamp(1.02rem, 1.16vw, 1.14rem);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body > p {
  color: rgba(226, 238, 255, 0.86);
  font-size: 0.98rem;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps span {
  color: rgba(226, 238, 255, 0.8);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-tabs-section .rfid-nfc-help-panel--inline {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(243, 249, 255, 0.98), rgba(255, 255, 255, 0.98)),
    #f8fbff;
  border-color: rgba(145, 193, 239, 0.72);
  box-shadow: 0 26px 70px rgba(20, 48, 84, 0.1);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-tabs-section .rfid-nfc-help-panel--inline::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, #075fd4, rgba(63, 169, 245, 0.45));
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-tabs-section .rfid-nfc-help-media {
  box-shadow: 0 18px 48px rgba(20, 48, 84, 0.12);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-tabs-section .rfid-nfc-help-media img {
  object-position: 46% 50%;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
    min-height: 690px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 16, 41, 0.9) 0%, rgba(4, 16, 41, 0.76) 47%, rgba(4, 16, 41, 0.36) 75%, rgba(4, 16, 41, 0.16) 100%),
      linear-gradient(90deg, rgba(4, 16, 41, 0.72), rgba(4, 16, 41, 0.2));
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
    object-position: 62% center;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
    font-size: clamp(2.62rem, 12vw, 3.55rem);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p:not(.rfid-hero-microcopy) {
    font-size: 1rem;
  }
}

/* Absolute final polish locks for approved RFID/MIFARE page. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong {
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff;
  background: #075fd4;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 95, 212, 0.28);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body > p {
  color: rgba(226, 238, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.72;
}

/* Absolute final override for RFID services sequence. */
body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-work-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1180px;
  margin-inline: auto;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  overflow: visible;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product::after {
  top: auto;
  right: auto;
  bottom: -68px;
  left: 50%;
  width: 44px;
  height: 44px;
  content: "↓";
  transform: translateX(-50%);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow {
  padding: clamp(30px, 4vw, 50px);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow > span {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 0.86rem;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow ol {
  gap: clamp(18px, 2vw, 30px);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li::before {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 950;
  background: #071a42;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(20, 48, 84, 0.12);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(1)::before {
  content: "1";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(2)::before {
  content: "2";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(3)::before {
  content: "3";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(4)::before {
  content: "4";
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-work-flow {
    gap: 40px;
  }

  body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product::after {
    bottom: -58px;
  }
}

/* EOF override: keep the RFID/MIFARE first impact clean after legacy rules. */
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
  align-items: center;
  min-height: clamp(560px, 68svh, 670px);
  padding: clamp(120px, 15svh, 164px) 0 clamp(86px, 11svh, 118px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 16, 41, 0.94) 0%, rgba(4, 16, 41, 0.8) 28%, rgba(4, 16, 41, 0.3) 56%, rgba(4, 16, 41, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 16, 41, 0.08) 0%, rgba(4, 16, 41, 0.01) 58%, rgba(4, 16, 41, 0.16) 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
  object-position: 64% center !important;
  filter: saturate(1.03) contrast(1.05);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
  max-width: 560px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5.25vw, 4.95rem);
  line-height: 1;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p {
  max-width: 500px;
  margin-top: 22px;
  font-size: clamp(1.04rem, 1.18vw, 1.16rem);
  line-height: 1.55;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-microcopy,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-trust {
  display: none !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav {
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(14px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav .container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
    align-items: start !important;
    min-height: 680px;
    padding: 142px 0 62px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
    object-position: 58% center !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
    display: block;
    padding-top: 0 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
    max-width: 340px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(2.2rem, 10.2vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p {
    max-width: 330px;
    font-size: 0.98rem !important;
    line-height: 1.45 !important;
  }
}

/* TRUE EOF override: printer ad photo fills the commercial frame. */
body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo {
  min-height: clamp(270px, 27vw, 380px) !important;
  overflow: hidden !important;
  place-items: stretch !important;
  border-radius: 18px !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 52% 50% !important;
  filter: saturate(1.02) contrast(1.04) brightness(0.95) !important;
}

body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo .rfid-printer-glow,
body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo .rfid-printer-card {
  display: none !important;
}

@media (max-width: 680px) {
  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo {
    min-height: 230px !important;
    border-radius: 14px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] #impresoras-tarjetas-pvc-recurrente .rfid-printer-ad-visual--photo img {
    object-position: 48% 50% !important;
  }
}

/* Absolute final override: RFID/MIFARE clean hero and deferred internal nav. */
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
  align-items: center;
  min-height: clamp(560px, 68svh, 670px);
  padding: clamp(120px, 15svh, 164px) 0 clamp(86px, 11svh, 118px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 16, 41, 0.94) 0%, rgba(4, 16, 41, 0.8) 28%, rgba(4, 16, 41, 0.3) 56%, rgba(4, 16, 41, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 16, 41, 0.08) 0%, rgba(4, 16, 41, 0.01) 58%, rgba(4, 16, 41, 0.16) 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
  object-position: 64% center;
  filter: saturate(1.03) contrast(1.05);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
  max-width: 560px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5.25vw, 4.95rem);
  line-height: 1;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.18vw, 1.16rem);
  line-height: 1.55;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .hero-actions {
  gap: 14px;
  margin-top: 30px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .button {
  min-height: 52px;
  padding-inline: 22px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-microcopy,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-trust {
  display: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip {
  background: rgba(248, 251, 255, 0.98);
  border-bottom: 1px solid rgba(180, 194, 214, 0.42);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #071a42;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip span::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  content: "";
  background: #0086d1;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 134, 209, 0.12);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav {
  top: 72px;
  padding: 10px 0;
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(14px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav .container::-webkit-scrollbar {
  display: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
    align-items: start !important;
    min-height: 620px;
    padding: 104px 0 62px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 16, 41, 0.95) 0%, rgba(4, 16, 41, 0.82) 45%, rgba(4, 16, 41, 0.46) 74%, rgba(4, 16, 41, 0.12) 100%),
      linear-gradient(90deg, rgba(4, 16, 41, 0.9), rgba(4, 16, 41, 0.28));
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
    object-position: 58% center;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
    display: block;
    padding-top: 0 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
    max-width: 340px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(2.2rem, 10.2vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p {
    max-width: 330px;
    margin-top: 18px;
    font-size: 0.98rem !important;
    line-height: 1.45 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .hero-actions {
    gap: 10px;
    max-width: 330px;
    margin-top: 22px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .button {
    min-height: 48px;
    padding-inline: 16px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip .container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip span {
    font-size: 0.86rem;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav {
    top: 64px;
  }
}

/* RFID/MIFARE clean hero: scoped final override. */
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
  align-items: center;
  min-height: clamp(560px, 68svh, 670px);
  padding: clamp(120px, 15svh, 164px) 0 clamp(86px, 11svh, 118px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 16, 41, 0.94) 0%, rgba(4, 16, 41, 0.82) 30%, rgba(4, 16, 41, 0.34) 56%, rgba(4, 16, 41, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 16, 41, 0.12) 0%, rgba(4, 16, 41, 0.02) 58%, rgba(4, 16, 41, 0.18) 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
  object-position: 72% center;
  filter: saturate(1.03) contrast(1.05);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
  max-width: 560px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5.25vw, 4.95rem);
  line-height: 1;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.18vw, 1.16rem);
  line-height: 1.55;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .hero-actions {
  gap: 14px;
  margin-top: 30px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .button {
  min-height: 52px;
  padding-inline: 22px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-microcopy,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-trust {
  display: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip {
  background: rgba(248, 251, 255, 0.98);
  border-bottom: 1px solid rgba(180, 194, 214, 0.42);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #071a42;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip span::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  content: "";
  background: #0086d1;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 134, 209, 0.12);
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
    align-items: start !important;
    min-height: 620px;
    padding: 104px 0 62px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 16, 41, 0.95) 0%, rgba(4, 16, 41, 0.82) 45%, rgba(4, 16, 41, 0.46) 74%, rgba(4, 16, 41, 0.12) 100%),
      linear-gradient(90deg, rgba(4, 16, 41, 0.9), rgba(4, 16, 41, 0.32));
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
    object-position: 68% center;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
    display: block;
    padding-top: 0 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
    max-width: 340px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(2.2rem, 10.2vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p {
    max-width: 330px;
    margin-top: 18px;
    font-size: 0.98rem !important;
    line-height: 1.45 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .hero-actions {
    gap: 10px;
    max-width: 330px;
    margin-top: 22px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .button {
    min-height: 48px;
    padding-inline: 16px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip .container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip span {
    font-size: 0.86rem;
  }
}

/* RFID/MIFARE hero-only refinement. */
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 16, 41, 0.96) 0%, rgba(4, 16, 41, 0.88) 34%, rgba(4, 16, 41, 0.48) 58%, rgba(4, 16, 41, 0.16) 100%),
    linear-gradient(180deg, rgba(4, 16, 41, 0.22) 0%, rgba(4, 16, 41, 0.08) 58%, rgba(244, 247, 251, 0.9) 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
  object-position: 70% center;
  filter: saturate(1.02) contrast(1.04);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
  max-width: 760px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
  max-width: 720px;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p:not(.rfid-hero-microcopy) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

/* RFID/MIFARE copy polish: scoped refinements for the consultative landing. */
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .rfid-hero-microcopy {
  display: inline-flex !important;
  max-width: 560px;
  margin-top: 18px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
  background: rgba(8, 31, 70, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-help-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  transition: color 0.2s ease, border-color 0.2s ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-help-link:hover,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-help-link:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.86);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip .container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid {
  gap: 14px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid a,
body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid article {
  min-height: 118px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid p {
  margin: 8px 0 12px;
  color: #52627a;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 900px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-benefit-strip .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .rfid-hero-microcopy {
    max-width: 330px;
    margin-top: 14px;
    font-size: 0.84rem;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid a,
  body[data-page="tarjetas-rfid-mifare"] .rfid-choice-grid article {
    min-height: 0;
  }
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .button-primary {
  color: #ffffff;
  background: #006fd6;
  box-shadow: 0 18px 44px rgba(0, 111, 214, 0.34);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-microcopy {
  display: block;
  max-width: 650px;
  padding: 12px 15px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  background: rgba(7, 26, 66, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-trust {
  background: rgba(4, 16, 41, 0.58);
  backdrop-filter: blur(14px);
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 16, 41, 0.96) 0%, rgba(4, 16, 41, 0.84) 54%, rgba(4, 16, 41, 0.52) 78%, rgba(244, 247, 251, 0.96) 100%),
      linear-gradient(90deg, rgba(4, 16, 41, 0.92), rgba(4, 16, 41, 0.5));
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
    object-position: 68% center;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
    align-items: start !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
    align-content: start;
    gap: 12px;
    padding-top: 80px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
    font-size: clamp(2rem, 9.5vw, 2.42rem) !important;
    line-height: 1.02 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p:not(.rfid-hero-microcopy) {
    margin-top: 16px;
    font-size: 0.92rem !important;
    line-height: 1.48 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy .button {
    min-height: 50px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-microcopy {
    margin-top: 12px;
    padding: 9px 11px;
    font-size: 0.84rem;
    line-height: 1.32;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-trust {
    gap: 6px;
    padding: 10px 11px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-trust span {
    gap: 8px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-trust span::before {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(63, 169, 245, 0.14);
  }
}

/* Shared hero scale for tarjetas, impresoras, consumibles and related subpages.
   Use .aceris-standard-hero on any new page hero so future sections inherit this scale. */
:root {
  --aceris-card-hero-height: clamp(600px, 68svh, 640px);
  --aceris-card-hero-h1: clamp(2.65rem, 3.9vw, 3.7rem);
  --aceris-card-hero-copy: 1.05rem;
}

.aceris-standard-hero,
.conversion-hub-hero,
.conversion-page-hero,
.service-hero.credentials-hero,
.rfid-redesign-hero {
  box-sizing: border-box;
  min-height: 0 !important;
  height: var(--aceris-card-hero-height) !important;
  margin-top: -92px !important;
  overflow: hidden;
}

.aceris-standard-hero,
.conversion-hub-hero,
.conversion-page-hero {
  display: grid;
  align-items: center;
  padding-top: clamp(34px, 5vw, 58px) !important;
  padding-bottom: clamp(34px, 5vw, 58px) !important;
}

.service-hero.credentials-hero {
  display: flex;
  align-items: center;
  margin-top: -92px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

.service-hero-inner,
.conversion-hero-grid,
.rfid-hero-layout {
  min-height: 0 !important;
}

.service-hero-inner {
  height: 100%;
  max-height: 100%;
  padding-top: clamp(34px, 5vw, 58px) !important;
  padding-bottom: clamp(34px, 5vw, 58px) !important;
}

.aceris-standard-hero .conversion-hero-panel,
.conversion-hub-hero .conversion-hero-panel {
  box-shadow: 0 22px 56px rgba(20, 48, 84, 0.075);
}

.aceris-standard-hero h1,
.conversion-hero-copy h1,
.conversion-hero-panel h1,
.service-hero-copy h1,
.credentials-hero-copy h1,
.rfid-hero-copy h1,
body[data-page="impresion-tarjetas-pvc"] .conversion-hero-copy h1 {
  font-size: var(--aceris-card-hero-h1) !important;
  line-height: 1.02 !important;
}

.aceris-standard-hero p,
.conversion-hero-copy > p,
.conversion-hero-panel > p,
.service-hero-copy > p,
.credentials-hero-copy > p,
.rfid-hero-copy > p,
body[data-page="impresion-tarjetas-pvc"] .conversion-hero-copy > p:not(.conversion-microcopy) {
  font-size: var(--aceris-card-hero-copy) !important;
  line-height: 1.65 !important;
}

.aceris-standard-hero .conversion-hero-media,
.conversion-hero-media,
.service-hero-media {
  min-height: 0 !important;
  max-height: calc(var(--aceris-card-hero-height) - 96px);
}

.aceris-standard-hero .conversion-hero-media img,
.conversion-hero-media img,
.service-hero-media img,
body[data-page="impresion-tarjetas-pvc"] .conversion-hero-media img {
  height: clamp(330px, 34vw, 500px) !important;
  min-height: 0 !important;
  max-height: calc(var(--aceris-card-hero-height) - 96px);
}

.rfid-redesign-hero {
  align-items: center;
  padding-top: clamp(34px, 5vw, 58px) !important;
  padding-bottom: clamp(34px, 5vw, 58px) !important;
}

@media (max-width: 1160px) {
  :root {
    --aceris-card-hero-height: 660px;
  }

  .aceris-standard-hero,
  .conversion-hub-hero,
  .conversion-page-hero,
  .service-hero.credentials-hero,
  .rfid-redesign-hero {
    height: var(--aceris-card-hero-height) !important;
    min-height: 0 !important;
    overflow: hidden;
  }

  .aceris-standard-hero,
  .service-hero.credentials-hero,
  .conversion-page-hero {
    height: var(--aceris-card-hero-height) !important;
    min-height: 0 !important;
  }
}

@media (max-width: 760px) {
  :root {
    --aceris-card-hero-height: 660px;
    --aceris-card-hero-h1: clamp(2.15rem, 10.2vw, 2.95rem);
    --aceris-card-hero-copy: 0.98rem;
  }

  .aceris-standard-hero,
  .conversion-hub-hero,
  .conversion-page-hero,
  .service-hero.credentials-hero,
  .rfid-redesign-hero {
    height: var(--aceris-card-hero-height) !important;
    min-height: 0 !important;
    overflow: hidden;
  }

  .service-hero-inner {
    height: auto;
    max-height: none;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .aceris-standard-hero,
  .conversion-hub-hero,
  .conversion-page-hero,
  .rfid-redesign-hero {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .aceris-standard-hero .conversion-hero-media img,
  .conversion-hero-media img,
  .service-hero-media img,
  body[data-page="impresion-tarjetas-pvc"] .conversion-hero-media img {
    height: 180px !important;
    min-height: 0 !important;
    max-height: 180px;
  }

  .service-hero.credentials-hero .service-hero-media {
    display: none;
  }

  .credentials-hero-benefits {
    margin-top: 20px;
  }
}

/* True end-of-file RFID commercial overrides. */
body[data-page="tarjetas-rfid-mifare"] .rfid-work-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  max-width: 1180px;
  margin-inline: auto;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-base-product {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  overflow: visible;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-base-product::after {
  top: auto;
  right: auto;
  bottom: -66px;
  left: 50%;
  width: 44px;
  height: 44px;
  content: "↓";
  transform: translateX(-50%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow {
  padding: clamp(30px, 4vw, 50px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow > span {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 0.86rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow ol {
  gap: clamp(18px, 2vw, 30px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li {
  padding: 4px 8px 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li::before {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 950;
  background: #071a42;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(20, 48, 84, 0.12);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:nth-child(1)::before {
  content: "1";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:nth-child(2)::before {
  content: "2";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:nth-child(3)::before {
  content: "3";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:nth-child(4)::before {
  content: "4";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-note-panel {
  border-color: rgba(0, 87, 191, 0.18);
  background: #edf5ff;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-note-panel strong {
  color: #071a42;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-work-flow {
    gap: 38px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-base-product::after {
    bottom: -58px;
  }
}

/* Absolute final override for RFID services sequence. */
body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-work-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1180px;
  margin-inline: auto;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  overflow: visible;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product::after {
  top: auto;
  right: auto;
  bottom: -68px;
  left: 50%;
  width: 44px;
  height: 44px;
  content: "↓";
  transform: translateX(-50%);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow {
  padding: clamp(30px, 4vw, 50px);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow > span {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 0.86rem;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow ol {
  gap: clamp(18px, 2vw, 30px);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li::before {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 950;
  background: #071a42;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(20, 48, 84, 0.12);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(1)::before {
  content: "1";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(2)::before {
  content: "2";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(3)::before {
  content: "3";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(4)::before {
  content: "4";
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-work-flow {
    gap: 40px;
  }

  body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product::after {
    bottom: -58px;
  }
}

/* RFID commercial polish: conversion hierarchy, scoped to this page only. */
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
  max-width: 780px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
  max-width: 760px;
  text-wrap: balance;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.26);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p:not(.rfid-hero-microcopy) {
  max-width: 720px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-microcopy {
  display: inline-flex;
  max-width: 640px;
  padding: 12px 15px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.45;
  background: rgba(7, 26, 66, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card--featured {
  grid-column: span 2;
  min-height: 255px;
  border-color: rgba(0, 87, 191, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.98)),
    #ffffff;
  box-shadow: 0 24px 60px rgba(20, 48, 84, 0.1);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card--featured > span {
  color: #0057bf;
  background: rgba(0, 87, 191, 0.08);
  border-color: rgba(0, 87, 191, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card--featured h3 {
  max-width: 580px;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

body[data-page="tarjetas-rfid-mifare"] #tab-unknown {
  color: #071a42;
  border-color: rgba(0, 87, 191, 0.28);
  background:
    linear-gradient(180deg, #ffffff, #edf5ff);
}

body[data-page="tarjetas-rfid-mifare"] #tab-unknown.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #0057bf, #071a42);
  border-color: rgba(63, 169, 245, 0.36);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel--help {
  border-color: rgba(0, 87, 191, 0.28);
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.98), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel h2 {
  max-width: 650px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-sample-clarification {
  max-width: 650px;
  padding: 14px 16px;
  margin-top: 18px;
  color: #071a42;
  font-weight: 820;
  background: #f3f8ff;
  border: 1px solid rgba(0, 87, 191, 0.16);
  border-radius: 10px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-work-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 1180px;
  margin-inline: auto;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-base-product {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-base-product::after {
  top: auto;
  right: auto;
  bottom: -48px;
  left: 50%;
  width: 42px;
  height: 42px;
  content: "↓";
  transform: translateX(-50%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow {
  padding: clamp(30px, 4vw, 50px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow > span {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 0.86rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow ol {
  gap: clamp(18px, 2vw, 30px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow ol::before {
  top: 34px;
  right: 9%;
  left: 9%;
  height: 4px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li {
  padding: 4px 8px 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li::before {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 950;
  background: #071a42;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(20, 48, 84, 0.12);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:nth-child(1)::before {
  content: "1";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:nth-child(2)::before {
  content: "2";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:nth-child(3)::before {
  content: "3";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:nth-child(4)::before {
  content: "4";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li strong {
  font-size: clamp(1.18rem, 1.5vw, 1.35rem);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow small {
  display: block;
  max-width: 230px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-note-panel {
  border-color: rgba(0, 87, 191, 0.18);
  background: #edf5ff;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-note-panel strong {
  color: #071a42;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline p {
  color: #2e4664;
  font-size: clamp(1.02rem, 1vw, 1.1rem);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline h3 {
  color: #061327;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-prelude {
  max-width: 980px;
  margin-bottom: clamp(30px, 4vw, 52px);
  color: #ffffff;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-prelude .section-number {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-prelude h2 {
  max-width: 760px;
  margin: 14px auto 12px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.04;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-prelude p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.2vw, 1.14rem);
  line-height: 1.72;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-copy h2 {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
}

body[data-page="tarjetas-rfid-mifare"] .credentials-final-cta .cta-panel h2 {
  max-width: 680px;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-final-cta .cta-panel p {
  max-width: 760px;
}

@media (max-width: 900px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card--featured {
    grid-column: auto;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-microcopy {
    display: block;
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
    min-height: 760px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow ol::before {
    top: 34px;
    bottom: 34px;
    left: 38px;
    right: auto;
    width: 4px;
    height: auto;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li::before {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 64px;
    height: 64px;
    margin: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li strong,
  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li small {
    grid-column: 2;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow small {
    max-width: none;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-form-prelude {
    text-align: left;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-form-prelude h2,
  body[data-page="tarjetas-rfid-mifare"] .rfid-form-prelude p {
    margin-inline: 0;
  }
}

/* RFID final visual polish. Scoped to the Tarjetas RFID page. */
body[data-page="tarjetas-rfid-mifare"] {
  --rfid-ink: #071a42;
  --rfid-text: #40536c;
  --rfid-line: rgba(134, 156, 184, 0.34);
  --rfid-blue: #0057bf;
  --rfid-soft: #f6f9fd;
}

body[data-page="tarjetas-rfid-mifare"] main {
  overflow-x: clip;
}

body[data-page="tarjetas-rfid-mifare"] .section {
  padding-top: clamp(70px, 7vw, 108px);
  padding-bottom: clamp(70px, 7vw, 108px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-section-intro p,
body[data-page="tarjetas-rfid-mifare"] .section-heading p,
body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card p,
body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel p,
body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel span,
body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel p,
body[data-page="tarjetas-rfid-mifare"] .rfid-work-flow small,
body[data-page="tarjetas-rfid-mifare"] .rfid-note-panel p,
body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline p,
body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel p,
body[data-page="tarjetas-rfid-mifare"] .rfid-faq-list p {
  font-size: clamp(1rem, 0.95vw, 1.08rem);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: clamp(28px, 4.4vw, 64px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel figure {
  max-width: none;
  border-radius: 14px;
  box-shadow: 0 28px 68px rgba(20, 48, 84, 0.13);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel img {
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: 18% center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel > .button {
  grid-column: 2;
  justify-self: start;
  align-self: start;
  width: auto;
  margin-top: -18px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.05rem);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-list {
  gap: 12px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-list button {
  min-height: 60px;
  padding: 16px 18px;
  color: #243b5a;
  font-size: 1rem;
  background: #ffffff;
  border-color: rgba(134, 156, 184, 0.35);
  box-shadow: 0 10px 26px rgba(20, 48, 84, 0.035);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-list button.is-active {
  color: #ffffff;
  background: var(--rfid-ink);
  border-color: var(--rfid-ink);
  box-shadow: 0 18px 38px rgba(7, 26, 66, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-list button:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .rfid-tab-list button:focus,
body[data-page="tarjetas-rfid-mifare"] .rfid-form-progress button:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .rfid-form-progress button:focus,
body[data-page="tarjetas-rfid-mifare"] .rfid-faq-list summary:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .rfid-faq-list summary:focus,
body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form input:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form input:focus,
body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form select:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form select:focus,
body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form textarea:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form textarea:focus,
body[data-page="tarjetas-rfid-mifare"] .button:focus-visible,
body[data-page="tarjetas-rfid-mifare"] .button:focus {
  outline: 3px solid rgba(63, 169, 245, 0.7);
  outline-offset: 4px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel {
  min-height: 470px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel figure {
  align-self: stretch;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel img {
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 360ms ease;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel.is-active:hover img {
  transform: scale(1.018);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-work-flow {
  position: relative;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: stretch;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-base-product,
body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow {
  padding: clamp(24px, 3vw, 36px);
  border-color: rgba(134, 156, 184, 0.26);
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.055);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-base-product {
  position: relative;
  isolation: isolate;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-base-product::after {
  position: absolute;
  top: 50%;
  right: -45px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--rfid-blue);
  font-size: 1.4rem;
  font-weight: 950;
  content: "→";
  background: #ffffff;
  border: 1px solid rgba(0, 87, 191, 0.24);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 48, 84, 0.08);
  transform: translateY(-50%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-base-product h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow > span,
body[data-page="tarjetas-rfid-mifare"] .rfid-base-product > span {
  margin-bottom: 12px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow ol {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: 18px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow ol::before {
  top: 30px;
  right: 10%;
  left: 10%;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 87, 191, 0.12), rgba(0, 87, 191, 0.38), rgba(0, 87, 191, 0.12));
  border-radius: 999px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li {
  min-width: 0;
  padding: 0 4px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li::after {
  position: absolute;
  top: 20px;
  right: -12px;
  z-index: 2;
  color: rgba(0, 87, 191, 0.46);
  font-weight: 950;
  content: "→";
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li:last-child::after {
  content: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li strong {
  font-size: 1.08rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow small {
  color: var(--rfid-text);
  line-height: 1.48;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-note-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 20px 22px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-note-panel p {
  flex: 1 1 440px;
  margin: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-layout {
  gap: clamp(38px, 5.5vw, 86px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-media img {
  aspect-ratio: 1.45;
  object-position: center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-options li {
  font-size: 1rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline {
  gap: clamp(28px, 3vw, 44px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline::before {
  top: 43px;
  right: 9%;
  left: 9%;
  height: 4px;
  background: linear-gradient(90deg, rgba(0, 87, 191, 0.08), rgba(0, 87, 191, 0.55), rgba(0, 87, 191, 0.08));
}

body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline li > span {
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  font-size: 1.35rem;
  border-width: 7px;
  box-shadow: 0 22px 42px rgba(20, 48, 84, 0.16);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline h3 {
  font-size: clamp(1.26rem, 1.6vw, 1.48rem);
  line-height: 1.18;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel {
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  padding: clamp(28px, 4.3vw, 54px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel figure {
  max-width: none;
  box-shadow: 0 22px 56px rgba(20, 48, 84, 0.1);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel img {
  aspect-ratio: 1.45;
  object-position: 47% center;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-faq-list summary {
  min-height: 74px;
  font-size: 1.05rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-layout {
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1.24fr);
  gap: clamp(34px, 5vw, 84px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form {
  width: min(100%, 980px);
  justify-self: end;
  padding: clamp(28px, 4vw, 50px);
  border-radius: 16px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-progress {
  gap: 14px;
  margin-bottom: 22px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-progress button {
  min-height: 68px;
  padding: 16px 18px;
  font-size: 1.03rem;
  border-radius: 12px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-progress button span {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-step-summary {
  padding: 18px 20px;
  margin-bottom: 30px;
  border-radius: 12px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-step-summary strong,
body[data-page="tarjetas-rfid-mifare"] .rfid-checkbox-group legend,
body[data-page="tarjetas-rfid-mifare"] .rfid-upload-group > strong,
body[data-page="tarjetas-rfid-mifare"] .rfid-urgency-panel h3 {
  font-size: 1.06rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-step-summary p,
body[data-page="tarjetas-rfid-mifare"] .rfid-step-help,
body[data-page="tarjetas-rfid-mifare"] .rfid-upload-group p,
body[data-page="tarjetas-rfid-mifare"] .rfid-urgency-panel p {
  font-size: 0.98rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form label {
  margin-bottom: 8px;
  color: var(--rfid-ink);
  font-size: 0.98rem;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form input,
body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form select,
body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form textarea {
  min-height: 54px;
  font-size: 1rem;
  border-radius: 10px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form textarea {
  min-height: 144px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-checkbox-group,
body[data-page="tarjetas-rfid-mifare"] .rfid-upload-group,
body[data-page="tarjetas-rfid-mifare"] .rfid-urgency-panel {
  padding: 22px;
  margin-bottom: 28px;
  border-radius: 14px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-upload-group .form-row.split {
  gap: 16px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-upload-group input[type="file"] {
  min-height: 58px;
  padding: 14px;
  background: #ffffff;
  border: 1px dashed rgba(0, 87, 191, 0.42);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-actions {
  gap: 14px;
  margin-top: 30px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-actions .button {
  min-height: 56px;
  padding-inline: 22px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-actions .button-secondary {
  background: #ffffff;
  border-color: rgba(0, 87, 191, 0.32);
}

@media (hover: hover) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-intent-card:hover,
  body[data-page="tarjetas-rfid-mifare"] .rfid-faq-list details:hover,
  body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel:hover,
  body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 1180px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel,
  body[data-page="tarjetas-rfid-mifare"] .rfid-work-flow,
  body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel,
  body[data-page="tarjetas-rfid-mifare"] .rfid-form-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel > .button {
    grid-column: 1;
    margin-top: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-base-product::after {
    top: auto;
    right: auto;
    bottom: -40px;
    left: 50%;
    content: "↓";
    transform: translateX(-50%);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel,
  body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel,
  body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form {
    padding: 22px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel figure,
  body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel figure {
    max-width: none;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-sample-panel img,
  body[data-page="tarjetas-rfid-mifare"] .rfid-format-panel img,
  body[data-page="tarjetas-rfid-mifare"] .rfid-personalization-media img {
    aspect-ratio: 1.18;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-tab-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-tab-list button {
    flex: 0 0 min(76vw, 260px);
    scroll-snap-align: start;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-tab-panel {
    min-height: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow ol {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow ol::before {
    top: 24px;
    bottom: 24px;
    left: 25px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 87, 191, 0.12), rgba(0, 87, 191, 0.38), rgba(0, 87, 191, 0.12));
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: start;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 22px;
    content: "↓";
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li strong,
  body[data-page="tarjetas-rfid-mifare"] .rfid-addon-flow li small {
    grid-column: 2;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline {
    gap: 26px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline::before {
    top: 0;
    bottom: 0;
    left: 42px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 87, 191, 0.08), rgba(0, 87, 191, 0.55), rgba(0, 87, 191, 0.08));
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline li {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 0 16px;
    align-items: start;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline li > span {
    grid-row: 1 / span 2;
    width: 72px;
    height: 72px;
    margin-bottom: 0;
    font-size: 1.18rem;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline h3,
  body[data-page="tarjetas-rfid-mifare"] .rfid-process-timeline p {
    grid-column: 2;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-form-progress {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-form-progress button,
  body[data-page="tarjetas-rfid-mifare"] .rfid-form-actions .button {
    min-height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="tarjetas-rfid-mifare"] *,
  body[data-page="tarjetas-rfid-mifare"] *::before,
  body[data-page="tarjetas-rfid-mifare"] *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 84px;
  padding: 20px 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-steps li::before {
  position: static;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-steps strong,
body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-steps span {
  display: block;
  min-width: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-steps span {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-compatibility-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
  }
}

/* RFID/MIFARE page visual redesign */
body[data-page="tarjetas-rfid-mifare"] {
  background: #f4f7fb;
}

body[data-page="tarjetas-rfid-mifare"] main {
  overflow: clip;
}

body[data-page="tarjetas-rfid-mifare"] .section {
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

body[data-page="tarjetas-rfid-mifare"] .section-heading h2,
body[data-page="tarjetas-rfid-mifare"] .rfid-section-intro h2,
body[data-page="tarjetas-rfid-mifare"] .rfid-form-copy h2 {
  color: #071a42;
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] .section-heading p,
body[data-page="tarjetas-rfid-mifare"] .rfid-section-intro p {
  max-width: 760px;
  color: #40536c;
  font-size: 1.04rem;
  line-height: 1.72;
}

body[data-page="tarjetas-rfid-mifare"] .section-number {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rfid-redesign-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(650px, 78svh, 820px);
  padding: clamp(120px, 15svh, 170px) 0 clamp(40px, 8svh, 76px);
  color: #ffffff;
  background: #071427;
  overflow: hidden;
  isolation: isolate;
}

.rfid-redesign-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 16, 41, 0.94) 0%, rgba(4, 16, 41, 0.82) 35%, rgba(4, 16, 41, 0.38) 63%, rgba(4, 16, 41, 0.22) 100%),
    linear-gradient(180deg, rgba(4, 16, 41, 0.06) 0%, rgba(4, 16, 41, 0.2) 68%, rgba(244, 247, 251, 0.96) 100%);
}

.rfid-hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.rfid-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.98) contrast(1.02);
}

.rfid-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

.rfid-hero-copy {
  max-width: 760px;
}

.rfid-hero-copy h1 {
  max-width: 790px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.15rem, 6.2vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.rfid-hero-copy p {
  max-width: 690px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.rfid-hero-copy .hero-actions {
  margin-top: clamp(28px, 4vw, 42px);
}

.rfid-hero-copy .button-primary {
  min-height: 54px;
  padding-inline: 24px;
  box-shadow: 0 18px 44px rgba(18, 90, 218, 0.24);
}

.rfid-hero-copy .button-secondary {
  min-height: 54px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.rfid-hero-copy .button-secondary:hover,
.rfid-hero-copy .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.rfid-hero-trust {
  justify-self: end;
  display: grid;
  width: min(100%, 430px);
  gap: 12px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(4, 16, 41, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

.rfid-hero-trust span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 850;
  line-height: 1.3;
}

.rfid-hero-trust span::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  content: "";
  background: #3fa9f5;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(63, 169, 245, 0.16);
}

.rfid-page-nav {
  position: sticky;
  top: 72px;
  z-index: 18;
  padding: 12px 0;
  background: rgba(244, 247, 251, 0.92);
  border-bottom: 1px solid rgba(180, 194, 214, 0.42);
}

.rfid-page-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: thin;
}

.rfid-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  color: #1b3356;
  font-size: 0.88rem;
  font-weight: 850;
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid rgba(190, 203, 221, 0.72);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(17, 39, 70, 0.045);
}

.rfid-page-nav a:hover,
.rfid-page-nav a:focus-visible {
  color: #0057bf;
  border-color: rgba(0, 87, 191, 0.32);
}

.rfid-intent-section {
  background: #f4f7fb;
}

.rfid-intent-section .section-heading {
  max-width: 890px;
}

.rfid-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 52px);
}

.rfid-intent-card {
  position: relative;
  display: flex;
  min-height: 275px;
  padding: clamp(24px, 2.5vw, 32px);
  color: #40536c;
  background: #ffffff;
  border: 1px solid rgba(199, 211, 227, 0.85);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(20, 48, 84, 0.06);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.rfid-intent-card::before {
  position: absolute;
  top: 24px;
  right: 24px;
  display: none;
  content: none;
  color: rgba(0, 87, 191, 0.11);
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 1;
}

.rfid-intent-card:hover,
.rfid-intent-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(0, 87, 191, 0.28);
  box-shadow: 0 24px 60px rgba(20, 48, 84, 0.1);
}

.rfid-intent-card--featured {
  background:
    linear-gradient(180deg, rgba(235, 244, 255, 0.78), rgba(255, 255, 255, 0.98)),
    #ffffff;
  border-color: rgba(0, 87, 191, 0.26);
}

.rfid-intent-card div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.rfid-intent-card span {
  margin-bottom: 14px;
  color: #0057bf;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfid-intent-card h3 {
  margin: 0 0 16px;
  color: #071a42;
  font-size: clamp(1.26rem, 1.8vw, 1.55rem);
  line-height: 1.1;
}

.rfid-intent-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.rfid-intent-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.rfid-compatibility-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 8%, rgba(63, 169, 245, 0.13), transparent 34%),
    linear-gradient(135deg, #061327 0%, #071a42 100%);
}

.rfid-compatibility-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  grid-template-areas:
    "intro media"
    "body media"
    "steps media"
    "action media";
  gap: clamp(20px, 2.4vw, 34px) clamp(42px, 5.5vw, 82px);
  align-items: start;
  padding: clamp(24px, 3.5vw, 54px);
  color: #071a42;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.985), rgba(244, 249, 255, 0.965)),
    #ffffff;
  border: 1px solid rgba(206, 220, 237, 0.9);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.rfid-compatibility-media {
  position: relative;
  grid-area: media;
  align-self: start;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.05 / 1;
  background: #eef5fb;
  border: 1px solid rgba(198, 214, 232, 0.86);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(19, 45, 80, 0.14);
}

.rfid-compatibility-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
}

.rfid-compatibility-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 240px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.83rem;
  font-weight: 850;
  line-height: 1.35;
  background: rgba(4, 16, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.rfid-compatibility-copy .section-number,
.rfid-compatibility-copy h2,
.rfid-compatibility-copy p,
.rfid-compatibility-body p {
  color: #071a42;
}

.rfid-compatibility-copy {
  grid-area: intro;
}

.rfid-compatibility-copy .section-number,
.rfid-form-copy .section-number {
  color: #075fd4;
  background: rgba(7, 95, 212, 0.08);
  border-color: rgba(7, 95, 212, 0.16);
}

.rfid-compatibility-copy h2 {
  max-width: 780px;
  margin-top: 10px;
  font-size: clamp(2.05rem, 3.55vw, 3.55rem);
  line-height: 1.08;
  text-wrap: balance;
}

.rfid-compatibility-copy > p,
.rfid-compatibility-body > p {
  max-width: 740px;
  color: #40536c;
  font-size: 1.08rem;
  line-height: 1.72;
}

.rfid-compatibility-body {
  grid-area: body;
}

.rfid-compatibility-copy > .rfid-compatibility-subtitle {
  max-width: 760px;
  margin-top: 16px;
  color: #263c5a;
  font-size: clamp(1.04rem, 1.3vw, 1.22rem);
  font-weight: 760;
  line-height: 1.56;
}

.rfid-compatibility-steps {
  grid-area: steps;
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: rfid-compat-step;
  border-top: 1px solid rgba(199, 214, 232, 0.86);
}

.rfid-compatibility-steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  color: #40536c;
  border-bottom: 1px solid rgba(199, 214, 232, 0.86);
  counter-increment: rfid-compat-step;
  animation: rfidCompatibilityStepIn 360ms ease both;
}

.rfid-compatibility-steps li:nth-child(2) {
  animation-delay: 60ms;
}

.rfid-compatibility-steps li:nth-child(3) {
  animation-delay: 120ms;
}

.rfid-compatibility-steps li:nth-child(4) {
  animation-delay: 180ms;
}

.rfid-compatibility-steps li:nth-child(5) {
  animation-delay: 240ms;
}

.rfid-compatibility-steps li::before {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #075fd4;
  font-weight: 950;
  content: counter(rfid-compat-step, decimal-leading-zero);
  background: rgba(7, 95, 212, 0.08);
  border: 1px solid rgba(7, 95, 212, 0.22);
  border-radius: 50%;
}

.rfid-compatibility-steps strong {
  grid-column: 2;
  display: block;
  margin-bottom: 5px;
  color: #071a42;
  font-size: 1rem;
}

.rfid-compatibility-steps span {
  grid-column: 2;
  min-width: 0;
  line-height: 1.55;
}

.rfid-compatibility-warning {
  margin: 0;
  padding: 20px 22px;
  color: #071a42;
  font-weight: 820;
  line-height: 1.55;
  background: linear-gradient(135deg, rgba(241, 248, 255, 0.98), rgba(218, 237, 255, 0.94));
  border: 1px solid rgba(161, 205, 246, 0.7);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(24, 73, 126, 0.08);
}

.rfid-compatibility-action {
  grid-area: action;
  display: grid;
  justify-items: start;
  gap: 22px;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy h2,
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy p,
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body p {
  color: #071a42;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-subtitle {
  color: #263c5a;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps span {
  color: #40536c;
}

.rfid-compatibility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.rfid-compatibility-actions .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}

.rfid-sample-section {
  background: #eef4fb;
}

.rfid-sample-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid rgba(199, 211, 227, 0.82);
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(20, 48, 84, 0.075);
}

.rfid-sample-panel figure {
  margin: 0;
}

.rfid-sample-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.rfid-sample-panel h2 {
  margin: 0 0 12px;
  color: #071a42;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.rfid-sample-panel p {
  margin: 0;
  color: #40536c;
  line-height: 1.68;
}

.rfid-sample-compare {
  display: grid;
  gap: 12px;
}

.rfid-sample-compare div {
  padding: 16px;
  background: #f7fbff;
  border: 1px solid rgba(199, 211, 227, 0.82);
  border-radius: 8px;
}

.rfid-sample-compare strong {
  display: block;
  margin-bottom: 4px;
  color: #071a42;
}

.rfid-tech-tabs-section {
  background: #ffffff;
}

.rfid-section-intro {
  max-width: 860px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.rfid-tech-tabs {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.rfid-tab-list {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 144px;
}

.rfid-tab-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 15px 16px;
  color: #1b3356;
  font-weight: 900;
  text-align: left;
  background: #f4f7fb;
  border: 1px solid rgba(199, 211, 227, 0.88);
  border-radius: 8px;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.rfid-tab-list button::after {
  color: #7b8fa9;
  content: "→";
}

.rfid-tab-list button:hover,
.rfid-tab-list button:focus-visible {
  transform: translateX(3px);
  border-color: rgba(0, 87, 191, 0.32);
}

.rfid-tab-list button.is-active {
  color: #ffffff;
  background: #071a42;
  border-color: #071a42;
}

.rfid-tab-list button.is-active::after {
  color: #3fa9f5;
}

.rfid-tab-panels {
  min-width: 0;
}

.rfid-tab-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  background: #f7fbff;
  border: 1px solid rgba(199, 211, 227, 0.88);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(20, 48, 84, 0.055);
}

.rfid-tab-panel[hidden] {
  display: none !important;
}

.rfid-tab-panel.is-active {
  animation: rfidSoftReveal 320ms ease both;
}

.rfid-tab-panel figure {
  margin: 0;
  overflow: hidden;
  background: #e8eef7;
  border-radius: 10px;
}

.rfid-tab-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1.14;
  object-fit: cover;
  transition: transform 420ms ease;
}

.rfid-tab-panel:hover img {
  transform: scale(1.025);
}

.rfid-tab-panel h3 {
  margin: 0 0 16px;
  color: #071a42;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.rfid-tab-panel p {
  color: #40536c;
  font-size: 1rem;
  line-height: 1.72;
}

.rfid-tab-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  color: #1b3356;
  list-style: none;
}

.rfid-tab-panel li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
}

.rfid-tab-panel li::before {
  width: 7px;
  height: 7px;
  margin-top: 0.55em;
  content: "";
  background: #0057bf;
  border-radius: 50%;
}

.rfid-tab-panel .button {
  margin-top: 26px;
}

.rfid-tab-panel--unknown {
  background:
    linear-gradient(135deg, rgba(7, 26, 66, 0.98), rgba(10, 42, 86, 0.96)),
    #071a42;
}

.rfid-tab-panel--unknown h3,
.rfid-tab-panel--unknown p,
.rfid-tab-panel--unknown li {
  color: #ffffff;
}

.rfid-tab-panel--unknown p,
.rfid-tab-panel--unknown li {
  color: rgba(255, 255, 255, 0.82);
}

.rfid-work-section {
  background: #f4f7fb;
}

.rfid-work-flow {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.rfid-base-product,
.rfid-addon-flow {
  padding: clamp(28px, 4vw, 46px);
  background: #ffffff;
  border: 1px solid rgba(199, 211, 227, 0.84);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(20, 48, 84, 0.055);
}

.rfid-base-product {
  background:
    linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.rfid-base-product > span,
.rfid-addon-flow > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0057bf;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfid-base-product h3,
.rfid-addon-flow h3 {
  margin: 0 0 14px;
  color: #071a42;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.rfid-base-product p,
.rfid-addon-flow p {
  color: #40536c;
  line-height: 1.68;
}

.rfid-addon-flow ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.rfid-addon-flow ol::before {
  position: absolute;
  top: 25px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: rgba(0, 87, 191, 0.2);
}

.rfid-addon-flow li {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-content: start;
}

.rfid-addon-flow li span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-weight: 950;
  background: #071a42;
  border-radius: 50%;
}

.rfid-addon-flow li strong {
  color: #071a42;
}

.rfid-addon-flow li p {
  margin: 0;
  font-size: 0.92rem;
}

.rfid-personalization-section {
  background: #ffffff;
}

.rfid-personalization-editorial {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.rfid-personalization-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 30px 72px rgba(20, 48, 84, 0.12);
}

.rfid-personalization-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
}

.rfid-personalization-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rfid-personalization-media figcaption span {
  padding: 8px 10px;
  color: #071a42;
  font-size: 0.78rem;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(199, 211, 227, 0.7);
  border-radius: 999px;
}

.rfid-personalization-copy h2 {
  margin: 0 0 18px;
  color: #071a42;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.rfid-personalization-copy p {
  color: #40536c;
  font-size: 1.04rem;
  line-height: 1.72;
}

.rfid-personalization-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.rfid-personalization-options li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  color: #1b3356;
  line-height: 1.45;
}

.rfid-personalization-options li::before {
  width: 7px;
  height: 7px;
  margin-top: 0.55em;
  content: "";
  background: #0057bf;
  border-radius: 50%;
}

.rfid-secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.rfid-use-section {
  background: #eef4fb;
}

.rfid-use-band {
  padding: clamp(30px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid rgba(199, 211, 227, 0.84);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(20, 48, 84, 0.055);
}

.rfid-use-band h2 {
  max-width: 760px;
  margin-top: 8px;
  color: #071a42;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.06;
}

.rfid-use-band > p {
  max-width: 780px;
  color: #40536c;
  line-height: 1.68;
}

.rfid-use-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.rfid-use-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(199, 211, 227, 0.8);
}

.rfid-use-list strong {
  display: block;
  color: #071a42;
  font-size: 1rem;
}

.rfid-use-list span:not(.rfid-use-icon) {
  color: #40536c;
  font-size: 0.9rem;
  line-height: 1.48;
}

.rfid-use-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #0057bf;
  background: #edf5ff;
  border-radius: 10px;
}

.rfid-use-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.rfid-process-section {
  background: #f4f7fb;
}

.rfid-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.rfid-process-timeline::before {
  position: absolute;
  top: 34px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(0, 87, 191, 0), rgba(0, 87, 191, 0.28), rgba(0, 87, 191, 0));
}

.rfid-process-timeline li {
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.rfid-process-timeline li > span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 950;
  background: #071a42;
  border: 6px solid #f4f7fb;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(20, 48, 84, 0.14);
}

.rfid-process-timeline h3 {
  margin: 0 0 10px;
  color: #071a42;
  font-size: 1.18rem;
}

.rfid-process-timeline p {
  margin: 0;
  color: #40536c;
  line-height: 1.6;
}

.rfid-note-panel {
  max-width: 870px;
  margin-top: 36px;
  padding: 18px 20px;
  color: #40536c;
  background: #ffffff;
  border: 1px solid rgba(199, 211, 227, 0.85);
  border-radius: 10px;
}

.rfid-format-strip {
  background: #ffffff;
}

.rfid-format-panel {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  background: #f7fbff;
  border: 1px solid rgba(199, 211, 227, 0.82);
  border-radius: 12px;
}

.rfid-format-panel figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

.rfid-format-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.rfid-format-panel h2 {
  margin: 8px 0 14px;
  color: #071a42;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.rfid-format-panel p {
  max-width: 760px;
  color: #40536c;
  line-height: 1.68;
}

.rfid-faq-section {
  background: #f4f7fb;
}

.rfid-faq-section .faq-grid {
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.rfid-faq-section h2 {
  margin-top: 8px;
  color: #071a42;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.rfid-faq-list {
  display: grid;
  gap: 10px;
}

.rfid-faq-list details {
  background: #ffffff;
  border: 1px solid rgba(199, 211, 227, 0.86);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(20, 48, 84, 0.045);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.rfid-faq-list details[open] {
  border-color: rgba(0, 87, 191, 0.28);
  box-shadow: 0 20px 46px rgba(20, 48, 84, 0.08);
}

.rfid-faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 18px 22px;
  color: #071a42;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.rfid-faq-list summary::after {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0057bf;
  content: "+";
  background: #edf5ff;
  border-radius: 50%;
  transition: transform 220ms ease;
}

.rfid-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.rfid-faq-list p {
  max-width: 760px;
  padding: 0 22px 22px;
  margin: -4px 0 0;
  color: #40536c;
  line-height: 1.7;
}

.rfid-form-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 4%, rgba(63, 169, 245, 0.13), transparent 34%),
    linear-gradient(135deg, #061327 0%, #071a42 100%);
}

.rfid-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.rfid-form-copy {
  position: sticky;
  top: 132px;
}

.rfid-form-copy .section-number,
.rfid-form-copy h2 {
  color: #ffffff;
}

.rfid-form-copy p,
.rfid-form-copy li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.rfid-form-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.rfid-form-copy li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
}

.rfid-form-copy li::before {
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  content: "";
  background: #3fa9f5;
  border-radius: 50%;
}

.rfid-form-copy .contact-highlight {
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.rfid-form-copy .contact-highlight strong {
  display: block;
  margin-bottom: 6px;
}

.rfid-form-copy .contact-highlight span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.rfid-technical-form {
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.rfid-form-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.rfid-form-progress button {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  color: #40536c;
  font-weight: 900;
  text-align: left;
  background: #f4f7fb;
  border: 1px solid rgba(199, 211, 227, 0.88);
  border-radius: 8px;
  cursor: pointer;
}

.rfid-form-progress button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #0057bf;
  background: #ffffff;
  border-radius: 50%;
}

.rfid-form-progress button.is-active {
  color: #ffffff;
  background: #071a42;
  border-color: #071a42;
}

.rfid-form-progress button.is-active span {
  color: #071a42;
}

.rfid-step-summary {
  margin: 0 0 24px;
  padding: 14px 16px;
  color: #40536c;
  background: #f7fbff;
  border: 1px solid rgba(199, 211, 227, 0.82);
  border-radius: 8px;
}

.rfid-step-summary strong {
  display: block;
  margin-bottom: 4px;
  color: #071a42;
  font-size: 0.88rem;
}

.rfid-step-summary p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.rfid-technical-form legend {
  padding: 0;
  color: #071a42;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 950;
}

.rfid-step-help {
  margin: 10px 0 24px;
  color: #40536c;
  line-height: 1.62;
}

.rfid-technical-form [data-rfid-step][hidden] {
  display: none !important;
}

.rfid-checkbox-group,
.rfid-upload-group,
.rfid-urgency-panel {
  margin: 0 0 22px;
  padding: 18px;
  background: #f7fbff;
  border: 1px solid rgba(199, 211, 227, 0.84);
  border-radius: 8px;
}

.rfid-checkbox-group legend,
.rfid-upload-group > strong,
.rfid-urgency-panel h3 {
  display: block;
  margin-bottom: 14px;
  color: #071a42;
  font-size: 1rem;
  font-weight: 950;
}

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

.rfid-checkbox-group legend {
  grid-column: 1 / -1;
  margin: 0 0 4px;
}

.rfid-checkbox-group label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #1b3356;
  font-weight: 750;
  line-height: 1.35;
}

.rfid-checkbox-group input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.rfid-upload-group p,
.rfid-urgency-panel p {
  margin: 4px 0 0;
  color: #40536c;
  font-size: 0.9rem;
  line-height: 1.55;
}

.rfid-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.rfid-form-actions .button {
  min-height: 50px;
}

.rfid-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes rfidSoftReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rfidCompatibilityStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rfid-intent-card,
  .rfid-tab-list button,
  .rfid-tab-panel,
  .rfid-tab-panel img,
  .rfid-compatibility-steps li,
  .rfid-faq-list summary::after,
  .rfid-faq-list details {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .rfid-hero-layout,
  .rfid-compatibility-layout,
  .rfid-personalization-editorial,
  .rfid-form-layout {
    grid-template-columns: 1fr;
  }

  .rfid-compatibility-layout {
    grid-template-areas:
      "intro"
      "media"
      "body"
      "steps"
      "action";
  }

  .rfid-compatibility-copy,
  .rfid-compatibility-media,
  .rfid-compatibility-body,
  .rfid-compatibility-steps,
  .rfid-compatibility-action {
    grid-column: 1;
    grid-row: auto;
  }

  .rfid-compatibility-copy {
    order: 1;
  }

  .rfid-compatibility-media {
    order: 2;
  }

  .rfid-compatibility-body {
    order: 3;
  }

  .rfid-compatibility-steps {
    order: 4;
  }

  .rfid-compatibility-action {
    order: 5;
  }

  .rfid-hero-trust,
  .rfid-form-copy {
    justify-self: start;
    position: static;
  }

  .rfid-intent-grid,
  .rfid-use-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rfid-tech-tabs {
    grid-template-columns: 1fr;
  }

  .rfid-tab-list {
    position: static;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .rfid-tab-list button:hover,
  .rfid-tab-list button:focus-visible {
    transform: translateY(-2px);
  }

  .rfid-sample-panel,
  .rfid-work-flow,
  .rfid-format-panel {
    grid-template-columns: 1fr;
  }

  .rfid-sample-panel figure,
  .rfid-format-panel figure {
    max-width: 320px;
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .rfid-redesign-hero {
    min-height: 710px;
    padding-top: 116px;
  }

  .rfid-redesign-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 16, 41, 0.92) 0%, rgba(4, 16, 41, 0.78) 52%, rgba(4, 16, 41, 0.48) 76%, rgba(244, 247, 251, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 16, 41, 0.9), rgba(4, 16, 41, 0.42));
  }

  .rfid-hero-background img {
    object-position: 64% center;
  }

  .rfid-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .rfid-hero-copy p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .rfid-hero-copy .hero-actions,
  .rfid-compatibility-actions,
  .rfid-secondary-links,
  .rfid-final-actions,
  .rfid-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rfid-hero-copy .button,
  .rfid-compatibility-action .button,
  .rfid-compatibility-actions .button,
  .rfid-secondary-links .button,
  .rfid-final-actions .button,
  .rfid-form-actions .button {
    width: 100%;
    justify-content: center;
  }

  .rfid-hero-trust {
    width: 100%;
  }

  .rfid-page-nav {
    top: 64px;
  }

  .rfid-intent-grid,
  .rfid-use-list,
  .rfid-process-timeline,
  .rfid-checkbox-group,
  .rfid-personalization-options,
  .rfid-form-progress {
    grid-template-columns: 1fr;
  }

  .rfid-intent-card {
    min-height: auto;
  }

  .rfid-compatibility-media img {
    height: 100%;
  }

  .rfid-compatibility-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .rfid-sample-panel,
  .rfid-tab-panel,
  .rfid-work-flow,
  .rfid-format-panel {
    padding: 22px;
  }

  .rfid-tab-panel {
    grid-template-columns: 1fr;
  }

  .rfid-tab-list {
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    margin-right: -18px;
    padding-right: 18px;
  }

  .rfid-addon-flow ol {
    grid-template-columns: 1fr;
  }

  .rfid-addon-flow ol::before,
  .rfid-process-timeline::before {
    display: none;
  }

  .rfid-process-timeline li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
  }

  .rfid-process-timeline li > span {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    border-width: 4px;
  }

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

  .rfid-faq-list summary {
    min-height: 62px;
    padding: 16px;
  }

  .rfid-faq-list p {
    padding-right: 16px;
    padding-left: 16px;
  }

  .rfid-technical-form {
    padding: 20px;
  }
}

/* Credenciales reorg pages, v20260624-01 */
.service-hero {
  display: flex;
  min-height: clamp(560px, 72vh, 720px);
  align-items: center;
}

.service-hero.credentials-hero {
  height: var(--aceris-card-hero-height) !important;
  min-height: 0 !important;
  margin-top: -92px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
  background-image: none;
}

.service-hero.credentials-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(255, 255, 255, 0.45) 100%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(52px, 7vw, 86px);
}

.service-hero-copy {
  max-width: 680px;
}

.service-hero-copy h1 {
  margin: 0;
  color: #071a42;
  font-size: clamp(2.45rem, 4.4vw, 4.25rem);
  line-height: 1.02;
}

.service-hero-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: #20344d;
  font-size: clamp(1rem, 1.1vw, 1.13rem);
  line-height: 1.68;
}

.service-hero-media {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: clamp(340px, 48vw, 560px);
  margin: 0;
  background: #f6f9fd;
  border: 1px solid rgba(167, 190, 214, 0.35);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(20, 48, 84, 0.12);
}

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

.credentials-feature-section,
.credentials-link-strip,
.accessory-catalog-section {
  background: #ffffff;
}

.credentials-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 4vw, 54px);
}

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

.credentials-feature-grid article,
.credentials-use-panel,
.credentials-link-panel,
.credentials-offset-panel,
.legacy-redirect-panel {
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(20, 48, 84, 0.065);
}

.credentials-feature-grid article {
  padding: clamp(24px, 3vw, 34px);
}

.rfid-path-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(20, 48, 84, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rfid-path-card:hover,
.rfid-path-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 144, 215, 0.32);
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.11);
}

.credentials-feature-grid h3,
.credentials-use-panel h2,
.credentials-link-panel h2,
.credentials-offset-panel h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.18;
}

.credentials-feature-grid p,
.credentials-use-panel p,
.credentials-link-panel p,
.credentials-offset-panel p {
  margin: 14px 0 0;
  color: #40536c;
  line-height: 1.65;
}

.rfid-path-card strong,
.credentials-feature-grid article > a,
.rfid-secondary-links a,
.rfid-use-list a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--aceris-blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.rfid-microcopy-section {
  padding: 0;
  background: #ffffff;
}

.rfid-microcopy {
  margin-top: -54px;
  padding: 18px 22px;
  color: #071a42;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.08);
}

.rfid-microcopy p {
  margin: 0;
}

.rfid-compatibility-warning,
.rfid-note-panel {
  margin-top: 24px;
  padding: 18px 20px;
  color: #071a42;
  font-weight: 760;
  line-height: 1.55;
  background: #eef6ff;
  border: 1px solid rgba(0, 144, 215, 0.18);
  border-radius: 8px;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-list {
  align-self: stretch;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.72fr) minmax(360px, 0.96fr);
  align-items: stretch;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-copy {
  align-self: center;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-list li strong {
  color: #ffffff;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-list li span {
  color: #d3e3ef;
}

.rfid-compatibility-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rfid-compatibility-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 74% center;
  opacity: 0.92;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-list li {
  display: grid;
  gap: 5px;
  align-content: start;
  min-height: 96px;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-list li strong {
  color: #071a42;
  font-size: 0.95rem;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-list li span {
  color: #40536c;
  font-size: 0.88rem;
  line-height: 1.45;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-list li strong {
  color: #ffffff;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-list li span {
  color: #d3e3ef;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-list li {
  color: #f5fbff;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

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

.rfid-tech-help {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(18px, 3vw, 30px);
  padding: clamp(22px, 3vw, 34px);
  color: #071a42;
  background:
    linear-gradient(90deg, rgba(0, 144, 215, 0.1), rgba(255, 255, 255, 0) 55%),
    #ffffff;
  border: 1px solid rgba(0, 144, 215, 0.22);
  border-radius: 10px;
  box-shadow: 0 20px 46px rgba(20, 48, 84, 0.07);
}

.rfid-tech-help h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.2rem, 1.6vw, 1.48rem);
}

.rfid-tech-help p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #40536c;
  line-height: 1.58;
}

.rfid-work-grid,
.rfid-process-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 4vw, 54px);
}

.rfid-work-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.rfid-work-grid article,
.rfid-process-grid article {
  padding: clamp(22px, 2.5vw, 30px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(20, 48, 84, 0.065);
}

.rfid-work-grid h3,
.rfid-process-grid h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.08rem;
  line-height: 1.22;
}

.rfid-process-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--aceris-blue);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.rfid-work-grid p,
.rfid-process-grid p,
.rfid-note-panel p {
  margin: 12px 0 0;
  color: #40536c;
  line-height: 1.58;
}

.rfid-note-panel .button {
  margin-top: 18px;
}

.rfid-work-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  margin-top: clamp(34px, 4vw, 54px);
  align-items: stretch;
}

.rfid-blank-card,
.rfid-service-stack {
  padding: clamp(24px, 3vw, 36px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(20, 48, 84, 0.065);
}

.rfid-blank-card {
  display: grid;
  align-content: start;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 144, 215, 0.12), transparent 35%),
    #ffffff;
}

.rfid-blank-card > span,
.rfid-service-stack > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: #ffffff;
  font-weight: 950;
  background: var(--aceris-blue);
  border-radius: 999px;
}

.rfid-blank-card h3,
.rfid-service-stack h3 {
  margin: 0;
  color: #071a42;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.18;
}

.rfid-blank-card p {
  margin: 14px 0 0;
  color: #40536c;
  line-height: 1.6;
}

.rfid-service-stack ul {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rfid-service-stack li {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #dbe5f0;
}

.rfid-service-stack li:first-child {
  border-top: 0;
}

.rfid-service-stack strong {
  color: #071a42;
  font-size: 0.96rem;
}

.rfid-service-stack span {
  color: #40536c;
  line-height: 1.55;
}

.rfid-secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.rfid-use-compact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
}

.rfid-use-list {
  gap: 12px;
}

.rfid-use-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rfid-use-list li span {
  color: #40536c;
  line-height: 1.45;
}

.rfid-use-icon {
  display: inline-grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--aceris-blue);
  background: #eef6ff;
  border: 1px solid rgba(0, 144, 215, 0.18);
  border-radius: 10px;
}

.rfid-use-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rfid-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin: clamp(38px, 4vw, 58px) 0 0;
  padding: 0;
  list-style: none;
}

.rfid-process-timeline::before {
  position: absolute;
  top: 28px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(0, 144, 215, 0.15), rgba(0, 144, 215, 0.55), rgba(0, 144, 215, 0.15));
}

.rfid-process-timeline li {
  position: relative;
  z-index: 1;
  padding-top: 74px;
}

.rfid-process-timeline li > span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
  background: #071a42;
  border: 8px solid #eef6ff;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(20, 48, 84, 0.14);
}

.rfid-process-timeline h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.05rem;
  line-height: 1.24;
}

.rfid-process-timeline p {
  margin: 10px 0 0;
  color: #40536c;
  line-height: 1.55;
}

.rfid-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.rfid-checkbox-group legend {
  padding: 0 8px;
  color: #071a42;
  font-weight: 900;
}

.rfid-checkbox-group label {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  background: #f7fbff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.rfid-checkbox-group input {
  width: 16px;
  min-height: 16px;
}

.rfid-upload-group {
  margin-top: 8px;
  padding: 18px;
  background: #f7fbff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.rfid-upload-group > strong {
  display: block;
  margin-bottom: 14px;
  color: #071a42;
  font-weight: 900;
}

.rfid-upload-group input[type="file"] {
  padding: 11px;
  background: #ffffff;
}

.rfid-upload-group p {
  margin: 4px 0 0;
  color: #40536c;
  font-size: 0.88rem;
  line-height: 1.5;
}

.rfid-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rfid-technical-form {
  scroll-margin-top: 118px;
}

.rfid-form-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.rfid-form-progress button {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 10px 12px;
  color: #40536c;
  font-weight: 900;
  text-align: left;
  background: #f7fbff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  cursor: pointer;
}

.rfid-form-progress button.is-active {
  color: #071a42;
  background: #ffffff;
  border-color: rgba(0, 144, 215, 0.42);
  box-shadow: 0 12px 30px rgba(20, 48, 84, 0.08);
}

.rfid-form-progress span {
  display: inline-grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: var(--aceris-blue);
  border-radius: 999px;
}

.rfid-technical-form [data-rfid-step][hidden] {
  display: none !important;
}

.rfid-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 22px;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-hero .credentials-hero-copy {
  max-width: 720px;
}

body[data-page="impresoras-tarjetas-pvc"] .reveal {
  opacity: 1;
  transform: none;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-compensa-section {
  padding-top: clamp(42px, 5vw, 70px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-compensa-layout {
  align-items: start;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-inline-cta {
  margin-top: 22px;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero-media img {
  object-fit: cover;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero {
  height: clamp(500px, 54svh, 570px) !important;
  min-height: 0 !important;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero {
  position: relative;
  display: block;
  color: #ffffff;
  background: #030b18;
  isolation: isolate;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 11, 24, 0.96) 0%, rgba(3, 11, 24, 0.88) 35%, rgba(3, 11, 24, 0.48) 62%, rgba(3, 11, 24, 0.1) 100%),
    linear-gradient(180deg, rgba(3, 11, 24, 0.1) 0%, rgba(3, 11, 24, 0.34) 100%);
  pointer-events: none;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero-inner {
  position: static;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: clamp(32px, 4vw, 48px) !important;
  padding-bottom: clamp(28px, 4vw, 42px) !important;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin-top: clamp(10px, 1.8vw, 24px);
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy h1,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy p {
  color: #ffffff;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy h1 {
  font-size: clamp(2.55rem, 4.1vw, 3.65rem) !important;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy > p {
  max-width: 620px;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem) !important;
  line-height: 1.62;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  width: 100%;
  max-height: none !important;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="impresoras-tarjetas-pvc"] .service-hero-media img {
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover;
  object-position: 64% center;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-hero-benefits {
  display: block;
  max-width: 650px;
  margin-top: 16px;
  padding: 0;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-hero-benefits li {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.5;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-hero-benefits li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #53c7ff;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(83, 199, 255, 0.13);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-grid,
body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 3.5vw, 38px);
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-fit-section,
body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-section {
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="control-de-accesos"] .access-seo-service-section {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(52px, 6vw, 78px);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

body[data-page="control-de-accesos"] .access-seo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 38px);
}

body[data-page="control-de-accesos"] .access-seo-service-grid article {
  padding: clamp(22px, 2.6vw, 32px);
  background: #ffffff;
  border: 1px solid rgba(134, 156, 184, 0.28);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.06);
}

body[data-page="control-de-accesos"] .access-seo-service-grid article > span {
  color: #0879c9;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

body[data-page="control-de-accesos"] .access-seo-service-grid h3,
body[data-page="control-de-accesos"] .access-seo-projects h3 {
  margin: 12px 0 8px;
  color: #071a42;
}

body[data-page="control-de-accesos"] .access-seo-service-grid p,
body[data-page="control-de-accesos"] .access-seo-projects p {
  margin: 0;
  color: #40536c;
  line-height: 1.62;
}

body[data-page="control-de-accesos"] .access-seo-projects {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 52px);
  margin-top: clamp(24px, 3vw, 38px);
  padding: clamp(22px, 2.8vw, 34px);
  background: #ffffff;
  border: 1px solid rgba(134, 156, 184, 0.28);
  border-radius: 14px;
}

body[data-page="control-de-accesos"] .access-seo-projects h3 {
  margin-top: 0;
}

body[data-page="control-de-accesos"] .access-seo-projects .button {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  body[data-page="control-de-accesos"] .access-seo-service-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="control-de-accesos"] .access-seo-projects {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="control-de-accesos"] .access-seo-projects .button {
    align-self: flex-start;
  }
}

@media (max-width: 560px) {
  body[data-page="control-de-accesos"] .access-seo-projects .button {
    width: 100%;
  }
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-card,
body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-card {
  background: #ffffff;
  border: 1px solid rgba(159, 178, 205, 0.45);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(20, 48, 84, 0.07);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-card {
  padding: clamp(22px, 2.8vw, 34px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-card > p {
  margin: 0 0 18px;
  color: #40536c;
  font-size: 0.96rem;
  line-height: 1.56;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-card--highlight {
  background: linear-gradient(145deg, #f2f8ff 0%, #ffffff 72%);
  border-color: rgba(53, 108, 224, 0.34);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-card h3,
body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-card h3 {
  margin: 0 0 12px;
  color: #071a42;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.15;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #30435d;
  list-style: none;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-card li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.45;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--aceris-blue);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 144, 215, 0.1);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-decision-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: #344c69;
  font-size: 1rem;
  font-weight: 780;
  text-align: center;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-card {
  padding: clamp(18px, 2vw, 24px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-card {
  border-color: rgba(0, 111, 214, 0.22);
  box-shadow: 0 20px 50px rgba(20, 48, 84, 0.08);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-card p {
  margin: 0;
  color: #445872;
  font-size: 0.93rem;
  line-height: 1.5;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-use-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-use-list li {
  position: relative;
  min-height: 64px;
  padding: 17px 18px 17px 44px;
  color: #172b46;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(20, 48, 84, 0.045);
  font-size: 0.96rem;
  font-weight: 820;
  line-height: 1.35;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-use-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 8px;
  height: 8px;
  background: var(--aceris-blue-dark);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 144, 215, 0.1);
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-gallery {
  align-items: stretch;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-card {
  padding: 16px;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-card img {
  height: clamp(130px, 10vw, 168px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-card-price {
  display: block;
  margin: 14px 0 18px;
  color: #071a42;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.25;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-price-note {
  max-width: 780px;
  margin: -18px 0 0;
  color: #62748a;
  font-size: 0.88rem;
  line-height: 1.5;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail {
  padding: clamp(20px, 2.8vw, 32px);
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail-body {
  grid-template-columns: minmax(240px, 0.62fr) minmax(420px, 1.38fr);
  gap: clamp(22px, 3vw, 34px);
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail-main {
  gap: 18px;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1;
  text-transform: none;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail p {
  font-size: 0.98rem;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail-price {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: #071a42;
  background: #eef6ff;
  border: 1px solid rgba(0, 111, 214, 0.22);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail-main-cta {
  width: fit-content;
  min-height: 42px;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail-media {
  min-height: clamp(150px, 15vw, 220px);
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail-media img {
  max-height: clamp(138px, 13vw, 200px);
  padding: clamp(12px, 2vw, 22px);
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-grid {
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 0;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-grid::before {
  display: none;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item,
body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item:nth-last-child(-n + 2) {
  display: block;
  min-height: 0;
  padding: 0;
  background: #f9fbfe;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item:last-child {
  border-bottom: 1px solid #dbe5f0;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item svg {
  width: 22px;
  height: 22px;
  color: var(--aceris-blue-dark);
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item summary {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  color: #071a42;
  cursor: pointer;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item summary::-webkit-details-marker {
  display: none;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item summary::after {
  content: "+";
  justify-self: end;
  color: var(--aceris-blue);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item[open] summary::after {
  content: "−";
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-content {
  padding: 0 14px 14px 50px;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item h4 {
  font-size: 0.78rem;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item p,
body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item li {
  color: #253b57;
  font-size: 0.92rem;
  line-height: 1.46;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item p {
  margin: 0;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-spec-item ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
}

body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail-footer {
  align-items: center;
  margin-top: 18px;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-consumables-options-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fc 100%);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-help {
  align-items: center;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-section {
  padding-top: clamp(48px, 5.5vw, 72px);
  padding-bottom: clamp(48px, 5.5vw, 72px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-section .credentials-tech-grid {
  gap: 14px;
  margin-top: clamp(22px, 3vw, 30px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-section .credentials-tech-card {
  min-height: 0;
  padding: clamp(18px, 2.1vw, 24px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-section .credentials-tech-card h3 {
  font-size: clamp(1.06rem, 1.35vw, 1.28rem);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-section .credentials-tech-card p {
  font-size: 0.92rem;
  line-height: 1.48;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-section .credentials-tech-card .tech-photo {
  height: clamp(145px, 12vw, 190px);
  margin-bottom: 16px;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-section .credentials-edge-note {
  margin-top: clamp(18px, 2.8vw, 28px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-renting-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  color: #d9e8ff;
  list-style: none;
}

body[data-page="impresoras-tarjetas-pvc"] .grenke-renting-section {
  padding-top: clamp(48px, 5.5vw, 72px);
  padding-bottom: clamp(48px, 5.5vw, 72px);
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

body[data-page="impresoras-tarjetas-pvc"] .grenke-renting-card--printers {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(22px, 3.2vw, 42px);
  padding: clamp(24px, 3.2vw, 38px);
}

body[data-page="impresoras-tarjetas-pvc"] .grenke-renting-card--printers h2 {
  max-width: 620px;
  font-size: clamp(1.7rem, 2.45vw, 2.45rem);
}

body[data-page="impresoras-tarjetas-pvc"] .grenke-renting-card--printers p {
  max-width: 720px;
  font-size: 0.98rem;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-renting-aside {
  padding: clamp(18px, 2.4vw, 24px);
  background: #f7fbff;
  border: 1px solid rgba(159, 178, 205, 0.48);
  border-radius: 12px;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-renting-aside .button {
  width: 100%;
  justify-content: center;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-renting-aside small {
  color: #5f718c;
  font-size: 0.82rem;
  line-height: 1.45;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-renting-aside .printer-renting-list {
  color: #263d5f;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-renting-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-renting-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #53c7ff;
  border-radius: 999px;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-compact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: clamp(28px, 4vw, 42px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-compact-grid .credentials-tech-card {
  min-height: 0;
  padding: clamp(18px, 2.1vw, 24px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-compact-grid .credentials-tech-card h3 {
  font-size: clamp(1rem, 1.22vw, 1.18rem);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-tech-compact-grid .credentials-tech-card p {
  font-size: 0.9rem;
}

body[data-page="impresoras-tarjetas-pvc"] .grenke-renting-card {
  align-items: center;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-panel {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-panel > .button {
  grid-column: 1 / -1;
  justify-self: start;
  width: fit-content;
  min-width: max-content;
  white-space: nowrap;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-panel h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}

body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-panel p {
  font-size: 0.95rem;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-grid a {
  display: block;
  padding: 14px;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-grid a strong,
body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-grid a span {
  display: block;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-grid a span {
  margin-top: 6px;
  color: #526882;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.38;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales.rfid-form-section {
  padding: clamp(36px, 4.4vw, 54px) 0;
  color: #071a42;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-prelude {
  max-width: 700px;
  margin-bottom: clamp(18px, 2.4vw, 24px);
  color: #071a42;
  text-align: center;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-prelude h2 {
  max-width: 620px;
  margin: 0 auto 8px;
  color: #071a42;
  font-size: clamp(1.72rem, 2.6vw, 2.3rem);
  line-height: 1.08;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-prelude p {
  max-width: 620px;
  margin: 0 auto;
  color: #445872;
  font-size: clamp(0.94rem, 0.95vw, 1rem);
  line-height: 1.5;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-layout {
  display: block;
  max-width: 860px;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-technical-form {
  width: 100%;
  max-width: 860px;
  padding: clamp(18px, 2.1vw, 24px);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(159, 178, 205, 0.42);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(20, 48, 84, 0.09);
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-compact-form {
  gap: 14px;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-main-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-technical-form label {
  margin-bottom: 5px;
  color: #10264a;
  font-size: 0.88rem;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-technical-form input,
body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-technical-form select,
body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-technical-form textarea {
  min-height: 42px;
  border-color: rgba(159, 178, 205, 0.58);
  font-size: 0.92rem;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-technical-form select {
  width: 100%;
  padding: 0 34px 0 12px;
  color: #10264a;
  background-color: #ffffff;
  border: 1px solid rgba(159, 178, 205, 0.58);
  border-radius: 10px;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-technical-form textarea {
  height: 84px;
  min-height: 84px;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0 0;
  color: #263d5f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.42;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .privacy-check input {
  flex: 0 0 auto;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .privacy-first-layer {
  margin-top: 8px;
  padding: 13px 15px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid rgba(159, 178, 205, 0.5);
  border-radius: 10px;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .privacy-first-layer strong {
  margin-bottom: 5px;
  font-size: 0.86rem;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .privacy-first-layer p {
  font-size: 0.8rem;
  line-height: 1.45;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-actions {
  justify-content: stretch;
  margin-top: 12px;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-actions .button {
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding-inline: 24px;
  font-size: 0.96rem;
}

body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-after-note {
  max-width: none;
  margin: 2px 0 0;
  color: #5f718c;
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: left;
}

body[data-page="impresoras-tarjetas-pvc"] .printer-final-cta {
  padding-top: clamp(36px, 5vw, 56px);
}

@media (max-width: 1180px) {
  body[data-page="impresoras-tarjetas-pvc"] .printer-tech-compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="impresoras-tarjetas-pvc"] .credentials-hero-benefits,
  body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-panel > .button {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero {
    height: auto !important;
    min-height: 620px !important;
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero-inner {
    min-height: 620px;
    align-items: end;
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 11, 24, 0.2) 0%, rgba(3, 11, 24, 0.7) 48%, rgba(3, 11, 24, 0.96) 100%),
      linear-gradient(90deg, rgba(3, 11, 24, 0.66), rgba(3, 11, 24, 0.18));
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero-media img {
    object-position: 67% center;
  }

  body[data-page="impresoras-tarjetas-pvc"] .grenke-renting-card--printers,
  body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="impresoras-tarjetas-pvc"] .printer-use-list,
  body[data-page="impresoras-tarjetas-pvc"] .printer-tech-compact-grid,
  body[data-page="impresoras-tarjetas-pvc"] .printer-decision-grid,
  body[data-page="impresoras-tarjetas-pvc"] .printer-criteria-grid,
  body[data-page="impresoras-tarjetas-pvc"] .credentials-hero-benefits {
    grid-template-columns: 1fr;
  }

  body[data-page="impresoras-tarjetas-pvc"] .credentials-printer-detail-body {
    grid-template-columns: 1fr;
  }

  body[data-page="impresoras-tarjetas-pvc"] .printer-support-section .credentials-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales.rfid-form-section {
    padding: 38px 0;
  }

  body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-technical-form {
    padding: 18px;
  }

  body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-main-fields {
    grid-template-columns: 1fr;
  }

  body[data-page="impresoras-tarjetas-pvc"] #formulario-credenciales .rfid-form-after-note {
    margin: 0;
  }
}

.credentials-card-photo,
.tech-photo {
  overflow: hidden;
  background: #f5f8fc;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(20, 48, 84, 0.08);
}

.credentials-card-photo img,
.tech-photo {
  display: block;
  width: 100%;
  height: clamp(280px, 36vw, 520px);
  object-fit: cover;
}

.printer-tech-section .credentials-tech-card {
  overflow: hidden;
}

.printer-tech-section .credentials-tech-card .tech-photo {
  height: clamp(170px, 14vw, 230px);
  margin-bottom: 22px;
  border-radius: 8px;
  box-shadow: none;
  transition: transform 220ms ease;
}

.printer-tech-section .credentials-tech-card:hover .tech-photo,
.printer-tech-section .credentials-tech-card:focus-within .tech-photo {
  transform: scale(1.025);
}

.credentials-edge-demo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: min(420px, 100%);
}

.credentials-edge-demo img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  border: 1px solid rgba(167, 190, 214, 0.45);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 48, 84, 0.08);
}

.credentials-offset-section,
.credentials-consumable-detail,
.grenke-renting-section,
.legacy-redirect-section {
  background: #f7faff;
}

.credentials-offset-panel,
.credentials-link-panel,
.credentials-use-panel,
.grenke-renting-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(26px, 4vw, 48px);
}

.credentials-offset-panel > div,
.credentials-link-panel > div:first-child,
.credentials-use-panel > div {
  max-width: 760px;
}

.credentials-use-panel ul,
.credentials-compatibility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials-use-panel li,
.credentials-compatibility-list li {
  padding: 12px 14px;
  color: #20344d;
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.35;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-list li {
  color: #f5fbff;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-list li strong {
  color: #ffffff;
}

body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel .credentials-compatibility-list li span {
  color: #d3e3ef;
}

.credentials-link-grid {
  display: grid;
  min-width: min(440px, 100%);
  gap: 10px;
}

.credentials-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: #071a42;
  background: #f7faff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  font-weight: 880;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.credentials-link-grid a:hover,
.credentials-link-grid a:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(0, 144, 215, 0.32);
}

.grenke-renting-card {
  color: #071a42;
  background:
    linear-gradient(135deg, rgba(0, 144, 215, 0.07), rgba(255, 255, 255, 0) 48%),
    #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(20, 48, 84, 0.08);
}

.grenke-renting-copy {
  max-width: 860px;
}

.grenke-mark {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #071a42;
  background: #eef4f8;
  border: 1px solid #cbd8e6;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.grenke-renting-card h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  line-height: 1.06;
}

.grenke-renting-card p {
  margin: 16px 0 0;
  color: #40536c;
  line-height: 1.65;
}

.grenke-renting-card small {
  display: block;
  margin-top: 14px;
  color: #63758b;
  font-weight: 780;
}

.accessory-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 4vw, 54px);
}

.accessory-product-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(20, 48, 84, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.accessory-product-card:hover,
.accessory-product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 144, 215, 0.28);
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.1);
}

.accessory-product-card img {
  display: block;
  width: 100%;
  height: clamp(180px, 14vw, 220px);
  object-fit: cover;
  object-position: center bottom;
  background: #f4f7fb;
}

.accessory-product-card div {
  padding: 22px;
}

.accessory-product-card span {
  color: var(--aceris-blue-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accessory-product-card h3 {
  margin: 9px 0 0;
  color: #071a42;
  font-size: 1.12rem;
  line-height: 1.18;
}

.accessory-product-card p {
  margin: 12px 0 0;
  color: #40536c;
  font-size: 0.92rem;
  line-height: 1.58;
}

.legacy-redirect-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 60px);
  text-align: center;
}

.legacy-redirect-panel h1 {
  margin: 14px 0 0;
  color: #071a42;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
}

.legacy-redirect-panel p {
  max-width: 560px;
  margin: 18px auto 0;
  color: #40536c;
  line-height: 1.65;
}

.legacy-redirect-panel .button {
  margin-top: 26px;
}

@media (max-width: 1160px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-hero-media {
    min-height: 360px;
  }

  .credentials-feature-grid,
  .credentials-feature-grid--four,
  .rfid-tech-grid,
  .accessory-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="tarjetas-rfid-mifare"] .credentials-compatibility-panel,
  .rfid-work-split,
  .rfid-use-compact-panel {
    grid-template-columns: 1fr;
  }

  .rfid-compatibility-visual img {
    min-height: 300px;
  }

  .rfid-work-grid,
  .rfid-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rfid-checkbox-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-hero {
    min-height: auto;
  }

  .service-hero-media {
    min-height: 260px;
  }

  .credentials-feature-grid,
  .credentials-feature-grid--four,
  .rfid-tech-grid,
  .accessory-catalog-grid,
  .credentials-edge-demo,
  .rfid-work-grid,
  .rfid-process-grid,
  .rfid-checkbox-group,
  .rfid-form-progress,
  .rfid-process-timeline {
    grid-template-columns: 1fr;
  }

  .rfid-tech-help,
  .rfid-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rfid-tech-help .button,
  .rfid-form-actions .button {
    width: 100%;
  }

  .rfid-service-stack li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rfid-process-timeline {
    gap: 20px;
  }

  .rfid-process-timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    height: auto;
  }

  .rfid-process-timeline li {
    padding-top: 0;
    padding-left: 76px;
  }

  .rfid-process-timeline li > span {
    left: 0;
  }

  .rfid-microcopy {
    margin-top: -18px;
  }

  .credentials-offset-panel,
  .credentials-link-panel,
  .credentials-use-panel,
  .grenke-renting-card {
    align-items: stretch;
    flex-direction: column;
  }

  .credentials-use-panel ul,
  .credentials-compatibility-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .credentials-link-grid {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .accessory-product-card,
  .credentials-link-grid a,
  .printer-tech-section .credentials-tech-card .tech-photo {
    transition: none;
  }
}


/* Exact shared hero height for main and access situation pages. */
:root {
  --aceris-shared-hero-height: clamp(600px, 68svh, 640px);
}

.access-hero-full,
.time-hero-full,
.credentials-hero,
.access-guide-hero,
.access-reception-hero-grid {
  min-height: 0 !important;
  height: var(--aceris-shared-hero-height) !important;
}

.access-hero-full-content,
.credentials-hero .landing-hero-grid,
.access-guide-hero-grid {
  min-height: 0 !important;
  height: 100%;
}

.access-guide-hero {
  overflow: hidden;
}

.access-guide-hero-grid {
  align-items: center;
}

@media (max-width: 820px) {
  :root {
    --aceris-shared-hero-height: 660px;
  }

  .access-hero-full,
  .time-hero-full,
  .credentials-hero,
  .access-guide-hero,
  .access-reception-hero-grid {
    min-height: 0 !important;
    height: var(--aceris-shared-hero-height) !important;
  }

  .access-guide-hero-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .access-guide-hero-grid {
    min-height: 0 !important;
    height: 100%;
    align-items: center;
    padding-top: 128px;
    padding-bottom: 24px;
  }
}

/* Local mockup: animated access authorization block */
.access-decide-section--animated {
  padding: clamp(44px, 5.6vw, 72px) 0;
  min-height: var(--access-scroll-height, 520vh);
  background:
    radial-gradient(circle at 50% 0%, rgba(7, 91, 232, 0.08), transparent 34%),
    #ffffff;
}

.access-decide-stage {
  position: sticky;
  top: var(--access-sticky-top, 86px);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.access-decide-animated-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 22px);
  align-items: start;
  overflow: hidden;
  min-height: calc(100svh - var(--access-sticky-top, 86px) - 4px);
  padding: clamp(18px, 2vw, 26px) clamp(18px, 3vw, 48px);
  background:
    radial-gradient(circle at 74% 9%, rgba(65, 131, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #061632 0%, #082649 100%);
  border: 1px solid rgba(90, 154, 255, 0.28);
  border-radius: 0;
  box-shadow: 0 32px 84px rgba(7, 26, 66, 0.24);
  opacity: var(--access-panel-opacity, 1);
  transform: translate3d(0, var(--access-panel-y, 0), 0) scale(var(--access-panel-scale, 1));
  transform-origin: center top;
  will-change: opacity, transform;
}

.access-decide-copy--animated {
  position: relative;
  top: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(320px, 0.54fr);
  gap: clamp(18px, 3vw, 52px);
  width: min(1280px, 100%);
  max-width: none;
  min-width: 0;
  align-content: start;
  align-items: end;
  margin: 0 auto;
}

.access-decide-copy--animated h2 {
  grid-column: 1;
  max-width: 660px;
  font-size: clamp(1.72rem, 2.35vw, 2.5rem);
}

.access-decide-copy--animated .solution-eyebrow {
  grid-column: 1;
}

.access-decide-copy--animated .access-decide-lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
}

.access-decide-copy--animated .access-decide-note {
  grid-column: 2;
  max-width: 680px;
}

.access-animation {
  --access-progress: 0;
  --access-step-exact: 0;
  --access-step-progress: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.3vw, 16px);
  width: min(1360px, 100%);
  min-width: 0;
  margin: 0 auto;
}

.access-animation-visual {
  position: relative;
  top: auto;
  min-height: clamp(500px, 58svh, 680px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 46%, rgba(41, 121, 255, 0.25), transparent 25%),
    radial-gradient(circle at 17% 88%, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(214, 233, 255, 0.94)),
    #eaf4ff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.18);
  isolation: isolate;
  perspective: 1100px;
}

.access-animation-visual::before,
.access-animation-visual::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
}

.access-animation-visual::before {
  background:
    radial-gradient(circle at 55% 68%, rgba(255, 255, 255, 0.62), transparent 19%),
    radial-gradient(circle at 55% 68%, rgba(7, 91, 232, 0.18), transparent 31%);
  opacity: 0;
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.2, 0.85, 0.22, 1);
  transform: scale(0.92);
}

.access-animation-visual::after {
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0;
  transform: translateX(-155%) skewX(-18deg);
}

.access-animation-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(7, 91, 232, 0.15), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  opacity: 0.56;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.access-animation-stage-caption {
  position: absolute;
  top: clamp(12px, 1.7vw, 22px);
  left: clamp(12px, 1.7vw, 22px);
  z-index: 7;
  display: grid;
  gap: 4px;
  width: min(390px, 52%);
  padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.4vw, 16px);
  color: #071a42;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 91, 232, 0.16);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(7, 26, 66, 0.14);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.access-animation-stage-caption span {
  color: #075be8;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.access-animation-stage-caption strong {
  color: #071a42;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.08;
}

.access-animation-stage-caption p {
  margin: 0;
  color: #24425f;
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  font-weight: 740;
  line-height: 1.34;
}

.access-scroll-hint {
  position: absolute;
  right: clamp(12px, 1.8vw, 22px);
  bottom: clamp(12px, 1.8vw, 22px);
  z-index: 8;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  color: #071a42;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(7, 91, 232, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(7, 26, 66, 0.1);
  opacity: 0.58;
  backdrop-filter: blur(10px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.access-animation:not([data-active-step="0"]) .access-scroll-hint {
  opacity: 0.24;
  transform: translateY(3px);
}

.access-scroll-mouse {
  position: relative;
  display: inline-flex;
  width: 21px;
  height: 32px;
  justify-content: center;
  border: 2px solid rgba(7, 91, 232, 0.72);
  border-radius: 999px;
}

.access-scroll-mouse span {
  width: 4px;
  height: 7px;
  margin-top: 6px;
  background: #075be8;
  border-radius: 999px;
  animation: accessMouseWheel 1450ms ease-in-out infinite;
}

.access-scroll-hint em {
  color: #24425f;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-animation-camera {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 980ms cubic-bezier(0.16, 0.92, 0.18, 1), filter 560ms ease;
  transform-origin: 58% 58%;
  will-change: transform;
}

.access-animation-camera::before {
  position: absolute;
  inset: 8%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 91, 232, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 91, 232, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  border-radius: 18px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 520ms ease, transform 780ms cubic-bezier(0.2, 0.85, 0.22, 1);
  content: "";
}

.access-anim-img,
.access-anim-module,
.access-anim-card,
.access-anim-signal,
.access-anim-software,
.access-anim-focus,
.access-anim-callout,
.access-anim-verdict,
.access-anim-open-state {
  position: absolute;
  z-index: 1;
  transition:
    opacity 460ms ease,
    transform 900ms cubic-bezier(0.16, 0.92, 0.18, 1),
    filter 460ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease;
}

.access-anim-scene {
  height: auto;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 26px 34px rgba(7, 26, 66, 0.17));
}

.access-anim-scene--closed,
.access-anim-scene--base-open,
.access-anim-scene--controller-ready {
  right: clamp(-2px, 3.2vw, 46px);
  bottom: clamp(-8px, 1.1vw, 12px);
  width: min(62%, 500px);
}

.access-anim-scene--reader-zone-empty,
.access-anim-scene--reader-zone-ready {
  top: 4%;
  left: 1%;
  width: 98%;
  max-height: 91%;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 24px 34px rgba(7, 26, 66, 0.14));
}

.access-anim-scene--closed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-anim-scene--base-open,
.access-anim-scene--controller-ready {
  transform: translate3d(20px, 16px, 0) scale(0.96);
}

.access-anim-scene--reader-zone-empty,
.access-anim-scene--reader-zone-ready {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.access-anim-controller {
  left: 14%;
  top: 41%;
  width: clamp(170px, 20vw, 280px);
  height: auto;
  opacity: 0;
  transform: translate3d(-84px, 74px, 0) scale(0.82) rotate(-7deg);
  filter: drop-shadow(0 28px 36px rgba(7, 26, 66, 0.22));
}

.access-anim-reader {
  width: clamp(74px, 8.4vw, 112px);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 16px 22px rgba(7, 26, 66, 0.16));
}

.access-anim-reader--left {
  top: 30%;
  left: 24%;
  transform: translate3d(-70px, 44px, 0) scale(0.76) rotate(-9deg);
}

.access-anim-reader--right {
  top: 25%;
  right: 25%;
  transform: translate3d(70px, 44px, 0) scale(0.76) rotate(9deg);
}

.access-anim-card {
  top: 51%;
  left: 16%;
  display: grid;
  width: 92px;
  height: 58px;
  place-items: center;
  color: #071a42;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 244, 255, 0.94));
  border: 1px solid rgba(7, 91, 232, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(7, 26, 66, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translate3d(-24px, 16px, 0) rotate(-10deg);
}

.access-anim-card span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.access-anim-card span::before {
  width: 9px;
  height: 9px;
  background: #075be8;
  border-radius: 999px;
  content: "";
}

.access-anim-signal {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, rgba(7, 91, 232, 0), rgba(7, 91, 232, 0.95), rgba(16, 185, 129, 0.96), rgba(7, 91, 232, 0));
  background-size: 180% 100%;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(7, 91, 232, 0.34);
}

.access-anim-signal--reader {
  top: 47%;
  left: 32%;
  width: 32%;
}

.access-anim-signal--software {
  top: 29%;
  right: 26%;
  width: 22%;
  transform-origin: right center;
}

.access-anim-software {
  top: 9%;
  right: 5%;
  display: grid;
  gap: 8px;
  width: min(270px, 36%);
  padding: 16px;
  color: #071a42;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 91, 232, 0.16);
  border-radius: 14px;
  box-shadow: 0 24px 58px rgba(7, 26, 66, 0.2);
  opacity: 0;
  transform: translate3d(34px, -20px, 0) scale(0.9);
}

.access-anim-software-header {
  color: #075be8;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-anim-software-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 9px;
  background: #f3f8ff;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
}

.access-anim-software-row em {
  min-width: 34px;
  padding: 3px 7px;
  color: #047857;
  background: rgba(16, 185, 129, 0.13);
  border-radius: 999px;
  font-style: normal;
  font-size: 0.72rem;
  text-align: center;
}

.access-anim-open-state {
  right: 7%;
  bottom: 9%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  color: #ffffff;
  background: linear-gradient(135deg, #047857, #10b981);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(4, 120, 87, 0.24);
  font-size: 0.86rem;
  font-weight: 950;
  opacity: 0;
  transform: translateY(12px);
}

.access-anim-open-state::before {
  width: 9px;
  height: 9px;
  background: #a7f3d0;
  border-radius: 999px;
  content: "";
}

.access-anim-focus {
  z-index: 2;
  display: block;
  border: 1px solid rgba(7, 91, 232, 0.72);
  border-radius: 18px;
  opacity: 0;
  transform: scale(0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.82) inset,
    0 0 0 8px rgba(7, 91, 232, 0.1),
    0 0 42px rgba(7, 91, 232, 0.26);
}

.access-anim-focus::before,
.access-anim-focus::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #075be8;
  content: "";
}

.access-anim-focus::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid;
  border-left: 3px solid;
  border-top-left-radius: 14px;
}

.access-anim-focus::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid;
  border-bottom: 3px solid;
  border-bottom-right-radius: 14px;
}

.access-anim-focus--base {
  right: 17%;
  bottom: 8%;
  width: min(34%, 260px);
  height: 28%;
}

.access-anim-focus--readers {
  top: 18%;
  left: 12%;
  width: 76%;
  height: 52%;
}

.access-anim-callout,
.access-anim-verdict {
  z-index: 5;
  display: grid;
  gap: 3px;
  max-width: 220px;
  padding: 11px 13px;
  color: #071a42;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 91, 232, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(7, 26, 66, 0.16);
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.94);
}

.access-anim-callout b,
.access-anim-verdict b {
  color: #075be8;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.access-anim-callout span,
.access-anim-verdict span {
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.25;
}

.access-anim-callout--controller {
  left: 24%;
  bottom: 10%;
}

.access-anim-callout--readers {
  right: 6%;
  bottom: 9%;
}

.access-anim-verdict {
  top: 11%;
  left: 7%;
  color: #06361f;
  background: rgba(240, 253, 244, 0.95);
  border-color: rgba(16, 185, 129, 0.28);
}

.access-anim-verdict b {
  color: #047857;
}

@keyframes accessSignalFlow {
  0% { background-position: 150% 0; }
  100% { background-position: -60% 0; }
}

@keyframes accessScanSweep {
  0% { opacity: 0; transform: translateX(-155%) skewX(-18deg); }
  18% { opacity: 0.78; }
  100% { opacity: 0; transform: translateX(285%) skewX(-18deg); }
}

@keyframes accessSuccessPulse {
  0%, 100% { box-shadow: 0 18px 38px rgba(4, 120, 87, 0.24); }
  50% { box-shadow: 0 18px 54px rgba(4, 120, 87, 0.44); }
}

@keyframes accessMouseWheel {
  0% { opacity: 0; transform: translateY(0); }
  24% { opacity: 1; }
  72% { opacity: 0; transform: translateY(11px); }
  100% { opacity: 0; transform: translateY(11px); }
}

.access-animation[data-active-step="1"] .access-animation-camera,
.access-animation[data-active-step="2"] .access-animation-camera,
.access-animation[data-active-step="3"] .access-animation-camera {
  transform: translate3d(-7%, 4%, 0) scale(1.22);
  transform-origin: 65% 76%;
}

.access-animation[data-active-step="4"] .access-animation-camera,
.access-animation[data-active-step="5"] .access-animation-camera,
.access-animation[data-active-step="6"] .access-animation-camera {
  transform: translate3d(0, -2%, 0) scale(1.12);
  transform-origin: 50% 26%;
}

.access-animation[data-active-step="7"] .access-animation-camera {
  transform: translate3d(-3%, 1%, 0) scale(1.08);
  transform-origin: 38% 54%;
}

.access-animation[data-active-step="8"] .access-animation-camera {
  transform: translate3d(-4%, 0, 0) scale(1.08);
  transform-origin: 60% 44%;
}

.access-animation[data-active-step="9"] .access-animation-camera {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 58% 58%;
}

.access-animation[data-active-step="1"] .access-animation-visual::before,
.access-animation[data-active-step="2"] .access-animation-visual::before,
.access-animation[data-active-step="3"] .access-animation-visual::before {
  opacity: 0.72;
  transform: scale(1);
}

.access-animation[data-active-step="4"] .access-animation-camera::before,
.access-animation[data-active-step="5"] .access-animation-camera::before,
.access-animation[data-active-step="6"] .access-animation-camera::before {
  opacity: 0.48;
  transform: scale(1);
}

.access-animation[data-active-step="1"] .access-animation-visual::after,
.access-animation[data-active-step="4"] .access-animation-visual::after,
.access-animation[data-active-step="8"] .access-animation-visual::after {
  animation: accessScanSweep 960ms ease-out both;
}

.access-animation[data-active-step="0"] .access-anim-scene--closed,
.access-animation[data-active-step="7"] .access-anim-scene--closed,
.access-animation[data-active-step="8"] .access-anim-scene--closed,
.access-animation[data-active-step="9"] .access-anim-scene--closed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-active-step="1"] .access-anim-scene--base-open,
.access-animation[data-active-step="2"] .access-anim-scene--base-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-active-step="3"] .access-anim-scene--controller-ready {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-active-step="4"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="5"] .access-anim-scene--reader-zone-empty {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-active-step="6"] .access-anim-scene--reader-zone-ready {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-active-step="2"] .access-anim-controller {
  opacity: 1;
  transform: translate3d(92px, 10px, 0) scale(0.46) rotate(0deg);
}

.access-animation[data-active-step="1"] .access-anim-focus--base,
.access-animation[data-active-step="2"] .access-anim-focus--base,
.access-animation[data-active-step="3"] .access-anim-focus--base,
.access-animation[data-active-step="4"] .access-anim-focus--readers,
.access-animation[data-active-step="5"] .access-anim-focus--readers,
.access-animation[data-active-step="6"] .access-anim-focus--readers {
  opacity: 1;
  transform: scale(1);
}

.access-animation[data-active-step="2"] .access-anim-callout--controller,
.access-animation[data-active-step="3"] .access-anim-callout--controller,
.access-animation[data-active-step="5"] .access-anim-callout--readers,
.access-animation[data-active-step="6"] .access-anim-callout--readers,
.access-animation[data-active-step="8"] .access-anim-verdict,
.access-animation[data-active-step="9"] .access-anim-verdict {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-active-step="5"] .access-anim-reader--left,
.access-animation[data-active-step="5"] .access-anim-reader--right {
  opacity: 1;
}

.access-animation[data-active-step="5"] .access-anim-reader--left {
  transform: translate3d(14px, -14px, 0) scale(0.74) rotate(-4deg);
}

.access-animation[data-active-step="5"] .access-anim-reader--right {
  transform: translate3d(-14px, -14px, 0) scale(0.74) rotate(4deg);
}

.access-animation[data-active-step="7"] .access-anim-card,
.access-animation[data-active-step="8"] .access-anim-card,
.access-animation[data-active-step="9"] .access-anim-card {
  opacity: 1;
}

.access-animation[data-active-step="7"] .access-anim-card {
  transform: translate3d(54px, -22px, 0) rotate(-4deg);
}

.access-animation[data-active-step="8"] .access-anim-card,
.access-animation[data-active-step="9"] .access-anim-card {
  transform: translate3d(138px, -48px, 0) rotate(2deg) scale(0.94);
}

.access-animation[data-active-step="7"] .access-anim-signal--reader,
.access-animation[data-active-step="8"] .access-anim-signal--reader,
.access-animation[data-active-step="9"] .access-anim-signal--reader,
.access-animation[data-active-step="8"] .access-anim-signal--software,
.access-animation[data-active-step="9"] .access-anim-signal--software {
  opacity: 1;
  transform: scaleX(1);
  animation: accessSignalFlow 1120ms linear infinite;
}

.access-animation[data-active-step="8"] .access-anim-software,
.access-animation[data-active-step="9"] .access-anim-software {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  border-color: rgba(16, 185, 129, 0.38);
  box-shadow: 0 26px 64px rgba(7, 26, 66, 0.22), 0 0 0 6px rgba(16, 185, 129, 0.08);
}

.access-animation[data-active-step="9"] .access-anim-open-state {
  opacity: 1;
  transform: translateY(0);
  animation: accessSuccessPulse 1350ms ease-in-out infinite;
}

.access-animation[data-active-step="9"] .access-anim-scene--closed {
  filter: drop-shadow(0 26px 34px rgba(7, 26, 66, 0.17)) saturate(1.08) brightness(1.05);
}

.access-animation-steps {
  display: flex;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.access-animation-steps li {
  display: grid;
  gap: 5px;
  flex: 0 1 34px;
  min-width: 34px;
  min-height: 50px;
  align-content: center;
  justify-items: center;
  padding: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition:
    flex-basis 260ms ease,
    min-width 260ms ease,
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    border-radius 220ms ease;
}

.access-animation-steps li.is-active {
  flex: 1 1 310px;
  min-width: min(310px, 42%);
  align-content: start;
  justify-items: start;
  color: #ffffff;
  background: rgba(7, 91, 232, 0.34);
  border-color: rgba(89, 165, 255, 0.66);
  border-radius: 10px;
}

.access-animation-steps span {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  color: #7db6ff;
  background: rgba(125, 182, 255, 0.28);
  border-radius: 999px;
  font-size: 0;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-animation-steps span::after {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.access-animation-steps li.is-active span {
  width: auto;
  height: auto;
  color: #9bc7ff;
  background: transparent;
  border-radius: 0;
  font-size: 0.64rem;
}

.access-animation-steps li.is-active span::after {
  display: none;
}

.access-animation-steps strong {
  color: inherit;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.16;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 180ms ease;
}

.access-animation-steps p {
  margin: 0;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.34;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 180ms ease;
}

.access-animation-steps li.is-active strong,
.access-animation-steps li.is-active p {
  opacity: 1;
  max-height: 8rem;
}

.access-animation-steps.access-animation-steps--hidden {
  display: none;
}

.access-animation-final {
  width: min(960px, 100%);
  max-width: none;
  margin: -2px auto 0;
  padding: 12px 15px;
  color: #ffffff;
  background: rgba(7, 91, 232, 0.18);
  border: 1px solid rgba(87, 164, 255, 0.28);
  border-radius: 10px;
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  font-weight: 850;
  line-height: 1.32;
}

.access-decide-cta--animated {
  grid-column: 1 / -1;
  width: min(100%, 960px);
  margin-top: 0;
}

@media (max-width: 1120px) {
  .access-decide-copy--animated {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .access-decide-copy--animated h2 {
    grid-column: auto;
    max-width: 720px;
  }

  .access-decide-copy--animated .solution-eyebrow,
  .access-decide-copy--animated .access-decide-lead,
  .access-decide-copy--animated .access-decide-note {
    grid-column: auto;
    grid-row: auto;
  }

  .access-animation,
  .access-animation-final {
    grid-column: 1;
  }
}

@media (max-width: 860px) {
  .access-decide-section--animated {
    padding: 34px 0;
  }

  .access-decide-animated-panel {
    gap: 12px;
    max-height: calc(100svh - var(--access-sticky-top, 84px) - 10px);
    min-height: calc(100svh - var(--access-sticky-top, 84px) - 10px);
    padding: 22px 16px;
    border-radius: 0;
  }

  .access-decide-copy--animated {
    display: grid;
    gap: 8px;
  }

  .access-decide-copy--animated h2 {
    font-size: clamp(1.42rem, 7.4vw, 2.1rem);
    line-height: 1.04;
  }

  .access-decide-copy--animated .access-decide-lead,
  .access-decide-copy--animated .access-decide-note {
    font-size: 0.83rem;
    line-height: 1.42;
  }

  .access-animation {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .access-animation-visual {
    position: relative;
    top: auto;
    min-height: clamp(310px, 48svh, 420px);
  }

  .access-animation[data-active-step="1"] .access-animation-camera,
  .access-animation[data-active-step="2"] .access-animation-camera,
  .access-animation[data-active-step="3"] .access-animation-camera {
    transform: translate3d(-4%, 2%, 0) scale(1.14);
    transform-origin: 64% 76%;
  }

  .access-animation[data-active-step="4"] .access-animation-camera,
  .access-animation[data-active-step="5"] .access-animation-camera,
  .access-animation[data-active-step="6"] .access-animation-camera {
    transform: translate3d(0, -1%, 0) scale(1.08);
    transform-origin: 50% 28%;
  }

  .access-animation-steps {
    gap: 5px;
    max-height: none;
  }

  .access-animation-steps li {
    flex-basis: 20px;
    min-width: 20px;
    min-height: 38px;
    padding: 5px;
  }

  .access-animation-steps li.is-active {
    flex-basis: 230px;
    min-width: min(230px, 58%);
  }

  .access-animation-steps span {
    width: 10px;
    height: 10px;
  }

  .access-animation-steps span::after {
    width: 4px;
    height: 4px;
  }

  .access-animation-steps li.is-active span {
    width: auto;
    height: auto;
  }

  .access-animation-steps strong {
    font-size: 0.86rem;
  }

  .access-animation-steps p {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .access-animation-final {
    padding: 10px 12px;
    font-size: 0.88rem;
    line-height: 1.26;
  }

  .access-anim-scene--closed,
  .access-anim-scene--base-open,
  .access-anim-scene--controller-ready {
    right: -2%;
    width: min(64%, 330px);
  }

  .access-anim-scene--reader-zone-empty,
  .access-anim-scene--reader-zone-ready {
    top: 11%;
    left: -6%;
    width: 112%;
  }

  .access-anim-controller {
    left: 8%;
    top: 48%;
    width: min(42%, 210px);
  }

  .access-animation[data-active-step="2"] .access-anim-controller {
    transform: translate3d(58px, -2px, 0) scale(0.46) rotate(0deg);
  }

  .access-anim-reader {
    width: 62px;
  }

  .access-anim-reader--left {
    top: 33%;
    left: 17%;
  }

  .access-anim-reader--right {
    top: 28%;
    right: 17%;
  }

  .access-anim-card {
    top: 56%;
    left: 12%;
    width: 72px;
    height: 46px;
  }

  .access-animation[data-active-step="8"] .access-anim-card,
  .access-animation[data-active-step="9"] .access-anim-card {
    transform: translate3d(98px, -46px, 0) rotate(2deg) scale(0.9);
  }

  .access-anim-software {
    top: 8%;
    right: 5%;
    width: min(210px, 54%);
    padding: 11px;
  }

  .access-anim-software-row {
    padding: 6px 7px;
    font-size: 0.74rem;
  }

  .access-anim-signal--reader {
    left: 28%;
    width: 30%;
  }

  .access-anim-focus--base {
    right: 7%;
    bottom: 8%;
    width: 44%;
    height: 28%;
  }

  .access-anim-focus--readers {
    top: 18%;
    left: 7%;
    width: 86%;
    height: 54%;
  }

  .access-anim-callout,
  .access-anim-verdict {
    max-width: 164px;
    padding: 8px 9px;
  }

  .access-anim-callout b,
  .access-anim-verdict b {
    font-size: 0.66rem;
  }

  .access-anim-callout span,
  .access-anim-verdict span {
    font-size: 0.68rem;
  }

  .access-anim-callout--controller {
    left: 8%;
    bottom: 5%;
  }

  .access-anim-callout--readers {
    right: 4%;
    bottom: 5%;
  }

  .access-anim-verdict {
    top: 5%;
    left: 5%;
  }
}

@media (max-width: 520px) {
  .access-animation-visual {
    min-height: clamp(285px, 45svh, 360px);
  }

  .access-decide-animated-panel {
    padding: 16px 12px;
  }

  .access-animation-steps {
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .access-animation-steps li {
    flex: 1 1 0;
    min-width: 0;
    padding: 5px 2px;
  }

  .access-animation-steps li.is-active {
    order: 0;
    flex: 1 1 0;
    min-width: 0;
    min-height: 38px;
    border-radius: 999px;
    background: rgba(7, 91, 232, 0.38);
  }

  .access-animation-steps li.is-active span {
    width: 12px;
    height: 12px;
    color: #cfe4ff;
    background: rgba(125, 182, 255, 0.28);
    border-radius: 999px;
    font-size: 0;
  }

  .access-animation-steps li.is-active span::after {
    display: block;
    width: 5px;
    height: 5px;
  }

  .access-animation-steps li.is-active strong,
  .access-animation-steps li.is-active p {
    display: none;
  }

  .access-anim-open-state {
    right: 5%;
    bottom: 7%;
    font-size: 0.72rem;
  }

  .access-anim-callout {
    display: none;
  }

  .access-anim-verdict {
    max-width: 148px;
  }
}

/* Cinematic full-stage authorization animation */
.access-decide-section--animated {
  padding: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 7%, #071a42 7%, #071a42 92%, #f4f8fc 92%, #f4f8fc 100%);
}

.access-decide-stage {
  top: var(--access-sticky-top, 84px);
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.access-decide-animated-panel {
  gap: clamp(12px, 1.5vw, 20px);
  min-height: calc(100svh - var(--access-sticky-top, 84px));
  padding: clamp(18px, 2.2vw, 34px) clamp(20px, 5vw, 76px) clamp(20px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 50% 58%, rgba(83, 158, 255, 0.22), transparent 30%),
    radial-gradient(circle at 72% 28%, rgba(16, 185, 129, 0.11), transparent 26%),
    linear-gradient(135deg, #06152f 0%, #082852 48%, #061632 100%);
  border: 0;
  box-shadow: none;
}

.access-decide-copy--animated {
  width: min(1440px, 100%);
  display: block;
  max-width: 620px;
  gap: clamp(16px, 3vw, 64px);
  align-items: end;
}

.access-decide-copy--animated h2 {
  max-width: 620px;
  font-size: clamp(1.72rem, 2.15vw, 2.36rem);
  line-height: 1.02;
}

.access-decide-copy--animated .access-decide-lead {
  max-width: 590px;
  margin-top: 12px;
  font-size: clamp(0.92rem, 1.03vw, 1.05rem);
  line-height: 1.52;
}

.access-decide-copy--animated .access-decide-note {
  max-width: 560px;
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid rgba(89, 165, 255, 0.72);
  font-size: clamp(0.84rem, 0.96vw, 0.98rem);
  line-height: 1.48;
}

.access-animation {
  width: min(1540px, 100%);
  min-height: 0;
}

.access-animation-visual {
  min-height: clamp(540px, 66svh, 760px);
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  perspective: 1600px;
}

.access-decide-copy--animated {
  position: relative;
  z-index: 18;
}

.access-animation {
  position: relative;
  z-index: 2;
}

.access-animation-visual::before {
  inset: 4% 9% 2%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 62%, rgba(219, 235, 255, 0.94) 0%, rgba(174, 212, 255, 0.55) 30%, rgba(59, 130, 246, 0.14) 52%, transparent 74%),
    radial-gradient(circle at 50% 76%, rgba(16, 185, 129, 0.16), transparent 30%);
  border-radius: 999px;
  opacity: 1;
  filter: blur(2px);
  transform: scale(1);
}

.access-animation-visual::after {
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.access-animation-backdrop {
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(125, 182, 255, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(125, 182, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(125, 182, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 68px 68px, 68px 68px;
  opacity: 0.52;
  mask-image:
    radial-gradient(ellipse at 50% 58%, #000 0%, #000 42%, transparent 75%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

.access-animation-stage-caption {
  top: auto;
  right: auto;
  bottom: clamp(18px, 3.2vw, 48px);
  left: clamp(18px, 4.5vw, 72px);
  width: min(460px, 38vw);
  padding: clamp(15px, 1.7vw, 22px) clamp(17px, 2vw, 26px);
  color: #ffffff;
  background: rgba(5, 19, 43, 0.72);
  border: 1px solid rgba(125, 182, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.access-animation-stage-caption span {
  color: #7dc8ff;
  font-size: 0.72rem;
}

.access-animation-stage-caption strong {
  color: #ffffff;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  line-height: 1;
}

.access-animation-stage-caption p {
  color: rgba(233, 243, 255, 0.9);
  font-size: clamp(0.88rem, 1.04vw, 1rem);
  line-height: 1.45;
}

.access-scroll-hint {
  right: 50%;
  bottom: clamp(14px, 2vw, 26px);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  opacity: 0.52;
  transform: translateX(50%);
}

.access-animation:not([data-active-step="0"]) .access-scroll-hint {
  opacity: 0.2;
  transform: translateX(50%) translateY(3px);
}

.access-scroll-mouse {
  border-color: rgba(255, 255, 255, 0.74);
}

.access-scroll-mouse span {
  background: #ffffff;
}

.access-scroll-hint em {
  color: rgba(255, 255, 255, 0.8);
}

.access-animation-camera {
  inset: 0;
  z-index: 2;
}

.access-animation-camera::before {
  inset: 5% 10%;
  background:
    linear-gradient(90deg, rgba(125, 182, 255, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(125, 182, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  border-radius: 30px;
}

.access-anim-scene {
  filter:
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 58px rgba(125, 182, 255, 0.14));
}

.access-anim-scene--closed,
.access-anim-scene--base-open,
.access-anim-scene--controller-ready {
  top: 58%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(76vw, 880px);
  max-width: 88%;
  transform: translate3d(-47%, -48%, 0) scale(1);
  transform-origin: center center;
}

.access-anim-scene--base-open,
.access-anim-scene--controller-ready {
  transform: translate3d(-47%, -48%, 0) scale(0.96);
}

.access-anim-scene--reader-zone-empty,
.access-anim-scene--reader-zone-ready {
  top: 58%;
  left: 50%;
  width: min(88vw, 1120px);
  max-width: 94%;
  max-height: 82%;
  object-fit: contain;
  transform: translate3d(-50%, -50%, 0) scale(0.92);
  border-radius: 18px;
  filter:
    drop-shadow(0 34px 48px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 48px rgba(125, 182, 255, 0.12));
}

.access-anim-controller {
  left: 9%;
  top: 44%;
  width: clamp(250px, 29vw, 430px);
  transform: translate3d(-90px, 82px, 0) scale(0.9) rotate(-8deg);
}

.access-anim-reader {
  width: clamp(104px, 11vw, 156px);
}

.access-anim-reader--left {
  top: 31%;
  left: 26%;
}

.access-anim-reader--right {
  top: 28%;
  right: 25%;
}

.access-anim-card {
  top: 50%;
  left: 20%;
  width: 132px;
  height: 82px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.access-anim-software {
  top: 10%;
  right: 7%;
  width: min(340px, 29vw);
  padding: 20px;
  border-radius: 18px;
}

.access-anim-open-state {
  right: 9%;
  bottom: 13%;
  padding: 15px 21px;
  font-size: 0.98rem;
}

.access-anim-focus {
  border-color: rgba(125, 182, 255, 0.82);
}

.access-anim-focus--base {
  right: 25%;
  bottom: 12%;
  width: min(24%, 310px);
  height: 26%;
}

.access-anim-focus--readers {
  top: 17%;
  left: 13%;
  width: 74%;
  height: 56%;
}

.access-anim-callout--controller {
  left: 18%;
  bottom: 12%;
}

.access-anim-callout--readers {
  right: 9%;
  bottom: 12%;
}

.access-anim-verdict {
  top: 12%;
  left: 7%;
}

.access-animation[data-active-step="1"] .access-animation-camera,
.access-animation[data-active-step="2"] .access-animation-camera,
.access-animation[data-active-step="3"] .access-animation-camera {
  transform: translate3d(-4%, 2%, 0) scale(1.32);
  transform-origin: 54% 72%;
}

.access-animation[data-active-step="4"] .access-animation-camera,
.access-animation[data-active-step="5"] .access-animation-camera,
.access-animation[data-active-step="6"] .access-animation-camera {
  transform: translate3d(0, -1%, 0) scale(1.18);
  transform-origin: 50% 30%;
}

.access-animation[data-active-step="7"] .access-animation-camera {
  transform: translate3d(-2%, 0, 0) scale(1.16);
  transform-origin: 42% 54%;
}

.access-animation[data-active-step="8"] .access-animation-camera {
  transform: translate3d(-3%, -1%, 0) scale(1.14);
  transform-origin: 60% 43%;
}

.access-animation[data-active-step="9"] .access-animation-camera {
  transform: translate3d(0, 0, 0) scale(1.03);
}

.access-animation[data-active-step="0"] .access-anim-scene--closed,
.access-animation[data-active-step="7"] .access-anim-scene--closed,
.access-animation[data-active-step="8"] .access-anim-scene--closed,
.access-animation[data-active-step="9"] .access-anim-scene--closed,
.access-animation[data-active-step="1"] .access-anim-scene--base-open,
.access-animation[data-active-step="2"] .access-anim-scene--base-open,
.access-animation[data-active-step="3"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="4"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="5"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="6"] .access-anim-scene--reader-zone-ready {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.access-animation[data-active-step="2"] .access-anim-controller {
  transform: translate3d(154px, -2px, 0) scale(0.36) rotate(0deg);
}

.access-animation[data-active-step="5"] .access-anim-reader--left {
  transform: translate3d(26px, -16px, 0) scale(0.8) rotate(-4deg);
}

.access-animation[data-active-step="5"] .access-anim-reader--right {
  transform: translate3d(-26px, -16px, 0) scale(0.8) rotate(4deg);
}

.access-animation[data-active-step="7"] .access-anim-card {
  transform: translate3d(86px, -28px, 0) rotate(-5deg) scale(1);
}

.access-animation[data-active-step="8"] .access-anim-card,
.access-animation[data-active-step="9"] .access-anim-card {
  transform: translate3d(186px, -56px, 0) rotate(2deg) scale(0.96);
}

.access-animation-final {
  position: relative;
  z-index: 4;
  width: min(980px, calc(100% - 32px));
  margin-top: clamp(-8px, -0.4vw, -2px);
  color: #dcecff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 182, 255, 0.24);
  text-align: center;
}

@media (max-width: 1120px) {
  .access-decide-copy--animated {
    grid-template-columns: 1fr;
  }

  .access-decide-copy--animated h2,
  .access-decide-copy--animated .access-decide-lead,
  .access-decide-copy--animated .access-decide-note {
    max-width: 860px;
  }

  .access-animation-visual {
    min-height: clamp(500px, 62svh, 680px);
  }

  .access-animation-stage-caption {
    width: min(440px, 48vw);
  }
}

@media (max-width: 860px) {
  .access-decide-section--animated {
    background:
      linear-gradient(180deg, #ffffff 0%, #f3f8ff 4%, #071a42 4%, #071a42 95%, #f4f8fc 95%, #f4f8fc 100%);
  }

  .access-decide-animated-panel {
    max-height: none;
    min-height: calc(100svh - var(--access-sticky-top, 84px) - 4px);
    padding: 20px 18px 24px;
  }

  .access-animation-visual {
    min-height: clamp(430px, 58svh, 560px);
  }

  .access-animation-stage-caption {
    bottom: 16px;
    left: 14px;
    width: min(360px, calc(100% - 28px));
    padding: 13px 14px;
  }

  .access-animation-stage-caption strong {
    font-size: clamp(1.08rem, 5vw, 1.42rem);
  }

  .access-anim-scene--closed,
  .access-anim-scene--base-open,
  .access-anim-scene--controller-ready {
    width: min(96vw, 610px);
    max-width: 112%;
  }

  .access-anim-scene--reader-zone-empty,
  .access-anim-scene--reader-zone-ready {
    width: min(118vw, 760px);
    max-width: 122%;
  }

  .access-animation[data-active-step="1"] .access-animation-camera,
  .access-animation[data-active-step="2"] .access-animation-camera,
  .access-animation[data-active-step="3"] .access-animation-camera {
    transform: translate3d(-4%, 3%, 0) scale(1.24);
  }

  .access-animation[data-active-step="4"] .access-animation-camera,
  .access-animation[data-active-step="5"] .access-animation-camera,
  .access-animation[data-active-step="6"] .access-animation-camera {
    transform: translate3d(0, -1%, 0) scale(1.12);
  }

  .access-anim-controller {
    left: -4%;
    top: 43%;
    width: min(58vw, 260px);
  }

  .access-animation[data-active-step="2"] .access-anim-controller {
    transform: translate3d(78px, -6px, 0) scale(0.42) rotate(0deg);
  }

  .access-anim-reader {
    width: 78px;
  }

  .access-anim-card {
    left: 8%;
    width: 92px;
    height: 58px;
  }

  .access-anim-software {
    top: 9%;
    right: 4%;
    width: min(230px, 56%);
    padding: 12px;
  }

  .access-anim-open-state {
    right: 6%;
    bottom: 19%;
    font-size: 0.78rem;
  }

  .access-scroll-hint {
    display: none;
  }
}

@media (max-width: 520px) {
  .access-decide-copy--animated h2 {
    font-size: clamp(1.36rem, 6.7vw, 1.86rem);
  }

  .access-decide-copy--animated .access-decide-lead,
  .access-decide-copy--animated .access-decide-note {
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .access-animation-visual {
    min-height: clamp(390px, 55svh, 500px);
  }

  .access-animation-final {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}

/* Access animation state guard: one primary scene visible per scroll step */
.access-animation-camera .access-anim-scene,
.access-animation-camera .access-anim-controller,
.access-animation-camera .access-anim-reader,
.access-animation-camera .access-anim-card,
.access-animation-camera .access-anim-signal,
.access-animation-camera .access-anim-software,
.access-animation-camera .access-anim-focus,
.access-animation-camera .access-anim-callout,
.access-animation-camera .access-anim-verdict,
.access-animation-camera .access-anim-open-state {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.access-animation-camera .access-anim-scene {
  z-index: 2;
}

.access-animation-camera .access-anim-controller,
.access-animation-camera .access-anim-reader {
  z-index: 5;
}

.access-animation-camera .access-anim-focus,
.access-animation-camera .access-anim-signal {
  z-index: 6;
}

.access-animation-camera .access-anim-card,
.access-animation-camera .access-anim-software,
.access-animation-camera .access-anim-callout,
.access-animation-camera .access-anim-verdict,
.access-animation-camera .access-anim-open-state {
  z-index: 8;
}

.access-animation-stage-caption,
.access-scroll-hint {
  z-index: 12;
}

.access-anim-scene--closed,
.access-anim-scene--base-open,
.access-anim-scene--controller-ready {
  top: 58%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: min(76vw, 880px);
  max-width: 88%;
  transform: translate3d(-50%, -50%, 0) scale(0.98);
  transform-origin: center center;
}

.access-anim-scene--reader-zone-empty,
.access-anim-scene--reader-zone-ready {
  top: 58%;
  left: 50%;
  width: min(88vw, 1120px);
  max-width: 94%;
  max-height: 82%;
  transform: translate3d(-50%, -50%, 0) scale(0.96);
  transform-origin: center center;
}

.access-animation[data-active-step="0"] .access-anim-scene--closed,
.access-animation[data-active-step="7"] .access-anim-scene--closed,
.access-animation[data-active-step="8"] .access-anim-scene--closed,
.access-animation[data-active-step="9"] .access-anim-scene--closed,
.access-animation[data-active-step="1"] .access-anim-scene--base-open,
.access-animation[data-active-step="2"] .access-anim-scene--base-open,
.access-animation[data-active-step="3"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="4"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="5"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="6"] .access-anim-scene--reader-zone-ready {
  visibility: visible;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.access-animation[data-active-step="2"] .access-anim-controller,
.access-animation[data-active-step="5"] .access-anim-reader--left,
.access-animation[data-active-step="5"] .access-anim-reader--right,
.access-animation[data-active-step="7"] .access-anim-card,
.access-animation[data-active-step="8"] .access-anim-card,
.access-animation[data-active-step="9"] .access-anim-card,
.access-animation[data-active-step="7"] .access-anim-signal--reader,
.access-animation[data-active-step="8"] .access-anim-signal--reader,
.access-animation[data-active-step="9"] .access-anim-signal--reader,
.access-animation[data-active-step="8"] .access-anim-signal--software,
.access-animation[data-active-step="9"] .access-anim-signal--software,
.access-animation[data-active-step="8"] .access-anim-software,
.access-animation[data-active-step="9"] .access-anim-software,
.access-animation[data-active-step="8"] .access-anim-verdict,
.access-animation[data-active-step="9"] .access-anim-verdict,
.access-animation[data-active-step="9"] .access-anim-open-state {
  visibility: visible;
  opacity: 1;
}

.access-animation[data-active-step="0"] .access-anim-scene--base-open,
.access-animation[data-active-step="0"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="0"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="0"] .access-anim-scene--reader-zone-ready,
.access-animation[data-active-step="1"] .access-anim-scene--closed,
.access-animation[data-active-step="1"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="1"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="1"] .access-anim-scene--reader-zone-ready,
.access-animation[data-active-step="2"] .access-anim-scene--closed,
.access-animation[data-active-step="2"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="2"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="2"] .access-anim-scene--reader-zone-ready,
.access-animation[data-active-step="3"] .access-anim-scene--closed,
.access-animation[data-active-step="3"] .access-anim-scene--base-open,
.access-animation[data-active-step="3"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="3"] .access-anim-scene--reader-zone-ready,
.access-animation[data-active-step="4"] .access-anim-scene--closed,
.access-animation[data-active-step="4"] .access-anim-scene--base-open,
.access-animation[data-active-step="4"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="4"] .access-anim-scene--reader-zone-ready,
.access-animation[data-active-step="5"] .access-anim-scene--closed,
.access-animation[data-active-step="5"] .access-anim-scene--base-open,
.access-animation[data-active-step="5"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="5"] .access-anim-scene--reader-zone-ready,
.access-animation[data-active-step="6"] .access-anim-scene--closed,
.access-animation[data-active-step="6"] .access-anim-scene--base-open,
.access-animation[data-active-step="6"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="6"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="7"] .access-anim-scene--base-open,
.access-animation[data-active-step="7"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="7"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="7"] .access-anim-scene--reader-zone-ready,
.access-animation[data-active-step="8"] .access-anim-scene--base-open,
.access-animation[data-active-step="8"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="8"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="8"] .access-anim-scene--reader-zone-ready,
.access-animation[data-active-step="9"] .access-anim-scene--base-open,
.access-animation[data-active-step="9"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="9"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="9"] .access-anim-scene--reader-zone-ready {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 860px) {
  .access-anim-scene--closed,
  .access-anim-scene--base-open,
  .access-anim-scene--controller-ready {
    width: min(96vw, 610px);
    max-width: 112%;
  }

  .access-anim-scene--reader-zone-empty,
  .access-anim-scene--reader-zone-ready {
    width: min(118vw, 760px);
    max-width: 122%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-animation-camera,
  .access-anim-img,
  .access-anim-module,
  .access-anim-card,
  .access-anim-signal,
  .access-anim-software,
  .access-anim-focus,
  .access-anim-callout,
  .access-anim-verdict,
  .access-anim-open-state,
  .access-animation-steps li {
    transition: none;
    animation: none;
  }

  .access-animation-visual::after,
  .access-anim-open-state {
    animation: none;
  }
}

/* Final alignment pass: keep the cinematic authorization scene inside a safe viewport area. */
.access-animation-visual {
  position: relative;
  overflow: hidden;
}

.access-animation-camera {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  will-change: transform;
  isolation: isolate;
}

.access-animation-stage-caption {
  z-index: 30;
  width: min(410px, 34vw);
  bottom: clamp(84px, 11vh, 128px);
  left: clamp(24px, 9vw, 210px);
}

.access-scroll-hint {
  z-index: 31;
  bottom: clamp(18px, 3.2vh, 34px);
}

.access-animation-camera .access-anim-scene,
.access-animation-camera .access-anim-controller,
.access-animation-camera .access-anim-reader,
.access-animation-camera .access-anim-card,
.access-animation-camera .access-anim-signal,
.access-animation-camera .access-anim-software,
.access-animation-camera .access-anim-focus,
.access-animation-camera .access-anim-callout,
.access-animation-camera .access-anim-verdict,
.access-animation-camera .access-anim-open-state {
  will-change: opacity, transform;
}

.access-anim-scene--closed,
.access-anim-scene--base-open,
.access-anim-scene--controller-ready {
  top: 50%;
  left: 52%;
  width: min(54vw, 710px);
  max-width: 74%;
  max-height: 74%;
  object-fit: contain;
  transform: translate3d(-50%, -50%, 0) scale(0.98);
}

.access-anim-scene--reader-zone-empty,
.access-anim-scene--reader-zone-ready {
  top: 52%;
  left: 50%;
  width: min(66vw, 940px);
  max-width: 78%;
  max-height: 70%;
  object-fit: contain;
  transform: translate3d(-50%, -50%, 0) scale(0.98);
}

.access-animation[data-active-step="1"] .access-animation-camera,
.access-animation[data-active-step="2"] .access-animation-camera,
.access-animation[data-active-step="3"] .access-animation-camera {
  transform: translate3d(-1.5%, -4%, 0) scale(1.04);
  transform-origin: 52% 68%;
}

.access-animation[data-active-step="4"] .access-animation-camera,
.access-animation[data-active-step="5"] .access-animation-camera,
.access-animation[data-active-step="6"] .access-animation-camera {
  transform: translate3d(0, -5%, 0) scale(1.02);
  transform-origin: 50% 35%;
}

.access-animation[data-active-step="7"] .access-animation-camera,
.access-animation[data-active-step="8"] .access-animation-camera,
.access-animation[data-active-step="9"] .access-animation-camera {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
}

.access-animation[data-active-step="0"] .access-anim-scene--closed,
.access-animation[data-active-step="7"] .access-anim-scene--closed,
.access-animation[data-active-step="8"] .access-anim-scene--closed,
.access-animation[data-active-step="9"] .access-anim-scene--closed,
.access-animation[data-active-step="1"] .access-anim-scene--base-open,
.access-animation[data-active-step="2"] .access-anim-scene--base-open,
.access-animation[data-active-step="3"] .access-anim-scene--controller-ready,
.access-animation[data-active-step="4"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="5"] .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="6"] .access-anim-scene--reader-zone-ready {
  visibility: visible;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.access-anim-controller {
  top: 45%;
  left: 22%;
  width: clamp(210px, 22vw, 340px);
  transform: translate3d(-42px, 56px, 0) scale(0.84) rotate(-6deg);
}

.access-animation[data-active-step="2"] .access-anim-controller {
  transform: translate3d(80px, 0, 0) scale(0.34) rotate(0deg);
}

.access-anim-reader {
  width: clamp(170px, 16vw, 260px);
}

.access-anim-reader--left {
  top: 25%;
  left: 21%;
  transform: translate3d(-210px, 42px, 0) scale(0.78) rotate(-8deg);
}

.access-anim-reader--right {
  top: 24%;
  right: 21%;
  transform: translate3d(210px, 42px, 0) scale(0.78) rotate(8deg);
}

.access-animation[data-active-step="5"] .access-anim-reader--left {
  transform: translate3d(230px, 18px, 0) scale(0.76) rotate(-2deg);
}

.access-animation[data-active-step="5"] .access-anim-reader--right {
  transform: translate3d(-230px, 18px, 0) scale(0.76) rotate(2deg);
}

.access-anim-card {
  top: 56%;
  left: clamp(260px, 31vw, 520px);
  width: clamp(98px, 9vw, 132px);
  height: clamp(58px, 5.5vw, 82px);
}

.access-animation[data-active-step="7"] .access-anim-card {
  transform: translate3d(22px, -20px, 0) rotate(-5deg) scale(1);
}

.access-animation[data-active-step="8"] .access-anim-card,
.access-animation[data-active-step="9"] .access-anim-card {
  transform: translate3d(26px, -22px, 0) rotate(2deg) scale(0.96);
}

.access-anim-signal--reader {
  left: clamp(380px, 41vw, 660px);
  right: clamp(390px, 31vw, 540px);
  top: 55%;
}

.access-anim-signal--software {
  left: clamp(520px, 49vw, 780px);
  right: clamp(260px, 18vw, 360px);
  top: 48%;
}

.access-anim-software {
  top: 22%;
  right: clamp(46px, 8vw, 140px);
  width: clamp(250px, 23vw, 330px);
}

.access-anim-callout--controller {
  left: clamp(58px, 9vw, 180px);
  bottom: clamp(34px, 8vh, 88px);
}

.access-anim-callout--readers {
  right: clamp(48px, 8vw, 160px);
  bottom: clamp(34px, 8vh, 88px);
}

.access-anim-verdict {
  top: 27%;
  left: clamp(44px, 10vw, 190px);
  max-width: 260px;
}

.access-anim-open-state {
  right: clamp(64px, 11vw, 200px);
  bottom: clamp(60px, 13vh, 130px);
}

@media (max-width: 1120px) {
  .access-animation-stage-caption {
    width: min(380px, 42vw);
    left: clamp(18px, 5vw, 72px);
    bottom: clamp(74px, 10vh, 104px);
  }

  .access-anim-scene--closed,
  .access-anim-scene--base-open,
  .access-anim-scene--controller-ready {
    width: min(64vw, 620px);
    max-width: 82%;
  }

  .access-anim-scene--reader-zone-empty,
  .access-anim-scene--reader-zone-ready {
    width: min(76vw, 760px);
    max-width: 86%;
  }

  .access-anim-card {
    left: clamp(110px, 22vw, 260px);
  }

  .access-anim-software {
    right: 28px;
    width: min(280px, 30vw);
  }

  .access-anim-verdict {
    left: 28px;
  }
}

@media (max-width: 860px) {
  .access-animation-visual {
    min-height: clamp(500px, 64svh, 650px);
  }

  .access-animation-stage-caption {
    left: 14px;
    right: 14px;
    bottom: 72px;
    width: auto;
  }

  .access-anim-scene--closed,
  .access-anim-scene--base-open,
  .access-anim-scene--controller-ready {
    top: 46%;
    left: 52%;
    width: min(82vw, 500px);
    max-width: 90%;
    max-height: 58%;
  }

  .access-anim-scene--reader-zone-empty,
  .access-anim-scene--reader-zone-ready {
    top: 43%;
    width: min(92vw, 580px);
    max-width: 96%;
    max-height: 54%;
  }

  .access-animation[data-active-step="1"] .access-animation-camera,
  .access-animation[data-active-step="2"] .access-animation-camera,
  .access-animation[data-active-step="3"] .access-animation-camera,
  .access-animation[data-active-step="4"] .access-animation-camera,
  .access-animation[data-active-step="5"] .access-animation-camera,
  .access-animation[data-active-step="6"] .access-animation-camera {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .access-anim-controller {
    left: 12%;
    width: min(42vw, 210px);
  }

  .access-animation[data-active-step="2"] .access-anim-controller {
    transform: translate3d(42px, -4px, 0) scale(0.4) rotate(0deg);
  }

  .access-anim-reader {
    width: 118px;
  }

  .access-anim-reader--left {
    left: 16%;
  }

  .access-anim-reader--right {
    right: 16%;
  }

  .access-animation[data-active-step="5"] .access-anim-reader--left {
    transform: translate3d(88px, 8px, 0) scale(0.68) rotate(-2deg);
  }

  .access-animation[data-active-step="5"] .access-anim-reader--right {
    transform: translate3d(-88px, 8px, 0) scale(0.68) rotate(2deg);
  }

  .access-anim-card {
    top: 46%;
    left: 8%;
  }

  .access-anim-software {
    top: 20%;
    right: 5%;
    width: min(230px, 56%);
    padding: 12px;
  }

  .access-anim-signal--reader,
  .access-anim-signal--software {
    display: none;
  }

  .access-anim-verdict {
    top: 22%;
    left: 5%;
    max-width: 190px;
  }

  .access-anim-open-state {
    right: 6%;
    bottom: 26%;
  }
}

.access-animation-camera .access-anim-focus,
.access-animation-camera .access-anim-callout {
  display: none !important;
}

.access-animation[data-active-step="2"] .access-animation-camera .access-anim-controller {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Precision pass: make installation modules read as deliberate scroll motion. */
.access-animation-stage-caption {
  bottom: clamp(148px, 20vh, 220px);
}

.access-animation-camera .access-anim-controller,
.access-animation-camera .access-anim-reader {
  z-index: 14;
  transition:
    opacity 420ms ease,
    transform 1120ms cubic-bezier(0.14, 0.88, 0.16, 1),
    filter 520ms ease;
}

.access-anim-controller {
  top: 58%;
  left: 50%;
  right: auto;
  width: clamp(300px, 29vw, 470px);
  transform: translate3d(28vw, -22vh, 0) scale(1.04) rotate(-4deg);
  transform-origin: center center;
  filter: drop-shadow(0 34px 44px rgba(0, 12, 34, 0.34));
}

.access-animation[data-active-step="2"] .access-animation-camera .access-anim-controller {
  top: 58%;
  left: 50%;
  right: auto;
  width: clamp(300px, 29vw, 470px);
  transform: translate3d(-48%, -43%, 0) scale(0.24) rotate(0deg);
  filter: drop-shadow(0 14px 18px rgba(0, 12, 34, 0.24));
}

.access-animation[data-active-step="2"] .access-animation-camera {
  transform: translate3d(-1%, -2%, 0) scale(1.02);
  transform-origin: 54% 66%;
}

.access-anim-reader {
  width: clamp(145px, 13.6vw, 220px);
  z-index: 15;
  filter: drop-shadow(0 22px 28px rgba(0, 12, 34, 0.28));
}

.access-anim-reader--left {
  top: 21%;
  left: 24%;
  transform: translate3d(-250px, 54px, 0) scale(0.86) rotate(-8deg);
}

.access-anim-reader--right {
  top: 20%;
  right: 24%;
  transform: translate3d(250px, 54px, 0) scale(0.86) rotate(8deg);
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--left {
  transform: translate3d(188px, -8px, 0) scale(0.58) rotate(-2deg);
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--right {
  transform: translate3d(-188px, -8px, 0) scale(0.58) rotate(2deg);
}

.access-animation[data-active-step="5"] .access-animation-camera {
  transform: translate3d(0, -3%, 0) scale(1.01);
  transform-origin: 50% 36%;
}

.access-anim-card {
  top: 17%;
  left: clamp(160px, 16vw, 240px);
  width: clamp(180px, 15.8vw, 252px);
  height: clamp(112px, 9.4vw, 150px);
  padding: clamp(16px, 1.5vw, 22px);
  place-items: stretch;
  align-content: center;
  color: #071a42;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 247, 255, 0.94) 58%, rgba(216, 234, 255, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  box-shadow:
    0 24px 48px rgba(0, 12, 34, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform-origin: 72% 50%;
}

.access-anim-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(7, 91, 232, 0.12);
  border-radius: 10px;
  content: "";
}

.access-anim-card::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 32%;
  height: 3px;
  background: linear-gradient(90deg, rgba(7, 91, 232, 0), rgba(7, 91, 232, 0.72));
  border-radius: 999px;
  content: "";
}

.access-anim-card span {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: start;
  font-size: clamp(1.02rem, 1.45vw, 1.46rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.access-anim-card span::before {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 8px rgba(7, 91, 232, 0.12);
}

.access-anim-card span::after {
  display: block;
  color: rgba(7, 26, 66, 0.52);
  font-size: 0.58em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  content: "Credencial";
}

.access-animation[data-active-step="7"] .access-animation-camera .access-anim-card {
  transform:
    translate3d(
      calc(var(--access-step-progress, 0) * 270px),
      calc(var(--access-step-progress, 0) * 28px),
      0
    )
    rotate(calc(-5deg + (var(--access-step-progress, 0) * 6deg)))
    scale(calc(1 - (var(--access-step-progress, 0) * 0.42)));
}

.access-animation[data-active-step="7"] .access-animation-camera .access-anim-card,
.access-animation[data-active-step="8"] .access-animation-camera .access-anim-card,
.access-animation[data-active-step="9"] .access-animation-camera .access-anim-card {
  transform:
    translate3d(
      calc(var(--access-card-progress, 0) * 270px),
      calc(var(--access-card-progress, 0) * 28px),
      0
    )
    rotate(calc(-5deg + (var(--access-card-progress, 0) * 6deg)))
    scale(calc(1 - (var(--access-card-progress, 0) * 0.42)));
}

@media (max-width: 860px) {
  .access-animation-stage-caption {
    bottom: clamp(96px, 13svh, 132px);
  }

  .access-anim-controller {
    top: 58%;
    left: 50%;
    width: min(66vw, 290px);
    transform: translate3d(34vw, -18vh, 0) scale(1) rotate(-4deg);
  }

  .access-animation[data-active-step="2"] .access-animation-camera .access-anim-controller {
    top: 58%;
    left: 50%;
    width: min(66vw, 290px);
    transform: translate3d(-46%, -40%, 0) scale(0.28) rotate(0deg);
  }

  .access-anim-reader {
    width: min(35vw, 150px);
  }

  .access-anim-reader--left {
    top: 22%;
    left: 18%;
    transform: translate3d(-120px, 34px, 0) scale(0.84) rotate(-8deg);
  }

  .access-anim-reader--right {
    top: 21%;
    right: 18%;
    transform: translate3d(120px, 34px, 0) scale(0.84) rotate(8deg);
  }

  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--left {
    transform: translate3d(76px, -4px, 0) scale(0.56) rotate(-2deg);
  }

  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--right {
    transform: translate3d(-76px, -4px, 0) scale(0.56) rotate(2deg);
  }

  .access-anim-card {
    top: 20%;
    left: 8%;
    width: min(48vw, 190px);
    height: min(28vw, 116px);
    padding: 14px;
  }

  .access-anim-card span {
    font-size: 0.96rem;
  }

  .access-animation[data-active-step="7"] .access-animation-camera .access-anim-card {
    transform:
      translate3d(
        calc(var(--access-step-progress, 0) * 106px),
        calc(var(--access-step-progress, 0) * 58px),
        0
      )
      rotate(calc(-5deg + (var(--access-step-progress, 0) * 6deg)))
      scale(calc(1 - (var(--access-step-progress, 0) * 0.42)));
  }

  .access-animation[data-active-step="7"] .access-animation-camera .access-anim-card,
  .access-animation[data-active-step="8"] .access-animation-camera .access-anim-card,
  .access-animation[data-active-step="9"] .access-animation-camera .access-anim-card {
    transform:
      translate3d(
        calc(var(--access-card-progress, 0) * 106px),
        calc(var(--access-card-progress, 0) * 58px),
        0
      )
      rotate(calc(-5deg + (var(--access-card-progress, 0) * 6deg)))
      scale(calc(1 - (var(--access-card-progress, 0) * 0.42)));
  }
}

/* Final RFID/software routing: card stops near the reader, then signals route through the controller to software. */
@keyframes accessSignalFlowVertical {
  0% { background-position: 0 150%; }
  100% { background-position: 0 -60%; }
}

.access-animation-camera .access-anim-card {
  transition: opacity 180ms ease;
}

.access-animation[data-active-step="8"] .access-animation-camera .access-anim-card,
.access-animation[data-active-step="9"] .access-animation-camera .access-anim-card {
  transform: translate3d(270px, -18px, 0) rotate(1deg) scale(0.58);
}

.access-animation[data-active-step="8"] .access-animation-camera .access-anim-signal--reader,
.access-animation[data-active-step="9"] .access-animation-camera .access-anim-signal--reader {
  top: 37%;
  left: 53%;
  right: auto;
  width: 4px;
  height: 17%;
  background: linear-gradient(180deg, rgba(7, 91, 232, 0), rgba(7, 91, 232, 0.95), rgba(16, 185, 129, 0.96), rgba(7, 91, 232, 0));
  background-size: 100% 180%;
  transform: scaleY(1);
  transform-origin: top center;
  animation: accessSignalFlowVertical 1120ms linear infinite;
}

.access-animation[data-active-step="8"] .access-animation-camera .access-anim-signal--software,
.access-animation[data-active-step="9"] .access-animation-camera .access-anim-signal--software {
  top: 54%;
  left: 53%;
  right: clamp(360px, 31vw, 520px);
  width: auto;
  height: 4px;
  transform: scaleX(1);
  transform-origin: left center;
}

.access-animation[data-active-step="8"] .access-animation-camera .access-anim-verdict,
.access-animation[data-active-step="9"] .access-animation-camera .access-anim-verdict {
  top: calc(22% + clamp(178px, 15vw, 220px));
  right: clamp(46px, 8vw, 140px);
  left: auto;
  width: clamp(250px, 23vw, 330px);
  max-width: clamp(250px, 23vw, 330px);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 860px) {
  .access-animation[data-active-step="8"] .access-animation-camera .access-anim-card,
  .access-animation[data-active-step="9"] .access-animation-camera .access-anim-card {
    transform: translate3d(106px, 38px, 0) rotate(1deg) scale(0.58);
  }

  .access-animation[data-active-step="8"] .access-animation-camera .access-anim-signal--reader,
  .access-animation[data-active-step="9"] .access-animation-camera .access-anim-signal--reader {
    top: 41%;
    left: 54%;
    height: 16%;
  }

  .access-animation[data-active-step="8"] .access-animation-camera .access-anim-signal--software,
  .access-animation[data-active-step="9"] .access-animation-camera .access-anim-signal--software {
    top: 57%;
    left: 54%;
    right: 7%;
  }

  .access-animation[data-active-step="8"] .access-animation-camera .access-anim-verdict,
  .access-animation[data-active-step="9"] .access-animation-camera .access-anim-verdict {
    top: 56%;
    right: 5%;
    width: min(230px, 56%);
    max-width: min(230px, 56%);
  }
}

/* Tripod alignment and top-cover frame pass. Keep the hardware visually anchored between scene swaps. */
.access-animation-camera .access-anim-scene {
  transition:
    opacity 220ms ease,
    filter 320ms ease;
}

.access-animation-camera .access-anim-scene--closed,
.access-animation-camera .access-anim-scene--base-open,
.access-animation-camera .access-anim-scene--controller-ready {
  top: 40%;
  left: 51%;
  width: min(52vw, 690px);
  max-width: 74%;
  max-height: 68%;
  object-fit: contain;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transform-origin: center center;
}

.access-animation[data-active-step="0"] .access-animation-camera .access-anim-scene--closed,
.access-animation[data-active-step="1"] .access-animation-camera .access-anim-scene--base-open,
.access-animation[data-active-step="2"] .access-animation-camera .access-anim-scene--base-open,
.access-animation[data-active-step="3"] .access-animation-camera .access-anim-scene--controller-ready,
.access-animation[data-active-step="7"] .access-animation-camera .access-anim-scene--closed,
.access-animation[data-active-step="8"] .access-animation-camera .access-anim-scene--closed,
.access-animation[data-active-step="9"] .access-animation-camera .access-anim-scene--closed {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.access-animation-camera .access-anim-scene--top-closed,
.access-animation-camera .access-anim-scene--top-opening,
.access-animation-camera .access-anim-scene--top-open {
  top: 40%;
  left: 50%;
  width: min(70vw, 960px);
  max-width: 86%;
  max-height: 68%;
  object-fit: contain;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transform-origin: center center;
  filter: drop-shadow(0 34px 46px rgba(0, 12, 34, 0.3));
}

.access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--reader-zone-empty {
  visibility: hidden;
  opacity: 0;
}

.access-animation[data-active-step="4"][data-top-frame="0"] .access-animation-camera .access-anim-scene--top-closed,
.access-animation[data-active-step="4"][data-top-frame="1"] .access-animation-camera .access-anim-scene--top-opening,
.access-animation[data-active-step="4"][data-top-frame="2"] .access-animation-camera .access-anim-scene--top-open {
  visibility: visible;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.access-animation[data-active-step="4"] .access-animation-camera,
.access-animation[data-active-step="5"] .access-animation-camera,
.access-animation[data-active-step="6"] .access-animation-camera {
  transform: translate3d(0, -3%, 0) scale(1.01);
  transform-origin: 50% 43%;
}

.access-animation-camera .access-anim-scene--reader-zone-empty,
.access-animation-camera .access-anim-scene--reader-zone-ready {
  top: 40%;
  left: 50%;
  width: min(72vw, 980px);
  max-width: 88%;
  max-height: 68%;
  object-fit: contain;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transform-origin: center center;
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-scene--reader-zone-empty,
.access-animation[data-active-step="6"] .access-animation-camera .access-anim-scene--reader-zone-ready {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

@media (max-width: 860px) {
  .access-animation-camera .access-anim-scene--closed,
  .access-animation-camera .access-anim-scene--base-open,
  .access-animation-camera .access-anim-scene--controller-ready {
    top: 35%;
    left: 51%;
    width: min(84vw, 500px);
    max-width: 90%;
    max-height: 50%;
  }

  .access-animation-camera .access-anim-scene--top-closed,
  .access-animation-camera .access-anim-scene--top-opening,
  .access-animation-camera .access-anim-scene--top-open,
  .access-animation-camera .access-anim-scene--reader-zone-empty,
  .access-animation-camera .access-anim-scene--reader-zone-ready {
    top: 34%;
    left: 50%;
    width: min(96vw, 620px);
    max-width: 98%;
    max-height: 50%;
  }
}

/* Stable camera for full-tripod swaps: the object changes state, but the chassis stays anchored. */
.access-animation[data-active-step="0"] .access-animation-camera,
.access-animation[data-active-step="1"] .access-animation-camera,
.access-animation[data-active-step="2"] .access-animation-camera,
.access-animation[data-active-step="3"] .access-animation-camera,
.access-animation[data-active-step="7"] .access-animation-camera,
.access-animation[data-active-step="8"] .access-animation-camera,
.access-animation[data-active-step="9"] .access-animation-camera {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 51% 54%;
}

@media (max-width: 860px) {
  .access-animation[data-active-step="0"] .access-animation-camera,
  .access-animation[data-active-step="1"] .access-animation-camera,
  .access-animation[data-active-step="2"] .access-animation-camera,
  .access-animation[data-active-step="3"] .access-animation-camera,
  .access-animation[data-active-step="7"] .access-animation-camera,
  .access-animation[data-active-step="8"] .access-animation-camera,
  .access-animation[data-active-step="9"] .access-animation-camera {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Continuity pass: compress scroll effort and let small hardware actions play inside a single step. */
@keyframes accessTopCoverClosed {
  0%, 28% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  44%, 100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.012);
  }
}

@keyframes accessTopCoverOpening {
  0%, 20% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.992);
  }
  38%, 66% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  82%, 100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.01);
  }
}

@keyframes accessTopCoverOpen {
  0%, 58% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.994);
  }
  76%, 100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

.access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-closed,
.access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-opening,
.access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-open {
  visibility: visible;
}

.access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-closed {
  animation: accessTopCoverClosed 1450ms cubic-bezier(0.18, 0.86, 0.24, 1) both;
}

.access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-opening {
  animation: accessTopCoverOpening 1450ms cubic-bezier(0.18, 0.86, 0.24, 1) both;
}

.access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-open {
  animation: accessTopCoverOpen 1450ms cubic-bezier(0.18, 0.86, 0.24, 1) both;
}

.access-animation[data-active-step="4"] .access-animation-camera,
.access-animation[data-active-step="5"] .access-animation-camera,
.access-animation[data-active-step="6"] .access-animation-camera {
  transform: translate3d(0, -2.4%, 0) scale(1.025);
  transform-origin: 50% 40%;
}

.access-animation[data-active-step="7"] .access-animation-camera {
  transform: translate3d(0, -0.8%, 0) scale(1.012);
  transform-origin: 51% 44%;
}

.access-animation[data-active-step="8"] .access-animation-camera,
.access-animation[data-active-step="9"] .access-animation-camera {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 51% 44%;
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--left,
.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--right {
  transition:
    opacity 280ms ease,
    transform 980ms cubic-bezier(0.13, 0.88, 0.18, 1),
    filter 420ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-closed,
  .access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-opening,
  .access-animation[data-active-step="4"] .access-animation-camera .access-anim-scene--top-open {
    animation: none;
  }
}

/* UX continuity pass: shorter scroll, more cinematic in-step motion. */
@keyframes accessControllerInstall {
  0% {
    opacity: 0;
    transform: translate3d(34vw, -42vh, 0) scale(1.04) rotate(-5deg);
    filter: drop-shadow(0 38px 48px rgba(0, 12, 34, 0.34));
  }
  18% {
    opacity: 1;
  }
  64% {
    opacity: 1;
    transform: translate3d(10vw, -25vh, 0) scale(0.58) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(-48%, -54%, 0) scale(0.24) rotate(0deg);
    filter: drop-shadow(0 14px 18px rgba(0, 12, 34, 0.24));
  }
}

@keyframes accessReaderInstallLeft {
  0% {
    opacity: 0;
    transform: translate3d(-310px, 22px, 0) scale(1.08) rotate(-10deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(188px, -8px, 0) scale(0.58) rotate(-2deg);
  }
}

@keyframes accessReaderInstallRight {
  0% {
    opacity: 0;
    transform: translate3d(310px, 22px, 0) scale(1.08) rotate(10deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(-188px, -8px, 0) scale(0.58) rotate(2deg);
  }
}

@keyframes accessRfidCardPresent {
  0% {
    opacity: 0;
    transform: translate3d(-28px, 20px, 0) rotate(-9deg) scale(1.06);
  }
  16% {
    opacity: 1;
    transform: translate3d(-28px, 20px, 0) rotate(-9deg) scale(1.06);
  }
  100% {
    opacity: 1;
    transform: translate3d(270px, -18px, 0) rotate(1deg) scale(0.58);
  }
}

.access-animation-camera .access-anim-scene {
  object-position: center center;
  transition:
    opacity 360ms ease,
    filter 420ms ease;
}

.access-animation-stage-caption {
  bottom: clamp(156px, 22svh, 214px);
}

.access-animation[data-active-step="2"] .access-animation-camera .access-anim-controller {
  animation: accessControllerInstall 1350ms cubic-bezier(0.14, 0.9, 0.18, 1) both;
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--left {
  animation: accessReaderInstallLeft 1180ms cubic-bezier(0.13, 0.88, 0.18, 1) both;
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--right {
  animation: accessReaderInstallRight 1180ms cubic-bezier(0.13, 0.88, 0.18, 1) both;
}

.access-animation[data-active-step="7"] .access-animation-camera .access-anim-card {
  animation: accessRfidCardPresent 1320ms cubic-bezier(0.15, 0.9, 0.16, 1) both;
}

.access-animation[data-active-step="8"] .access-animation-camera .access-anim-card,
.access-animation[data-active-step="9"] .access-animation-camera .access-anim-card {
  transform: translate3d(270px, -18px, 0) rotate(1deg) scale(0.58);
}

.access-animation[data-active-step="4"] .access-animation-camera,
.access-animation[data-active-step="5"] .access-animation-camera,
.access-animation[data-active-step="6"] .access-animation-camera {
  transform: translate3d(0, -1.6%, 0) scale(1.018);
}

.access-animation[data-active-step="8"] .access-animation-camera,
.access-animation[data-active-step="9"] .access-animation-camera {
  transform: translate3d(0, -0.4%, 0) scale(1.006);
}

.access-animation[data-active-step="9"] .access-animation-camera .access-anim-open-state {
  bottom: clamp(72px, 11svh, 118px);
}

@media (max-width: 860px) {
  .access-animation-stage-caption {
    bottom: clamp(96px, 17svh, 132px);
  }

  .access-animation[data-active-step="2"] .access-animation-camera .access-anim-controller {
    animation: none;
    transform: translate3d(-46%, -40%, 0) scale(0.28) rotate(0deg);
  }

  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--left,
  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--right,
  .access-animation[data-active-step="7"] .access-animation-camera .access-anim-card {
    animation-duration: 820ms;
  }

  .access-animation[data-active-step="8"] .access-animation-camera .access-anim-card,
  .access-animation[data-active-step="9"] .access-animation-camera .access-anim-card {
    transform: translate3d(106px, 38px, 0) rotate(1deg) scale(0.58);
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-animation[data-active-step="2"] .access-animation-camera .access-anim-controller,
  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--left,
  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--right,
  .access-animation[data-active-step="7"] .access-animation-camera .access-anim-card {
    animation: none;
  }
}

/* Controller handoff: the base step now installs the controller automatically, then hands off to the installed frame. */
@keyframes accessControllerAutoInstall {
  0% {
    opacity: 0;
    transform: translate3d(34vw, -28vh, 0) scale(1.06) rotate(-5deg);
    filter: drop-shadow(0 38px 54px rgba(0, 12, 34, 0.34));
  }
  14% {
    opacity: 1;
  }
  58% {
    opacity: 1;
    transform: translate3d(13vw, -20vh, 0) scale(0.58) rotate(-1deg);
  }
  82% {
    opacity: 1;
    transform: translate3d(-50%, -63%, 0) scale(0.215) rotate(0deg);
    filter: drop-shadow(0 14px 18px rgba(0, 12, 34, 0.24));
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, -63%, 0) scale(0.215) rotate(0deg);
    filter: drop-shadow(0 10px 14px rgba(0, 12, 34, 0.18));
  }
}

@keyframes accessBaseOpenAutoFade {
  0%, 72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes accessControllerReadyAutoFade {
  0%, 68% {
    opacity: 0;
    filter: blur(2px) saturate(0.94);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

.access-animation[data-active-step="1"] .access-animation-camera .access-anim-controller {
  visibility: visible !important;
  top: 56%;
  left: 50%;
  width: clamp(320px, 31vw, 500px);
  animation: accessControllerAutoInstall 1650ms cubic-bezier(0.14, 0.88, 0.16, 1) both;
}

.access-animation[data-active-step="1"] .access-animation-camera .access-anim-scene--base-open {
  animation: accessBaseOpenAutoFade 1650ms ease both;
}

.access-animation[data-active-step="1"] .access-animation-camera .access-anim-scene--controller-ready {
  visibility: visible !important;
  opacity: 0;
  animation: accessControllerReadyAutoFade 1650ms ease both;
}

.access-animation[data-active-step="2"] .access-animation-camera .access-anim-scene--base-open {
  visibility: hidden !important;
  opacity: 0 !important;
}

.access-animation[data-active-step="2"] .access-animation-camera .access-anim-scene--controller-ready {
  visibility: visible !important;
  opacity: 1 !important;
}

.access-animation[data-active-step="2"] .access-animation-camera .access-anim-controller {
  visibility: hidden !important;
  opacity: 0 !important;
  animation: none !important;
}

@media (max-width: 860px) {
  .access-animation[data-active-step="1"] .access-animation-camera .access-anim-controller {
    width: min(68vw, 300px);
    animation-duration: 1280ms;
  }

  .access-animation[data-active-step="1"] .access-animation-camera .access-anim-scene--base-open,
  .access-animation[data-active-step="1"] .access-animation-camera .access-anim-scene--controller-ready {
    animation-duration: 1280ms;
  }
}

/* Reader handoff: show larger readers slightly higher, then hand off to the installed-reader frame. */
@keyframes accessReaderInstallLeftLarge {
  0% {
    opacity: 0;
    transform: translate3d(-214px, -60px, 0) scale(1.24) rotate(-10deg);
  }
  16% {
    opacity: 1;
  }
  52% {
    opacity: 1;
    transform: translate3d(-214px, -60px, 0) scale(1.24) rotate(-10deg);
  }
  80% {
    opacity: 1;
    transform: translate3d(124px, -76px, 0) scale(0.76) rotate(-3deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(124px, -76px, 0) scale(0.76) rotate(-3deg);
  }
}

@keyframes accessReaderInstallRightLarge {
  0% {
    opacity: 0;
    transform: translate3d(110px, -60px, 0) scale(1.24) rotate(10deg);
  }
  16% {
    opacity: 1;
  }
  52% {
    opacity: 1;
    transform: translate3d(110px, -60px, 0) scale(1.24) rotate(10deg);
  }
  80% {
    opacity: 1;
    transform: translate3d(-90px, -62px, 0) scale(0.76) rotate(3deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-90px, -62px, 0) scale(0.76) rotate(3deg);
  }
}

@keyframes accessReaderEmptyAutoFade {
  0%, 78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes accessReaderReadyAutoFade {
  0%, 76% {
    opacity: 0;
    filter: blur(2px) saturate(0.94);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader {
  width: clamp(196px, 16.8vw, 272px);
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--left {
  visibility: visible !important;
  animation: accessReaderInstallLeftLarge 1380ms cubic-bezier(0.13, 0.88, 0.18, 1) both;
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--right {
  visibility: visible !important;
  animation: accessReaderInstallRightLarge 1380ms cubic-bezier(0.13, 0.88, 0.18, 1) both;
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-scene--reader-zone-empty {
  animation: accessReaderEmptyAutoFade 1380ms ease both;
}

.access-animation[data-active-step="5"] .access-animation-camera .access-anim-scene--reader-zone-ready {
  visibility: visible !important;
  opacity: 0;
  animation: accessReaderReadyAutoFade 1380ms ease both;
}

@media (max-width: 860px) {
  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader {
    width: min(44vw, 190px);
  }

  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--left,
  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-reader--right,
  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-scene--reader-zone-empty,
  .access-animation[data-active-step="5"] .access-animation-camera .access-anim-scene--reader-zone-ready {
    animation-duration: 1080ms;
  }
}

/* Auto authorization story: six business steps, no scroll-driven pinning. */
.access-decide-section--animated {
  min-height: auto;
}

.access-decide-section--animated .access-decide-stage {
  position: relative;
  top: auto;
}

.access-animation[data-mode="auto"] {
  --access-progress: 1;
  --access-step-progress: 1;
  --access-card-progress: 1;
}

.access-animation[data-mode="auto"] .access-animation-visual {
  min-height: clamp(600px, 72svh, 820px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 67%, rgba(138, 198, 255, 0.48), transparent 25%),
    radial-gradient(circle at 72% 24%, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(60, 130, 226, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(60, 130, 226, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #061632 0%, #082649 100%);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.access-animation[data-mode="auto"] .access-scroll-hint {
  display: none;
}

.access-animation[data-mode="auto"] .access-animation-stage-caption {
  top: auto;
  bottom: clamp(28px, 5svh, 58px);
  left: clamp(22px, 10vw, 260px);
  z-index: 12;
  width: min(410px, 46vw);
  color: #ffffff;
  background: rgba(4, 19, 42, 0.76);
  border-color: rgba(117, 180, 255, 0.18);
  box-shadow: 0 24px 56px rgba(0, 12, 34, 0.25);
}

.access-animation[data-mode="auto"] .access-animation-stage-caption span {
  color: #72d7ff;
}

.access-animation[data-mode="auto"] .access-animation-stage-caption strong {
  color: #ffffff;
}

.access-animation[data-mode="auto"] .access-animation-stage-caption p {
  color: rgba(235, 246, 255, 0.9);
}

.access-animation[data-mode="auto"] .access-animation-camera {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 50% 52%;
}

.access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-controller,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-reader,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-card,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-signal,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-software,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-verdict,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-open-state {
  opacity: 0;
  visibility: hidden !important;
  animation: none;
}

.access-animation[data-mode="auto"] .access-animation-camera .access-anim-focus,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-callout {
  display: none;
}

.access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--closed,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--base-open,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--controller-ready {
  top: 49%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: min(48vw, 630px);
  max-width: 74%;
  max-height: 73%;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--reader-zone-empty,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--reader-zone-ready {
  top: 52%;
  left: 50%;
  width: min(68vw, 930px);
  max-width: 86%;
  max-height: 74%;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.access-animation[data-mode="auto"][data-active-step="0"] .access-animation-camera .access-anim-scene--closed,
.access-animation[data-mode="auto"][data-active-step="3"] .access-animation-camera .access-anim-scene--closed,
.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-scene--closed,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-scene--closed {
  opacity: 1 !important;
  visibility: visible !important;
}

.access-animation[data-mode="auto"][data-active-step="1"] .access-animation-camera .access-anim-scene--base-open {
  visibility: visible !important;
  animation: accessBaseOpenAutoFade 1700ms ease both;
}

.access-animation[data-mode="auto"][data-active-step="1"] .access-animation-camera .access-anim-scene--controller-ready {
  visibility: visible !important;
  animation: accessControllerReadyAutoFade 1700ms ease both;
}

.access-animation[data-mode="auto"][data-active-step="1"] .access-animation-camera .access-anim-controller {
  top: 55%;
  left: 50%;
  width: clamp(320px, 30vw, 500px);
  visibility: visible !important;
  animation: accessControllerAutoInstall 1700ms cubic-bezier(0.14, 0.88, 0.16, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera {
  transform: translate3d(0, -1.5%, 0) scale(1.02);
  transform-origin: 50% 42%;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--reader-zone-empty {
  visibility: visible !important;
  animation: accessReaderEmptyAutoFade 1500ms ease both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--reader-zone-ready {
  visibility: visible !important;
  animation: accessReaderReadyAutoFade 1500ms ease both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-reader {
  width: clamp(210px, 17vw, 286px);
  visibility: visible !important;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-reader--left {
  animation: accessReaderInstallLeftLarge 1500ms cubic-bezier(0.13, 0.88, 0.18, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-reader--right {
  animation: accessReaderInstallRightLarge 1500ms cubic-bezier(0.13, 0.88, 0.18, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="3"] .access-animation-camera .access-anim-card {
  visibility: visible !important;
  animation: accessRfidCardPresent 1450ms cubic-bezier(0.15, 0.9, 0.16, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-card,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(270px, -18px, 0) rotate(1deg) scale(0.58);
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-software,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-software {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal {
  opacity: 1 !important;
  visibility: visible !important;
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-verdict,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-verdict {
  opacity: 1 !important;
  visibility: visible !important;
  right: clamp(46px, 10vw, 180px);
  top: calc(clamp(146px, 27%, 220px) + 172px);
  left: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-open-state {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) scale(1);
}

.access-animation[data-mode="auto"][data-active-step="3"] .access-animation-camera .access-anim-scene--top-closed,
.access-animation[data-mode="auto"][data-active-step="3"] .access-animation-camera .access-anim-scene--top-opening,
.access-animation[data-mode="auto"][data-active-step="3"] .access-animation-camera .access-anim-scene--top-open,
.access-animation[data-mode="auto"][data-active-step="3"] .access-animation-camera .access-anim-scene--reader-zone-empty,
.access-animation[data-mode="auto"][data-active-step="3"] .access-animation-camera .access-anim-scene--reader-zone-ready,
.access-animation[data-mode="auto"][data-active-step="3"] .access-animation-camera .access-anim-reader {
  opacity: 0 !important;
  visibility: hidden !important;
  animation: none !important;
  transition: none !important;
}

@media (max-width: 860px) {
  .access-decide-section--animated .access-decide-stage {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .access-animation[data-mode="auto"] .access-animation-visual {
    min-height: clamp(560px, 78svh, 720px);
  }

  .access-animation[data-mode="auto"] .access-animation-stage-caption {
    bottom: 18px;
    left: 14px;
    width: calc(100% - 28px);
  }

  .access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--closed,
  .access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--base-open,
  .access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--controller-ready {
    top: 42%;
    width: min(82vw, 440px);
    max-height: 54%;
  }

  .access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--reader-zone-empty,
  .access-animation[data-mode="auto"] .access-animation-camera .access-anim-scene--reader-zone-ready {
    top: 41%;
    width: min(96vw, 560px);
    max-height: 52%;
  }

  .access-animation[data-mode="auto"][data-active-step="1"] .access-animation-camera .access-anim-controller {
    width: min(66vw, 290px);
  }

  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-reader {
    width: min(46vw, 190px);
  }

  .access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-card,
  .access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-card {
    transform: translate3d(106px, 38px, 0) rotate(1deg) scale(0.58);
  }
}

/* Auto reader sequence: top cover opens before the readers are installed. */
@keyframes accessAutoTopCoverClosed {
  0%, 22% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  34%, 100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.012);
  }
}

@keyframes accessAutoTopCoverOpening {
  0%, 18% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.994);
  }
  30%, 54% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  66%, 100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.01);
  }
}

@keyframes accessAutoTopCoverOpen {
  0%, 52% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.996);
  }
  64%, 84% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.006);
  }
}

@keyframes accessAutoReaderEmpty {
  0%, 50% {
    opacity: 0;
    filter: blur(2px) saturate(0.94);
  }
  58%, 78% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
  100% {
    opacity: 0;
    filter: blur(1px) saturate(0.96);
  }
}

@keyframes accessAutoReaderReady {
  0%, 86% {
    opacity: 0;
    filter: blur(2px) saturate(0.94);
  }
  96%, 100% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

@keyframes accessAutoReaderInstallLeft {
  0%, 62% {
    opacity: 0;
    transform: translate3d(-214px, -82px, 0) scale(1.28) rotate(-10deg);
  }
  70%, 78% {
    opacity: 1;
    transform: translate3d(-214px, -82px, 0) scale(1.28) rotate(-10deg);
  }
  92% {
    opacity: 1;
    transform: translate3d(124px, -86px, 0) scale(0.76) rotate(-3deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(124px, -86px, 0) scale(0.76) rotate(-3deg);
  }
}

@keyframes accessAutoReaderInstallRight {
  0%, 62% {
    opacity: 0;
    transform: translate3d(110px, -82px, 0) scale(1.28) rotate(10deg);
  }
  70%, 78% {
    opacity: 1;
    transform: translate3d(110px, -82px, 0) scale(1.28) rotate(10deg);
  }
  92% {
    opacity: 1;
    transform: translate3d(-90px, -72px, 0) scale(0.76) rotate(3deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-90px, -72px, 0) scale(0.76) rotate(3deg);
  }
}

@keyframes accessAutoSignalVertical {
  0% {
    opacity: 0;
    transform: scaleY(0);
    filter: saturate(0.8);
  }
  18% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    transform: scaleY(1);
    filter: saturate(1.15);
  }
  100% {
    opacity: 0.92;
    transform: scaleY(1);
    filter: saturate(1);
  }
}

@keyframes accessAutoSignalHorizontal {
  0% {
    opacity: 0;
    transform: scaleX(0);
    filter: saturate(0.8);
  }
  18% {
    opacity: 1;
  }
  74% {
    opacity: 1;
    transform: scaleX(1);
    filter: saturate(1.18);
  }
  100% {
    opacity: 0.95;
    transform: scaleX(1);
    filter: saturate(1);
  }
}

@keyframes accessAutoSignalPulse {
  0%, 100% {
    box-shadow: 0 0 18px rgba(7, 91, 232, 0.34);
  }
  50% {
    box-shadow: 0 0 26px rgba(16, 185, 129, 0.48);
  }
}

@keyframes accessAutoReaderEmptyAfterTop {
  0% {
    opacity: 0;
    filter: blur(2px) saturate(0.94);
  }
  12%, 88% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
  100% {
    opacity: 0;
    filter: blur(1px) saturate(0.96);
  }
}

@keyframes accessAutoReaderReadyAfterTop {
  0% {
    opacity: 0;
    filter: blur(2px) saturate(0.94);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

@keyframes accessAutoReaderInstallLeftAfterTop {
  0% {
    opacity: 0;
    transform: translate3d(-214px, -82px, 0) scale(1.28) rotate(-10deg);
  }
  14%, 46% {
    opacity: 1;
    transform: translate3d(-214px, -82px, 0) scale(1.28) rotate(-10deg);
  }
  88% {
    opacity: 1;
    transform: translate3d(124px, -86px, 0) scale(0.76) rotate(-3deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(124px, -86px, 0) scale(0.76) rotate(-3deg);
  }
}

@keyframes accessAutoReaderInstallRightAfterTop {
  0% {
    opacity: 0;
    transform: translate3d(110px, -82px, 0) scale(1.28) rotate(10deg);
  }
  14%, 46% {
    opacity: 1;
    transform: translate3d(110px, -82px, 0) scale(1.28) rotate(10deg);
  }
  88% {
    opacity: 1;
    transform: translate3d(-90px, -72px, 0) scale(0.76) rotate(3deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-90px, -72px, 0) scale(0.76) rotate(3deg);
  }
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-closed,
.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-opening,
.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-open {
  top: 50%;
  left: 50%;
  width: min(70vw, 960px);
  max-width: 88%;
  max-height: 74%;
  visibility: visible !important;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-closed {
  animation: accessAutoTopCoverClosed 1850ms cubic-bezier(0.18, 0.86, 0.24, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-opening {
  animation: accessAutoTopCoverOpening 1850ms cubic-bezier(0.18, 0.86, 0.24, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-open {
  animation: accessAutoTopCoverOpen 1850ms cubic-bezier(0.18, 0.86, 0.24, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--reader-zone-empty {
  animation: accessAutoReaderEmptyAfterTop 2900ms 1500ms ease both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--reader-zone-ready {
  animation: accessAutoReaderReadyAfterTop 520ms 4200ms ease both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-reader--left {
  animation: accessAutoReaderInstallLeftAfterTop 1650ms 2700ms cubic-bezier(0.13, 0.88, 0.18, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-reader--right {
  animation: accessAutoReaderInstallRightAfterTop 1650ms 2700ms cubic-bezier(0.13, 0.88, 0.18, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--reader {
  top: 40%;
  left: 50%;
  width: 4px;
  height: clamp(70px, 10svh, 108px);
  background: linear-gradient(180deg, rgba(7, 91, 232, 0), rgba(7, 91, 232, 0.95), rgba(16, 185, 129, 0.96));
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 2;
  animation:
    accessAutoSignalVertical 1300ms 180ms cubic-bezier(0.16, 0.92, 0.18, 1) both,
    accessAutoSignalPulse 1600ms 900ms ease-in-out infinite;
}

.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--software {
  top: 51%;
  left: 50%;
  right: auto;
  width: min(30vw, 410px);
  height: 4px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.96), rgba(7, 91, 232, 0.95), rgba(7, 91, 232, 0));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 2;
  animation:
    accessAutoSignalHorizontal 1450ms 900ms cubic-bezier(0.16, 0.92, 0.18, 1) both,
    accessAutoSignalPulse 1600ms 1400ms ease-in-out infinite;
}

@media (max-width: 860px) {
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-closed,
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-opening,
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-open {
    top: 40%;
    width: min(96vw, 620px);
    max-height: 52%;
  }

  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-reader--left,
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-reader--right,
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-closed,
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-opening,
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--top-open,
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--reader-zone-empty,
  .access-animation[data-mode="auto"][data-active-step="2"] .access-animation-camera .access-anim-scene--reader-zone-ready {
    animation-duration: 3900ms;
  }

  .access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--reader {
    top: 34%;
    left: 52%;
    height: clamp(58px, 9svh, 88px);
  }

  .access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--software {
    top: 45%;
    left: 52%;
    width: min(41vw, 172px);
  }
}

/* Final validation path: reader -> controller -> software. */
@keyframes accessAutoDataVerticalDraw {
  0% {
    opacity: 0;
    transform: scaleY(0);
    filter: saturate(0.72);
  }
  16% {
    opacity: 1;
  }
  78%, 100% {
    opacity: 1;
    transform: scaleY(1);
    filter: saturate(1.15);
  }
}

@keyframes accessAutoDataNodeDraw {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 50%, 0) scale(0.48);
  }
  62% {
    opacity: 1;
    transform: translate3d(-50%, 50%, 0) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, 50%, 0) scale(1);
  }
}

@keyframes accessAutoDataHorizontalDraw {
  0% {
    opacity: 0;
    transform: scaleX(0);
    filter: saturate(0.72);
  }
  14% {
    opacity: 1;
  }
  78%, 100% {
    opacity: 1;
    transform: scaleX(1);
    filter: saturate(1.18);
  }
}

@keyframes accessAutoDataSparkVertical {
  0% {
    top: -18px;
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  100% {
    top: calc(100% + 12px);
    opacity: 0;
  }
}

@keyframes accessAutoDataSparkHorizontal {
  0% {
    left: -28px;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 10px);
    opacity: 0;
  }
}

.access-animation[data-mode="auto"] .access-animation-camera .access-anim-signal {
  overflow: visible;
}

.access-animation[data-mode="auto"] .access-animation-camera .access-anim-signal::before,
.access-animation[data-mode="auto"] .access-animation-camera .access-anim-signal::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal {
  opacity: 1 !important;
  visibility: visible !important;
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--reader,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--reader {
  top: 39%;
  left: 50.5%;
  width: 4px;
  height: clamp(72px, 9.5svh, 96px);
  background: linear-gradient(180deg, rgba(7, 91, 232, 0), rgba(7, 91, 232, 0.98), rgba(16, 185, 129, 0.98));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(7, 91, 232, 0.3);
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 7;
  animation: accessAutoDataVerticalDraw 1120ms 180ms cubic-bezier(0.16, 0.92, 0.18, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--reader::after,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--reader::after {
  bottom: 0;
  left: 50%;
  width: clamp(84px, 8vw, 124px);
  height: clamp(50px, 5.4svh, 68px);
  background:
    linear-gradient(135deg, rgba(7, 91, 232, 0.12), rgba(16, 185, 129, 0.1)),
    rgba(8, 29, 64, 0.2);
  border: 2px solid rgba(162, 209, 255, 0.92);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(7, 91, 232, 0.16) inset,
    0 0 34px rgba(35, 132, 255, 0.34);
  opacity: 0;
  transform: translate3d(-50%, 50%, 0) scale(0.48);
  animation: accessAutoDataNodeDraw 680ms 1180ms cubic-bezier(0.16, 0.9, 0.18, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--reader::before,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--reader::before {
  top: -18px;
  left: 50%;
  width: 10px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff, rgba(98, 181, 255, 0));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(144, 214, 255, 0.75);
  opacity: 0;
  transform: translateX(-50%);
  animation: accessAutoDataSparkVertical 760ms 2860ms cubic-bezier(0.2, 0.82, 0.22, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--software,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--software {
  top: calc(39% + clamp(72px, 9.5svh, 96px));
  left: 50.5%;
  right: auto;
  width: min(31vw, 430px);
  height: 4px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.98), rgba(7, 91, 232, 0.98), rgba(7, 91, 232, 0));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 6;
  animation: accessAutoDataHorizontalDraw 1180ms 1780ms cubic-bezier(0.16, 0.92, 0.18, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--software::before,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--software::before {
  top: 50%;
  left: -28px;
  width: 58px;
  height: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff, rgba(98, 181, 255, 0));
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(144, 214, 255, 0.8);
  opacity: 0;
  transform: translateY(-50%);
  animation: accessAutoDataSparkHorizontal 920ms 3520ms cubic-bezier(0.2, 0.82, 0.22, 1) both;
}

.access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--software::after,
.access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--software::after {
  top: 50%;
  right: -2px;
  width: 9px;
  height: 9px;
  background: #6ee7b7;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(110, 231, 183, 0.7);
  opacity: 0;
  transform: translate3d(50%, -50%, 0) scale(0.55);
  animation: accessAutoDataNodeDraw 520ms 2700ms cubic-bezier(0.16, 0.9, 0.18, 1) both;
}

@media (max-width: 860px) {
  .access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--reader,
  .access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--reader {
    top: 34%;
    left: 52%;
    height: clamp(58px, 8.5svh, 82px);
  }

  .access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--reader::after,
  .access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--reader::after {
    width: 76px;
    height: 46px;
    border-radius: 12px;
  }

  .access-animation[data-mode="auto"][data-active-step="4"] .access-animation-camera .access-anim-signal--software,
  .access-animation[data-mode="auto"][data-active-step="5"] .access-animation-camera .access-anim-signal--software {
    top: calc(34% + clamp(58px, 8.5svh, 82px));
    left: 52%;
    width: min(42vw, 180px);
  }
}

/* Conversion pages: cards, proof panels and quote forms. */
.conversion-hub-hero,
.conversion-route-section,
.conversion-reorder-section,
.conversion-page-hero,
.conversion-fit-section,
.conversion-personalization-section,
.conversion-design-section,
.conversion-proof-section,
.conversion-process-section,
.conversion-files-section,
.conversion-variable-section,
.conversion-trust-section,
.conversion-quantity-section,
.conversion-options-section,
.conversion-provisional-section,
.conversion-form-section,
.rfid-sample-section {
  background: #ffffff;
}

.conversion-hub-hero {
  padding-top: clamp(118px, 14svh, 168px);
  padding-bottom: clamp(46px, 7vw, 82px);
}

.conversion-hero-panel,
.conversion-form-shell,
.conversion-proof-panel,
.conversion-work-panel,
.conversion-quantity-panel,
.conversion-proof-compare,
.conversion-provisional-panel,
.rfid-sample-panel {
  padding: clamp(28px, 4vw, 54px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 22px 56px rgba(20, 48, 84, 0.075);
}

.conversion-hero-panel {
  max-width: 920px;
  text-align: left;
}

.conversion-hero-panel h1,
.conversion-hero-copy h1 {
  margin: 0;
  color: #071a42;
  font-size: clamp(2.35rem, 4.4vw, 4.8rem);
  line-height: 1.02;
}

.conversion-hero-panel p,
.conversion-hero-copy p,
.conversion-form-copy p,
.conversion-proof-panel p,
.conversion-work-panel p,
.conversion-quantity-panel p,
.conversion-provisional-panel p,
.rfid-sample-panel p {
  color: #40536c;
  line-height: 1.65;
}

.conversion-hero-panel p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.conversion-route-grid,
.conversion-check-grid,
.conversion-editorial-grid,
.conversion-split-cards,
.conversion-proof-compare,
.conversion-hero-grid {
  display: grid;
  gap: clamp(18px, 2.6vw, 32px);
}

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

.conversion-route-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(20, 48, 84, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.conversion-route-card:hover,
.conversion-route-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 144, 215, 0.3);
  box-shadow: 0 26px 60px rgba(20, 48, 84, 0.105);
}

.conversion-route-card span,
.conversion-trust-strip span,
.conversion-check-grid span,
.conversion-token-list li {
  color: var(--aceris-blue-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-route-card h2,
.conversion-route-card h3,
.conversion-proof-panel h2,
.conversion-work-panel h2,
.conversion-quantity-panel h2,
.conversion-provisional-panel h2,
.conversion-form-copy h2,
.rfid-sample-panel h2 {
  margin: 0;
  color: #071a42;
  line-height: 1.1;
}

.conversion-route-card h2,
.conversion-route-card h3 {
  margin-top: 12px;
  font-size: clamp(1.22rem, 1.5vw, 1.5rem);
}

.conversion-route-card p {
  margin: 14px 0 0;
  color: #40536c;
  line-height: 1.58;
}

.conversion-route-card strong {
  margin-top: 20px;
  color: var(--aceris-blue);
  font-weight: 950;
}

.conversion-form-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.conversion-reorder-form,
.conversion-step-form {
  margin: 0;
}

.conversion-page-hero {
  padding-top: clamp(116px, 14svh, 162px);
}

.conversion-hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  align-items: center;
}

.conversion-hero-copy {
  max-width: 760px;
}

.conversion-hero-copy .hero-actions {
  margin-top: 28px;
}

.conversion-microcopy {
  max-width: 650px;
  margin-top: 20px !important;
  padding: 14px 16px;
  color: #071a42 !important;
  font-weight: 820;
  background: #f7fbff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.conversion-hero-media {
  margin: 0;
  overflow: hidden;
  background: #f5f8fc;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.09);
}

.conversion-hero-media img {
  display: block;
  width: 100%;
  height: clamp(300px, 34vw, 500px);
  object-fit: cover;
}

.conversion-check-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 50px);
}

.conversion-check-grid article,
.conversion-split-cards article,
.conversion-trust-strip article,
.conversion-proof-compare article {
  padding: clamp(22px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.06);
}

.conversion-check-grid h3,
.conversion-split-cards h3,
.conversion-proof-compare h3,
.conversion-trust-strip strong {
  margin: 10px 0 0;
  color: #071a42;
  font-size: 1.08rem;
  line-height: 1.2;
}

.conversion-check-grid p,
.conversion-split-cards p,
.conversion-proof-compare p {
  margin: 12px 0 0;
  color: #40536c;
  line-height: 1.55;
}

.conversion-editorial-grid {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  align-items: start;
}

.conversion-editorial-grid h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.conversion-editorial-grid p {
  color: #40536c;
  line-height: 1.65;
}

.conversion-token-list,
.conversion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conversion-token-list li,
.conversion-list li {
  padding: 10px 12px;
  color: #071a42;
  background: #f7fbff;
  border: 1px solid #dbe5f0;
  border-radius: 999px;
}

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

.conversion-list li {
  border-radius: 8px;
}

.conversion-split-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(26px, 4vw, 44px);
}

.conversion-proof-panel,
.conversion-work-panel,
.conversion-provisional-panel,
.rfid-sample-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 52px);
}

.conversion-proof-panel > div,
.conversion-work-panel > div,
.conversion-provisional-panel > div,
.rfid-sample-panel > div {
  max-width: 860px;
}

.conversion-process-section,
.conversion-quantity-section,
.conversion-form-section,
.conversion-reorder-section,
.rfid-sample-section {
  background: #f7faff;
}

.conversion-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin: clamp(34px, 4vw, 54px) 0 0;
  padding: 0;
  list-style: none;
}

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

.conversion-timeline li {
  position: relative;
  padding: 22px 18px;
  color: #40536c;
  line-height: 1.45;
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(20, 48, 84, 0.055);
}

.conversion-timeline span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 950;
  background: #071a42;
  border-radius: 999px;
}

.conversion-quantity-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.conversion-quantity-selector button {
  min-height: 44px;
  padding: 10px 14px;
  color: #071a42;
  font-weight: 900;
  background: #f7fbff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  cursor: pointer;
}

.conversion-quantity-selector button:hover,
.conversion-quantity-selector button:focus-visible {
  border-color: rgba(0, 144, 215, 0.34);
  background: #ffffff;
}

.conversion-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.conversion-upload-note,
.rfid-sample-clarification,
.rfid-urgency-panel p {
  color: #40536c;
  font-size: 0.9rem;
  line-height: 1.5;
}

.conversion-conditional-panel,
.rfid-urgency-panel {
  margin: 2px 0 20px;
  padding: 18px;
  background: #f7fbff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
}

.conversion-conditional-panel[hidden] {
  display: none !important;
}

.conversion-conditional-panel h3,
.rfid-urgency-panel h3 {
  margin: 0 0 16px;
  color: #071a42;
  font-size: 1.05rem;
}

@media (max-width: 1160px) {
  .conversion-route-grid,
  .conversion-check-grid,
  .conversion-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .conversion-hero-grid,
  .conversion-editorial-grid,
  .conversion-form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .conversion-route-grid,
  .conversion-check-grid,
  .conversion-trust-strip,
  .conversion-timeline,
  .conversion-timeline--seven,
  .conversion-split-cards,
  .conversion-list {
    grid-template-columns: 1fr;
  }

  .conversion-proof-panel,
  .conversion-work-panel,
  .conversion-provisional-panel,
  .rfid-sample-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-proof-panel .button,
  .conversion-provisional-panel .button,
  .rfid-sample-panel .button {
    width: 100%;
  }

  .conversion-hero-media img {
    height: 280px;
  }
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-hero {
  position: relative;
  padding-top: clamp(72px, 9svh, 110px);
  padding-bottom: clamp(42px, 6vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 40%, rgba(0, 144, 215, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(247, 251, 255, 0.98), rgba(255, 255, 255, 0.82) 42%, rgba(234, 246, 248, 0.86)),
    #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 144, 215, 0.28), transparent);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(2.85rem, 5vw, 5.2rem);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-hero-copy > p:not(.conversion-microcopy) {
  max-width: 700px;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-hero-media {
  border-radius: 8px;
  box-shadow: 0 34px 86px rgba(7, 26, 66, 0.13);
  transform: translateY(8px);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-hero-media img {
  height: clamp(340px, 36vw, 510px);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-hero-support-section {
  padding-top: 0;
  padding-bottom: clamp(34px, 5vw, 66px);
  background: #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-hero-support {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-hero-support .conversion-microcopy {
  margin: 0 !important;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 0;
  padding: 16px 18px;
  background: #071a42;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 26, 66, 0.12);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-hero-trust span {
  position: relative;
  padding: 4px 18px 4px 18px;
  color: #ffffff;
  font-size: 0.79rem;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-hero-trust span::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #00a89d;
  border-radius: 999px;
}

body[data-page="impresion-tarjetas-pvc"] .access-section-heading p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #40536c;
  line-height: 1.65;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-needs-grid,
body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid,
body[data-page="impresion-tarjetas-pvc"] .pvc-production-options {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-needs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 52px);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-needs-grid article,
body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid article,
body[data-page="impresion-tarjetas-pvc"] .pvc-production-options article,
body[data-page="impresion-tarjetas-pvc"] .pvc-files-note {
  position: relative;
  padding: clamp(22px, 2.7vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.06);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-needs-grid article:hover,
body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths article:hover,
body[data-page="impresion-tarjetas-pvc"] .pvc-production-options article:hover,
body[data-page="impresion-tarjetas-pvc"] .rfid-faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 144, 215, 0.32);
  box-shadow: 0 26px 60px rgba(20, 48, 84, 0.1);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-card-index {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: #006fa8;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eef8fc;
  border-radius: 999px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-needs-grid h3,
body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid h3,
body[data-page="impresion-tarjetas-pvc"] .pvc-production-options h3,
body[data-page="impresion-tarjetas-pvc"] .pvc-files-note h3,
body[data-page="impresion-tarjetas-pvc"] .conversion-timeline h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.08rem;
  line-height: 1.24;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-needs-grid p,
body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid p,
body[data-page="impresion-tarjetas-pvc"] .pvc-production-options p,
body[data-page="impresion-tarjetas-pvc"] .conversion-timeline p {
  margin: 12px 0 0;
  color: #40536c;
  line-height: 1.58;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-featured-card {
  background:
    linear-gradient(145deg, #071a42, #0b4c7a),
    #071a42 !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 30px 70px rgba(7, 26, 66, 0.18) !important;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-featured-card h3,
body[data-page="impresion-tarjetas-pvc"] .pvc-featured-card p,
body[data-page="impresion-tarjetas-pvc"] .pvc-featured-card .pvc-card-index {
  color: #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-featured-card .pvc-card-index {
  background: rgba(255, 255, 255, 0.14);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-dark-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 22, 48, 0.98), rgba(6, 44, 75, 0.96)),
    #071a42;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-grid,
body[data-page="impresion-tarjetas-pvc"] .pvc-media-grid,
body[data-page="impresion-tarjetas-pvc"] .pvc-production-grid,
body[data-page="impresion-tarjetas-pvc"] .pvc-reorder-panel {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-grid h2,
body[data-page="impresion-tarjetas-pvc"] .pvc-production-grid h2,
body[data-page="impresion-tarjetas-pvc"] .pvc-reorder-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  line-height: 1.06;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-grid h2,
body[data-page="impresion-tarjetas-pvc"] .pvc-concept-grid p {
  color: #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-grid p,
body[data-page="impresion-tarjetas-pvc"] .pvc-production-grid > div > p,
body[data-page="impresion-tarjetas-pvc"] .pvc-reorder-panel > div > p,
body[data-page="impresion-tarjetas-pvc"] .pvc-support-copy {
  max-width: 760px;
  color: #40536c;
  line-height: 1.65;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-grid .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack {
  display: grid;
  gap: 0;
  counter-reset: concept;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack article {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  column-gap: 18px;
  padding: clamp(20px, 2.2vw, 28px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack article:first-child {
  border-radius: 8px 8px 0 0;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack article:last-child {
  border-radius: 0 0 8px 8px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack article + article {
  border-top: 0;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(28px + 48px);
  left: clamp(20px, 2.2vw, 28px);
  width: 48px;
  height: calc(100% - 48px);
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  transform: translateX(24px);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-icon {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #071a42;
  font-weight: 950;
  background: #ffffff;
  border-radius: 999px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack h3 {
  margin: 0;
  color: #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(28px, 4vw, 46px);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths article {
  position: relative;
  min-height: 100%;
  padding: clamp(24px, 2.8vw, 34px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.06);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 950;
  background: #071a42;
  border-radius: 999px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths h3 {
  margin: 0;
  color: #071a42;
  font-size: 1.08rem;
  line-height: 1.22;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths p {
  margin: 12px 0 0;
  color: #40536c;
  line-height: 1.58;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-files-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin-top: clamp(22px, 3vw, 34px);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-files-note h3 {
  margin-bottom: 16px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-media-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-proof-section {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-proof-panel {
  display: grid;
  align-content: start;
  min-height: 100%;
  border-color: rgba(0, 144, 215, 0.22);
  box-shadow: 0 30px 72px rgba(20, 48, 84, 0.1);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-proof-panel .button {
  width: fit-content;
  align-self: start;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-proof-lead {
  margin: 18px 0 12px;
  color: #071a42 !important;
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-proof-list li {
  padding: 8px 10px;
  color: #071a42;
  font-size: 0.82rem;
  font-weight: 900;
  background: #eef8fc;
  border: 1px solid #dbe5f0;
  border-radius: 999px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-media-panel,
body[data-page="impresion-tarjetas-pvc"] .pvc-inline-image {
  margin: 0;
  overflow: hidden;
  background: #eef5fb;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(20, 48, 84, 0.08);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-media-panel img,
body[data-page="impresion-tarjetas-pvc"] .pvc-inline-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-variable-section,
body[data-page="impresion-tarjetas-pvc"] .pvc-faq-section {
  background: #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-variable-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid article p {
  grid-column: 2;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-mini-visual {
  display: block;
  grid-row: span 2;
  width: 74px;
  height: 48px;
  background: linear-gradient(140deg, #ffffff 0 55%, #dce8f4 56% 72%, #0067d4 73%);
  border: 1px solid #cbd8e7;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(20, 48, 84, 0.12);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-mini-back {
  box-shadow: 8px 8px 0 #eef3f8, 0 10px 24px rgba(20, 48, 84, 0.12);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-mini-data {
  background:
    linear-gradient(90deg, rgba(7, 26, 66, 0.12) 1px, transparent 1px) 0 0 / 12px 12px,
    linear-gradient(180deg, #ffffff, #eef8fc);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-support-copy {
  margin: clamp(20px, 3vw, 30px) 0 0;
  padding-left: 18px;
  border-left: 3px solid #00a89d;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-production-grid {
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-inline-image {
  margin-top: clamp(22px, 3vw, 36px);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-production-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-production-options article {
  display: flex;
  flex-direction: column;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-production-options .button {
  margin-top: auto;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-production-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: #006fa8;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eef8fc;
  border-radius: 999px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-production-options ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 22px;
  padding-left: 20px;
  color: #40536c;
  line-height: 1.5;
}

body[data-page="impresion-tarjetas-pvc"] .conversion-timeline h3 {
  margin-top: 4px;
  font-size: 1.02rem;
}

body[data-page="impresion-tarjetas-pvc"] .conversion-timeline {
  position: relative;
}

body[data-page="impresion-tarjetas-pvc"] .conversion-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 6%;
  left: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 144, 215, 0.16), rgba(0, 168, 157, 0.5), rgba(0, 144, 215, 0.16));
}

body[data-page="impresion-tarjetas-pvc"] .conversion-timeline li {
  z-index: 1;
  padding-top: 28px;
}

body[data-page="impresion-tarjetas-pvc"] .conversion-timeline span {
  width: 44px;
  height: 44px;
  font-size: 1rem;
  box-shadow: 0 0 0 8px #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-reorder-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  padding: clamp(26px, 4vw, 54px);
  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(20, 48, 84, 0.075);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-reorder-panel .conversion-list {
  margin: 22px 0;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-dark-form-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, #061630, #08233e 48%, #063f54),
    #061630;
}

body[data-page="impresion-tarjetas-pvc"] .conversion-provisional-panel {
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, #071a42, #063f54),
    #071a42;
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-provisional-panel::after {
  content: "";
  width: clamp(120px, 18vw, 210px);
  height: clamp(82px, 12vw, 140px);
  background:
    linear-gradient(140deg, #ffffff 0 54%, #dfe9f3 55% 72%, #0067d4 73%);
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
  transform: rotate(-7deg);
}

body[data-page="impresion-tarjetas-pvc"] .conversion-provisional-panel h2,
body[data-page="impresion-tarjetas-pvc"] .conversion-provisional-panel p,
body[data-page="impresion-tarjetas-pvc"] .conversion-provisional-panel .section-number {
  color: #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-dark-form-section .contact-copy h2,
body[data-page="impresion-tarjetas-pvc"] .pvc-dark-form-section .contact-copy p,
body[data-page="impresion-tarjetas-pvc"] .pvc-dark-form-section .section-number {
  color: #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-form-reassurance {
  margin-top: 22px;
  padding: 15px 16px;
  color: #ffffff;
  font-weight: 850;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form .rfid-form-progress {
  gap: 10px;
  padding: 8px;
  background: #eef5fb;
  border-radius: 10px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form .rfid-form-progress button {
  border-radius: 8px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form .rfid-form-progress button.is-active {
  color: #ffffff;
  background: #071a42;
  border-color: #071a42;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form .rfid-form-progress button.is-active span {
  color: #071a42;
  background: #ffffff;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form label {
  color: #071a42;
  font-size: 0.9rem;
  font-weight: 850;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form input,
body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form select,
body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form textarea {
  min-height: 50px;
  border-radius: 8px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-step-summary {
  margin-bottom: 20px;
  background: #f7fbff;
  border-color: rgba(0, 144, 215, 0.2);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form .rfid-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form .rfid-checkbox-group label {
  min-height: 44px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form .pvc-file-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form input[type="file"] {
  width: 100%;
  font-size: 0.9rem;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-faq-section .faq-grid {
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
}

body[data-page="impresion-tarjetas-pvc"] .pvc-faq-section .rfid-faq-list {
  max-width: 920px;
  margin-left: auto;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-faq-section .rfid-faq-list details {
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-final-cta .cta-panel {
  background:
    linear-gradient(135deg, #071a42, #063f54),
    #071a42;
}

body[data-page="impresion-tarjetas-pvc"] .pvc-final-cta .cta-panel h2,
body[data-page="impresion-tarjetas-pvc"] .pvc-final-cta .cta-panel p {
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack article,
  body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths article,
  body[data-page="impresion-tarjetas-pvc"] .pvc-production-options article,
  body[data-page="impresion-tarjetas-pvc"] .rfid-faq-list details,
  body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form fieldset {
    transition-duration: 320ms;
  }
}

@media (max-width: 1160px) {
  body[data-page="impresion-tarjetas-pvc"] .pvc-needs-grid,
  body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-concept-grid,
  body[data-page="impresion-tarjetas-pvc"] .pvc-media-grid,
  body[data-page="impresion-tarjetas-pvc"] .pvc-variable-layout,
  body[data-page="impresion-tarjetas-pvc"] .pvc-production-grid,
  body[data-page="impresion-tarjetas-pvc"] .pvc-reorder-panel,
  body[data-page="impresion-tarjetas-pvc"] .pvc-files-note,
  body[data-page="impresion-tarjetas-pvc"] .pvc-faq-section .faq-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths,
  body[data-page="impresion-tarjetas-pvc"] .pvc-production-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="impresion-tarjetas-pvc"] .pvc-landing-hero {
    padding-top: 32px;
    padding-bottom: 22px;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-hero-support-section {
    padding-bottom: 28px;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-hero-support {
    grid-template-columns: 1fr;
  }

  body[data-page="impresion-tarjetas-pvc"] .conversion-hero-copy h1 {
    font-size: clamp(2.12rem, 10.6vw, 2.95rem);
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-needs-grid,
  body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid,
  body[data-page="impresion-tarjetas-pvc"] .pvc-design-paths,
  body[data-page="impresion-tarjetas-pvc"] .pvc-production-options,
  body[data-page="impresion-tarjetas-pvc"] .pvc-landing-form .rfid-checkbox-group {
    grid-template-columns: 1fr;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-media-panel img,
  body[data-page="impresion-tarjetas-pvc"] .pvc-inline-image img {
    min-height: 260px;
  }

  body[data-page="impresion-tarjetas-pvc"] .conversion-hero-media {
    grid-row: auto;
    transform: none;
  }

  body[data-page="impresion-tarjetas-pvc"] .conversion-hero-media img {
    height: 188px;
  }

  body[data-page="impresion-tarjetas-pvc"] .conversion-microcopy {
    margin-top: 14px !important;
    padding: 12px 13px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-hero-trust span {
    padding: 5px 10px 5px 18px;
    font-size: 0.72rem;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-concept-stack article,
  body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid article {
    grid-template-columns: 1fr;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-concept-icon,
  body[data-page="impresion-tarjetas-pvc"] .pvc-mini-visual {
    margin-bottom: 14px;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-three-grid article p {
    grid-column: auto;
  }

  body[data-page="impresion-tarjetas-pvc"] .conversion-timeline::before {
    top: 0;
    bottom: 0;
    left: 22px;
    width: 2px;
    height: auto;
  }

  body[data-page="impresion-tarjetas-pvc"] .conversion-timeline li {
    padding-left: 74px;
  }

  body[data-page="impresion-tarjetas-pvc"] .conversion-timeline span {
    position: absolute;
    top: 22px;
    left: 18px;
  }

  body[data-page="impresion-tarjetas-pvc"] .conversion-provisional-panel::after {
    align-self: center;
    opacity: 0.9;
  }

  body[data-page="impresion-tarjetas-pvc"] .pvc-production-options .button,
  body[data-page="impresion-tarjetas-pvc"] .pvc-reorder-panel .button {
    width: 100%;
  }
}

/* Final hero scale alignment for access situation pages. */
.access-guide-hero,
.access-reception-hero-grid {
  min-height: clamp(560px, 68svh, 700px);
}

.access-guide-hero-grid {
  min-height: inherit;
  padding-top: clamp(124px, 14svh, 174px);
  padding-bottom: clamp(28px, 4svh, 46px);
}

.access-guide-hero-copy h1,
.access-reception-copy h1 {
  font-size: clamp(2.65rem, 3.9vw, 3.7rem);
  line-height: 1.02;
}

.access-guide-hero-copy p,
.access-reception-copy p {
  font-size: 1.05rem;
  line-height: 1.68;
}

@media (max-width: 820px) {
  .access-guide-hero,
  .access-reception-hero-grid {
    min-height: 640px;
  }

  .access-guide-hero {
    overflow: hidden;
  }

  .access-guide-hero-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .access-guide-hero-bg::after {
    display: block;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 45%, rgba(255, 255, 255, 0.5) 100%),
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.84) 48%, rgba(255, 255, 255, 0.22) 100%);
  }

  .access-guide-hero-grid {
    min-height: inherit;
    align-items: center;
    padding-top: 128px;
    padding-bottom: 24px;
  }

  .access-guide-hero-copy h1,
  .access-reception-copy h1 {
    font-size: clamp(2.15rem, 10.2vw, 2.95rem);
  }

  .access-guide-hero-copy p,
  .access-reception-copy p {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}
/* End-of-file RFID contrast overrides. */
body[data-page="tarjetas-rfid-mifare"] .rfid-form-copy h2 {
  color: #ffffff;
}

/* Reception corporate access landing */
body[data-page="control-de-accesos/recepcion-corporativa"] {
  background: #ffffff;
}

.reception-landing-hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 46%, #eef6ff 100%);
  border-bottom: 1px solid rgba(201, 216, 232, 0.72);
}

.reception-landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
  min-height: clamp(500px, 46vw, 560px);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  padding-top: clamp(22px, 3vw, 36px);
  padding-bottom: clamp(26px, 3.6vw, 44px);
}

.reception-landing-hero__copy {
  position: relative;
  z-index: 2;
}

.reception-landing-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #1c63d8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.reception-landing-hero__copy h1 {
  max-width: 640px;
  margin: 0;
  color: #071a42;
  font-size: clamp(2.8rem, 4.25vw, 4.45rem);
  font-weight: 880;
  line-height: 1.02;
  letter-spacing: 0;
}

.reception-landing-hero__copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #17324f;
  font-size: clamp(1.02rem, 1.12vw, 1.18rem);
  line-height: 1.68;
}

.reception-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.reception-landing-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  max-width: 620px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.reception-landing-benefits li {
  position: relative;
  padding-left: 18px;
  color: #334e68;
  font-size: 0.92rem;
  font-weight: 720;
}

.reception-landing-benefits li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #2f66e8;
  border-radius: 999px;
}

.reception-landing-hero__media {
  position: relative;
  min-height: clamp(330px, 31vw, 420px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(187, 207, 229, 0.82);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(8, 28, 58, 0.16);
}

.reception-landing-hero__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(4, 13, 30, 0.16) 100%);
}

.reception-landing-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

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

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

.reception-section-heading h2,
.reception-final-copy h2 {
  margin: 0;
  color: #071a42;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.reception-section-heading p,
.reception-final-copy p {
  margin: 16px 0 0;
  color: #36516c;
  font-size: 1.02rem;
  line-height: 1.68;
}

.reception-why-section,
.reception-products-section,
.reception-elements-section,
.reception-faq-section {
  background: #ffffff;
}

.reception-scenarios-section,
.reception-comparison-section,
.reception-process-section {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

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

.reception-why-grid article,
.reception-elements-grid article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid rgba(207, 221, 236, 0.92);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(15, 46, 82, 0.07);
}

.reception-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #1f63e9;
  background: #eef5ff;
  border-radius: 999px;
}

.reception-icon svg,
.reception-text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reception-why-grid h3,
.reception-elements-grid h3,
.reception-process-list h3 {
  margin: 0 0 10px;
  color: #09234b;
  font-size: 1.18rem;
  font-weight: 820;
}

.reception-why-grid p,
.reception-elements-grid p,
.reception-process-list p {
  margin: 0;
  color: #3f5872;
  line-height: 1.62;
}

.reception-highlight {
  max-width: 920px;
  padding: 22px 26px;
  margin: 28px auto 0;
  color: #0d274a;
  font-size: 1.04rem;
  font-weight: 740;
  line-height: 1.55;
  text-align: center;
  background: #eef6ff;
  border: 1px solid rgba(181, 205, 233, 0.9);
  border-radius: 12px;
}

.reception-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reception-scenario-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(200, 218, 236, 0.92);
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(8, 31, 66, 0.08);
}

.reception-scenario-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #edf5ff;
}

.reception-scenario-card div {
  padding: 24px;
}

.reception-scenario-card h3 {
  margin: 0 0 12px;
  color: #071a42;
  font-size: 1.34rem;
  line-height: 1.18;
}

.reception-scenario-card p,
.reception-scenario-card li {
  color: #3b536d;
  line-height: 1.58;
}

.reception-scenario-card ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  margin: 16px 0;
}

.reception-scenario-card strong {
  display: block;
  color: #0b2a58;
  font-size: 0.95rem;
}

.reception-centered-cta {
  width: fit-content;
  margin: 28px auto 0;
}

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

.reception-product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(198, 217, 236, 0.9);
  border-radius: 14px;
  box-shadow: 0 22px 58px rgba(8, 31, 66, 0.08);
}

.reception-product-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 22px;
  margin: 0;
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
  border-right: 1px solid rgba(207, 221, 236, 0.9);
}

.reception-product-card img {
  width: 100%;
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(16, 43, 75, 0.14));
}

.reception-product-card__body {
  padding: 26px;
}

.reception-product-card__body span {
  color: #1e63e8;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reception-product-card h3 {
  margin: 8px 0 10px;
  color: #071a42;
  font-size: 1.6rem;
  line-height: 1.08;
}

.reception-product-card p,
.reception-product-card li {
  color: #3a526d;
  line-height: 1.58;
}

.reception-product-card ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  margin: 16px 0;
}

.reception-product-use {
  padding-top: 12px;
  border-top: 1px solid rgba(212, 225, 239, 0.92);
}

.reception-text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
  color: #075be8;
  font-weight: 820;
  text-decoration: none;
}

.reception-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(196, 215, 235, 0.92);
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(8, 31, 66, 0.08);
}

.reception-comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.reception-comparison-table th,
.reception-comparison-table td {
  padding: 18px 16px;
  color: #334e68;
  line-height: 1.48;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(214, 226, 239, 0.9);
}

.reception-comparison-table thead th {
  color: #09234b;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #eef6ff;
}

.reception-comparison-table tbody th {
  color: #071a42;
  font-weight: 850;
}

.reception-comparison-table tr:last-child th,
.reception-comparison-table tr:last-child td {
  border-bottom: 0;
}

.reception-note {
  max-width: 920px;
  margin: 18px auto 0;
  color: #496079;
  line-height: 1.6;
  text-align: center;
}

.reception-elements-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reception-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: reception-step;
}

.reception-process-list li {
  position: relative;
  padding: 26px 22px;
  background: #ffffff;
  border: 1px solid rgba(199, 218, 237, 0.92);
  border-radius: 12px;
}

.reception-process-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: #1e63e8;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.reception-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.reception-faq-list {
  display: grid;
  gap: 12px;
}

.reception-faq-list details {
  background: #ffffff;
  border: 1px solid rgba(199, 218, 237, 0.92);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(8, 31, 66, 0.06);
}

.reception-faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #071a42;
  font-weight: 820;
}

.reception-faq-list p {
  padding: 0 22px 20px;
  margin: 0;
  color: #3b536d;
  line-height: 1.62;
}

.reception-final-section {
  background: #ffffff;
}

.reception-final-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 12%, rgba(47, 102, 232, 0.22), rgba(47, 102, 232, 0) 34%),
    linear-gradient(135deg, #071a42 0%, #0b2a58 100%);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(4, 18, 42, 0.18);
}

.reception-final-copy h2,
.reception-final-copy p {
  color: #ffffff;
}

.reception-final-copy span {
  display: block;
  margin-top: 20px;
  color: #cfe0f7;
  font-weight: 720;
}

.reception-compact-form {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(208, 224, 241, 0.9);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(3, 12, 28, 0.18);
}

.reception-compact-form .privacy-first-layer {
  margin-top: 12px;
}

@media (max-width: 1020px) {
  .reception-landing-hero__grid,
  .reception-final-panel,
  .reception-faq-layout {
    grid-template-columns: 1fr;
  }

  .reception-landing-hero__media {
    min-height: 330px;
  }

  .reception-scenarios-grid,
  .reception-elements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reception-products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .reception-landing-hero__grid {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .reception-landing-hero__copy h1 {
    font-size: clamp(2.05rem, 9vw, 2.75rem);
  }

  .reception-landing-hero__copy p {
    margin-top: 16px;
    line-height: 1.58;
  }

  .reception-landing-actions {
    margin-top: 22px;
  }

  .reception-landing-actions,
  .reception-landing-actions .button,
  .reception-centered-cta {
    width: 100%;
  }

  .reception-landing-benefits,
  .reception-why-grid,
  .reception-scenarios-grid,
  .reception-elements-grid,
  .reception-process-list {
    grid-template-columns: 1fr;
  }

  .reception-landing-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    margin-top: 18px;
  }

  .reception-landing-benefits li {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .reception-landing-hero__media {
    min-height: 170px;
    border-radius: 12px;
  }

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

  .reception-product-card figure {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(207, 221, 236, 0.9);
  }

  .reception-final-panel {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .reception-compact-form {
    padding: 18px;
  }
}

body[data-page="tarjetas-rfid-mifare"] .rfid-form-copy .section-number {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Absolute final override for RFID services sequence. */
body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-work-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1180px;
  margin-inline: auto;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  overflow: visible;
  text-align: center;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product::after {
  top: auto;
  right: auto;
  bottom: -68px;
  left: 50%;
  width: 44px;
  height: 44px;
  content: "↓";
  transform: translateX(-50%);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow {
  padding: clamp(30px, 4vw, 50px);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow > span {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 0.86rem;
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow ol {
  gap: clamp(18px, 2vw, 30px);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li::before {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 950;
  background: #071a42;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(20, 48, 84, 0.12);
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(1)::before {
  content: "1";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(2)::before {
  content: "2";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(3)::before {
  content: "3";
}

body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-addon-flow li:nth-child(4)::before {
  content: "4";
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-work-flow {
    gap: 40px;
  }

  body[data-page="tarjetas-rfid-mifare"] #trabajos-del-pedido .rfid-base-product::after {
    bottom: -58px;
  }
}

/* TRUE EOF override: RFID/MIFARE hero and internal nav. */
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
  align-items: center;
  min-height: clamp(560px, 68svh, 670px);
  margin-top: 0 !important;
  padding: clamp(120px, 15svh, 164px) 0 clamp(86px, 11svh, 118px) !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 16, 41, 0.94) 0%, rgba(4, 16, 41, 0.8) 28%, rgba(4, 16, 41, 0.3) 56%, rgba(4, 16, 41, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 16, 41, 0.08) 0%, rgba(4, 16, 41, 0.01) 58%, rgba(4, 16, 41, 0.16) 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
  object-position: 64% center !important;
  filter: saturate(1.03) contrast(1.05);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
  max-width: 560px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5.25vw, 4.95rem);
  line-height: 1;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p {
  max-width: 500px;
  margin-top: 22px;
  font-size: clamp(1.04rem, 1.18vw, 1.16rem);
  line-height: 1.55;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-hero-microcopy,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-trust {
  display: none !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav {
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(14px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-page-nav .container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
    align-items: start !important;
    min-height: 680px;
    margin-top: 0 !important;
    padding: 142px 0 62px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-background img {
    object-position: 58% center !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-layout {
    display: block;
    padding-top: 0 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy {
    max-width: 340px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(2.2rem, 10.2vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p {
    max-width: 330px;
    font-size: 0.98rem !important;
    line-height: 1.45 !important;
  }
}

/* TRUE EOF override: RFID/MIFARE intent bento selector. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .section-heading {
  max-width: 760px;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .section-heading h2 {
  max-width: 640px;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .section-heading p {
  max-width: 720px;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.95fr) minmax(220px, 0.68fr) minmax(220px, 0.68fr);
  grid-template-areas:
    "featured guide personalization"
    "featured new new";
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
  margin-top: clamp(30px, 4vw, 46px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card {
  min-height: 0;
  padding: clamp(24px, 2.6vw, 34px);
  overflow: hidden;
  color: #40536c;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(199, 211, 227, 0.84);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(20, 48, 84, 0.07);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card::before {
  top: 18px;
  right: 20px;
  content: none;
  color: rgba(0, 87, 191, 0.16);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card:hover,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 87, 191, 0.28);
  box-shadow: 0 24px 58px rgba(20, 48, 84, 0.11);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card > span {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 10px;
  color: #0057bf;
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 111, 214, 0.08);
  border: 1px solid rgba(0, 111, 214, 0.14);
  border-radius: 999px;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card h3 {
  max-width: 520px;
  margin: 0 0 13px;
  color: #071a42;
  font-size: clamp(1.28rem, 1.7vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card p {
  max-width: 560px;
  margin: 0;
  color: #40536c;
  font-size: 0.98rem;
  line-height: 1.58;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card > strong {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: #0057bf;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card > strong::after {
  content: "→";
  font-size: 1rem;
  transition: transform 220ms ease;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card:hover > strong::after,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card:focus-visible > strong::after {
  transform: translateX(3px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured {
  grid-area: featured;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(232, 243, 255, 0.96), rgba(255, 255, 255, 0.98)),
    #ffffff;
  border-color: rgba(0, 111, 214, 0.24);
  box-shadow: 0 22px 58px rgba(20, 48, 84, 0.09);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured h3 {
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured > span {
  color: #004fa8;
  background: rgba(0, 111, 214, 0.1);
  border-color: rgba(0, 111, 214, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--guide {
  grid-area: guide;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--personalization {
  grid-area: personalization;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--new {
  grid-area: new;
  min-height: 220px;
}

@media (max-width: 1060px) {
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "featured featured"
      "guide personalization"
      "new new";
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured"
      "guide"
      "personalization"
      "new";
    gap: 14px;
    margin-top: 28px;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--new {
    min-height: auto;
    padding: 22px;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card h3,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured h3 {
    font-size: clamp(1.28rem, 6vw, 1.55rem);
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card::before {
    top: 18px;
    right: 18px;
    font-size: 0.78rem;
  }
}

/* TRUE EOF override: RFID/MIFARE intent bento balance. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured {
  justify-content: center;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured > strong {
  margin-top: 30px;
  padding-top: 0;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--new {
  min-height: 190px;
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured {
    justify-content: flex-start;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured > strong {
    margin-top: auto;
    padding-top: 22px;
  }
}

/* TRUE EOF override: RFID/MIFARE featured intent spacing. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured {
  justify-content: flex-start !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured > strong {
  margin-top: 28px !important;
  padding-top: 0 !important;
}

/* TRUE EOF override: RFID/MIFARE final intent polish. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card::before,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured::after {
  display: none !important;
  content: none !important;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured {
  padding-bottom: clamp(150px, 13vw, 182px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card-visual {
  position: absolute;
  right: clamp(18px, 2.7vw, 34px);
  bottom: clamp(18px, 2.7vw, 34px);
  z-index: 0;
  width: min(54%, 282px);
  aspect-ratio: 1.9 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(20, 48, 84, 0.16);
  opacity: 0.92;
  pointer-events: none;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 58%;
  filter: saturate(0.95) contrast(1.04);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured > span,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured > h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured > p,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured > strong {
  position: relative;
  z-index: 1;
  max-width: min(100%, 430px);
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card--featured {
    padding-bottom: 22px;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-card-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 260px);
    margin: 18px 0 0;
    aspect-ratio: 1.85 / 1;
  }
}

/* TRUE EOF override: RFID/MIFARE editorial intent selector. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.12fr);
  gap: clamp(24px, 3.2vw, 46px);
  align-items: stretch;
  margin-top: clamp(34px, 4.5vw, 54px);
  padding: clamp(18px, 2vw, 28px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.92)),
    #f7fbff;
  border: 1px solid rgba(180, 204, 232, 0.72);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(20, 48, 84, 0.09);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media {
  position: relative;
  min-height: clamp(430px, 38vw, 560px);
  margin: 0;
  overflow: hidden;
  background: #edf5ff;
  border: 1px solid rgba(214, 226, 239, 0.84);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, rgba(247, 251, 255, 0), rgba(247, 251, 255, 0.5));
  pointer-events: none;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 52% 54%;
  filter: saturate(0.96) contrast(1.03);
  opacity: 1;
  transition:
    opacity 320ms ease,
    filter 320ms ease,
    transform 320ms ease;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media img.is-changing {
  opacity: 0;
  transform: scale(1.012);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(2px, 0.8vw, 10px) 0;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label cta"
    "title cta"
    "text cta";
  column-gap: clamp(18px, 2vw, 30px);
  align-items: center;
  padding: clamp(19px, 2vw, 25px) clamp(8px, 1.2vw, 18px);
  color: #40536c;
  text-decoration: none;
  border-top: 1px solid rgba(195, 211, 230, 0.72);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  outline-offset: 4px;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:first-child {
  border-top: 0;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:hover,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus-visible {
  background: rgba(235, 246, 255, 0.72);
  border-color: rgba(0, 111, 214, 0.24);
  transform: translateX(3px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active {
  background:
    linear-gradient(135deg, rgba(224, 241, 255, 0.98), rgba(246, 251, 255, 0.96)),
    #edf7ff;
  border-color: rgba(0, 93, 190, 0.34);
  box-shadow: 0 14px 34px rgba(20, 72, 130, 0.09);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  padding: clamp(24px, 2.5vw, 32px);
  margin-bottom: clamp(8px, 1vw, 12px);
  background:
    linear-gradient(135deg, rgba(238, 247, 255, 0.88), rgba(255, 255, 255, 0.95)),
    #ffffff;
  border: 1px solid rgba(0, 111, 214, 0.24);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(20, 48, 84, 0.06);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active {
  background:
    linear-gradient(135deg, rgba(217, 237, 255, 0.98), rgba(246, 251, 255, 0.98)),
    #eef8ff;
  border-color: rgba(0, 93, 190, 0.42);
  transform: translateX(0) translateY(-2px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option span {
  grid-area: label;
  width: fit-content;
  margin: 0 0 10px;
  color: #0057bf;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3 {
  grid-area: title;
  max-width: 620px;
  margin: 0 0 8px;
  color: #0a1d45;
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  line-height: 1.12;
  letter-spacing: 0;
  transition: color 240ms ease;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:hover h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus-visible h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active h3 {
  color: #03143a;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p {
  grid-area: text;
  max-width: 620px;
  margin: 0;
  color: #40536c;
  font-size: 0.96rem;
  line-height: 1.52;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option .rfid-small-note {
  grid-column: 1 / -1;
  display: block;
  max-width: 620px;
  margin-top: 10px;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option strong {
  grid-area: cta;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  color: #0057bf;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  text-decoration: underline;
  text-decoration-color: rgba(0, 87, 191, 0.28);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    opacity 240ms ease,
    padding 240ms ease,
    text-decoration-color 240ms ease,
    transform 240ms ease,
    visibility 240ms ease;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus-visible strong {
  color: #004aa8;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  text-decoration-color: rgba(0, 74, 168, 0.46);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus-visible strong {
  min-height: 38px;
  padding: 0 16px;
  color: #ffffff;
  text-decoration: none;
  background: #075fd4;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(7, 95, 212, 0.18);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:hover:not(.is-active) strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus-visible:not(.is-active) strong {
  color: #004aa8;
  text-decoration-color: rgba(0, 74, 168, 0.55);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
  font-size: 1rem;
}

@media (max-width: 980px) {
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel {
    margin-top: 30px;
    padding: 14px;
    border-radius: 12px;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media {
    aspect-ratio: 1.48 / 1;
    max-height: 330px;
    border-radius: 10px;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-panel-media img {
    object-position: 56% 54%;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-options {
    padding: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
    display: block;
    margin: 0;
    padding: 20px 18px;
    transform: none;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:not(.rfid-intent-option--primary) {
    padding-right: 8px;
    padding-left: 8px;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:hover,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option:focus-visible,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible {
    transform: none;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
    font-size: clamp(1.28rem, 5.6vw, 1.55rem);
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p,
  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
    font-size: 0.96rem;
    line-height: 1.54;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option strong {
    display: inline-flex;
    margin-top: 16px;
    min-height: 34px;
    align-items: center;
  }

  body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active strong {
    padding: 0 16px;
    color: #ffffff;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-decoration: none;
    background: #075fd4;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(7, 95, 212, 0.18);
  }
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(24px, 3.5vw, 42px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid article {
  min-height: 190px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(199, 214, 232, 0.82);
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(20, 48, 84, 0.06);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid h3 {
  margin: 0 0 12px;
  color: #071a42;
  font-size: 1.05rem;
  line-height: 1.25;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid p {
  margin: 0;
  color: #40536c;
  font-size: 0.95rem;
  line-height: 1.58;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-tech-tabs-section .rfid-nfc-help-panel--inline {
  margin-top: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-copy h3 {
  max-width: 620px;
  margin: 0 0 14px;
  color: #071a42;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.08;
}

@media (max-width: 1180px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-tech-compact-grid article {
    min-height: auto;
    padding: 18px;
  }
}

/* RFID/MIFARE secondary Android NFC orientation block. */
body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-section {
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(56px, 7vw, 86px);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 3.2vw, 44px);
  background:
    linear-gradient(135deg, rgba(241, 248, 255, 0.96), rgba(255, 255, 255, 0.98)),
    #f8fbff;
  border: 1px solid rgba(185, 207, 232, 0.74);
  border-radius: 14px;
  box-shadow: 0 22px 58px rgba(20, 48, 84, 0.07);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-copy {
  max-width: 720px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-copy > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: #0057bf;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-copy h2 {
  max-width: 620px;
  margin: 0 0 14px;
  color: #071a42;
  font-size: clamp(1.72rem, 2.4vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-copy p {
  max-width: 680px;
  margin: 0 0 14px;
  color: #40536c;
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.64;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-note {
  max-width: 680px;
  margin: 20px 0 22px;
  padding: 16px 18px;
  color: #32465f;
  font-size: 0.94rem;
  line-height: 1.52;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(185, 207, 232, 0.76);
  border-left: 3px solid rgba(0, 87, 191, 0.5);
  border-radius: 8px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-copy .button {
  min-width: 0;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.42 / 1;
  background: #eaf3ff;
  border: 1px solid rgba(203, 218, 235, 0.82);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(20, 48, 84, 0.1);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 54%;
  filter: saturate(0.96) contrast(1.02);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel.rfid-nfc-help-panel--route {
  grid-template-columns: 1fr;
  align-self: start;
  padding: clamp(20px, 2.6vw, 30px);
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel.rfid-nfc-help-panel--route .rfid-nfc-help-copy {
  max-width: none;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel.rfid-nfc-help-panel--route .rfid-nfc-help-copy h3 {
  margin: 0 0 12px;
  color: #071a42;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.12;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-media--screenshots {
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.5vw, 18px);
  background:
    linear-gradient(135deg, rgba(10, 15, 24, 0.98), rgba(22, 31, 45, 0.96)),
    #05070a;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-media--screenshots img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  border-radius: 6px;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-technical-form small {
  display: block;
  margin-top: 8px;
  color: #607189;
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-media {
    order: -1;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-section {
    padding-top: 10px;
    padding-bottom: 54px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-panel {
    padding: 16px;
    border-radius: 12px;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-copy h2 {
    font-size: clamp(1.48rem, 8vw, 1.95rem);
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-nfc-help-copy p {
    font-size: 0.96rem;
    line-height: 1.58;
  }
}

/* Final override: compatibility block stays dark, scoped and isolated. */
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 99, 214, 0.22), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(63, 169, 245, 0.14), transparent 30%),
    linear-gradient(135deg, #020817 0%, #061327 48%, #071a42 100%);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  grid-template-areas:
    "media intro"
    "media body"
    "media steps"
    "media action";
  gap: clamp(22px, 3vw, 38px) clamp(46px, 6vw, 88px);
  align-items: center;
  padding: clamp(22px, 3vw, 42px) 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media {
  grid-area: media;
  align-self: stretch;
  min-height: clamp(560px, 58vw, 760px);
  margin: 0;
  overflow: hidden;
  aspect-ratio: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(185, 211, 244, 0.22);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 36% center;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy {
  grid-area: intro;
  max-width: 680px;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy .section-number {
  color: #a8d4ff;
  background: rgba(63, 169, 245, 0.12);
  border-color: rgba(168, 212, 255, 0.24);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy h2 {
  max-width: 640px;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.1vw, 3.18rem);
  line-height: 1.08;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy > .rfid-compatibility-subtitle {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(226, 238, 255, 0.92);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  font-weight: 650;
  line-height: 1.62;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body {
  grid-area: body;
  max-width: 640px;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body > p {
  max-width: 640px;
  color: rgba(218, 230, 248, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps {
  grid-area: steps;
  max-width: 700px;
  border-top: 1px solid rgba(185, 211, 244, 0.22);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps li {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  color: rgba(218, 230, 248, 0.78);
  border-bottom: 1px solid rgba(185, 211, 244, 0.16);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps li::before {
  width: 28px;
  height: 28px;
  color: #a8d4ff;
  font-size: 0.78rem;
  background: rgba(63, 169, 245, 0.09);
  border-color: rgba(168, 212, 255, 0.26);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps strong {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps span {
  color: rgba(218, 230, 248, 0.76);
  line-height: 1.6;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-action {
  grid-area: action;
  max-width: 700px;
  gap: 24px;
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-warning {
  color: #071a42;
  background: linear-gradient(135deg, rgba(244, 249, 255, 0.98), rgba(218, 237, 255, 0.95));
  border-color: rgba(168, 212, 255, 0.68);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-action .button-primary {
  min-width: min(100%, 292px);
  min-height: 54px;
  padding-inline: 26px;
  font-size: 0.98rem;
  box-shadow: 0 18px 46px rgba(0, 87, 191, 0.32);
}

body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-action .button-primary:hover,
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-action .button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(0, 87, 191, 0.42);
}

@media (max-width: 1180px) {
  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "media"
      "body"
      "steps"
      "action";
    padding-block: 0;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media {
    min-height: auto;
    aspect-ratio: 1.18 / 1;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media img {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-layout {
    gap: 24px;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy h2 {
    font-size: clamp(2rem, 9vw, 2.45rem);
    line-height: 1.08;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-copy > .rfid-compatibility-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-media {
    aspect-ratio: 1 / 0.88;
    border-radius: 14px;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-steps li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
  }

  body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-warning {
    padding: 17px 18px;
  }
}

/* Final scoped locks for the approved RFID/MIFARE polish pass. */
body[data-page="tarjetas-rfid-mifare"] #compatibilidad-tarjetas-rfid .rfid-compatibility-body > p {
  color: rgba(226, 238, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.72;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:focus-visible strong {
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff;
  background: #075fd4;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 95, 212, 0.28);
}

/* End-of-file balance: keep all three RFID decision options on the same type scale. */
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary {
  padding: clamp(19px, 2vw, 25px) clamp(8px, 1.2vw, 18px);
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option h3,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary h3 {
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  line-height: 1.12;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option p,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary p {
  font-size: 0.96rem;
  line-height: 1.52;
}

body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option.is-active:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary:focus-visible strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:hover strong,
body[data-page="tarjetas-rfid-mifare"] #que-necesitas-hacer .rfid-intent-option--primary.is-active:focus-visible strong {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.9rem;
}

/* Final main-page hero lock. Control horario is the exact spacing reference. */
body[data-page="/control-horario-empresas/"] .time-hero-full,
body[data-page="/control-de-accesos/"] .access-hero-full,
body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero,
body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero {
  box-sizing: border-box;
  min-height: 0 !important;
  height: var(--aceris-main-hero-height) !important;
}

body[data-page="/control-de-accesos/"] .access-hero-full {
  height: 700px !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
  height: calc(var(--aceris-main-hero-height) + 10px) !important;
}

body[data-page="/control-horario-empresas/"] .access-hero-full-content,
body[data-page="/control-de-accesos/"] .access-hero-full-content,
body[data-page="tarjetas-rfid-mifare"] .access-hero-full-content,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-inner {
  box-sizing: border-box;
  min-height: 0 !important;
  height: 100% !important;
  align-items: flex-start !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body[data-page="/control-horario-empresas/"] .time-hero-copy,
body[data-page="/control-de-accesos/"] .access-hero-copy,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy {
  box-sizing: border-box;
  max-width: 680px;
  margin-top: 0 !important;
  padding-top: var(--aceris-main-hero-copy-top) !important;
  padding-bottom: var(--aceris-main-hero-copy-bottom) !important;
}

body[data-page="/control-horario-empresas/"] .time-hero-copy h1,
body[data-page="/control-de-accesos/"] .access-hero-copy h1,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy h1,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy h1 {
  font-size: var(--aceris-main-hero-title) !important;
  line-height: 1.02 !important;
}

body[data-page="/control-horario-empresas/"] .time-hero-copy > p,
body[data-page="/control-de-accesos/"] .access-hero-copy > p,
body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy > p,
body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy > p {
  font-size: var(--aceris-main-hero-text) !important;
  line-height: 1.68 !important;
}

body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero .rfid-hero-copy > p {
  font-size: var(--aceris-main-hero-text) !important;
  line-height: 1.68 !important;
}

@media (max-width: 820px) {
  body[data-page="/control-de-accesos/"] .access-hero-full {
    height: 740px !important;
  }

  body[data-page="tarjetas-rfid-mifare"] .rfid-redesign-hero {
    height: 553px !important;
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero.credentials-hero,
  body[data-page="impresoras-tarjetas-pvc"] .service-hero-inner {
    min-height: 0 !important;
    height: var(--aceris-main-hero-height) !important;
  }

  body[data-page="/control-horario-empresas/"] .time-hero-copy,
  body[data-page="/control-de-accesos/"] .access-hero-copy,
  body[data-page="tarjetas-rfid-mifare"] .rfid-hero-copy,
  body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy {
    width: 100%;
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy > p {
    margin-top: 16px;
  }

  body[data-page="impresoras-tarjetas-pvc"] .service-hero-copy .hero-actions {
    margin-top: 24px;
  }

  body[data-page="impresoras-tarjetas-pvc"] .credentials-hero-benefits {
    margin-top: 12px;
  }
}
/* International language selector */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  flex: 0 0 auto;
  margin-left: 0.25rem;
  color: #8795aa;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.language-switcher a {
  min-width: 2rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 0.45rem;
  color: #42526a;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: #075cca;
  background: #eef5ff;
}

.language-switcher a.is-current {
  color: #075cca;
  background: #e8f1ff;
}

@media (min-width: 1121px) and (max-width: 1360px) {
  .site-header {
    gap: 12px;
    padding-inline: 22px;
  }

  .site-nav {
    gap: 9px;
    font-size: 0.72rem;
  }

  .site-nav .language-switcher {
    gap: 0.18rem;
    margin-left: 0;
  }

  .site-nav .language-switcher a {
    min-width: 1.75rem;
    padding-inline: 0.18rem;
  }

  .site-nav .nav-cta {
    padding-inline: 14px;
  }
}

.legal-translation-note {
  background: #eef5ff;
  border-bottom: 1px solid #d6e6fb;
  color: #334155;
}

.legal-translation-note p {
  margin: 0;
  padding: 0.8rem 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.legal-translation-note a {
  color: #075cca;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .site-nav .language-switcher {
    width: 100%;
    justify-content: center;
    order: 20;
    margin: 0.35rem 0 0;
    padding: 0.55rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
  }

  .site-nav .language-switcher a {
    width: auto;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.65rem;
  }
}
