/* ====================================================
   UNIQUE.CSS — Landing Fabricación de Stands & Material POP
   Design tokens + premium layout
   ==================================================== */

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --unique-bg: #f4f1e8;
  --unique-surface: #fffaf2;
  --unique-surface-strong: #fffdf8;
  --unique-ink: #18212f;
  --unique-muted: #5e6978;
  --unique-line: rgba(24, 33, 47, 0.1);
  --unique-brand: #b94d28;
  --unique-brand-dark: #822f16;
  --unique-accent: #123c55;
  --unique-shadow: 0 24px 60px rgba(24, 33, 47, 0.12);
}

/* ── Global ─────────────────────────────────────────── */
body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #fff7ed 0%, var(--unique-bg) 38%, #efe8dd 100%);
  color: var(--unique-ink);
}

h1, h2, h3, .section-kicker, .project-pill, .hero-eyebrow {
  font-family: "Space Grotesk", sans-serif;
}

.unique-page { overflow-x: clip; }

/* ── Reveal animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section shell ──────────────────────────────────── */
.section-shell {
  position: relative;
  padding: clamp(72px, 9vw, 110px) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.22)),
    repeating-linear-gradient(135deg, rgba(18,60,85,0.03) 0, rgba(18,60,85,0.03) 12px, transparent 12px, transparent 34px);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(185,77,40,0.22), transparent 30%),
    linear-gradient(145deg, #142736 0%, #0d1c29 55%, #132433 100%);
  color: #f5f0e8;
}

/* ── Section headings ───────────────────────────────── */
.section-heading {
  max-width: 860px;
  margin: 0 auto 2.7rem;
  text-align: center;
}
.section-heading h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.04;
}
.section-heading p {
  margin-bottom: 0;
  color: var(--unique-muted);
  font-size: 1.04rem;
}
.section-heading-light p { color: rgba(245,240,232,0.78); }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--unique-brand);
}
.section-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

/* ── Hero ───────────────────────────────────────────── */
#hero-unique {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 72px;
  background:
    linear-gradient(130deg, rgba(255,248,237,0.92), rgba(244,241,232,0.76)),
    linear-gradient(160deg, #efe5d8 0%, #f8f2e8 50%, #e6ddd0 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  pointer-events: none;
}
.hero-orb-a {
  top: 120px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(185,77,40,0.18), transparent 72%);
}
.hero-orb-b {
  right: -80px; bottom: 40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(18,60,85,0.18), transparent 68%);
}

.hero-copy { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(185,77,40,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  color: var(--unique-brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#hero-unique h1 {
  max-width: 700px;
  margin-bottom: 1.15rem;
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}
#hero-unique h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--unique-brand), #d5643d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: var(--unique-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-bottom: 1.35rem;
}

.btn.btn-primary {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--unique-brand) 0%, #d5643d 100%);
  box-shadow: 0 18px 40px rgba(185,77,40,0.24);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: linear-gradient(135deg, var(--unique-brand-dark) 0%, var(--unique-brand) 100%);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(185,77,40,0.30);
}

