/* ============================================================
   SmartVOC · Posmo CX
   Edita colores y tipografía aquí. No hace falta instalar nada.
   ============================================================ */

:root {
  --paper: #ffffff;
  --ink: #151917;
  --mute: #6a706c;
  --faint: #9aa09c;
  --mist: #f4f5f4;
  --line: #e6e8e6;
  --accent: #FF5500;
  --accent-hover: #FF5500;
  --glass: #00000052;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --radius: 16px;
  --radius-xl: 24px;
  --wrap: 1140px;
  --header: 70px;
}

    .industries { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px; }
    .industry-card { background:#fff; border:1px solid var(--line,#e6e8ee); border-radius:18px; padding:22px 22px 20px; min-height:168px; }
    .industry-card .tag { font-size:11px; letter-spacing:.16em; text-transform:uppercase; font-weight:700; color:#0840b1; margin:0 0 10px; }
    .industry-card h3 { margin:0 0 8px; font-size:20px; line-height:1.25; }
    .industry-card p { margin:0; color:var(--mute,#5b6170); font-size:14px; line-height:1.55; }
    .journey-row { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; margin-top:28px; }
    .journey-card { background:#fff; border-radius:16px; padding:16px; border:1px solid var(--line,#e6e8ee); }
    .journey-card h3 { font-size:15px; margin:0 0 6px; }
    .journey-card p { margin:0; font-size:13px; color:var(--mute,#5b6170); line-height:1.45; }
    @media (max-width: 980px) {
      .industries { grid-template-columns:1fr; }
      .journey-row { grid-template-columns:1fr 1fr; }
    }
    
.pcxcolor{color:#FF5500!important;font-weight: bold;}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { 
	max-width: 100%; 
	display: block; 
	overflow: hidden;
  }
ideo { max-width: 100%; display: block; height: 100dvh;
	overflow: hidden;
  min-height: -webkit-fill-available; /* Fallback para iOS antiguos */
  object-fit: cover;
  }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: color-mix(in srgb, var(--accent) 18%, white); color: var(--ink); }

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}
.wrap-wide {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--accent); }
.btn-inverse { background: var(--paper); color: var(--ink); }
.btn-inverse:hover { background: var(--accent); color: var(--paper); }
.btn-outline {
  background: transparent;
  border-color: rgb(21 25 23 / 0.15);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  border-color: rgb(255 255 255 / 0.4);
  color: var(--paper);
}
.btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-sm { height: 40px; padding: 0 20px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 32px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  transition: background 0.3s, backdrop-filter 0.3s;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(12px);
}
.site-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.nav-desktop { display: none; gap: 32px; }
.nav-desktop a {
  font-size: 15px;
  color: rgb(21 25 23 / 0.7);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--ink); }
.menu-toggle {
  width: 44px; height: 44px;
  border: 0; background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
}
.menu-toggle .icon-close { display: none; }
.site-header.is-open .menu-toggle .icon-menu { display: none; }
.site-header.is-open .menu-toggle .icon-close { display: block; }
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header) 0 0;
  z-index: 40;
  background: var(--paper);
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
}
.site-header.is-open + .nav-mobile,
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.nav-mobile a.accent { border: 0; padding-top: 24px; color: var(--accent); }

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo span { color: var(--accent); }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
  .nav-mobile, .nav-mobile.is-open { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
/*  min-height: 100svh;*/
  padding-top: var(--header);
  background: var(--paper);
}
.hero-inner {
/*  min-height: calc(100svh - var(--header));*/
  display: flex;
  flex-direction: column;
  padding: 16px 20px 40px;
}
.hero-frame {
  position: relative;
  flex: 1;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide.is-active { opacity: 1; }
.slide img, .slide video {
  width: 100%; /*max-height: 700px;*/
  height: 100dvh;
	overflow: hidden;
  min-height: -webkit-fill-available; /* Fallback para iOS antiguos */
  object-fit: cover;
  object-position: center 20%;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(21 25 23 / 0.35), rgb(21 25 23 / 0.12), transparent);
  pointer-events: none;
}
.hero-ui {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  padding: 28px 20px;
  pointer-events: none;
}
.hero-card {
  pointer-events: auto;
  flex: 0 1 560px;
  max-width: 560px;
  background: var(--glass);
  background-color: rgba(8, 64, 177, 0.6)!important;
  color: var(--paper);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 28px;
}
.hero-copy { display: grid; }
.hero-copy-item {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.hero-copy-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.kicker {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgb(255 255 255 / 0.8);
}
.hero-card h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-card .lede {
  margin: 20px 0 0;
  max-width: 28rem;
  font-size: 16px;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.85);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; pointer-events: auto; }
.hero-side {
  pointer-events: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  align-self: flex-end;
}
.slider-nav { display: flex; align-items: center; gap: 8px; }
.slider-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.5);
  background: transparent;
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.slider-btn:hover { background: var(--paper); color: var(--ink); }
.slider-dots { display: flex; align-items: center; gap: 6px; padding: 0 4px; }
.slider-dot {
  position: relative;
  height: 6px;
  width: 6px;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.45);
  padding: 0;
  overflow: hidden;
  transition: width 0.3s;
}
.slider-dot.is-active { width: 32px; background: rgb(255 255 255 / 0.35); }
.slider-progress {
  position: absolute; inset: 0;
  transform-origin: left;
  transform: scaleX(0);
  background: var(--paper);
  border-radius: 999px;
  animation: slider-progress linear forwards;
}
@keyframes slider-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
}
.scroll-hint span.circle {
  width: 48px; height: 48px;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.scroll-hint .label { display: none; }

@media (min-width: 640px) {
  .hero-card { padding: 48px; }
  .hero-card h1 { font-size: 40px; }
  .hero-card .lede { font-size: 18px; }
  .hero-ui { padding: 32px; }
  .scroll-hint .label { display: inline; }
}
@media (min-width: 1024px) {
  .hero-frame, .hero-ui { min-height: 680px; }
  .hero-ui {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 48px;
  }
  .hero-card h1 { font-size: 50px; }
}

/* ---------- Marquee ---------- */
.trust-bar {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-x 28s linear infinite;
}
.marquee-track ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.marquee-track li {
  display: flex;
  align-items: center;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
  white-space: nowrap;
}
.marquee-track li::before {
  content: "";
  width: 6px; height: 6px;
  margin-right: 32px;
  border-radius: 999px;
  background: var(--accent);
}
@keyframes marquee-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 112px 0; }
.section-mist { background: var(--mist); }
.section-ink { background: var(--ink); color: var(--paper); }
.label {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.section-ink .label { color: rgb(255 255 255 / 0.55); }
h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
}
h3 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
.lede-mute {
  margin: 24px 0 0;
  max-width: 60rem;
  font-size: 18px;
  line-height: 1.6;
  color: var(--mute);
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* Problem */
.problem-grid {
  display: grid;
  gap: 48px;
  margin-top: 80px;
}
@media (min-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr minmax(0, 0.9fr); gap: 80px; align-items: start; }
}
.cost-list { margin: 40px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cost-list li { border-bottom: 1px solid var(--line); }
.cost-list li:last-child { border-bottom: 0; }
.cost-list a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}
.cost-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.cost-list h3 { margin: 8px 0 0; font-size: 20px; font-weight: 500; }
.cost-list p { margin: 8px 0 0; max-width: 36rem; font-size: 15px; line-height: 1.6; color: var(--mute); }
.cost-list svg { flex-shrink: 0; margin-top: 4px; color: rgb(21 25 23 / 0.3); }
.cost-list a:hover svg { color: var(--accent); }
.photo { width: 100%; height: 520px; object-fit: cover; object-position: top; border-radius: var(--radius); }
@media (min-width: 1024px) { .photo { height: 640px; } }

