:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #eef1f5;
  --text: #17191d;
  --muted: #626a75;
  --line: #d7dde6;
  --orange: #ff6a1a;
  --orange-soft: #ffe7d8;
  --dark: #20242c;
  --blue: #1d5fd1;
  --blue-soft: #e8f0ff;
  --shadow: 0 14px 34px rgba(20, 25, 33, 0.08);
  --radius: 18px;
  --speed: 600ms;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: transparent;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #fff7f1 0%, #f8fbff 52%, #ffffff 100%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.home-page .site-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.home-page .site-header:not(.scrolled) .main-nav a {
  color: #f2f5fb;
}

.home-page .site-header:not(.scrolled) .main-nav a:hover {
  color: #ffffff;
}

.home-page .site-header:not(.scrolled) .menu-toggle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
}

.home-page .site-header:not(.scrolled) .menu-toggle span {
  background: #ffffff;
}

.home-page .site-header.scrolled {
  padding: 0.36rem 0.86rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-mark {
  display: block;
  width: auto;
  height: 63px;
  transform: scale(1.5);
  transform-origin: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  font-size: 0.79rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-only-nav-link {
  display: none;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #2f3743;
  border-radius: 999px;
}

.floating-notice-wrap {
  position: fixed;
  right: 14px;
  bottom: 84px;
  z-index: 160;
  display: grid;
  gap: 0.5rem;
}

.floating-notice {
  min-width: 240px;
  max-width: min(380px, calc(100vw - 24px));
  border-radius: 12px;
  border: 1px solid #bfe8cf;
  background: #f2fff7;
  color: #11663c;
  padding: 0.62rem 0.72rem;
  box-shadow: 0 10px 26px rgba(17, 94, 55, 0.2);
  font-size: 0.82rem;
  line-height: 1.35;
}

.main-nav a:hover {
  color: var(--text);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.22rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

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

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

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

.btn-light {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.section {
  min-height: auto;
  padding: 5.3rem 1.2rem 3rem;
  display: grid;
  place-items: center;
}

.panel-content {
  width: min(1080px, 100%);
}

.hero {
  position: relative;
  min-height: 100svh;
  background-image: url("Imagenes/portada.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15, 17, 20, 0.78), rgba(15, 17, 20, 0.48) 48%, rgba(255, 106, 26, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #dce2ec;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  margin-top: 0.6rem;
  font-size: clamp(1.9rem, 5.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.brand-orange {
  color: #ff8a1e;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.hero-copy {
  margin: 1rem auto 0;
  max-width: 760px;
  color: #ecf2fb;
  line-height: 1.6;
}

.speed-tag {
  margin: 0.9rem auto 0;
  width: fit-content;
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.2);
  border: 1px solid rgba(255, 153, 92, 0.75);
  color: #ff9a5e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-highlights {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-highlights li {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info,
.pricing,
.city,
.process,
.manage,
.dashboard-page {
  background: transparent;
}

.pricing,
.manage,
.dashboard-page {
  background: transparent;
}

/* Cliente y backoffice: fondo neutro (sin tono naranja) */
.dashboard-page {
  background: transparent;
}

.dashboard-page .manage {
  background: transparent;
}

.benefits-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.plan-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

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

.plan-card {
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-card.featured {
  border-color: rgba(255, 106, 26, 0.4);
  background: linear-gradient(180deg, #ffffff, #fff4ec);
}

.plan-card.premium-card {
  border-color: rgba(29, 95, 209, 0.35);
  background: linear-gradient(180deg, #ffffff, #edf3ff);
}

.plan-eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.73rem;
}

.plan-card.premium-card .plan-eyebrow {
  color: var(--blue);
}

.plan-card h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.plan-card strong {
  display: block;
  margin-top: 0.7rem;
  font-size: 1.4rem;
}

.plan-card p:last-child {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.5;
}

.plan-list {
  margin: 0.7rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  display: grid;
  gap: 0.32rem;
  line-height: 1.4;
  font-size: 0.9rem;
}

.plan-action {
  margin-top: 0.9rem;
  display: inline-flex;
}

.city-wrap {
  text-align: center;
}

.city-wrap p {
  margin: 1rem auto 0;
  max-width: 880px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.peek-full-bleed .panel-content {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}

.peek-full-bleed .panel-content > h2,
.peek-full-bleed .peek-copy {
  padding-left: 5vw;
  padding-right: 1rem;
}

.peek-carousel {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.peek-viewport {
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: auto;
}

.peek-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.peek-card {
  flex: 0 0 80vw;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  transition: border-radius 0.25s ease, box-shadow 0.25s ease;
}

.peek-card.is-active {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.peek-card.is-next {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.peek-card img {
  width: 100%;
  height: clamp(240px, 42vw, 600px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.peek-copy {
  padding: 0.3rem 0.2rem 0;
}

.peek-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
}

.peek-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.peek-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: #293444;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.peek-arrow.prev {
  left: clamp(12px, 3.6vw, 54px);
}

.peek-arrow.next {
  right: clamp(12px, 3.2vw, 44px);
}

.peek-arrow:hover {
  border-color: #d6deea;
  background: #f7f9fc;
}

label {
  display: grid;
  gap: 0.42rem;
  text-align: left;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

input,
select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.82rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus {
  outline: 2px solid rgba(255, 106, 26, 0.25);
  outline-offset: 1px;
}

.result {
  min-height: 1.2rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.result.success {
  color: #058447;
}

.result.error {
  color: #ba2f2f;
}

.forgot-link-btn {
  margin-top: 0.55rem;
  border: 0;
  background: transparent;
  color: #4d5d78;
  text-decoration: underline;
  font-size: 0.84rem;
  cursor: pointer;
  text-underline-offset: 2px;
}

.forgot-link-btn:hover {
  color: #253448;
}

.forgot-modal-card {
  width: min(460px, calc(100vw - 2rem));
}

.process-subtitle {
  margin-top: 0.7rem;
  color: var(--muted);
}

.process-showcase {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.9rem;
}

.process-card {
  position: relative;
  min-height: 330px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.process-card-machine {
  background-image: url("Imagenes/autolavado.jpeg");
}

.process-card-interior {
  background-image: url("Imagenes/Limpieza_interior.jpg");
}

.process-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.82), rgba(10, 12, 16, 0.12));
  color: #fff;
}

.process-overlay h3 {
  font-size: 1.1rem;
}

.process-overlay p {
  margin-top: 0.45rem;
  color: #dfe5ee;
  line-height: 1.5;
}

.process-steps {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: #d14b00;
  font-size: 0.82rem;
  font-weight: 700;
}

.step-card h3 {
  margin-top: 0.55rem;
  font-size: 0.96rem;
}

.step-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.manage-subtitle {
  margin-top: 0.65rem;
  color: var(--muted);
}

.manage-wrap > h1,
.manage-wrap > h2,
.manage-wrap > .manage-subtitle {
  text-align: center;
}

.register-premium-badge {
  width: fit-content;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid #ffc59d;
  background: linear-gradient(180deg, #fff8f2, #fff1e7);
  box-shadow: 0 10px 22px rgba(255, 106, 26, 0.14);
}

.register-premium-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #ff6a1a;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
}

.register-premium-badge span {
  color: #d95508;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.account-grid.single {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}

.account-card,
.dashboard,
.dash-card,
.history-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.account-card {
  padding: 1rem;
}

.account-card h3 {
  margin-bottom: 0.8rem;
}

.stack-form {
  display: grid;
  gap: 0.8rem;
}

.auth-switch {
  margin-top: 0.7rem;
}

.signup-bonus {
  margin: 0.2rem 0 0.85rem;
  border: 1px solid #ffd3b8;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7f1, #fff0e3);
  padding: 0.7rem 0.78rem;
}

.signup-bonus strong {
  display: block;
  color: #c94c06;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.signup-bonus p {
  margin-top: 0.3rem;
  color: #454e5b;
  font-size: 0.9rem;
  line-height: 1.35;
}

.signup-bonus span {
  color: var(--orange);
  font-weight: 800;
}

.dashboard {
  margin-top: 1.1rem;
  padding: 1rem;
}

.portal-title-wrap {
  margin-bottom: 0.6rem;
}

.portal-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.12rem, 2.3vw, 1.45rem);
  font-weight: 800;
}

.portal-subtitle {
  margin: 0.28rem 0 0;
  color: #5a6576;
  font-size: 0.92rem;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.dashboard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #ced6e4;
  background: #fff;
}

.dashboard-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.dash-title {
  color: var(--text);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.dash-card {
  padding: 0.9rem;
}

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

.loyalty-grid {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0.42rem;
}

.loyalty-cell {
  aspect-ratio: 1 / 1;
  border: 1px solid #cfd6e1;
  border-radius: 10px;
  background: #eef2f7;
  display: grid;
  place-items: center;
}

.loyalty-cell img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  filter: grayscale(1) saturate(0.15);
  opacity: 0.55;
}

.loyalty-cell.filled {
  border-color: rgba(255, 106, 26, 0.45);
  background: linear-gradient(180deg, #fff8f2, #fff1e6);
}

.loyalty-cell.filled img {
  filter: none;
  opacity: 1;
}

.dash-card h4 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.dash-card p {
  color: var(--muted);
  line-height: 1.45;
}

.btn-danger-mini {
  background: #fff2f2;
  color: #c33838;
  border: 1px solid #e6a6a6;
  padding: 0.36rem 0.62rem;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
}

.sub-details {
  margin-top: 0.2rem;
  display: grid;
  gap: 0.35rem;
}

.sub-detail-row {
  margin: 0;
  display: block;
  line-height: 1.45;
}

.sub-detail-label {
  color: #2d3440;
  font-weight: 700;
  margin-right: 0.35rem;
}

.sub-detail-value {
  color: var(--muted);
}

.profile-details {
  margin-top: 0.2rem;
  display: grid;
  gap: 0.35rem;
}

.profile-input {
  width: 100%;
  min-width: 0;
  font-size: 0.9rem;
  padding: 0.45rem 0.55rem;
}

.btn.is-loading {
  opacity: 0.9;
  cursor: wait;
}

.user-qr-card {
  text-align: center;
}

.user-qr-image {
  margin-top: 0.5rem;
  width: 170px;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.user-qr-note {
  margin-top: 0.55rem;
}

.user-qr-note-strong {
  color: #db6a1c !important;
  font-weight: 800;
}

.qr-toast {
  position: fixed;
  right: 16px;
  top: 90px;
  z-index: 140;
  width: min(420px, calc(100vw - 24px));
  border: 1px solid #b7e9cb;
  background: #f2fff7;
  color: #175f3e;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(20, 72, 48, 0.2);
  padding: 0.72rem 0.8rem;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.qr-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.qr-toast.is-exit {
  transform: translateX(120%);
  opacity: 0;
}

.qr-toast strong {
  display: block;
  font-size: 0.92rem;
}

.qr-toast p {
  margin: 0.22rem 0 0;
  font-size: 0.84rem;
  line-height: 1.35;
  color: #1d6544;
}

.user-qr-code {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: #4a5260;
  word-break: break-all;
}

.qr-stats {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.qr-stat {
  border: 1px solid #d6dde8;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0.58rem 0.62rem;
}

.qr-stat-label {
  display: block;
  font-size: 0.72rem;
  color: #5f6876;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qr-stat strong {
  margin-top: 0.2rem;
  display: block;
  color: #1d6645;
  font-size: 1.08rem;
  font-weight: 800;
}

.btn-wompi {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.btn-wompi img {
  width: 48px;
  height: auto;
  object-fit: contain;
}

.wompi-close-x {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.sub-badge {
  margin: 0.6rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
}

.sub-icon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.sub-basic {
  background: var(--blue-soft);
  border-color: #cfe0ff;
  color: var(--blue);
}

.sub-basic .sub-icon {
  background: var(--blue);
}

.sub-premium {
  background: var(--orange-soft);
  border-color: #ffd3b8;
  color: #d24d00;
}

.sub-premium .sub-icon {
  background: var(--orange);
}

.dash-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.muted-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
}

.scanner-wrap {
  margin-top: 0.7rem;
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 0.5rem;
  background: var(--surface-soft);
}

.qr-video {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  background: #111;
  object-fit: cover;
}

.history-block {
  margin-top: 0.9rem;
  padding: 0.9rem;
}

.history-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.history-toolbar {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.history-toolbar p {
  margin: 0;
  color: #5a6576;
  font-size: 0.8rem;
}

.history-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.72rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: var(--surface-soft);
}

.history-item.history-positive {
  color: #177048;
  border-color: #a9ddc3;
  background: #f1fbf5;
}

.history-item.history-negative {
  color: #b93f3f;
  border-color: #efc0c0;
  background: #fff3f3;
}

.history-amount {
  font-weight: 800;
}

.history-amount.history-positive {
  color: #127243;
}

.history-amount.history-negative {
  color: #b33636;
}

.site-footer {
  padding: 1.4rem 1.2rem;
  background: #0d1015;
  border-top: 1px solid #1f2631;
}

.footer-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.footer-grid h3 {
  margin-bottom: 0.55rem;
}

.footer-grid p,
.footer-grid a {
  color: #d8dde6;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-grid h3 {
  color: #ffffff;
}

.map-wrap {
  margin-top: 0.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2a3444;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.copyright {
  margin-top: 1rem;
  text-align: center;
  color: #d0d6df;
  font-size: 0.82rem;
}

.staff-access {
  margin-top: 0.9rem;
  text-align: center;
}

.staff-access a {
  font-size: 0.7rem;
  color: #bcc4d0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  border-radius: 999px;
  background: #20c45a;
  color: #fff;
  padding: 0.78rem 1rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(10, 18, 12, 0.26);
}

.kiosk-page {
  min-height: 100vh;
  background: transparent;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.kiosk-wrap {
  width: min(880px, 100%);
  text-align: center;
  padding: 1.4rem;
}

.kiosk-logo {
  width: min(300px, 72vw);
  height: auto;
}

.kiosk-wrap h1 {
  margin: 0.9rem 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.kiosk-wrap p {
  margin: 0.2rem auto 1rem;
  max-width: 700px;
  color: #4f5865;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
}

.kiosk-pricing {
  margin: 0.55rem auto 1rem;
  width: min(760px, 100%);
  text-align: left;
}

.kiosk-pricing h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}

.kiosk-pricing .plan-grid {
  margin-top: 0;
}

.kiosk-pricing .plan-card {
  padding: 0.85rem 0.9rem;
}

.kiosk-pricing .plan-card h3 {
  font-size: 1rem;
}

.kiosk-pricing .plan-card strong {
  font-size: 1.2rem;
}

.kiosk-pricing .plan-card p {
  margin: 0.4rem 0 0;
  max-width: none;
  font-size: 0.88rem;
  line-height: 1.4;
}

.kiosk-scanner {
  margin: 0 auto;
  width: min(520px, 92vw);
  position: relative;
  border: 1px dashed var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 0.5rem;
}

.kiosk-scanner .qr-video {
  height: min(54vh, 420px);
}

.kiosk-actions {
  justify-content: center;
}

.kiosk-confirm-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(460px, calc(100% - 20px));
  border: 1px solid #a4dfbf;
  background: linear-gradient(180deg, #f4fff8 0%, #ffffff 100%);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 26px rgba(21, 96, 58, 0.15);
  text-align: left;
  z-index: 4;
}

.kiosk-confirm-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.kiosk-confirm-logo {
  width: 58px;
  height: auto;
}

.kiosk-confirm-title {
  display: block;
  color: #11814b;
  font-size: 1.08rem;
}

.kiosk-confirm-subtitle {
  margin: 0.1rem 0 0;
  color: #406153;
  font-size: 0.9rem;
}

.kiosk-confirm-grid {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.8rem;
}

.kiosk-confirm-grid p {
  margin: 0;
  color: #2f3b47;
  font-size: 0.98rem;
}

.bo-login {
  max-width: 420px;
}

.bo-section {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.bo-full {
  width: min(100%, calc(100vw - 20px));
  max-width: none;
}

.bo-table-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 0.9rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.bo-users-wrap {
  overflow: visible;
}

.bo-users-mobile {
  display: none;
}

.bo-mobile-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.72rem;
  display: grid;
  gap: 0.38rem;
}

.bo-mobile-card p {
  margin: 0;
  font-size: 0.84rem;
  color: #535d6a;
}

.bo-mobile-card p strong {
  color: #2d3541;
}

.bo-mobile-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.bo-mobile-head h5 {
  margin: 0;
  font-size: 0.95rem;
}

.bo-mobile-head small {
  color: #6a7380;
  font-size: 0.72rem;
}

.bo-mobile-recharge-label {
  margin-top: 0.3rem;
}

.bo-mobile-empty {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.bo-metrics {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.bo-filters-dates {
  margin-top: 0.1rem;
  grid-template-columns: 112px 112px minmax(360px, 1fr) 36px;
  gap: 0.36rem;
}

.bo-qr-ops {
  margin-top: 0.9rem;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.bo-top-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
  gap: 0.9rem;
  align-items: start;
}

.bo-left-panel {
  min-width: 0;
}

.bo-qr-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 0.85rem;
  align-items: start;
}

.bo-qr-left p {
  margin: 0.25rem 0 0.6rem;
  font-size: 0.84rem;
  color: #5f6773;
}

.bo-qr-left label {
  font-size: 0.78rem;
  color: #616a76;
}

.bo-qr-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bo-scanner-square {
  width: 200px;
  height: 200px;
  padding: 0.35rem;
  margin-top: 0;
}

.bo-scanner-square .qr-video {
  height: 100%;
}

.bo-qr-video-square {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.bo-metric-card {
  border: 1px solid #ffd4bb;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff7f1 0%, #fff 100%);
  padding: 0.72rem 0.85rem;
}

.bo-metric-card p {
  color: #7f5f4c;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bo-metric-card strong {
  margin-top: 0.3rem;
  display: block;
  font-size: 1.46rem;
  font-weight: 800;
  color: var(--orange);
}

.bo-metric-card:first-child {
  border-color: #87d9a6;
  background: linear-gradient(180deg, #f1fff7 0%, #ffffff 100%);
}

.bo-metric-card:first-child p {
  color: #2b7a49;
}

.bo-metric-card:first-child strong {
  color: #1d8a49;
}

.bo-filters {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: minmax(260px, 2fr) minmax(170px, 1fr) minmax(170px, 1fr) auto auto;
  gap: 0.6rem;
  align-items: end;
}

.bo-filters.bo-filters-dates {
  grid-template-columns: 128px 128px minmax(330px, 1fr) 34px !important;
  column-gap: 0.56rem !important;
  row-gap: 0.36rem !important;
}

.bo-filters:not(.bo-filters-dates) {
  grid-template-columns: minmax(260px, 1fr) minmax(170px, 210px);
}

.bo-filters label {
  min-width: 0;
}

.bo-filters-dates label {
  display: grid;
  gap: 0.15rem;
  font-size: 0.7rem;
}

.bo-filters-dates input[type='date'] {
  width: 100%;
  height: 32px;
  padding: 0.2rem 0.42rem;
  font-size: 0.72rem;
}

.bo-date-presets {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  align-items: center;
  overflow-x: auto;
}

.bo-date-presets .btn {
  padding: 0.42rem 0.62rem;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

#boResetFiltersBtn {
  justify-self: start;
}

.bo-btn-clear {
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0;
  background: #ffdede !important;
  border-color: #d84b4b !important;
  color: #d84b4b !important;
  font-weight: 800;
}

.bo-btn-clear:hover {
  background: #d84b4b !important;
  color: #fff !important;
}

#boResetFiltersBtn.btn.btn-light.bo-btn-clear {
  background: #ffdede !important;
  border-color: #d84b4b !important;
  color: #d84b4b !important;
}

.bo-table-actions {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-end;
}

.bo-users-toolbar {
  margin-top: 0.55rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.bo-users-count {
  margin: 0;
  font-size: 0.8rem;
  color: #5c6678;
}

.bo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1380px;
}

.bo-users-table {
  min-width: 0;
  table-layout: auto;
}

.bo-users-table td input,
.bo-users-table td select {
  min-width: 0;
}

.bo-table th,
.bo-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.55rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.8rem;
}

.bo-table thead th {
  background: #f6f8fc;
  color: #3c4552;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bo-table td input,
.bo-table td select {
  width: 100%;
  min-width: 95px;
  font-size: 0.78rem;
  padding: 0.5rem 0.55rem;
}

.bo-edit-field:disabled {
  background: #f4f6fa;
  border-color: #d3d9e3;
  color: #6d7480;
  cursor: not-allowed;
}

tr.is-editing .bo-edit-field {
  background: #fff;
  border-color: #c2ccdb;
  color: var(--text);
  cursor: text;
}

.bo-col-id {
  width: 110px;
}

.bo-id-cell {
  font-weight: 700;
  font-size: 0.72rem;
  color: #4d5561;
}

.bo-col-name {
  min-width: 285px;
  padding-right: 0.9rem;
}

.bo-col-name input {
  margin-right: 0.25rem;
}

.bo-col-cedula {
  min-width: 150px;
}

.bo-col-email {
  min-width: 320px;
  padding-left: 0.9rem;
}

.bo-col-email input {
  margin-left: 0.25rem;
}

.bo-col-mini {
  width: 70px;
  max-width: 70px;
}

.bo-col-mini input {
  min-width: 62px !important;
  text-align: center;
}

.bo-col-plate {
  width: 98px;
  max-width: 98px;
}

.bo-col-plate input {
  max-width: 78px;
  min-width: 78px !important;
  text-transform: uppercase;
}

.bo-col-wallet {
  width: 96px;
  max-width: 96px;
}

.bo-col-wallet input {
  min-width: 80px !important;
}

.bo-col-payment {
  width: 108px;
  max-width: 108px;
}

.bo-col-payment select {
  min-width: 92px !important;
}

.bo-plan-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 32px;
  padding: 0 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.bo-plan-pill.is-premium {
  color: #b04e12;
  background: #fff0e7;
  border-color: #ffc8a7;
}

.bo-plan-pill.is-basic {
  color: #245fae;
  background: #eaf2ff;
  border-color: #bfd5ff;
}

.bo-col-recharge {
  width: 96px;
  max-width: 96px;
}

.bo-cell-user {
  display: grid;
  gap: 0.36rem;
}

.bo-cell-user small {
  color: var(--muted);
  font-size: 0.72rem;
}

.bo-users-table td.bo-actions-cell {
  min-width: 156px;
  white-space: nowrap;
}

.bo-users-table td.bo-actions-cell .bo-btn {
  margin-right: 0.35rem;
}

.bo-users-table td.bo-actions-cell .bo-menu {
  display: inline-block;
  vertical-align: middle;
}

.bo-mobile-card .bo-actions-cell {
  min-width: 156px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.bo-recharge-input {
  border: 1.5px solid #ff9b64 !important;
  background: #fff8f2;
  font-weight: 700;
  min-width: 80px !important;
}

.bo-recharge-input::placeholder {
  color: #db7a45;
}

.bo-btn {
  width: 96px;
  margin-bottom: 0;
  padding: 0.55rem 0.65rem;
  flex: 0 0 auto;
}

.bo-menu {
  position: relative;
  display: inline-block;
  margin-left: 0;
  flex: 0 0 auto;
}

.bo-menu-trigger {
  border: 1px solid var(--line);
  background: #fff;
  color: #4d5562;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.bo-menu-list {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 140px;
  display: block;
  white-space: normal;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 50;
}

.bo-menu-list[hidden] {
  display: none !important;
}

.bo-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0.45rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  color: #3f4754;
  font-size: 0.78rem;
}

.bo-menu-item.danger {
  color: #b33333;
}

.bo-menu-item:hover {
  background: #f5f7fb;
}

.bo-audit {
  margin-top: 1rem;
}

.bo-audit-filters {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 0.6rem;
  align-items: end;
}

.bo-audit-type-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.bo-audit-type-filters .btn {
  padding: 0.55rem 0.95rem;
}

.bo-audit-type-filters .btn.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.bo-audit-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.bo-audit-toolbar p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.bo-audit-pager {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.bo-audit-pager span {
  font-size: 0.8rem;
  color: #4e5662;
}

.bo-audit-table {
  min-width: 900px;
}

.bo-users-table .bo-col-cedula,
.bo-users-table td.bo-col-cedula {
  display: none;
}

.bo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}

.bo-modal[hidden] {
  display: none !important;
}

.bo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 22, 30, 0.52);
  backdrop-filter: blur(3px);
}

.bo-modal-card {
  position: relative;
  width: min(760px, calc(100vw - 24px));
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 1rem 1rem 0.9rem;
  box-shadow: var(--shadow);
  max-height: min(90vh, 760px);
  overflow: auto;
}

.bo-modal-card h4 {
  margin: 0 0 0.7rem;
}

.bo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.2rem;
}

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

.bo-modal-grid label {
  margin: 0;
}

.bo-users-table td input,
.bo-users-table td select {
  min-width: 0 !important;
}

.bo-modal-actions {
  justify-content: flex-end;
}

.wompi-modal-card {
  width: min(520px, calc(100vw - 24px));
}

.wompi-topup-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2c3442;
  margin: 0.75rem 0 0.35rem;
}

.wompi-topup-presets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.wompi-topup-preset {
  border: 1px solid var(--line);
  background: #fff;
  color: #1b2435;
  border-radius: 999px;
  height: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.wompi-topup-preset.is-active {
  border-color: var(--orange);
  background: rgba(255, 122, 24, 0.1);
  color: #9a4309;
}

.wompi-topup-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 0.95rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: #182032;
  background: #fff;
}

.wompi-topup-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.16);
}

.wompi-topup-actions {
  justify-content: flex-end;
  margin-top: 0.8rem;
}

.wompi-topup-loading {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #505a6b;
  font-size: 0.84rem;
}

.wompi-topup-loading[hidden] {
  display: none !important;
}

.wompi-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #ffcfb0;
  border-top-color: #ff7a18;
  animation: wompi-spin 0.8s linear infinite;
}

@keyframes wompi-spin {
  to {
    transform: rotate(360deg);
  }
}

.thankyou-page {
  min-height: 100vh;
  background: #f5f7fb;
  padding: 6.2rem 1rem 2rem;
}

.thankyou-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.thankyou-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  text-align: center;
}

.thankyou-badge {
  width: 84px;
  height: 84px;
  margin: 0 auto 0.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 24, 0.12);
}

.thankyou-badge img {
  width: 42px;
  height: 42px;
}

.thankyou-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.thankyou-subtitle {
  color: #5c6779;
  margin: 0.5rem auto 0.95rem;
  max-width: 45ch;
}

.thankyou-status {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafbfd;
  padding: 0.9rem;
  text-align: left;
}

.thankyou-status p {
  margin: 0.35rem 0;
  color: #3f4959;
}

#wompiThanksStatus {
  font-weight: 700;
}

#wompiThanksTx,
#wompiThanksRef {
  word-break: break-word;
}

.thankyou-help {
  margin: 0.4rem 0 0.55rem !important;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 122, 24, 0.1);
  color: #9a4309 !important;
  font-size: 0.9rem;
  line-height: 1.35;
}

.text-success {
  color: #128247 !important;
}

.text-error {
  color: #be3a34 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--speed) ease, transform var(--speed) ease;
}

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

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

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

  .loyalty-card {
    grid-column: span 1;
  }

  .plan-grid.two-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header > .btn {
    display: none;
  }

  .site-header > .btn.mobile-auth-btn {
    display: inline-flex;
    order: 2;
    padding: 0.45rem 0.72rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

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

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1rem 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.62rem;
    box-shadow: 0 18px 30px rgba(24, 30, 41, 0.08);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .mobile-only-nav-link {
    display: inline-flex;
    margin-top: 0.25rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--line);
    color: var(--orange);
    font-weight: 700;
  }

  .logo-mark {
    height: 42px;
    transform: scale(1.2);
    transform-origin: left center;
  }

  .hero-content {
    max-width: 94%;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(1.52rem, 8.2vw, 2.2rem);
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 0.93rem;
    line-height: 1.45;
    max-width: 96%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .speed-tag {
    margin-top: 0.7rem;
    font-size: 0.72rem;
    padding: 0.4rem 0.64rem;
  }

  .hero-cta {
    margin-top: 1.1rem;
    gap: 0.55rem;
  }

  .hero-cta .btn {
    padding: 0.6rem 0.94rem;
    font-size: 0.68rem;
  }

  .hero-highlights {
    display: none;
  }

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

  .history-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .process-showcase,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .peek-carousel {
    gap: 0.55rem;
  }

  .peek-card {
    flex-basis: 80vw;
  }

  .peek-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.08rem;
  }

  .peek-arrow.prev {
    left: 0.42rem;
  }

  .peek-arrow.next {
    right: 0.42rem;
  }

  .qr-toast {
    top: 78px;
    right: 10px;
    width: min(96vw, 360px);
  }

  .peek-full-bleed .panel-content {
    padding-left: 0;
  }

  .peek-full-bleed .panel-content > h2,
  .peek-full-bleed .peek-copy {
    padding-left: 5vw;
    padding-right: 0.7rem;
  }

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

  .bo-filters {
    grid-template-columns: 1fr;
  }

  .bo-filters.bo-filters-dates {
    grid-template-columns: 1fr 1fr !important;
    column-gap: 0.5rem !important;
    row-gap: 0.46rem !important;
  }

  .bo-filters.bo-filters-dates > label:nth-child(1) {
    grid-column: 1 / 2;
  }

  .bo-filters.bo-filters-dates > label:nth-child(2) {
    grid-column: 2 / 3;
  }

  .bo-filters.bo-filters-dates > .bo-date-presets {
    grid-column: 1 / 2;
    flex-wrap: wrap;
    overflow-x: visible;
    row-gap: 0.35rem;
  }

  .bo-filters.bo-filters-dates > #boResetFiltersBtn {
    grid-column: 2 / 3;
    justify-self: end;
    align-self: end;
  }

  .bo-users-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .bo-top-layout {
    grid-template-columns: 1fr;
  }

  .bo-qr-split {
    grid-template-columns: 1fr;
  }

  .bo-qr-ops {
    max-width: none;
    justify-self: stretch;
  }

  .bo-audit-filters {
    grid-template-columns: 1fr;
  }

  .bo-users-wrap {
    overflow-x: auto;
  }

  .bo-users-wrap,
  .bo-table-actions {
    display: none;
  }

  .bo-users-mobile {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.7rem;
  }

  .backoffice-page {
    overflow-x: hidden;
  }

  .backoffice-page main,
  .backoffice-page .dashboard-page,
  .backoffice-page .section,
  .backoffice-page .manage,
  .backoffice-page .panel-content {
    width: 100%;
    max-width: 100%;
  }

  .backoffice-page .section {
    display: block;
    place-items: initial;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  .backoffice-page .bo-section {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  .backoffice-page .bo-full {
    width: 100% !important;
    max-width: 100%;
    margin: 0;
  }

  .backoffice-page .dashboard {
    width: 100%;
    max-width: 100%;
    padding: 0.72rem;
    margin: 0;
  }

  .backoffice-page .dashboard-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .backoffice-page .dashboard-top h3 {
    margin: 0;
  }

  .backoffice-page .dashboard-top .dash-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .backoffice-page .dashboard-top .dash-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.56rem 0.58rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .backoffice-page .bo-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .backoffice-page .bo-metric-card {
    padding: 0.48rem 0.5rem;
  }

  .backoffice-page .bo-metric-card p {
    font-size: 0.56rem;
    letter-spacing: 0.03em;
  }

  .backoffice-page .bo-metric-card strong {
    margin-top: 0.12rem;
    font-size: 1rem;
    line-height: 1.05;
  }

  .backoffice-page .bo-audit .bo-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bo-modal-grid {
    grid-template-columns: 1fr;
  }

  .kiosk-confirm-grid {
    grid-template-columns: 1fr;
  }

  .kiosk-pricing .plan-grid.two-cols {
    grid-template-columns: 1fr;
  }

  .bo-scanner-square {
    width: 180px;
    height: 180px;
  }

  .hero {
    background-position: 60% center;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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