.hero-microcopy {
  color: var(--unique-accent);
  font-size: 0.96rem;
  font-weight: 700;
}
.hero-microcopy i { margin-right: 0.3rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.hero-badges span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(18,60,85,0.08);
  color: var(--unique-accent);
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-badges span i { margin-right: 0.35rem; }

/* Hero image stage */
.hero-stage {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.hero-stage-main,
.hero-stage-side img {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24,33,47,0.08);
  border-radius: 28px;
  box-shadow: var(--unique-shadow);
}
.hero-stage-main img,
.hero-stage-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-stage-main {
  min-height: 580px;
  background: #d7d2c8;
}
.hero-stage-side {
  display: grid;
  gap: 1rem;
}
.hero-stage-side img:first-child { min-height: 285px; background: #ebe7df; }
.hero-stage-side img:last-child  { min-height: 285px; }

.hero-stage-card {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(18,24,32,0.8);
  backdrop-filter: blur(10px);
  color: #fff8ef;
}
.hero-stage-card strong { font-size: 1rem; font-weight: 800; }
.hero-stage-card span { font-size: 0.88rem; opacity: 0.85; }

/* ── Solution cards (Fabricación de Stands) ─────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.solution-card {
  height: 100%;
  padding: 1.6rem;
  border: 1px solid var(--unique-line);
  border-radius: 28px;
  background: rgba(255,252,246,0.9);
  box-shadow: var(--unique-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(24,33,47,0.16);
}

.solution-media {
  position: relative;
  overflow: hidden;
  margin: -0.35rem -0.35rem 1.1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f1ebe2 0%, #fffaf2 100%);
  border: 1px solid rgba(24, 33, 47, 0.06);
}

.solution-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,0.28) 30%, transparent 46%);
  transform: translateX(-140%);
  pointer-events: none;
}

.solution-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card:hover .solution-media::before {
  animation: shineSweep 0.65s ease forwards;
}

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

.solution-icon {
  width: 58px; height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(185,77,40,0.12), rgba(18,60,85,0.1));
  color: var(--unique-brand-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.solution-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.36rem;
  font-weight: 700;
}
.solution-card p { color: var(--unique-muted); }
.solution-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--unique-ink);
}
.solution-card li + li { margin-top: 0.45rem; }

.solution-focus {
  color: var(--unique-accent);
  font-size: 1.02rem;
  font-weight: 600;
}
.solution-focus i { margin-right: 0.4rem; color: var(--unique-brand); }

/* ── Display section (Displays Únicos) ──────────────── */
.display-carousel {
  position: relative;
  display: grid;
  gap: 1rem;
  align-self: start;
}
.featured-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}
.display-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.22), transparent 38%),
    linear-gradient(180deg, #15324a, #0d1e2d);
  box-shadow: 0 30px 70px rgba(12, 20, 30, 0.24);
}
.display-visual-button {
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  cursor: pointer;
  display: block;
}
.display-visual-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,0.2) 30%, transparent 46%);
  transform: translateX(-140%);
  pointer-events: none;
  z-index: 5;
}
.display-visual-button:hover::before {
  animation: shineSweep 0.7s ease forwards;
}
.display-stage {
  position: absolute;
  inset: 0;
  perspective: 1600px;
}
.display-card {
  position: absolute;
  top: 14%;
  bottom: 24%;
  width: 74%;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 50px rgba(6, 11, 18, 0.28);
  background: rgba(255,255,255,0.06);
  transition:
    left 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.display-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8, 16, 25, 0.42));
  pointer-events: none;
}
.display-card--active {
  left: 13%;
  z-index: 3;
  transform: translateX(0) scale(1) rotateY(0deg);
}
.display-card--prev {
  left: -12%;
  z-index: 2;
  opacity: 0.56;
  filter: saturate(0.8);
  transform: translateX(0) scale(0.88) rotateY(18deg);
}
.display-card--next {
  left: 38%;
  z-index: 2;
  opacity: 0.56;
  filter: saturate(0.8);
  transform: translateX(0) scale(0.88) rotateY(-18deg);
}
.display-card.is-to-prev {
  left: -12%;
  z-index: 2;
  opacity: 0.56;
  filter: saturate(0.8);
  transform: translateX(0) scale(0.88) rotateY(18deg);
}
.display-card.is-to-active {
  left: 13%;
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translateX(0) scale(1) rotateY(0deg);
}
.display-card.is-to-next {
  left: 38%;
  z-index: 2;
  opacity: 0.56;
  filter: saturate(0.8);
  transform: translateX(0) scale(0.88) rotateY(-18deg);
}
.display-card.is-to-hidden-left {
  left: -18%;
  z-index: 1;
  opacity: 0;
  filter: blur(5px);
  transform: translateX(0) scale(0.82) rotateY(24deg);
}
.display-card.is-to-hidden-right {
  left: 56%;
  z-index: 1;
  opacity: 0;
  filter: blur(5px);
  transform: translateX(0) scale(0.82) rotateY(-24deg);
}
.display-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.display-visual-button:hover .display-card--active .display-card-image {
  transform: scale(1.035);
}
.display-card-image {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.display-visual-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem;
}
.display-copy {
  max-width: min(68%, 280px);
  display: grid;
  gap: 0.36rem;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  background: rgba(10, 18, 28, 0.56);
  backdrop-filter: blur(12px);
  color: #fff8ef;
  text-align: left;
}
.display-copy-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f2bfaa;
}
.display-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}
.display-copy span:last-child {
  font-size: 0.82rem;
  color: rgba(255, 248, 239, 0.76);
  line-height: 1.45;
}
.display-visual-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(18,24,32,0.78);
  backdrop-filter: blur(10px);
  color: #fff8ef;
  font-size: 0.88rem;
  font-weight: 700;
  flex-shrink: 0;
}
.display-visual-chip i {
  color: #f8c6b4;
}
.display-nav {
  position: absolute;
  top: calc(50% - 26px);
  z-index: 6;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(10, 18, 28, 0.64);
  color: #fff8ef;
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(8, 16, 25, 0.26);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}
.display-nav:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(200, 100, 53, 0.88);
  border-color: rgba(255,255,255,0.22);
}
.display-nav--prev { left: -18px; }
.display-nav--next { right: -18px; }
.display-progress {
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(18, 37, 54, 0.1);
}
.display-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c86435, #f2bfaa);
  transform-origin: left center;
}
.display-progress span.is-running {
  animation: displayProgress var(--display-progress-duration, 3.8s) línear forwards;
}
.display-lightbox-dialog {
  max-width: min(560px, calc(100vw - 2rem));
}
.display-lightbox-content {
  background: rgba(9, 18, 28, 0.96) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}
