/* ============================================
   INSTINTO PLUS — DESIGN SYSTEM
   ============================================ */

:root {
  --orange: #E8820C;
  --orange-dark: #c06a00;
  --orange-light: #ff9d2e;
  --black: #0e0e0e;
  --dark: #1a1a1a;
  --dark-2: #232323;
  --gray: #6b6b6b;
  --gray-light: #f2f2f0;
  --white: #ffffff;
  --nav-h: 68px;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #040404;
  color: rgba(255,255,255,0.88);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  cursor: url('assets/cursor-bee-33.png') 4 4, auto;
}

a,
button,
.btn-primary,
.nav-toggle,
.service-card,
.home-case-card,
.event-project-card-button {
  cursor: url('assets/cursor-bee-33.png') 4 4, pointer;
}

/* ============================================
   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 40px;
  background: rgba(2,2,2,0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(2,2,2,0.94);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 176px;
  height: 44px;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

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

.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}

.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s;
}

/* ============================================
   HERO ISOMÉTRICO
   ============================================ */
.hero-iso {
  position: relative;
}

.hero-canvas-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(72, 162, 178, 0.42), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(28, 112, 128, 0.38), transparent 24%),
    linear-gradient(180deg, #154c5a 0%, #0d2d37 42%, #081a22 100%);
}

#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.hero-scroll-space {
  height: 460vh;
  pointer-events: none;
}

/* UI overlay sobre el canvas */
.hero-overlay-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-label {
  position: absolute;
  top: calc(var(--nav-h) + 28px);
  left: 42px;
  max-width: 430px;
  padding: 24px 28px;
  background: rgba(4, 21, 28, 0.42);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.2);
  pointer-events: auto;
}

.service-label-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.service-label-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s 0.08s var(--ease-out), transform 0.5s 0.08s var(--ease-out);
}

.service-label-title em {
  font-style: normal;
  color: var(--orange);
}

.service-label-sub {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s 0.15s var(--ease-out), transform 0.5s 0.15s var(--ease-out);
}

.btn-primary {
  display: inline-block;
  margin-top: 22px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s 0.22s var(--ease-out), transform 0.5s 0.22s var(--ease-out), background 0.2s;
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px) !important; }
.btn-primary.large { font-size: 1rem; padding: 16px 36px; opacity: 1; transform: none; }

.service-label.visible .service-label-tag,
.service-label.visible .service-label-title,
.service-label.visible .service-label-sub,
.service-label.visible .btn-primary {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transition: opacity 0.4s;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Dots */
.service-dots {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  padding: 0;
}

.dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.4);
}

/* Progress bar */
.progress-bar {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
}

.progress-fill {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   SECTION REVEAL ANIMATION
   ============================================ */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

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

/* ============================================
   CLIENTS
   ============================================ */
.clients {
  padding: 80px 60px;
  text-align: center;
  background: var(--white);
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0;
}

.clients-sub {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.clients-logos {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.client-logo {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-align: center;
  color: var(--gray);
  line-height: 1.4;
  padding: 16px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.client-logo strong { display: block; font-size: 0.95rem; color: var(--black); }
.client-logo:hover { border-color: var(--orange); color: var(--black); }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 60px;
  background: var(--gray-light);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-tagline {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  font-weight: 400;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 36px 32px;
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 42px;
  height: 42px;
  color: var(--orange);
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

/* ============================================
   CONSULTORIA HOME
   ============================================ */
.consulting-home {
  padding: 96px 60px;
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 44px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.consulting-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  margin: 10px 0 18px;
}

.consulting-copy p:last-child {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 400;
}

.consulting-accordion {
  display: grid;
  gap: 14px;
}

.consulting-card {
  border: 1px solid #deded9;
  border-radius: 8px;
  background: #fbfbf8;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.consulting-card[open] {
  border-color: rgba(232,130,12,0.55);
  box-shadow: 0 18px 45px rgba(14,14,14,0.09);
}

.consulting-card summary {
  list-style: none;
  cursor: pointer;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
}

.consulting-card summary::-webkit-details-marker { display: none; }

.consulting-card summary span {
  flex: 0 0 auto;
  color: var(--orange);
  font-weight: 800;
}

.consulting-card img {
  display: block;
  width: calc(100% - 44px);
  height: 260px;
  margin: 0 22px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.9) contrast(1.04);
}

.consulting-card p {
  padding: 18px 22px 24px;
  color: var(--gray);
  line-height: 1.65;
  font-size: 0.9rem;
  font-weight: 400;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
}

.card-arrow {
  font-size: 1.1rem;
  color: var(--orange);
  transition: transform 0.2s;
}

.service-card:hover .card-arrow { transform: translateX(4px); }

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  background: var(--orange);
  padding: 70px 60px;
}

.stats-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-brand-text p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0;
}

.stats-brand-text em {
  font-style: italic;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-item {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 20px 22px;
  backdrop-filter: blur(4px);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0;
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  font-weight: 400;
}

/* ============================================
   CASES
   ============================================ */
.cases {
  padding: 100px 60px;
  background: var(--white);
}

.cases-header {
  text-align: center;
  margin-bottom: 60px;
}

.cases-sub {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 400;
  max-width: 400px;
  margin: 8px auto 0;
  line-height: 1.6;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.case-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.case-card.featured { border-color: var(--orange); }

.case-img {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}

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

.case-card:hover .case-img img { transform: scale(1.04); }

.case-info {
  padding: 24px;
}

.case-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.case-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 8px 0 4px;
  letter-spacing: 0;
}

.case-info p {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}

.case-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
  transition: transform 0.2s;
}

.case-link:hover { transform: translateX(3px); }

/* ============================================
   HOME CASES (CONFIANZA)
   ============================================ */
.home-cases {
  padding: 100px 60px;
}

.home-cases-header {
  text-align: center;
  margin-bottom: 54px;
}

.home-cases-sub {
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 1rem;
  line-height: 1.65;
}

.home-cases-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-case-card {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  background: #0c0c0c;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.home-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,130,12,0.6);
  box-shadow: 0 16px 42px rgba(0,0,0,0.24);
}

.home-case-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.home-case-card:hover .home-case-media img {
  transform: scale(1.04);
}

.home-case-panel {
  padding: 18px 18px 20px;
}

.home-case-panel h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.home-case-panel .home-case-sub {
  margin: 8px 0 0;
  max-width: none;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.66);
}

.home-case-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ============================================
   EVENT PROJECTS CAROUSEL
   ============================================ */
.event-projects {
  padding: 90px 60px;
  background: #050505;
}

.event-projects-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.event-projects-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  color: #fff;
  margin-top: 8px;
}

