/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: var(--dark);
  color: var(--white);
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

.nav.nav--light {
  background: var(--white);
  color: var(--dark);
}

.nav.nav--light .nav-logo { filter: invert(1); }
.nav.nav--light .nav-tagline { color: rgba(0,0,0,0.55); }
.nav.nav--light .nav-center { color: rgba(0,0,0,0.55); }
.nav.nav--light .nav-center-arrow { color: rgba(0,0,0,0.75); }
.nav.nav--light .nav-links a { color: rgba(0,0,0,0.8); }
.nav.nav--light .nav-links a:hover { color: var(--dark); }
.nav.nav--light .nav-burger span { background: var(--dark); }

.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}

.nav-logo {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-center-arrow {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  animation: navArrowNudge 1.6s var(--ease-out) infinite;
}

@keyframes navArrowNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ────────────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-nav-list a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  display: inline-block;
  transition: opacity 0.2s;
}

.menu-nav-list a:hover { opacity: 0.5; }

.menu-bottom {
  margin-top: 48px;
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ─── REVEAL UTILITY ─────────────────────────────────── */
.reveal-wrap {
  overflow: hidden;
  display: inline-block;
}

.reveal-inner {
  display: inline-block;
  transform: translateY(110%);
}

/* ─── SECTION LABEL ──────────────────────────────────── */
.s-label {
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.s-label::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text);
  flex-shrink: 0;
}

/* ─── HERO ───────────────────────────────────────────── */
.s-hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Title + subcopy — centered wrapper */
.hero-center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.55);
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
  mix-blend-mode: overlay;
  text-align: left;
  width: 100%;
}

.hero-heading em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.45em;
  line-height: 1;
  letter-spacing: 0;
}

.hero-heading .reveal-wrap { display: block; }
.hero-heading .reveal-inner { display: block; }

.hero-line { white-space: nowrap; }
.hero-line--1 { padding-left: clamp(32px, 5vw, 80px); }
.hero-line--2 { text-align: center; padding-right: 12%; margin-top: 2px; }

.hero-subcopy {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  text-align: center;
  max-width: 540px;
}

/* Services list — right side, staggered */
.hero-services {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-service {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
}

.hs-1 { transform: translateX(0); }
.hs-2 { transform: translateX(32px); }
.hs-3 { transform: translateX(0); }
.hs-4 { transform: translateX(32px); }

.hs-num {
  font-family: var(--font-script);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}

.hs-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: -0.01em;
  color: var(--white);
}

/* Bottom-left — star desc + copyright */
.hero-bottom-left {
  position: absolute;
  bottom: clamp(32px, 5vh, 56px);
  left: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.hero-desc {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.hero-desc-text {
  display: block;
}

.hero-star {
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}

.hero-copy {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
}

/* Bottom-center — subcopy + CTAs */
.hero-bottom-center {
  position: absolute;
  bottom: clamp(72px, 9vh, 100px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}

.hero-cta:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-cta span,
.hero-cta-ghost span { transition: transform 0.2s var(--ease-out); }
.hero-cta:hover span,
.hero-cta-ghost:hover span { transform: translateX(4px); }

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease-out);
}

.hero-cta-ghost:hover {
  border-bottom-color: rgba(255,255,255,0.6);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: clamp(24px, 3vh, 36px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.45);
  font-size: 1.1rem;
  line-height: 1;
  animation: scrollBounce 1.8s var(--ease-out) infinite;
  transition: color 0.25s var(--ease-out);
}

.hero-scroll-cue:hover { color: rgba(255,255,255,0.85); }

.hero-scroll-arrow {
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 7px); }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: clamp(1.4rem, 7vw, 2.4rem);
    line-height: 1.05;
  }
  .hero-heading em { font-size: 1.3em; }
  .hero-line { white-space: normal; }
  .hero-line--1 { padding-left: 0; }
  .hero-line--2 { padding-right: 0; text-align: left; }

  .hero-services {
    position: static;
    transform: none;
    margin-top: 24px;
    padding: 0 var(--gutter);
    gap: 12px;
    align-items: flex-start;
  }
  .hs-1, .hs-2, .hs-3, .hs-4 { transform: none; }

  .hero-center { padding: 0 var(--gutter); }
}