.display-lightbox-body {
  display: grid;
  place-items: center;
  padding: 1rem;
}
.display-lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: min(78vh, 860px);
  margin-inline: auto;
  object-fit: contain;
  border-radius: 22px;
}
.display-content {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 0.85rem;
  height: auto;
}

/* ── Material POP grid ──────────────────────────────── */
.pop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.pop-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  grid-template-areas:
    "icon media"
    "title media"
    "text media";
  align-items: start;
  column-gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--unique-line);
  border-radius: 28px;
  background: rgba(255,252,246,0.9);
  box-shadow: var(--unique-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(24,33,47,0.16);
}
.pop-media {
  grid-area: media;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #f1ebe2 0%, #fffaf2 100%);
  border: 1px solid rgba(24, 33, 47, 0.06);
  width: 100%;
  max-width: 148px;
  justify-self: end;
  align-self: stretch;
}
.pop-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,0.28) 30%, transparent 46%);
  transform: translateX(-140%);
  pointer-events: none;
}
.pop-media img {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.pop-card:hover .pop-media::before {
  animation: shineSweep 0.65s ease forwards;
}
.pop-card:hover .pop-media img {
  transform: scale(1.045);
}
.pop-card--dual-media {
  grid-template-columns: minmax(0, 1fr) 280px;
}
.pop-card--dual-media .pop-media {
  max-width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.4rem;
}
.pop-card--dual-media .pop-media img {
  height: 220px;
  aspect-ratio: unset;
  border-radius: 14px;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.pop-card--dual-media .pop-media img:hover {
  opacity: 0.88;
  transform: scale(1.03);
}
.pop-icon {
  grid-area: icon;
  width: 58px; height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(185,77,40,0.12), rgba(18,60,85,0.1));
  color: var(--unique-brand-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.pop-card h3 {
  grid-area: title;
  margin-bottom: 0.75rem;
  font-size: 1.36rem;
  font-weight: 700;
}
.pop-card p {
  grid-area: text;
  color: var(--unique-muted);
  margin-bottom: 0;
}

/* ── Featured layout (Proyectos Destacados) ─────────── */
.featured-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
}

.featured-layout--projects {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.featured-story {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 30px 70px rgba(3,7,12,0.28);
  transition: transform 0.3s ease;
}
.featured-story:hover { transform: translateY(-4px); }

.featured-story-lg { grid-row: span 2; }

.featured-layout--projects .featured-story {
  min-height: 0;
}

.featured-layout--projects .featured-story-lg {
  height: 100%;
}

.featured-media img,
.featured-media video {
  width: 100%;
  display: block;
  object-fit: cover;
}
.featured-story-lg .featured-media video {
  height: 100%;
  min-height: 560px;
  background: #081119;
}
.featured-story:not(.featured-story-lg) .featured-media img { height: 270px; }

.featured-layout--projects .featured-story:not(.featured-story-lg) .featured-media img,
.featured-layout--projects .dual-media img {
  height: clamp(200px, 21vw, 248px);
}

.featured-copy { padding: 1.2rem 1.2rem 1.35rem; }

.featured-layout--projects .featured-copy {
  padding: 1rem 1.05rem 1.1rem;
}

.featured-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #f8c6b4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-copy h3 {
  margin-bottom: 0.75rem;
  font-size: 1.36rem;
  font-weight: 700;
}
.featured-copy p { color: rgba(245,240,232,0.75); }

.featured-layout--projects .featured-story:not(.featured-story-lg) .featured-copy h3 {
  font-size: 1.18rem;
  margin-bottom: 0.45rem;
}

.featured-layout--projects .featured-story:not(.featured-story-lg) .featured-copy p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.dual-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dual-media img { height: 270px; }

/* ── Differentiators ────────────────────────────────── */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.differentiator-card {
  height: 100%;
  padding: 1.6rem;
  border: 1px solid var(--unique-line);
  border-radius: 28px;
  background: rgba(255,252,246,0.9);
  box-shadow: var(--unique-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.differentiator-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(24,33,47,0.16);
}
.differentiator-card i {
  width: 58px; height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(185,77,40,0.12), rgba(18,60,85,0.1));
  color: var(--unique-brand-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.differentiator-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.36rem;
  font-weight: 700;
}
.differentiator-card p { color: var(--unique-muted); }

/* ── Use cases ──────────────────────────────────────── */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.use-case-card {
  height: auto;
  padding: 1.15rem 1.15rem 1.08rem;
  border: 1px solid var(--unique-line);
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--unique-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(24,33,47,0.16);
}
.use-case-icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(185,77,40,0.12), rgba(18,60,85,0.1));
  color: var(--unique-brand-dark);
  font-size: 1.12rem;
  margin-bottom: 0.8rem;
}
.use-case-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
  font-weight: 700;
}
.use-case-card p {
  color: var(--unique-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 0;
}
.display-content .solution-focus {
  margin-top: 0 !important;
  padding: 0.82rem 1rem;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.88);
  border: 1px solid rgba(185, 77, 40, 0.12);
  box-shadow: 0 12px 28px rgba(24, 33, 47, 0.08);
  line-height: 1.5;
  font-size: 0.94rem;
}