.event-projects-header p {
  margin-top: 10px;
  color: rgba(255,255,255,0.66);
  line-height: 1.6;
}

.event-projects-carousel {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.event-projects-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px;
}

.event-projects-track::-webkit-scrollbar {
  height: 8px;
}

.event-projects-track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
}

.event-project-card {
  scroll-snap-align: start;
}

.event-project-card-button {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0c0c0c;
  border-radius: 12px;
  padding: 12px;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.event-project-card-button:hover {
  transform: translateY(-4px);
  border-color: rgba(232,130,12,0.58);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.event-project-card-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.event-project-card-meta {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.event-project-card-button strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 700;
}

.event-projects-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.event-projects-nav:hover {
  background: rgba(232,130,12,0.18);
  border-color: rgba(232,130,12,0.56);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  text-align: center;
  padding: 120px 40px;
  background: var(--gray-light);
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--black);
  margin-bottom: 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 64px 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  width: 210px;
  background: var(--white);
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--orange); }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.footer-col a:hover { color: var(--white); }

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 4px;
}

.footer-newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
  border-radius: 2px 0 0 2px;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { border-color: var(--orange); }

.footer-newsletter button {
  background: var(--orange);
  border: none;
  color: var(--white);
  padding: 10px 16px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
}

.footer-newsletter button:hover { background: var(--orange-dark); }

/* ============================================
   INNER PAGES — HERO
   ============================================ */
.page-hero {
  height: 56vh;
  min-height: 420px;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  transition: transform 6s var(--ease-out);
}

.page-hero.loaded .page-hero-bg { transform: scale(1); }

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 24px 0 18px;
  text-align: left;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero-content p {
  margin-top: 16px;
  max-width: 34ch;
  line-height: 1.62;
}

.page-hero-content h1 em {
  font-style: normal;
  color: var(--orange);
}

.page-hero--consulting {
  min-height: min(56vh, 720px);
  align-items: center;
  padding: 0 72px;
}

.page-hero--consulting::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.36) 28%, rgba(0,0,0,0.12) 56%, rgba(0,0,0,0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}

.page-hero--consulting .page-hero-bg {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(1) contrast(1.04) brightness(0.66);
  background-position: center center;
}

.page-hero--consulting .page-hero-content {
  max-width: 640px;
  margin-top: 12px;
  padding: 34px 0 28px;
}

.page-hero--consulting .page-hero-content h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.15rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-shadow: 0 14px 35px rgba(0,0,0,0.32);
}

.page-hero--consulting .page-hero-content h1 span {
  color: var(--white);
  display: block;
  font-size: 0.8em;
  margin-bottom: 0.02em;
}

.page-hero--events {
  min-height: 320svh;
  height: auto;
  padding: 0;
  align-items: stretch;
  justify-content: center;
  background: #03101e;
  isolation: isolate;
  overflow: visible;
}

.events-hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  left: 0;
  right: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 10%, rgba(52, 122, 255, 0.1), transparent 32%),
    linear-gradient(180deg, #041121 0%, #03101e 100%);
}

.events-hero-sticky::before,
.events-hero-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.events-hero-sticky::before {
  z-index: 0;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 18px 18px, 18px 18px;
  opacity: 0.56;
}

.events-hero-sticky::after {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(2,8,16,0.08) 0%, rgba(2,8,16,0) 14%, rgba(2,8,16,0.3) 100%),
    radial-gradient(circle at 50% 76%, rgba(36, 128, 255, 0.08), transparent 40%);
}

.events-hero-bg,
.events-hero-atmosphere,
.events-hero-vignette,
.events-hero-scene,
.events-hero-copy,
.events-hero-scrollcue {
  position: absolute;
}

.events-hero-bg,
.events-hero-atmosphere,
.events-hero-vignette {
  inset: 0;
  pointer-events: none;
}

.events-hero-bg {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(16, 90, 214, 0.18), transparent 34%),
    radial-gradient(circle at 50% 84%, rgba(20, 77, 177, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.022) 0%, rgba(255,255,255,0) 100%);
  opacity: 0.96;
  transform: translateZ(0) scale(1.04);
}

.events-hero-atmosphere {
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.35;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0) translateZ(0);
}

.events-hero-atmosphere--one {
  background:
    radial-gradient(circle at 50% 62%, rgba(142, 193, 255, 0.12), transparent 22%),
    radial-gradient(circle at 50% 44%, rgba(72, 150, 255, 0.07), transparent 28%);
  filter: blur(22px);
}

.events-hero-atmosphere--two {
  background:
    radial-gradient(circle at 20% 56%, rgba(255,255,255,0.03), transparent 18%),
    radial-gradient(circle at 82% 54%, rgba(255,255,255,0.026), transparent 18%),
    radial-gradient(circle at 50% 74%, rgba(79, 161, 255, 0.085), transparent 24%);
  filter: blur(48px);
}

.events-hero-vignette {
  z-index: 6;
  background:
    radial-gradient(circle at 50% 50%, transparent 54%, rgba(2, 8, 16, 0.3) 78%, rgba(2, 8, 16, 0.74) 100%),
    linear-gradient(90deg, rgba(2, 8, 16, 0.5) 0%, transparent 16%, transparent 84%, rgba(2, 8, 16, 0.5) 100%);
}

.events-hero-copy {
  z-index: 8;
  left: clamp(32px, 5vw, 72px);
  top: calc(var(--nav-h) + clamp(38px, 9vh, 108px));
  max-width: 420px;
  pointer-events: none;
}