/* ─── INSIDE THE STUDIO ──────────────────────────────── */
.s-studio {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: var(--section-pad) var(--gutter);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.studio-label { grid-column: 1; align-self: start; padding-top: 4px; }

.studio-text {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.studio-char {
  display: inline-block;
  white-space: pre;
  will-change: opacity, filter, transform;
}

@media (max-width: 768px) {
  .studio-text {
    white-space: normal;
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    line-height: 1.1;
  }
  .studio-text em { font-size: 1.3em; }
  .studio-char { display: inline; white-space: normal; }
  .studio-square { width: 100%; max-width: 100%; }
}

.studio-text .reveal-wrap {
  display: inline-block;
  white-space: nowrap;
}

.studio-text em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.4em;
  line-height: 1;
}

/* Decorative square — left column */
.studio-decor {
  grid-column: 1;
  display: flex;
  justify-content: center;
}

.studio-decor .reveal-wrap,
.studio-decor .reveal-inner {
  display: inline-block;
}

.studio-decor .reveal-wrap {
  overflow: visible;
}

.studio-square {
  display: block;
  width: clamp(320px, 40vw, 600px);
  aspect-ratio: 4 / 3;
  background: var(--text);
  border-radius: 28px;
  object-fit: cover;
}

.studio-sub {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.studio-body .reveal-wrap,
.studio-body .reveal-inner {
  display: block;
}

.studio-body .reveal-wrap {
  overflow: visible;
}

.studio-cta-wrap,
.studio-cta-wrap .reveal-inner {
  display: inline-block;
}

.studio-cta-wrap {
  overflow: visible;
}

.studio-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  text-align: left;
  text-wrap: balance;
}

.studio-body strong {
  font-weight: 700;
  color: #000;
}

.studio-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid var(--dark);
  width: fit-content;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.25s var(--ease-out);
}

.studio-cta:hover {
  background: var(--white);
  color: var(--dark);
  border-color: rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.studio-cta span { transition: transform 0.2s var(--ease-out); }
.studio-cta:hover span { transform: translateX(4px); }

/* ─── LO QUE CREAMOS — SERVICIOS INTERACTIVOS ────────── */
.s-creamos {
  position: relative;
  z-index: 2;
  background: var(--dark);
  color: var(--white);
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}

.creamos-beams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(40px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
  will-change: opacity;
}

.creamos-beams-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(13,13,13,0) 0%, rgba(13,13,13,0.55) 80%),
    rgba(13, 13, 13, 0.25);
  pointer-events: none;
  z-index: 1;
  animation: creamosBeamsPulse 10s ease-in-out infinite;
}

@keyframes creamosBeamsPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

.s-creamos > *:not(.creamos-beams):not(.creamos-beams-overlay) {
  position: relative;
  z-index: 2;
}

.creamos-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
  color: var(--dark);
  pointer-events: none;
  z-index: 2;
}

.creamos-wave--top { top: -79px; }
.creamos-wave--bottom { bottom: -79px; }

.s-creamos .s-label { color: rgba(255,255,255,0.55); }
.s-creamos .s-label::before { background: var(--white); }

.creamos-top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.creamos-label { align-self: start; }

.creamos-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.creamos-heading em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1;
}

.creamos-heading-line {
  display: block;
}

.creamos-heading-line--1 {
  transform: translateX(-26%);
}

.creamos-body {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}

/* List left side */
.creamos-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.creamos-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  cursor: pointer;
  transition: opacity 0.25s var(--ease-out);
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  font: inherit;
}

.creamos-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.creamos-num {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}

.creamos-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease-out);
}

.creamos-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.creamos-item.is-active .creamos-name { color: var(--white); }
.creamos-item.is-active .creamos-chev {
  opacity: 1;
  transform: translateX(0);
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.creamos-item:hover .creamos-name { color: var(--white); }

.creamos-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid var(--white);
  width: fit-content;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.25s var(--ease-out);
}

.creamos-cta:hover {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.creamos-cta span { transition: transform 0.2s var(--ease-out); }
.creamos-cta:hover span { transform: translateX(4px); }

/* Panels right side */
.creamos-panels {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 24px;
}

.creamos-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0.06) 65%, rgba(0,0,0,0) 90%),
    var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateX(110%);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease-out;
  will-change: transform, opacity;
}