/* ── Process ────────────────────────────────────────── */
#process .card {
  height: 100%;
  padding: 1.7rem 1.4rem;
  border: 1px solid var(--unique-line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,249,242,0.96));
  box-shadow: var(--unique-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#process .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(24,33,47,0.16);
}
#process .card-body { padding: 0; }
#process .process-step {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--unique-brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
#process .card-title {
  margin-bottom: 0.75rem;
  font-size: 1.36rem;
  font-weight: 700;
}
#process .card i { color: var(--unique-accent); }
#process .card-text { color: var(--unique-muted); }

/* ── CTA Final ──────────────────────────────────────── */
#contact-cta-unique { padding-top: 40px; }

.cta-panel {
  padding: clamp(2rem, 5vw, 3.4rem);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 24%),
    linear-gradient(145deg, #163346 0%, #0f2533 52%, #1a3e54 100%);
  box-shadow: 0 34px 80px rgba(9,19,27,0.28);
  color: #fff6ec;
}
.cta-panel h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.08;
}
.cta-panel p {
  max-width: 720px;
  margin: 0.9rem auto 0;
  color: rgba(255,246,236,0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-top: 1.5rem;
}
.cta-actions span {
  color: #f8c6b4;
  font-weight: 700;
}
.cta-actions span i { margin-right: 0.3rem; }

/* ── Footer ─────────────────────────────────────────── */
footer.py-4 {
  background: #0d1c29 !important;
  color: rgba(255,246,236,0.75);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1199.98px) {
  .hero-stage { grid-template-columns: 1fr; }
  .hero-stage-main { min-height: 460px; }
  .hero-stage-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-layout { grid-template-columns: 1fr; }
  .featured-story-lg { grid-row: auto; }
  .featured-story-lg .featured-media video { min-height: 420px; }
  .featured-layout--projects {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 991.98px) {
  #hero-unique { min-height: auto; padding-top: 110px; }
  .solution-grid,
  .use-cases-grid,
  .differentiators-grid { grid-template-columns: 1fr; }
  .pop-grid { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .featured-layout { grid-template-columns: 1fr; }
  .display-carousel {
    display: block;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
  .display-visual-button {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    display: block;
  }
  .display-nav--prev { left: 10px; }
  .display-nav--next { right: 10px; }
}

@media (max-width: 767.98px) {
  .section-shell { padding: 62px 0; }
  #hero-unique h1 { font-size: clamp(2.3rem, 11vw, 3.7rem); }
  .hero-actions, .cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-stage-main { min-height: 360px; }
  .hero-stage-side { grid-template-columns: 1fr; }
  .hero-stage-side img:first-child,
  .hero-stage-side img:last-child,
  .featured-story:not(.featured-story-lg) .featured-media img,
  .dual-media img {
    min-height: 220px;
    height: 220px;
  }
  .featured-story-lg .featured-media video { min-height: 280px; }
  .display-visual {
    aspect-ratio: 4 / 5;
    border-radius: 28px;
  }
  .display-visual-button { max-width: min(100%, 520px); }
  .display-card {
    top: 3.5%;
    bottom: 18%;
    width: 76%;
    border-radius: 22px;
  }
  .display-card--active { left: 12%; }
  .display-card--prev { left: -22%; opacity: 0.32; }
  .display-card--next { left: 46%; opacity: 0.32; }
  .display-visual-overlay {
    inset: auto 12px 12px 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .display-copy { max-width: none; }
  .display-nav {
    width: 44px;
    height: 44px;
    top: calc(50% - 22px);
  }
  .solution-media img { height: 220px; }
  .pop-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "icon"
      "title"
      "text";
    row-gap: 1rem;
  }
  .pop-media {
    max-width: 180px;
    justify-self: start;
  }
  .pop-media img { aspect-ratio: 9 / 16; }
  .display-visual-chip {
    right: 14px;
    bottom: 14px;
    padding: 0.65rem 0.82rem;
    font-size: 0.82rem;
  }
}

/* ══════════════════════════════════════════════════════
   MICRO-ANIMATIONS & INTERACTIVITY
   ══════════════════════════════════════════════════════ */

/* ── Staggered reveal for grid children ─────────────── */
.reveal.visible .solution-card,
.reveal.visible .pop-card,
.reveal.visible .differentiator-card,
.reveal.visible .use-case-card,
.reveal.visible #servicesRow > div {
  opacity: 0;
  animation: staggerFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal.visible .solution-card:nth-child(1),
.reveal.visible .pop-card:nth-child(1),
.reveal.visible .differentiator-card:nth-child(1),
.reveal.visible .use-case-card:nth-child(1),
.reveal.visible #servicesRow > div:nth-child(1) { animation-delay: 0.05s; }
.reveal.visible .solution-card:nth-child(2),
.reveal.visible .pop-card:nth-child(2),
.reveal.visible .differentiator-card:nth-child(2),
.reveal.visible .use-case-card:nth-child(2),
.reveal.visible #servicesRow > div:nth-child(2) { animation-delay: 0.15s; }
.reveal.visible .solution-card:nth-child(3),
.reveal.visible .pop-card:nth-child(3),
.reveal.visible .differentiator-card:nth-child(3),
.reveal.visible .use-case-card:nth-child(3),
.reveal.visible #servicesRow > div:nth-child(3) { animation-delay: 0.25s; }
.reveal.visible .pop-card:nth-child(4),
.reveal.visible .differentiator-card:nth-child(4),
.reveal.visible #servicesRow > div:nth-child(4) { animation-delay: 0.35s; }
.reveal.visible #servicesRow > div:nth-child(5) { animation-delay: 0.45s; }

@keyframes staggerFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero orbs floating ─────────────────────────────── */
.hero-orb-a { animation: floatOrb 8s ease-in-out infinite; }
.hero-orb-b { animation: floatOrb 10s ease-in-out infinite reverse; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(20px, -30px) scale(1.05); }
  66%      { transform: translate(-15px, 15px) scale(0.97); }
}

/* ── Hero eyebrow entrance ──────────────────────────── */
.hero-eyebrow {
  animation: slideInLeft 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Hero title entrance ────────────────────────────── */
#hero-unique h1 {
  animation: fadeInUp 0.9s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-lead {
  animation: fadeInUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-actions {
  animation: fadeInUp 0.9s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-badges {
  animation: fadeInUp 0.9s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero stage images entrance ─────────────────────── */
.hero-stage-main {
  animation: scaleIn 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-stage-side img:first-child {
  animation: scaleIn 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-stage-side img:last-child {
  animation: scaleIn 0.9s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Hero image zoom on hover ───────────────────────── */
.hero-stage-main img,
.hero-stage-side img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-stage-main:hover img,
.hero-stage-side img:hover {
  transform: scale(1.05);
}

/* ── Hero stage card slide-up ───────────────────────── */
.hero-stage-card {
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform: translateY(8px);
}
.hero-stage-main:hover .hero-stage-card {
  transform: translateY(0);
}

/* ── Card icon hover effects ────────────────────────── */
.solution-icon,
.pop-icon,
.use-case-icon,
.differentiator-card > i {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease;
}

.solution-card:hover .solution-icon,
.pop-card:hover .pop-icon,
.use-case-card:hover .use-case-icon {
  transform: scale(1.15) rotate(-6deg);
  background: linear-gradient(135deg, rgba(185,77,40,0.22), rgba(18,60,85,0.18));
}

.differentiator-card:hover > i {
  transform: scale(1.15) rotate(-6deg);
  background: linear-gradient(135deg, rgba(185,77,40,0.22), rgba(18,60,85,0.18));
}

/* ── Card shine sweep on hover ──────────────────────── */
.solution-card,
.pop-card,
.differentiator-card,
.use-case-card,
#process .card {
  position: relative;
  overflow: hidden;
}

.solution-card::after,
.pop-card::after,
.differentiator-card::after,
.use-case-card::after,
#process .card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 55%
  );
  transform: skewX(-18deg);
  transition: none;
  pointer-events: none;
  opacity: 0;
}

.solution-card:hover::after,
.pop-card:hover::after,
.differentiator-card:hover::after,
.use-case-card:hover::after,
#process .card:hover::after {
  opacity: 1;
  animation: shineSweep 0.65s ease forwards;
}

@keyframes shineSweep {
  from { left: -60%; }
  to   { left: 130%; }
}

@keyframes displayProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Card border glow on hover ──────────────────────── */
.solution-card:hover,
.pop-card:hover,
.differentiator-card:hover,
.use-case-card:hover,
#process .card:hover {
  border-color: rgba(185, 77, 40, 0.2);
}

/* ── Badge hover scale + color ──────────────────────── */
.hero-badges span {
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.hero-badges span:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--unique-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(18, 60, 85, 0.22);
}

/* ── CTA button glow pulse ──────────────────────────── */
.btn.btn-primary {
  animation: ctaGlow 3s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 18px 40px rgba(185,77,40,0.24); }
  50%      { box-shadow: 0 18px 55px rgba(185,77,40,0.40), 0 0 20px rgba(185,77,40,0.15); }
}

/* ── Featured story hover lift (Proyectos Destacados) ── */
.featured-story {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.featured-story:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 80px rgba(3,7,12,0.36);
}

.featured-media img,
.featured-media video {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.featured-story:hover .featured-media img,
.featured-story:hover .featured-media video {
  transform: scale(1.04);
}

.featured-tag {
  transition: background 0.3s ease, color 0.3s ease;
}
.featured-story:hover .featured-tag {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ── Section kicker line animation ──────────────────── */
.section-kicker::before {
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}
.reveal.visible .section-kicker::before {
  width: 32px;
}

/* ── CTA panel hover glow ───────────────────────────── */
.cta-panel {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.cta-panel:hover {
  box-shadow: 0 40px 100px rgba(9,19,27,0.38);
  transform: translateY(-4px);
}

/* ── Process card icon hover ────────────────────────── */
#process .card i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
#process .card:hover i {
  transform: scale(1.2) rotate(-8deg);
  color: var(--unique-brand);
}

/* ── Micro-copy icon spin ───────────────────────────── */
.hero-microcopy i,
.cta-actions span i {
  display: inline-block;
  transition: transform 0.5s ease;
}
.hero-microcopy:hover i,
.cta-actions span:hover i {
  transform: rotate(360deg);
}

/* ── Solution focus line slide ──────────────────────── */
.solution-focus {
  transition: letter-spacing 0.3s ease;
}
.solution-focus:hover {
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════
   MOBILE TOUCH INTERACTIVITY
   ══════════════════════════════════════════════════════ */

@media (hover: none) and (pointer: coarse) {
  /* Active states for touch devices */
  .solution-card:active,
  .pop-card:active,
  .differentiator-card:active,
  .use-case-card:active,
  #process .card:active {
    transform: scale(0.97);
    box-shadow: 0 12px 30px rgba(24,33,47,0.10);
    border-color: rgba(185, 77, 40, 0.25);
  }

  .hero-badges span:active {
    transform: scale(0.95);
    background: var(--unique-accent);
    color: #fff;
  }

  .btn.btn-primary:active {
    transform: scale(0.96);
  }

  .featured-story:active {
    transform: translateY(-4px);
  }

  /* Disable hover-only effects that feel weird on touch */
  .solution-card:hover,
  .pop-card:hover,
  .differentiator-card:hover,
  .use-case-card:hover,
  #process .card:hover {
    transform: none;
  }
}

/* ── Respect reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