.events-hero-kicker {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.events-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.3vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.events-hero-copy p:last-child {
  margin-top: 16px;
  max-width: 32ch;
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.55;
}

.events-hero-scene {
  z-index: 4;
  left: 50%;
  top: calc(var(--nav-h) + 72px);
  width: min(116vw, 1900px);
  aspect-ratio: 16 / 9;
  transform: translateX(-50%) translateZ(0);
  will-change: transform;
  transform-style: preserve-3d;
  pointer-events: none;
  --hero-scroll-progress: 0;
}

.events-layer {
  position: absolute;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.events-layer {
  transform: translate3d(0, 0, 0) translateZ(0);
  transform-origin: 50% 66%;
  opacity: 0;
}

.events-layer img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 0 22px rgba(113, 177, 255, 0.07)) drop-shadow(0 24px 44px rgba(0,0,0,0.22));
}

.events-layer--arch {
  width: min(88%, 1500px);
  left: 6%;
  top: 0;
  z-index: 30;
  opacity: 1;
}

.events-layer--stage {
  width: min(58%, 1040px);
  left: 9%;
  top: 22%;
  z-index: 12;
}

.events-layer--tents-left {
  width: min(25%, 460px);
  left: 58%;
  top: 43%;
  z-index: 14;
}

.events-layer--tents-right {
  width: min(28%, 520px);
  left: 70%;
  top: 41%;
  z-index: 15;
}

.events-layer--trucks-left {
  width: min(29%, 540px);
  left: 37%;
  top: 51%;
  z-index: 16;
}

.events-layer--trucks-right {
  width: min(25%, 480px);
  left: 78%;
  top: 55%;
  z-index: 17;
}

.events-layer--trucks-right img {
  transform: scaleX(-1);
}

.events-layer--road-cases {
  width: min(24%, 430px);
  top: 62%;
  z-index: 22;
}

.events-layer--cases-left {
  left: 2%;
}

.events-layer--cases-right {
  left: 76%;
}

.events-layer--staff {
  width: min(38%, 680px);
  left: 32%;
  top: 47%;
  z-index: 24;
}

.events-layer--barriers {
  width: min(72%, 1280px);
  left: 14%;
  top: 67%;
  z-index: 26;
}

.events-layer--people {
  width: min(78%, 1380px);
  left: 12%;
  top: 46%;
  z-index: 28;
}

.events-hero-scrollcue {
  z-index: 9;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
}

.events-hero-scrollcue span {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.88), rgba(255,255,255,0));
  animation: scrollCuePulse 1.8s ease-in-out infinite;
}

.events-hero-scrollcue small {
  font-size: inherit;
  color: inherit;
}

@keyframes scrollCuePulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 980px) {
  .page-hero--events {
    min-height: 300svh;
  }

  .events-hero-copy {
    left: 24px;
    top: calc(var(--nav-h) + 28px);
    max-width: 360px;
  }

  .events-hero-copy h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
  }

  .events-hero-scene {
    width: min(130vw, 1320px);
    top: calc(var(--nav-h) + 132px);
  }

  .events-layer--arch { width: 104%; left: -2%; top: 2%; }
  .events-layer--stage { width: 76%; left: 4%; top: 24%; }
  .events-layer--tents-left { width: 34%; left: 56%; top: 45%; }
  .events-layer--tents-right { width: 36%; left: 70%; top: 44%; }
  .events-layer--trucks-left { width: 40%; left: 36%; top: 54%; }
  .events-layer--trucks-right { width: 36%; left: 76%; top: 57%; }
  .events-layer--road-cases { width: 34%; top: 65%; }
  .events-layer--cases-left { left: -2%; }
  .events-layer--cases-right { left: 74%; }
  .events-layer--staff { width: 50%; left: 26%; top: 49%; }
  .events-layer--barriers { width: 94%; left: 3%; top: 70%; }
  .events-layer--people { width: 102%; left: -1%; top: 48%; }
}

@media (max-width: 720px) {
  .page-hero--events {
    min-height: 280svh;
  }

  .events-hero-copy {
    left: 20px;
    right: 20px;
    top: calc(var(--nav-h) + 22px);
    max-width: 300px;
  }

  .events-hero-kicker {
    margin-bottom: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .events-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 0.95;
  }

  .events-hero-copy p:last-child {
    margin-top: 12px;
    max-width: 26ch;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .events-hero-scene {
    width: min(176vw, 1040px);
    left: 51%;
    top: calc(var(--nav-h) + 176px);
  }

  .events-layer--arch { width: 124%; left: -12%; top: 7%; }
  .events-layer--stage { width: 104%; left: -2%; top: 29%; }
  .events-layer--tents-left { width: 52%; left: 48%; top: 49%; }
  .events-layer--tents-right { width: 52%; left: 68%; top: 48%; }
  .events-layer--trucks-left { width: 58%; left: 26%; top: 60%; }
  .events-layer--trucks-right { width: 52%; left: 72%; top: 63%; }
  .events-layer--road-cases { width: 52%; top: 68%; }
  .events-layer--cases-left { left: -12%; }
  .events-layer--cases-right { left: 66%; }
  .events-layer--staff { width: 68%; left: 16%; top: 52%; }
  .events-layer--barriers { width: 122%; left: -11%; top: 74%; }
  .events-layer--people { width: 132%; left: -16%; top: 51%; }

  .events-hero-scrollcue {
    bottom: 16px;
    gap: 8px;
    letter-spacing: 0.12em;
    font-size: 0.58rem;
  }

  .events-hero-scrollcue span {
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-hero-atmosphere,
  .events-hero-scrollcue span {
    animation: none !important;
  }
}

/* ============================================
   INNER PAGES — PILLARS
   ============================================ */
.page-pillars {
  padding: 80px 60px;
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.page-pillars--compact {
  padding: 0;
  max-width: none;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px;
  min-height: 100%;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.pillar::before,
.step-card::before,
.dual-card::before,
.why-stat::before,
.consulting-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,152,0,0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}

.pillar:hover,
.step-card:hover,
.dual-card:hover,
.why-stat:hover,
.consulting-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,152,0,0.36);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.pillar:hover::before,
.step-card:hover::before,
.dual-card:hover::before,
.why-stat:hover::before,
.consulting-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.pillar p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 400;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process {
  padding: 80px 60px;
  background: var(--gray-light);
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.process-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
}

.process-header p {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  font-weight: 400;
  margin-top: 6px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process-steps--4 {
  grid-template-columns: repeat(4, 1fr);
}

.process-header--consultoria {
  text-align: center;
}

.process--consultoria .step-card--slide-right.reveal-section {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.process--consultoria .step-card--slide-right.reveal-section.visible {
  opacity: 1;
  transform: translateX(0);
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--orange), transparent);
}

.step-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.step-card:hover { border-color: var(--orange); transform: translateY(-4px); }

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0;
  font-style: italic;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 400;
}

/* ============================================
   CONSULTORIA — WORKFLOW EDITORIAL BLOCKS
   ============================================ */
.workflow-editorial {
  background: #e6e6e6;
  color: #1b1b1b;
}

.workflow-editorial-top {
  padding: 66px 80px 8px;
}

.workflow-editorial-header {
  margin: 0 0 28px auto;
  max-width: 360px;
}

.workflow-editorial-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.7vw, 2.75rem);
  line-height: 1.05;
  color: #212121;
}