.creamos-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0.55s;
}

.creamos-panel-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creamos-icon {
  width: 36px;
  height: 36px;
  color: var(--text);
}

.creamos-icon svg { width: 100%; height: 100%; }

.creamos-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.creamos-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.creamos-features li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
}

.creamos-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text);
}

.creamos-time {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.creamos-panel-visual {
  position: relative;
  background: var(--bg);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
}

.creamos-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.creamos-visual-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: 100px;
}

@media (max-width: 768px) {
  .creamos-top { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .creamos-heading {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    line-height: 1.1;
  }
  .creamos-heading em { font-size: 1.3em; }
  .creamos-heading-line--1 { transform: none; }
  .creamos-heading-line { white-space: normal; }

  .creamos-body { grid-template-columns: 1fr; gap: 32px; }
  .creamos-panels { min-height: auto; }
  .creamos-panel {
    position: relative;
    grid-template-columns: 1fr;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .creamos-panel-visual { border-left: none; border-top: 1px solid var(--border); min-height: 180px; }
  .creamos-panel:not(.is-active) { display: none; }
}

/* ─── SPLIT STICKY SECTION ───────────────────────────── */
.s-split {
  position: relative;
  z-index: 1;
  background: var(--dark);
  color: var(--white);
  padding: var(--section-pad) var(--gutter);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.split-label { grid-column: 1; align-self: start; padding-top: 4px; }
.s-split .s-label { color: rgba(255,255,255,0.55); }
.s-split .s-label::before { background: var(--white); }

.split-text {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.split-text em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1;
}

/* ─── STEP CAROUSEL ──────────────────────────────────── */
.step-carousel {
  grid-column: 1 / -1;
  position: relative;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

.step-cards {
  position: relative;
  width: 100%;
  height: 320px;
}

.step-card {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0.06) 65%, rgba(0,0,0,0) 90%),
    var(--white);
  color: var(--text);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.step-card[data-role="active"] {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.step-card[data-role="prev"] {
  transform: translateY(-40px) scale(0.92);
  opacity: 0.5;
  z-index: 2;
}

.step-card[data-role="next"] {
  transform: translateY(40px) scale(0.92);
  opacity: 0.5;
  z-index: 1;
}

.step-count {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  color: var(--text);
  opacity: 0.65;
  letter-spacing: 0.04em;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 4px 0 6px;
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.step-controls {
  margin-top: 56px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.step-arrow {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--white);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(16,24,40,0.06), 0 1px 3px rgba(16,24,40,0.10);
  transition: background 0.2s, transform 0.2s;
}

.step-arrow:hover { background: var(--bg); transform: translateY(-1px); }
.step-arrow:active { transform: translateY(0); }

.split-label {
  padding: 40px var(--gutter) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 480px 1fr;
  gap: 0;
  min-height: 100vh;
}

.split-side {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  overflow: hidden;
}

.split-left { align-items: flex-start; }
.split-right { align-items: flex-end; text-align: right; }

.split-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  will-change: transform;
}

.split-script {
  font-family: var(--font-script);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  display: block;
  will-change: transform;
}

.split-center {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ─── SERVICE / PROCESS CARD ─────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--border);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.card-dots {
  display: flex;
  gap: 4px;
  color: rgba(0,0,0,0.25);
  font-size: 1.1rem;
}

.card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 64px;
  height: 64px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-body {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}

.card-body em { font-family: serif; font-style: italic; }

/* ─── CLAVE DEL ÉXITO ────────────────────────────────── */
.s-exito {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: var(--section-pad) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  min-height: 100vh;
}

.exito-top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: 80px;
  align-items: end;
}

.exito-label { align-self: start; }

.exito-text {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  transform-origin: center center;
  will-change: filter, transform, opacity;
}

.exito-text em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1;
}

.exito-heading-line {
  display: block;
  white-space: nowrap;
}

.exito-heading-line--1 {
  transform: translateX(-32%);
}

.exito-heading-line--1 em {
  margin-right: 0.12em;
}

.exito-heading-line--2 {
  transform: translateX(-2%);
}

.exito-char {
  display: inline-block;
  white-space: pre;
  will-change: opacity, filter, transform;
}

.exito-cards {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  min-height: 65vh;
}

.exito-cards .service-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 48px;
  gap: 48px;
  border-radius: 24px;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 35%, rgba(255,255,255,0) 70%),
    var(--dark);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  will-change: transform;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.exito-cards .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.exito-cards .card-header {
  gap: 16px;
  align-items: flex-start;
}

.exito-cards .card-dots {
  white-space: nowrap;
  flex-shrink: 0;
}

.exito-cards .card-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  min-height: 320px;
}