/* Solution cards */
.pillars {
  display: grid;
  gap: 20px;
  margin-top: 64px;
}
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillar {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
}
.check-dot {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  margin-bottom: 20px;
}
.pillar h3 { font-size: 20px; }
.pillar p { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--mute); }

.why-head {
  display: grid;
  gap: 48px;
  margin-top: 96px;
}
@media (min-width: 1024px) { .why-head { grid-template-columns: 1fr 1fr; align-items: end; } }
.why-list { margin: 56px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-list li {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: 0; }
.why-list .n {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.why-list p { margin: 0; font-size: 15px; line-height: 1.6; color: rgb(21 25 23 / 0.8); }
@media (min-width: 640px) { .why-list li { grid-template-columns: 180px 1fr; gap: 32px; } }

/* Plans */
.plan { margin-bottom: 64px; }
.plan-shot { position: relative; overflow: hidden; border-radius: var(--radius); }
.plan-shot img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
}
.plan:hover .plan-shot img { transform: scale(1.03); }
.plan-shot .dim { position: absolute; inset: 0; background: rgb(21 25 23 / 0.2); }
.plan-shot .cta {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.plan-body {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 640px) { .plan-shot img { height: 380px; } }
@media (min-width: 1024px) {
  .plan-shot img { height: 460px; }
  .plan-body { grid-template-columns: 1.1fr 0.9fr; }
}
.plan-body h3 { font-size: 24px; display: inline; }
.badge {
  display: inline-block;
  margin-left: 8px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  vertical-align: middle;
}
.price { margin: 8px 0 0; font-size: 30px; font-weight: 600; }
.price small { font-size: 16px; font-weight: 500; color: var(--mute); }
.plan-body .ideal { margin: 12px 0 0; max-width: 36rem; font-size: 15px; line-height: 1.6; color: var(--mute); }
.feat { margin: 0; padding: 0; list-style: none; }
.feat li { display: flex; gap: 12px; font-size: 15px; line-height: 1.4; margin-bottom: 10px; }
.feat svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.ondemand {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 48px 32px;
}
.ondemand .eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.ondemand h3 { margin-top: 8px; font-size: 24px; }
.ondemand p { margin: 12px 0 0; max-width: 40rem; font-size: 15px; line-height: 1.6; color: var(--mute); }

/* Tables */
.table-card {
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.table-scroll { overflow-x: auto; }
table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}
th {
  padding: 16px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--mist);
  border-bottom: 1px solid var(--line);
}
th.hi { background: rgb(8, 64, 177, 1); color: var(--mist); }
td {
  padding: 20px 24px;
  vertical-align: top;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}
tr:last-child td { border-bottom: 0; }
td.aspect { font-weight: 500; color: var(--ink); }
td.hi { background: rgb(11 92 255 / 0.06); font-weight: 500; color: var(--ink); }
td.lo { color: var(--mute); }
.note { margin: 20px 0 0; max-width: 48rem; font-size: 14px; line-height: 1.6; color: var(--mute); }
.compare-copy { margin-top: 64px; max-width: 48rem; font-size: 15px; line-height: 1.7; color: var(--mute); }
.compare-copy ol { margin: 20px 0 0; padding: 0; list-style: none; }
.compare-copy li { margin-bottom: 8px; color: rgb(21 25 23 / 0.8); }

/* Quote */
.quote svg { color: rgb(21 25 23 / 0.2); }
blockquote {
  margin: 24px 0 0;
  max-width: 56rem;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.quote-src { margin: 32px 0 0; font-size: 14px; font-weight: 500; color: var(--mute); }

/* Impact — 5 boxes, one row */
.impact-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.impact-card {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 24px;
}
.impact-card .n { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: 0.16em; color: var(--accent); }
.impact-card h3 { margin: 16px 0 0; font-size: 17px; line-height: 1.3; }
.impact-card p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: var(--mute); }
@media (min-width: 1024px) {
  .impact-row { display: grid; grid-template-columns: repeat(5, 1fr); overflow: visible; padding: 0; }
  .impact-card { flex: none; }
}

.link-quiet { font-size: 14px; font-weight: 500; }
.link-quiet:hover { color: var(--accent); }

/* Process */
.steps {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; } }
.step {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
}
.step .n { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: 0.16em; color: var(--accent); }
.step h3 { margin: 12px 0 0; font-size: 24px; }
.step p { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--mute); }