.workflow-editorial-header p {
  margin-top: 10px;
  color: #555;
  font-size: clamp(1.6rem, 1.85vw, 2rem);
  font-style: italic;
  line-height: 1.34;
}

.workflow-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  min-height: 320px;
  align-items: end;
}

.workflow-editorial-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workflow-editorial-step--one {
  grid-column: 1 / span 3;
  align-self: center;
}

.workflow-editorial-step--two {
  grid-column: 8 / span 3;
  align-self: center;
}

.workflow-editorial-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 0.92;
  font-weight: 800;
  color: var(--orange);
}

.workflow-editorial-step h3 {
  color: #4a4a4a;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.65rem, 2vw, 2.3rem);
  line-height: 1.12;
}

.workflow-editorial-step p {
  color: #595959;
  font-size: clamp(1.25rem, 1.38vw, 1.55rem);
  line-height: 1.5;
  max-width: 23ch;
}

.workflow-editorial-figure {
  border-radius: 16px 16px 0 0;
  border: 1px dashed rgba(20,20,20,0.18);
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.3)),
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.95), rgba(228,228,228,0.5));
}

.workflow-editorial-figure--left {
  grid-column: 3 / span 4;
  align-self: end;
}

.workflow-editorial-bottom {
  background: var(--orange);
  min-height: 392px;
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: end;
  gap: 30px;
}

.workflow-editorial-step--three .workflow-editorial-num,
.workflow-editorial-step--three h3,
.workflow-editorial-step--three p {
  color: #fff;
}

.workflow-editorial-figure--right {
  border-radius: 18px 18px 0 0;
  border: 1px dashed rgba(255,255,255,0.4);
  min-height: 322px;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.44), rgba(12,12,12,0.16)),
    radial-gradient(circle at 52% 11%, rgba(255,255,255,0.52), rgba(255,255,255,0.1));
}

.why-instinto {
  background: #000;
  padding: 84px 70px 96px;
}

.why-instinto-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.why-instinto h2 {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 2.8vw, 3.2rem);
  line-height: 1.08;
}

.why-instinto-inner > p {
  margin-top: 16px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.7rem, 1.95vw, 2.25rem);
  line-height: 1.44;
  font-style: italic;
}

.why-instinto-stats {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.why-instinto-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.why-instinto-stat strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 2.8vw, 3.4rem);
  line-height: 1;
}

.why-instinto-stat span {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.55rem, 1.8vw, 2.15rem);
  line-height: 1.36;
  font-style: italic;
}

/* ============================================
   DUAL SERVICE CARDS
   ============================================ */