.exito-cards .card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exito-cards .card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}
.exito-cards .card-body { color: rgba(255,255,255,0.72); }
.exito-cards .card-icon { color: var(--white); }
.exito-cards .card-dots {
  color: #fde68a;
  text-shadow:
    0 0 4px #fde047,
    0 0 10px #facc15,
    0 0 22px #f59e0b,
    0 0 40px rgba(245, 158, 11, 0.7);
}

.exito-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .s-exito { min-height: auto; }
  .exito-text { font-size: clamp(1.4rem, 5vw, 2rem); }
  .exito-heading-line { white-space: normal; }
  .exito-heading-line--1 { transform: none; }
  .exito-top { grid-template-columns: 1fr; gap: 24px; }
  .exito-cards { grid-template-columns: 1fr; }
  .exito-cta-wrap { margin-top: 32px; }
  .exito-cards .service-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 24px;
  }
  .exito-cards .card-media { min-height: 220px; }
}

/* ─── NUESTROS TRABAJOS ──────────────────────────────── */
.s-trabajos {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 0 calc(var(--section-pad) / 2);
  overflow: hidden;
  min-height: 100vh;
}

.trabajos-header {
  position: relative;
  padding: 0 var(--gutter) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.trabajos-label {
  position: absolute;
  top: 0;
  left: var(--gutter);
  align-self: auto;
}

.trabajos-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  transform-origin: center center;
  will-change: filter, transform, opacity;
}

@media (max-width: 768px) {
  .trabajos-label { position: static; align-self: flex-start; }
}

.trabajos-title em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1;
}

.trabajos-grid {
  position: relative;
  padding: 0 var(--gutter);
  min-height: 50vh;
}

.trabajo-item {
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  will-change: transform;
}

@media (max-width: 768px) {
  .s-trabajos { min-height: auto; padding: 48px 0 32px; }
  .trabajos-header { padding-bottom: 24px; gap: 12px; }
  .trabajos-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
  }
  .trabajo-item {
    position: relative;
    left: 0;
    right: 0;
    top: auto;
    transform: none !important;
  }
}

.trabajo-media {
  position: relative;
  aspect-ratio: 21/8;
  overflow: hidden;
}

.trabajo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.trabajo-item:hover .trabajo-media img { transform: scale(1.03); }

.trabajo-case {
  padding: 32px 40px 36px;
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.4fr);
  gap: 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 35%, rgba(255,255,255,0) 70%),
    var(--dark);
  align-items: start;
}

.trabajo-case-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trabajo-case-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trabajo-case-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.trabajo-case-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--white);
  max-width: 72ch;
  margin: 0;
}

.trabajo-case-text em { font-family: serif; font-style: italic; }

.trabajo-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.trabajo-case-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
}

.trabajo-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.trabajo-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.trabajo-sector {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.trabajo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 10px 20px;
  width: fit-content;
  margin-top: 8px;
  transition: background 0.3s, border-color 0.3s, gap 0.3s var(--ease-out);
}

.trabajo-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  gap: 14px;
}

/* ─── TALENTO CON PROPÓSITO ──────────────────────────── */
.s-talento {
  position: relative;
  z-index: 1;
  background: var(--dark);
  color: var(--white);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}

.talento-label { color: rgba(255,255,255,0.5); }
.talento-label::before { background: var(--white); }
.s-contacto .s-label { color: rgba(255,255,255,0.5); }
.s-contacto .s-label::before { background: var(--white); }

.talento-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  object-position: center top;
}

.talento-beams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(40px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
  will-change: opacity;
}

.talento-beams-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(13,13,13,0) 0%, rgba(13,13,13,0.55) 80%),
    rgba(13, 13, 13, 0.25);
  pointer-events: none;
  z-index: 1;
  animation: creamosBeamsPulse 10s ease-in-out infinite;
}