/* Confianza */
.split {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.check-list { margin: 32px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.check-list svg { flex-shrink: 0; margin-top: 4px; color: var(--accent); }
.team {
  display: grid;
  gap: 24px;
  padding-bottom: 112px;
}
@media (min-width: 640px) { .team { grid-template-columns: 1fr 1fr; } }
.person { background: var(--mist); border-radius: var(--radius); padding: 32px; }
.person h3 { font-size: 20px; }
.person .role { margin: 4px 0 0; font-size: 14px; color: var(--mute); }
.person .contact { margin-top: 20px; font-size: 14px; }
.person .contact a { display: block; }
.person .contact a:hover { color: var(--accent); }

/* Diagnóstico */
.diag-grid {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) { .diag-grid { grid-template-columns: 1fr 1fr; } }
.section-ink .lede-mute { color: rgb(255 255 255 / 0.7); }
.section-ink a.under {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgb(255 255 255 / 0.3);
}
.field { display: grid; gap: 8px; font-size: 14px; margin-bottom: 16px; }
.field span { color: rgb(255 255 255 / 0.7); }
.field input, .field textarea {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(255 255 255 / 0.05);
  color: var(--paper);
  padding: 0 16px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
.field textarea { height: auto; padding: 12px 16px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.form-ok {
  background: rgb(255 255 255 / 0.08);
  border-radius: var(--radius);
  padding: 40px;
}

/* Footer */
.site-footer { border-top: 1px solid var(--line); }
.footer-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, #FF5500, #feb47b) 1;
  padding: 48px 0;
}
.footer-marquee p {
  margin: 0;
  padding: 0 16px;
  font-size: 12vw;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
@media (min-width: 640px) { .footer-marquee p { font-size: 8vw; } }
.footer-grid {
  display: grid;
  gap: 40px;
  padding: 64px 0;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.foot-label {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.footer-grid ul { margin: 0; padding: 0; list-style: none; font-size: 15px; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--accent); }
.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 40px;
  font-size: 12px;
  color: var(--faint);
}
@media (min-width: 640px) {
  .footer-copy { flex-direction: row; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  .slider-progress { animation: none !important; transform: scaleX(1); }
  .slide, .hero-copy-item { transition: none; }
}