.dual-services {
  padding: 80px 60px;
  background: var(--white);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dual-services--compact {
  padding: 0 60px 80px;
}

.dual-card {
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s var(--ease-out);
}

.dual-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.dual-card.highlighted { border-color: var(--orange); }

.dual-card-header {
  padding: 28px 28px 20px;
  background: var(--gray-light);
}

.dual-card.highlighted .dual-card-header {
  background: var(--orange);
}

.dual-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.dual-card.highlighted .dual-card-header h3 { color: var(--white); }

.dual-card-img {
  height: 180px;
  background: #ddd;
  overflow: hidden;
}

.dual-card-img img { width: 100%; height: 100%; object-fit: cover; }

.dual-card-body {
  padding: 24px 28px;
}

.section-shell {
  padding: 80px 60px;
  background: #050505;
}

.section-shell--compact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-shell--tight {
  padding-top: 20px;
  padding-bottom: 80px;
}

.section-shell--intro {
  text-align: center;
}

.section-shell-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.marketing-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* === 2026-05-13 map-home refinements === */
.map-home {
  background-color: #020202;
  background-image: url('assets/webp/fondo.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero-canvas-wrap {
  background: transparent;
}

.hero-scroll-space {
  height: 330vh;
}

.service-label {
  top: auto;
  left: auto;
  max-width: 220px;
  padding: 12px 14px 10px;
  background: rgba(3, 11, 17, 0.7);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  transition:
    left 0.35s var(--ease-out),
    top 0.35s var(--ease-out),
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.service-label-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.service-label-tag {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.service-label-tag {
  margin-bottom: 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.service-label-title {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  margin-top: 8px;
  max-width: 9ch;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s 0.06s var(--ease-out), transform 0.35s 0.06s var(--ease-out);
}

.service-label-sub {
  margin-top: 8px;
  font-size: 0.76rem;
  line-height: 1.5;
  max-width: 24ch;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.12s var(--ease-out), transform 0.35s 0.12s var(--ease-out);
}

.service-label-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-label .btn-primary {
  margin-top: 10px;
  padding: 8px 13px;
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s 0.18s var(--ease-out),
    transform 0.35s 0.18s var(--ease-out),
    background 0.2s;
}

.service-label.visible .service-label-tag,
.service-label.visible .service-label-title,
.service-label.visible .service-label-sub,
.service-label.visible .btn-primary {
  opacity: 1;
  transform: translateY(0);
}

.hero-overview-link {
  position: absolute;
  left: 28px;
  bottom: 24px;
  pointer-events: auto;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s, transform 0.2s;
}

.hero-overview-link:hover {
  color: var(--orange);
  transform: translateX(2px);
}

.scroll-indicator {
  right: 28px;
  bottom: 28px;
  gap: 8px;
}

.scroll-indicator span {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.34);
}

.scroll-line {
  height: 42px;
}

.service-dots {
  right: 18px;
  gap: 8px;
}

.dot {
  width: 5px;
  height: 5px;
}

.progress-bar {
  background: rgba(255,255,255,0.04);
}

.page-grid-surface {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-grid-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  z-index: 0;
}

.page-grid-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(232,130,12,0.09), rgba(232,130,12,0.05) 20%, transparent 38%),
    linear-gradient(90deg, transparent 68%, rgba(18, 90, 150, 0.22) 68%, rgba(18, 90, 150, 0.12) 100%);
  z-index: 0;
  pointer-events: none;
}

.page-grid-surface > * {
  position: relative;
  z-index: 1;
}

.scroll-line-stage {
  position: relative;
  overflow: hidden;
  padding-top: 114px;
  padding-bottom: 112px;
}

.scroll-line-stage > *:not(.scroll-draw-line) {
  position: relative;
  z-index: 2;
}

.scroll-draw-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.scroll-draw-line__path {
  fill: none;
  stroke: #ff9800;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 10px rgba(255,152,0,0.08));
}

.scroll-draw-line__path--primary {
  stroke-width: 4px;
}

.overview-page .clients,
.overview-page .services,
.overview-page .cases,
.overview-page .cta-final,
.consulting-home,
.page-pillars,
.process,
.dual-services,
.sectors,
.feature-split,
.why-us,
.branding-showcase,
.page-tagline {
  background: #050505;
}

.overview-page .page-hero,
.page-hero,
.footer {
  background: #030303;
}

.overview-page .section-eyebrow,
.overview-page .services-tagline,
.overview-page .clients-sub,
.overview-page .cases-sub,
.overview-page .case-info h4,
.overview-page .cta-final h2,
.page-hero-content h1,
.consulting-copy h2,
.process-header h2,
.pillar h4,
.step-card h4,
.dual-card-header h3,
.case-info h4,
.branding-showcase-header h2,
.feature-split-content h3,
.why-us-header h2,
.page-tagline h2,
.footer-col a:hover,
.service-card h3 {
  color: #fff;
}

.overview-page .section-eyebrow,
.section-eyebrow,
.case-tag,
.branding-modal-kicker,
.branding-card-meta span,
.sector-dot,
.service-card-icon,
.pillar-icon,
.step-number {
  color: var(--orange);
}

.overview-page .clients-sub,
.overview-page .services-tagline,
.overview-page .case-info p,
.overview-page .stats-brand-text em,
.overview-page .footer-brand p,
.overview-page .footer-col a,
.consulting-copy p:last-child,
.pillar p,
.step-card p,
.service-card p,
.clients-sub,
.cases-sub,
.case-info p,
.process-header p,
.page-hero-content p,
.page-tagline p,
.feature-split-content p,
.why-us-header p,
.why-stat span,
.branding-showcase-header p,
.branding-card-meta p,
.footer-brand p,
.footer-col a,
.footer-col h5,
.footer-social a {
  color: rgba(255,255,255,0.66);
}

.client-logo,
.service-card,
.consulting-card,
.step-card,
.dual-card,
.case-card,
.why-stat,
.branding-card-button,
.feature-split,
.cta-band,
.pillar,
.stat-item {
  background: #0c0c0c;
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.service-card:hover,
.dual-card:hover,
.case-card:hover,
.step-card:hover,
.consulting-card[open] {
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.clients-logos .client-logo strong,
.case-card.featured .case-info h4,
.dual-card-body li,
.feature-split-content li,
.sector-item span,
.branding-card-button h3,
.why-stat strong,
.stat-item strong,
.stats-brand-text p {
  color: #fff;
}

.client-logo {
  border-color: rgba(255,255,255,0.1);
}

.service-card::before {
  background: var(--orange);
}

.stats-band {
  background: linear-gradient(135deg, rgba(232,130,12,0.24), rgba(8,8,8,0.95));
}

.stat-item {
  background: rgba(255,255,255,0.05);
}

.cta-final {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  background: transparent;
  padding: 0;
}

.footer-newsletter input {
  background: rgba(255,255,255,0.05);
}

.page-hero--overview {
  min-height: 52vh;
}

.home-overview .page-hero-content {
  max-width: 720px;
}

.home-overview .page-hero-content h1 {
  max-width: 11ch;
}

@media (max-width: 980px) {
  .service-label {
    max-width: min(320px, calc(100vw - 40px));
    padding: 16px;
  }

  .service-label-title {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .hero-scroll-space {
    height: 280vh;
  }

  .scroll-line-stage {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .scroll-draw-line {
    inset: 16px 0 0;
    height: calc(100% - 16px);
  }

  .scroll-draw-line__path--primary {
    stroke-width: 3px;
  }

  .service-label {
    top: auto !important;
    left: 20px !important;
    right: 20px;
    bottom: 84px !important;
    max-width: none;
    width: auto;
  }

  .hero-overview-link {
    left: 20px;
    bottom: 22px;
  }

  .scroll-indicator,
  .service-dots {
    display: none;
  }
}

.dual-card-body p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 400;
}

.dual-card-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dual-card-list li {
  font-size: 0.82rem;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
  font-weight: 400;
}

.dual-card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

/* ============================================
   SECTORS
   ============================================ */
.sectors {
  padding: 80px 60px;
  text-align: center;
  background: var(--white);
}

.sectors h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 40px;
}

.sectors-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sector-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--orange);
  display: grid;
  place-items: center;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.sector-dot img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.sector-item:hover .sector-dot {
  background: #000;
  border-color: #000;
  transform: translateY(-2px);
}

.sector-item:hover .sector-dot img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(85%) saturate(2559%) hue-rotate(359deg) brightness(97%) contrast(95%);
  transform: scale(1.04);
}

.sector-item span {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 400;
}

/* ============================================
   FEATURE SPLIT
   ============================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  overflow: hidden;
}

.feature-split-img {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.feature-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.feature-split-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.feature-split-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.feature-split-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-split-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 400;
}

.feature-split-content em {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: var(--orange);
  font-size: 0.9rem;
}

/* ============================================
   BRANDING SHOWCASE
   ============================================ */
.branding-showcase {
  padding: 96px 60px;
  background:
    radial-gradient(circle at top left, rgba(232,130,12,0.08), transparent 28%),
    linear-gradient(180deg, #f5f3ee 0%, #ffffff 78%);
}

.branding-showcase-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.branding-showcase-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
}

.branding-showcase-header p:last-child {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  font-weight: 400;
}

.branding-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.branding-card {
  min-height: 100%;
}

.branding-card-button {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(14,14,14,0.08);
  background: rgba(255,255,255,0.8);
  border-radius: 8px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.branding-card-button:hover {
  transform: translateY(-6px);
  border-color: rgba(232,130,12,0.38);
  box-shadow: 0 18px 40px rgba(14,14,14,0.1);
}

.branding-card-button img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 16px;
  background: #f4f2ee;
}

.branding-card-meta {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.branding-card-button strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--black);
}

.branding-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}