.talento-content { position: relative; z-index: 2; }

.talento-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0 48px;
}

.talento-heading em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1;
}

.talento-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.talento-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
  margin-bottom: 32px;
}

.talento-desc em { font-family: serif; font-style: italic; color: var(--white); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid var(--white);
  width: fit-content;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.25s var(--ease-out);
}

.btn-pill:hover {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-pill span { transition: transform 0.2s var(--ease-out); }
.btn-pill:hover span { transform: translateX(4px); }

.talento-team {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-right: 80px;
}

.team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  width: 220px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(0.2);
}

.team-info {
  padding: 16px;
}

.team-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

/* ─── CTA / CONTACTO ─────────────────────────────────── */
.s-contacto {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}

.contacto-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.contacto-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(13,13,13,0) 0%, rgba(13,13,13,0.6) 100%),
    linear-gradient(180deg, rgba(13,13,13,0.4) 0%, transparent 40%, transparent 70%, rgba(13,13,13,0.5) 100%);
  pointer-events: none;
}

.contacto-label { color: rgba(255,255,255,0.4); position: relative; z-index: 2; }
.contacto-label::before { color: rgba(255,255,255,0.4); }

.contacto-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 24px 0 60px;
  position: relative;
  z-index: 2;
}

.contacto-heading em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact-form-card {
  background:
    linear-gradient(0deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0.06) 65%, rgba(0,0,0,0) 90%),
    var(--white);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.form-label span { color: #e44; }

.form-input,
.form-textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--text); }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(0,0,0,0.3); }

.form-textarea { resize: none; height: 120px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  border-radius: 100px;
  padding: 16px 32px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: opacity 0.2s, gap 0.3s var(--ease-out);
}

.btn-submit:hover { opacity: 0.85; gap: 16px; }

.btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #e44;
  background: rgba(228, 68, 68, 0.06);
}

/* Prevent iOS Safari auto-zoom on focus (needs >=16px) */
@media (max-width: 768px) {
  .form-input,
  .form-textarea {
    font-size: 16px;
  }
}

.form-status {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-top: 4px;
}

.form-status--success {
  background: rgba(42, 122, 42, 0.12);
  color: #1f6b1f;
  border: 1px solid rgba(42, 122, 42, 0.3);
}

.form-status--error {
  background: rgba(228, 68, 68, 0.1);
  color: #b62828;
  border: 1px solid rgba(228, 68, 68, 0.3);
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 8px;
}

.contacto-info-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.contacto-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacto-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.contacto-bullet::before {
  content: '•';
  color: rgba(255,255,255,0.3);
}

.contacto-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
  transition: color 0.2s;
}