.branding-modal.is-open {
  display: block;
}

.branding-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.74);
  backdrop-filter: blur(8px);
}

.branding-modal-panel {
  position: relative;
  width: min(1180px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  padding: 28px;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}

.branding-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f2efe8;
  color: var(--black);
  font-size: 1.6rem;
  cursor: pointer;
}

.branding-modal-copy {
  max-width: 520px;
  padding-right: 40px;
}

.branding-modal-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.branding-modal-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
  margin-bottom: 10px;
}

.branding-modal-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.branding-modal-description {
  color: var(--gray);
  line-height: 1.75;
  font-size: 0.96rem;
  font-weight: 400;
}

.branding-modal-stage {
  margin-top: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.branding-modal-track-wrap {
  overflow: hidden;
}

.branding-modal-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.branding-modal-track::-webkit-scrollbar {
  height: 8px;
}

.branding-modal-track::-webkit-scrollbar-thumb {
  background: rgba(14,14,14,0.12);
  border-radius: 999px;
}

.branding-modal-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branding-modal-slide img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  display: block;
}

.branding-modal-nav {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.branding-modal-nav:hover {
  transform: scale(1.04);
  background: var(--orange-dark);
}

.branding-modal-count {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ── Text justification ── */
.pillar p,
.pw-step p,
.ds-sub,
.branding-modal-description,
.vtl-card p,
.zo p,
.section-intro p,
.page-pillars p,
.why-instinto-inner > p {
  text-align: justify;
}
/* sr-cards: left-aligned para evitar espaciado raro con line-clamp */
.sr-card-info p { text-align: left; }

/* ============================================
   CTA DARK BAND
   ============================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

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

.cta-band-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0;
}

/* ============================================
   WHY US (DARK)
   ============================================ */
.why-us {
  background: var(--dark);
  padding: 80px 60px;
}

.why-us-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-us-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0;
}

.why-us-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  font-weight: 400;
  margin-top: 8px;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1260px;
  margin: 0 auto;
}

.why-stat {
  text-align: center;
  position: relative;
  padding: 20px 14px;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.why-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,2.2vw,2.2rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0;
  display: block;
}

.why-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  line-height: 1.35;
  margin-top: 6px;
  display: block;
}

/* ============================================
   PAGE — DISTINTOS TAGLINE
   ============================================ */
.page-tagline {
  text-align: center;
  padding: 36px 40px 40px;
  background: var(--gray-light);
}

.page-tagline h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--black);
}

/* ============================================
   GLOBAL DARK THEME OVERRIDES
   ============================================ */
.clients,
.services,
.cases,
.process,
.sectors,
.page-tagline,
.cta-final,
.consulting-home,
.why-us,
.branding-showcase,
.dual-services,
.feature-split-content,
.page-pillars,
.stats-band {
  background: #040404 !important;
}

.section-eyebrow,
.services-header .section-eyebrow,
.cases-header .section-eyebrow,
.consulting-copy .section-eyebrow,
.branding-showcase-header .section-eyebrow,
.page-tagline h2,
.cta-final h2,
.process-header h2,
.sectors h2,
.why-us-header h2,
.feature-split-content h2,
.stats-brand-text p,
.service-card h3,
.case-info h4,
.pillar h4,
.step-card h4,
.dual-card-header h3,
.consulting-copy h2,
.branding-showcase-header h2 {
  color: var(--white);
}

.service-label-title,
.service-label-tag,
.case-tag,
.branding-card-meta,
.branding-modal-kicker,
.footer-col h5 {
  color: var(--orange);
}

.clients-sub,
.services-tagline,
.cases-sub,
.service-card p,
.case-info p,
.pillar p,
.step-card p,
.feature-split-content p,
.feature-split-content em,
.stats-brand-text em,
.stat-item span,
.client-logo,
.process-header p,
.sector-item span,
.dual-card-body p,
.dual-card-list li,
.consulting-copy p:last-child,
.consulting-card p,
.branding-showcase-header p:last-child,
.branding-modal-description,
.branding-modal-count,
.footer-brand p,
.footer-col a,
.footer-social a {
  color: rgba(255,255,255,0.66);
}

.service-card,
.case-card,
.step-card,
.dual-card,
.client-logo,
.stat-item,
.consulting-card,
.branding-card-button,
.branding-modal-panel {
  background: #0b0b0b;
  border-color: rgba(255,255,255,0.09);
  box-shadow: none;
}

.service-card:hover,
.case-card:hover,
.step-card:hover,
.dual-card:hover,
.branding-card-button:hover,
.consulting-card[open] {
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
}

.client-logo strong,
.branding-card-button strong,
.branding-modal-copy h3,
.branding-modal-subtitle {
  color: var(--white);
}

.footer,
.branding-modal-panel,
.page-hero,
.feature-split,
.cta-band,
.why-us {
  background: #040404;
}

.footer-logo {
  background: transparent;
  padding: 0;
}

.footer-logo img {
  width: 220px;
}

.page-hero-content h1,
.cta-band-content h2 {
  color: var(--white);
}

.feature-split-img-placeholder {
  background: linear-gradient(135deg, #060606, #111111);
}

.dual-card-header,
.dual-card.highlighted .dual-card-header,
.clients,
.cases,
.services {
  background: transparent;
}

.footer-newsletter input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.32);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 480px) and (max-width: 900px) {
  .why-stats {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .why-stat { flex: 0 0 calc(33.333% - 11px); }
}
@media (max-width: 479px) {
  .why-stats {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .why-stat { flex: 0 0 calc(50% - 6px); }
}

@media (max-width: 900px) {
  .services-grid, .cases-grid, .process-steps, .dual-services, .branding-grid, .marketing-services-grid {
    grid-template-columns: 1fr;
  }

  .home-cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-projects-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .event-projects-nav {
    display: none;
  }

  .event-projects-track {
    grid-auto-columns: 72%;
  }

  .consulting-home {
    grid-template-columns: 1fr;
    padding: 72px 24px;
  }

  .consulting-card img {
    height: 220px;
  }

  .stats-band-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .page-pillars { grid-template-columns: 1fr; padding: 60px 30px; }
  .page-pillars--compact { padding: 0; }
  .process-steps::before { display: none; }
  .section-shell,
  .process,
  .dual-services--compact {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero--consulting {
    min-height: 58vh;
    padding: 0 24px;
    align-items: flex-end;
  }

  .page-hero--consulting .page-hero-content {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .page-hero--consulting .page-hero-content h1 {
    font-size: clamp(2rem, 8.6vw, 3.45rem);
    line-height: 0.98;
  }

  .page-hero {
    padding: 0 24px;
  }

  .page-hero-content {
    max-width: 100%;
    padding: 18px 0 16px;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 0 24px; }

  .hero-iso .service-label {
    top: calc(var(--nav-h) + 14px);
    left: 18px;
    right: 18px;
    max-width: none;
    padding: 18px 18px 20px;
  }

  .scroll-indicator,
  .service-dots {
    right: 18px;
  }

  .clients, .services, .cases, .stats-band,
  .process, .sectors, .why-us, .footer { padding-left: 24px; padding-right: 24px; }

  .dual-services { padding: 40px 24px; }
  .process-steps--4 { grid-template-columns: 1fr; }
  .workflow-editorial-top {
    padding: 46px 24px 0;
  }

  .workflow-editorial-header {
    margin: 0 0 22px;
    max-width: 100%;
  }

  .workflow-editorial-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .workflow-editorial-step--one,
  .workflow-editorial-step--two,
  .workflow-editorial-figure--left {
    grid-column: auto;
  }

  .workflow-editorial-figure {
    min-height: 220px;
    border-radius: 14px;
  }

  .workflow-editorial-bottom {
    padding: 42px 24px;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
  }

  .workflow-editorial-figure--right {
    min-height: 240px;
    border-radius: 14px;
  }

  .why-instinto {
    padding: 58px 24px 62px;
  }

  .why-instinto-stats {
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
  }

  .branding-showcase { padding: 72px 24px; }
  .branding-modal-panel { width: calc(100vw - 20px); margin: 10px auto; padding: 18px; }
  .branding-modal-stage { grid-template-columns: 1fr; }
  .branding-modal-nav { display: none; }
}

/* === 2026-05-13 final overrides === */
.hero-scroll-space {
  height: 330vh;
}

.service-label {
  top: auto;
  left: auto;
  right: auto;
  max-width: 220px;
  padding: 12px 14px 10px;
  background: rgba(3, 11, 17, 0.72);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  transition:
    left 0.35s var(--ease-out),
    top 0.35s var(--ease-out),
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.service-label-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-label-date {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.service-label-title {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  max-width: 9ch;
}

.service-label-sub {
  font-size: 0.76rem;
  line-height: 1.5;
  max-width: 24ch;
}

.service-label .btn-primary {
  margin-top: 10px;
  padding: 8px 13px;
  font-size: 0.63rem;
  letter-spacing: 0.13em;
}

.hero-overview-link {
  position: absolute;
  left: 28px;
  bottom: 24px;
  pointer-events: auto;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.hero-overview-link:hover {
  color: var(--orange);
}

.scroll-indicator {
  right: 28px;
  bottom: 28px;
  gap: 8px;
}

.scroll-indicator span {
  font-size: 0.64rem;
}

.scroll-line {
  height: 42px;
}

.service-dots {
  right: 18px;
  gap: 8px;
}

.dot {
  width: 5px;
  height: 5px;
}

.progress-bar {
  background: rgba(255,255,255,0.04);
}

@media (max-width: 900px) {
  .hero-iso .service-label {
    top: auto !important;
    left: 18px !important;
    right: 18px;
    bottom: 84px !important;
    max-width: none;
    padding: 16px 16px 18px;
  }

  .service-label-title {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .hero-scroll-space {
    height: 280vh;
  }

  .home-cases {
    padding: 72px 24px;
  }

  .home-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-projects {
    padding: 72px 24px;
  }

  .event-projects-track {
    grid-auto-columns: 84%;
    gap: 12px;
  }

  .scroll-indicator,
  .service-dots {
    display: none;
  }

  .hero-overview-link {
    left: 20px;
    bottom: 22px;
  }
}

/* === HOME: stats block orange + glass cards === */
.home-overview .stats-band {
  background: var(--orange) !important;
}

.home-overview .stats-brand-text p,
.home-overview .stats-brand-text em {
  color: #111 !important;
}

.home-overview .stats-brand-text em {
  opacity: 0.92;
}

.home-overview .stat-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08)) !important;
  border: 1px solid rgba(255,255,255,0.32) !important;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 16px 28px rgba(0,0,0,0.18);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-overview .stat-item:hover {
  background: linear-gradient(145deg, rgba(16,16,16,0.86), rgba(8,8,8,0.76)) !important;
  border-color: rgba(0,0,0,0.85) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 32px rgba(0,0,0,0.34);
  transform: translateY(-2px);
}

.home-overview .stat-item strong,
.home-overview .stat-item span {
  color: #fff !important;
}

/* ============================================
   SHOWREEL 3D CAROUSEL (shared)
   ============================================ */
.sr-section { padding: clamp(60px,8vw,100px) 0 clamp(80px,10vw,120px); overflow: hidden; }
.sr-header { text-align: center; margin-bottom: clamp(40px,6vw,72px); }
.sr-header .section-eyebrow { margin-bottom: 16px; }
.sr-header h2 { font-family: var(--font-display,'Montserrat',sans-serif); font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 800; color: #fff; margin: 0; line-height: 1.08; }
.sr-stage { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1400px; height: clamp(410px,62vw,650px); cursor: grab; user-select: none; }
.sr-stage:active { cursor: grabbing; }
.sr-card { --card-w: clamp(220px,28vw,320px); position: absolute; width: var(--card-w); left: 50%; top: 50%; margin-left: calc(var(--card-w) / -2); margin-top: calc(var(--card-w) * 4 / 3 / -2); aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 24px 60px rgba(0,0,0,0.55); transition: transform 0.55s cubic-bezier(.22,1,.36,1), opacity 0.55s cubic-bezier(.22,1,.36,1), box-shadow 0.55s ease; will-change: transform; background: #111; }
.sr-card img { width: 100%; height: 55%; object-fit: cover; display: block; filter: brightness(.88); transition: filter .4s ease; }
.sr-card-info { padding: 14px 16px 16px; background: #111; overflow: hidden; }
.sr-card-num { font-family: var(--font-display,'Montserrat',sans-serif); font-size: .85rem; font-weight: 900; color: #E8820C; margin-bottom: 4px; display: block; }
.sr-card-info h4 { font-family: var(--font-display,'Montserrat',sans-serif); font-size: clamp(.8rem,1.1vw,.9rem); font-weight: 700; font-style: italic; color: #fff; margin: 0 0 5px; line-height: 1.25; }
.sr-card-info p { font-family: var(--font-body,'Montserrat',sans-serif); font-size: clamp(.7rem,.9vw,.78rem); color: rgba(255,255,255,.75); margin: 0; line-height: 1.45; }
.sr-card[data-pos="0"]  { transform: translateX(0) translateZ(0) rotateY(0deg) scale(1); opacity: 1; z-index: 5; box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,130,12,.3); }
.sr-card[data-pos="-1"] { transform: translateX(-62%) translateZ(-180px) rotateY(28deg) scale(.82); opacity: .72; z-index: 4; }
.sr-card[data-pos="1"]  { transform: translateX(62%) translateZ(-180px) rotateY(-28deg) scale(.82); opacity: .72; z-index: 4; }
.sr-card[data-pos="-2"] { transform: translateX(-108%) translateZ(-340px) rotateY(42deg) scale(.64); opacity: .38; z-index: 3; }
.sr-card[data-pos="2"]  { transform: translateX(108%) translateZ(-340px) rotateY(-42deg) scale(.64); opacity: .38; z-index: 3; }
.sr-card[data-pos="-3"], .sr-card[data-pos="3"] { transform: translateX(0) translateZ(-500px) scale(.4); opacity: 0; z-index: 1; pointer-events: none; }
.sr-dots { display: flex; justify-content: center; gap: 10px; margin-top: clamp(28px,4vw,48px); }
.sr-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); border: none; cursor: pointer; padding: 0; transition: background .3s, transform .3s; }
.sr-dot.active { background: #E8820C; transform: scale(1.3); }
@media (max-width: 680px) {
  .sr-stage { perspective: 900px; height: clamp(380px,95vw,510px); }
  .sr-card { --card-w: clamp(180px,56vw,240px); width: var(--card-w); margin-left: calc(var(--card-w) / -2); margin-top: calc(var(--card-w) * 4 / 3 / -2); }
  .sr-card[data-pos="-1"] { transform: translateX(-56%) translateZ(-120px) rotateY(24deg) scale(.78); }
  .sr-card[data-pos="1"]  { transform: translateX(56%)  translateZ(-120px) rotateY(-24deg) scale(.78); }
  .sr-card[data-pos="-2"] { transform: translateX(-96%) translateZ(-240px) rotateY(36deg) scale(.58); opacity:.28; }
  .sr-card[data-pos="2"]  { transform: translateX(96%)  translateZ(-240px) rotateY(-36deg) scale(.58); opacity:.28; }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.6), 0 4px 12px rgba(0,0,0,.28);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 680px) {
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤520px)
   ============================================ */
@media (max-width: 520px) {
  /* Footer: single column */
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .footer { padding: 44px 24px 40px; }

  /* why-us: reduce vertical padding */
  .why-us {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* sr-section: tighter top/bottom */
  .sr-section {
    padding-top: clamp(40px,8vw,60px);
    padding-bottom: clamp(48px,10vw,72px);
  }

  /* sr-header: less bottom gap */
  .sr-header { margin-bottom: clamp(20px,5vw,36px); }

  /* ds-section: less side padding on tiny screens */
  .ds-section { padding-left: 20px; padding-right: 20px; }

  /* branding-showcase: reduce padding */
  .branding-showcase { padding: 56px 20px; }

  /* cta-band and page-tagline: tighter */
  .cta-band { padding: 40px 24px; }
  .page-tagline { padding: 28px 24px 32px; }
  .page-tagline h2 { font-size: clamp(1.6rem,8vw,2.4rem); }

  /* contact hero tighter on very small screens */
  .contact-headline { font-size: clamp(2.2rem,10vw,3.4rem); }
  .wa-cta { padding: 15px 28px; font-size: .95rem; }
}

/* ============================================
   RESPONSIVE — WHY-US vertical padding tablet
   ============================================ */
@media (max-width: 900px) {
  .why-us {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ============================================
   RESPONSIVE — BRANDING CARDS MOBILE
   ============================================ */
@media (max-width: 640px) {
  .branding-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    gap: 16px;
  }
  .branding-card-button {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    padding: 14px;
  }
  .branding-card-button img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 96px;
    height: 96px;
    aspect-ratio: 1 / 1;
    margin-bottom: 0;
  }
  .branding-card-meta {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 0;
  }
  .branding-card-button strong {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 0.95rem;
  }
}