.social-link:hover { color: var(--white); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 32px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── CONSENT + TURNSTILE ───────────────────────────── */
.form-consent { margin: 8px 0 4px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted, #aaa);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--accent, #fff);
  flex-shrink: 0;
}
.consent-label a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.consent-label a:hover { color: var(--accent, #fff); }
.cf-turnstile { margin: 4px 0 8px; min-height: 65px; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  /* Smaller section padding on mobile */
  .s-studio,
  .s-creamos,
  .s-exito,
  .s-split,
  .s-talento,
  .s-contacto { padding: 72px var(--gutter); }
  .s-trabajos { padding: 56px 0 40px; }

  /* Nav */
  .nav-links,
  .nav-tagline,
  .nav-center { display: none; }

  /* ─── Hero ─── */
  .hero-services,
  .hero-scroll-cue { display: none; }

  .hero-center {
    position: absolute;
    top: 42%;
    padding: 0 var(--gutter);
  }
  .hero-heading {
    font-size: clamp(1.6rem, 7.5vw, 2.6rem);
    line-height: 1.05;
    text-align: left;
  }
  .hero-heading em { font-size: 1.3em; }
  .hero-line { white-space: normal; }
  .hero-line--1 { padding-left: 0; }
  .hero-line--2 { text-align: left; padding-right: 0; }

  .hero-bottom-center {
    bottom: 120px;
    width: calc(100% - 48px);
    gap: 14px;
  }
  .hero-subcopy { font-size: 0.88rem; }
  .hero-cta-row { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
  .hero-cta,
  .hero-cta-ghost {
    width: auto;
    padding: 14px 26px;
    font-size: 0.9rem;
    justify-content: center;
  }
  .hero-bottom-left {
    bottom: 24px;
    left: 0;
    right: 0;
    padding: 0 var(--gutter);
    max-width: 100%;
    align-items: flex-start;
  }
  .hero-desc { font-size: 0.78rem; }

  /* ─── Studio ─── */
  .s-studio {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }
  .studio-label,
  .studio-text,
  .studio-decor,
  .studio-sub { grid-column: 1; max-width: 100%; }

  .studio-text {
    text-align: left;
    font-size: clamp(2rem, 8.5vw, 3rem);
    line-height: 1.08;
    white-space: normal;
  }
  .studio-text em { font-size: 1.25em; }

  .studio-decor { justify-content: center; width: 100%; }
  .studio-decor .reveal-wrap,
  .studio-decor .reveal-inner { display: block; width: 100%; }
  .studio-square {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    background: transparent;
  }
  .studio-sub { align-items: stretch; }
  .studio-body { max-width: 100%; }
  .studio-cta-wrap { align-self: center; }

  /* ─── Creamos ─── */
  .creamos-top { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .creamos-heading {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    line-height: 1.1;
  }
  .creamos-heading em { font-size: 1.3em; }
  .creamos-heading-line--1 { transform: none; }
  .creamos-heading-line { white-space: normal; }

  .creamos-body { grid-template-columns: 1fr; gap: 32px; }
  .creamos-list { gap: 0; }
  .creamos-cta { margin-top: 24px; align-self: center; }

  .creamos-panels { min-height: auto; }
  .creamos-panel {
    position: relative;
    grid-template-columns: 1fr;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .creamos-panel:not(.is-active) { display: none; }
  .creamos-panel-info { padding: 28px 24px; }
  .creamos-panel-visual { border-left: none; border-top: 1px solid var(--border); min-height: 180px; }

  /* ─── Exito ─── */
  .s-exito { min-height: auto; }
  .exito-top { grid-template-columns: 1fr; gap: 16px; }
  .exito-text {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.08;
  }
  .exito-text em { font-size: 1.3em; }
  .exito-heading-line { white-space: normal; }
  .exito-heading-line--1,
  .exito-heading-line--2 { transform: none; }

  .exito-cards {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .exito-cards .service-card {
    position: relative !important;
    top: auto;
    left: auto;
    right: auto;
    transform: none !important;
    opacity: 1 !important;
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 20px;
    min-height: auto;
  }
  .exito-cards .card-media { min-height: 200px; }
  .exito-cta-wrap { margin-top: 24px; }

  /* ─── Trabajos ─── */
  .s-trabajos { min-height: auto; }
  .trabajos-header { padding-bottom: 16px; gap: 12px; }
  .trabajos-label { position: static; align-self: flex-start; }
  .trabajos-title { font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.1; }
  .trabajos-title em { font-size: 1.2em; }
  .trabajos-grid { display: flex; flex-direction: column; gap: 16px; min-height: 0; }
  .trabajo-item { position: relative; left: 0; right: 0; top: auto; transform: none !important; }
  .trabajo-case {
    grid-template-columns: 1fr;
    padding: 24px 22px 28px;
    gap: 20px;
  }
  .trabajo-case-text { font-size: 0.9rem; }
  .trabajo-case-tags { display: none; }

  /* ─── Split (lanzamiento) ─── */
  .s-split { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .split-text {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.05;
  }
  .split-text em { font-size: 1.3em; }
  .step-cards { height: 360px; }
  .step-card { padding: 24px; }
  .step-controls { margin-top: 36px; }

  /* ─── Talento ─── */
  .talento-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.05;
    margin: 16px 0 32px;
  }
  .talento-heading em { font-size: 1.3em; }
  .talento-bottom { grid-template-columns: 1fr; gap: 32px; }
  .talento-team {
    margin-right: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  .team-card { width: 100%; max-width: 320px; }

  /* ─── Contacto ─── */
  .contacto-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.05;
    margin: 16px 0 40px;
  }
  .contacto-heading em { font-size: 1.3em; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { padding: 32px 24px; }

  /* ─── Footer ─── */
  .footer { flex-direction: column; gap: 16px; text-align: center; }
}
