@charset "UTF-8";
/* Angulo Landing Page v1.0.0 */

:root {
  --blue: #204b9b;
  --blue-light: #2d66c4;
  --blue-dark: #183a78;
  --orange: #D4782C;
  --orange-light: #E89A50;
  --orange-dark: #B56218;
  --black: #0A0A0A;
  --gray-900: #1a1a1a;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-300: #d4d4d4;
  --gray-100: #f5f5f5;
  --white: #FAFAFA;
  --pure-white: #fff;
  --font: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--pure-white);
  overflow-x: hidden
}

/* NAV */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 24px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  max-width: 1650px;
  margin: 0 auto
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: color .4s
}

.logo svg {
  width: 24px;
  height: 24px
}

.site-nav {
  display: flex;
  gap: 0;
  align-items: center
}

.site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: color .4s;
  padding: 0 14px
}

.site-nav a:hover {
  opacity: .7
}

.site-nav .btn-cta {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--pure-white);
  border: 1px solid var(--orange);
  transition: all .4s;
  margin-left: 14px
}

.site-nav .btn-cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark)
}

/* Header on light sections */
.site-header.header-light .logo {
  color: var(--blue)
}

.site-header.header-light .site-nav a {
  color: var(--blue)
}

.site-header.header-light .site-nav .btn-cta {
  color: var(--pure-white)
}

/* SECTIONS */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always
}

.section-inner {
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
  padding: 120px 64px
}

.section {
  padding-left: 0;
  padding-right: 0
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px
}

.headline-xl {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase
}

.headline-lg {
  font-size: clamp(36px, 4vw, 45px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase
}

.headline-md {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, .5);
  max-width: 520px
}

.body-text.dark {
  color: var(--gray-700)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--blue);
  overflow: hidden
}

.hero .watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  opacity: .035;
  pointer-events: none;
  z-index: 0;
  transition: transform .2s ease-out;
  transform-style: preserve-3d;
  perspective: 800px
}

.hero .watermark svg {
  width: 100%;
  height: 100%
}

.hero .badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 10px 24px;
  border: 1px solid rgba(212, 120, 44, .3);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .6s .2s forwards
}

.hero .headline-xl {
  font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -.04em;
  line-height: .85;
  margin-bottom: 32px;
  max-width: 1200px;
  position: relative;
  z-index: 1
}

.hero .headline-xl .line {
  display: block;
  opacity: 0;
  transform: translateY(60px)
}

.hero .headline-xl .line:nth-child(1) {
  animation: slideUp .6s .4s forwards
}

.hero .headline-xl .line:nth-child(2) {
  animation: slideUp .6s .55s forwards
}

/* Per-letter hover */
.hero .headline-xl .letter {
  display: inline-block;
  transition: color .25s ease, -webkit-text-stroke-color .25s ease;
  cursor: default;
  -webkit-text-stroke: 2px transparent
}

.hero .headline-xl .letter:hover {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange)
}

.hero .headline-xl .letter.space {
  pointer-events: none;
  width: .3em
}

.hero-tagline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .3);
  max-width: 460px;
  text-align: center;
  opacity: 0;
  animation: fadeUp .8s .8s forwards
}

/* Corner marks */
.corner {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: .1
}

.corner::before,
.corner::after {
  content: '';
  position: absolute;
  background: #fff
}

.corner::before {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0
}

.corner::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0
}

.c-tl {
  top: 48px;
  left: 48px
}

.c-tr {
  top: 48px;
  right: 48px;
  transform: scaleX(-1)
}

.c-bl {
  bottom: 48px;
  left: 48px;
  transform: scaleY(-1)
}

.c-br {
  bottom: 48px;
  right: 48px;
  transform: scale(-1)
}

/* Dark corners for light sections */
.nosotros-wrap .corner::before,
.nosotros-wrap .corner::after,
.services .corner::before,
.services .corner::after,
.clientes .corner::before,
.clientes .corner::after,
.enfoque .corner::before,
.enfoque .corner::after {
  background: var(--blue)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* NOSOTROS " SPLIT */
.nosotros-wrap {
  background: var(--white);
  scroll-snap-align: start;
  scroll-snap-stop: always
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 1650px;
  margin: 0 auto
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--white);
  color: var(--black)
}

.split-text .headline-lg {
  color: var(--blue);
  margin-bottom: 24px
}

.split-text .body-text {
  color: var(--gray-700)
}

.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 40px
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px
}

.split-visual {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px
}

.split-visual .placeholder-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 2px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gray-100)
}

/* PORTAFOLIO */
.portfolio {
  background: var(--blue)
}

.portfolio .section-inner {
  padding-top: 140px;
  padding-bottom: 140px
}

.portfolio .eyebrow {
  color: var(--orange)
}

.portfolio .headline-lg {
  color: var(--pure-white)
}

.filmstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px
}

.film-cell {
  aspect-ratio: auto;
  min-height: 268px;
  background: var(--gray-300);
  border: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.film-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, .8), transparent 60%);
  z-index: 1
}

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

.film-title {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 2
}

.film-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-top: 4px;
  position: relative;
  z-index: 2
}

/* SERVICIOS */
.services {
  background: var(--white);
  color: var(--black)
}

.services .eyebrow {
  color: var(--orange)
}

.services .headline-lg {
  color: var(--blue)
}

.services-stack {
  margin-top: 16px
}

.service-item {
  padding: 29px 0;
  border-bottom: 1px solid var(--gray-300);
  cursor: pointer;
  transition: all .3s
}

.service-item:first-child {
  border-top: 1px solid var(--gray-300)
}

.service-item:hover {
  border-bottom-color: var(--orange)
}

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

.service-left {
  display: flex;
  align-items: center;
  gap: 20px
}

.service-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  font-variant-numeric: tabular-nums
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue)
}

.srv-right {
  display: flex;
  align-items: center;
  gap: 16px
}

.service-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  max-width: 320px;
  text-align: right;
  line-height: 1.5
}

.srv-arrow {
  font-size: 20px;
  font-weight: 300;
  color: var(--gray-300);
  transition: all .3s;
  width: 24px;
  text-align: center
}

.service-item.open .srv-arrow {
  transform: rotate(45deg);
  color: var(--orange)
}

.srv-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease
}

.srv-expand-inner {
  padding: 24px 0 8px 34px
}

.srv-intro {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px
}

.srv-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px
}

.srv-cat h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px
}

.srv-cat ul {
  list-style: none;
  padding: 0
}

.srv-cat li {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 2.2;
  position: relative;
  padding-left: 18px
}

.srv-cat li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px
}

/* NOSOTROS EXTRAS */
.pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px
}

.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--gray-300);
  color: var(--blue);
  transition: all .3s
}

.pill:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.statement {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--gray-700);
  margin-top: 32px;
  font-style: italic
}

.statement em {
  color: var(--blue);
  font-style: normal;
  font-weight: 700
}

/* PROCESO */
.proceso {
  background: var(--blue)
}

.proceso .section-inner {
  max-width: 1650px;
  padding: 120px 64px
}

.proceso .headline-lg {
  color: var(--pure-white);
  margin-bottom: 48px
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0
}

.step {
  padding: 32px;
  border-left: 1px solid rgba(255, 255, 255, .08);
  position: relative
}

.step:first-child {
  border-left: none
}

.step-n {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums
}

.step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .02em
}

.step p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, .45)
}

/* CLIENTES */
.clientes {
  background: var(--white)
}

.clientes .section-inner {
  max-width: 1650px;
  padding: 120px 64px;
  text-align: center
}

.clientes .headline-lg {
  color: var(--blue);
  margin-bottom: 12px
}

.clientes .sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-500);
  margin-bottom: 48px
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  transition: all .3s
}

.tag:hover {
  border-color: var(--orange);
  color: var(--blue);
  background: rgba(0, 0, 0, .02)
}

/* ENFOQUE */
.enfoque {
  background: var(--white);
  color: var(--black)
}

.enfoque .section-inner {
  max-width: 1650px;
  padding: 120px 64px
}

.enf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.enfoque .headline-lg {
  color: var(--blue);
  margin-bottom: 24px
}

.enfoque .body-text {
  color: var(--gray-700);
  max-width: 100%;
  margin-bottom: 16px
}

.enfoque .body-text strong {
  color: var(--blue);
  font-weight: 700
}

.diff-list {
  list-style: none;
  padding: 0;
  margin-top: 8px
}

.diff-list li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--gray-700);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-300);
  position: relative;
  padding-left: 24px
}

.diff-list li:first-child {
  border-top: 1px solid var(--gray-300)
}

.diff-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700
}

/* TICKER */
.ticker {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 16px 0;
  background: transparent
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tick 20s linear infinite
}

.ticker-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  flex-shrink: 0
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* CONTACTO */
.contacto {
  background: var(--blue);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
  flex-direction: column
}

.contacto .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1650px;
  padding: 120px 64px 24px;
  flex: 1;
  width: 100%;
  justify-content: center
}

.contacto .headline-xl {
  margin-bottom: 16px;
  font-size: clamp(48px, 5vw, 64px);
  letter-spacing: -.03em
}

.contacto .body-text {
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .5)
}

.contact-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, .5);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .3s
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  transition: transform .3s
}

.contact-icon:hover {
  color: var(--pure-white);
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .05)
}

.contact-icon:hover svg {
  transform: translateY(-2px)
}

.contact-btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 48px;
  background: var(--orange);
  color: var(--pure-white);
  border: 1px solid var(--orange);
  margin-top: 32px;
  transition: all .3s;
  cursor: pointer
}

.contact-btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark)
}

.location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .2);
  margin-top: 40px
}

/* FOOTER */
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  font-size: 12px;
  color: rgba(255, 255, 255, .2);
  border-top: 1px solid rgba(255, 255, 255, .04);
  margin-top: auto;
  width: 100%;
  max-width: 1650px;
  align-self: center
}

.footer-bar a {
  color: var(--blue-light);
  text-decoration: none
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease
}

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

/* 
   RESPONSIVE " MOBILE EXPERIENCE
    */

/* HAMBURGER MENU BUTTON */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  z-index: 10;
  position: relative
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pure-white);
  margin: 2.5px 0;
  transition: all .35s ease;
  border-radius: 1px
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.header-light .menu-toggle span {
  background: var(--blue)
}

/* When menu is open, force white lines regardless of light/dark section */
.menu-toggle.active span {
  background: var(--pure-white) !important
}

/* MOBILE OVERLAY NAV */
.mobile-overlay {
  display: none
}

/* """ TABLET (1024px) """ */
@media(max-width:1024px) {
  .site-header {
    padding: 20px 32px
  }

  .section-inner {
    padding: 100px 32px
  }

  .split-text {
    padding: 60px 32px
  }

  .proceso .section-inner {
    padding: 100px 32px
  }

  .clientes .section-inner {
    padding: 100px 32px
  }

  .enfoque .section-inner {
    padding: 100px 32px
  }

  .contacto .section-inner {
    padding: 100px 32px 24px
  }

  .footer-bar {
    padding: 24px 32px
  }

  .enf-grid {
    gap: 48px
  }

  .srv-right .service-desc {
    max-width: 240px;
    font-size: 12px
  }
}

/* """ MOBILE (768px) """ */
@media(max-width:768px) {

  /* Disable scroll-snap on mobile for smooth scrolling */
  html {
    scroll-snap-type: none
  }

  .section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    min-height: auto
  }

  /* HEADER + HAMBURGER */
  .site-header {
    padding: 18px 20px
  }

  .site-nav {
    display: none
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center
  }

  /* MOBILE NAV OVERLAY */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--blue);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease
  }

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

  .mobile-overlay a {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pure-white);
    text-decoration: none;
    padding: 18px 32px;
    transition: color .3s
  }

  .mobile-overlay a:hover {
    color: var(--orange)
  }

  .mobile-overlay .btn-cta-mobile {
    margin-top: 24px;
    padding: 16px 40px;
    background: var(--orange);
    border: 1px solid var(--orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pure-white);
    text-decoration: none;
    transition: all .3s
  }

  /* HERO */
  .hero {
    min-height: 100svh;
    padding: 0 20px
  }

  .hero .headline-xl {
    font-size: clamp(32px, 8vw, 48px);
    line-height: .9;
    margin-bottom: 24px
  }

  .hero .badge {
    font-size: 10px;
    letter-spacing: .18em;
    padding: 8px 18px;
    margin-bottom: 32px
  }

  .hero-tagline {
    font-size: 13px;
    letter-spacing: .04em;
    max-width: 300px
  }

  .hero .watermark {
    width: 300px;
    height: 300px;
    opacity: .025
  }

  .ticker {
    bottom: 24px
  }

  .ticker-item {
    font-size: 10px;
    letter-spacing: .1em
  }

  /* Corner marks " smaller on mobile */
  .corner {
    width: 18px;
    height: 18px;
    opacity: .06
  }

  .c-tl {
    top: 20px;
    left: 20px
  }

  .c-tr {
    top: 20px;
    right: 20px
  }

  .c-bl {
    bottom: 20px;
    left: 20px
  }

  .c-br {
    bottom: 20px;
    right: 20px
  }

  /* NOSOTROS */
  .nosotros-wrap {
    min-height: auto
  }

  .split {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .split-text {
    padding: 72px 20px 48px
  }

  .split-text .headline-lg {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 20px
  }

  .split-text .body-text {
    font-size: 15px;
    line-height: 1.7
  }

  .split-visual {
    min-height: 280px;
    padding: 32px
  }

  .split-visual .placeholder-img {
    max-width: 260px
  }

  .pillars {
    gap: 8px;
    margin-top: 24px
  }

  .pill {
    font-size: 10px;
    padding: 8px 14px;
    letter-spacing: .1em
  }

  /* PORTAFOLIO */
  .portfolio .section-inner {
    padding: 80px 20px
  }

  .filmstrip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px
  }

  .film-cell {
    min-height: 200px;
    padding: 20px
  }

  .film-title {
    font-size: 15px
  }

  .film-meta {
    font-size: 10px
  }

  /* SERVICIOS " CRITICAL FIX: stack vertically */
  .services .section-inner {
    padding: 80px 20px
  }

  .srv-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
  }

  .srv-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 6px
  }

  .service-desc {
    text-align: left;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.4;
    color: var(--gray-500)
  }

  .service-name {
    font-size: 16px
  }

  .service-num {
    font-size: 13px
  }

  .srv-expand-inner {
    padding: 20px 0 8px 0
  }

  .srv-cats {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .srv-intro {
    font-size: 13px;
    margin-bottom: 20px
  }

  /* PROCESO */
  .proceso .section-inner {
    padding: 80px 20px
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0
  }

  .step {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 24px 0
  }

  .step:first-child {
    border-top: none;
    padding-top: 0
  }

  .step:last-child {
    border-bottom: none;
    padding-bottom: 0
  }

  .step h4 {
    font-size: 15px
  }

  .step p {
    font-size: 12px
  }

  /* CLIENTES */
  .clientes .section-inner {
    padding: 80px 20px
  }

  .clientes .headline-lg {
    margin-bottom: 8px
  }

  .clientes .sub {
    font-size: 13px;
    margin-bottom: 32px
  }

  .tags {
    gap: 8px
  }

  .tag {
    font-size: 11px;
    padding: 10px 16px;
    letter-spacing: .06em
  }

  /* ENFOQUE */
  .enfoque .section-inner {
    padding: 80px 20px
  }

  .enf-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .enfoque .headline-lg {
    font-size: clamp(26px, 7vw, 34px)
  }

  .diff-list li {
    font-size: 14px;
    padding: 12px 0 12px 20px
  }

  /* CONTACTO */
  .contacto .section-inner {
    padding: 80px 20px 20px
  }

  .contacto .headline-xl {
    font-size: clamp(36px, 10vw, 48px)
  }

  .contacto .body-text {
    font-size: 15px;
    margin-bottom: 28px
  }

  .contact-icons {
    gap: 12px
  }

  .contact-icon {
    width: 46px;
    height: 46px
  }

  .contact-icon svg {
    width: 18px;
    height: 18px
  }

  .contact-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 16px 24px;
    font-size: 14px
  }

  .location {
    margin-top: 28px
  }

  /* FOOTER */
  .footer-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px;
    font-size: 11px
  }

  /* TYPOGRAPHY SCALE */
  .headline-xl {
    font-size: clamp(36px, 10vw, 48px)
  }

  .headline-lg {
    font-size: clamp(28px, 8vw, 36px)
  }

  .headline-md {
    font-size: clamp(20px, 6vw, 26px)
  }

  .body-text {
    font-size: 15px;
    line-height: 1.7
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .18em;
    margin-bottom: 14px
  }
}

/* """ SMALL PHONES (390px) """ */
@media(max-width:390px) {
  .site-header {
    padding: 16px 16px
  }

  .hero .headline-xl {
    font-size: clamp(30px, 10vw, 42px)
  }

  .hero .badge {
    font-size: 9px;
    padding: 7px 14px;
    letter-spacing: .15em
  }

  .split-text {
    padding: 64px 16px 40px
  }

  .portfolio .section-inner,
  .services .section-inner,
  .proceso .section-inner,
  .clientes .section-inner,
  .enfoque .section-inner,
  .contacto .section-inner {
    padding: 64px 16px
  }

  .service-name {
    font-size: 15px
  }

  .contact-link {
    padding: 14px 20px;
    font-size: 13px
  }

  .tag {
    font-size: 10px;
    padding: 8px 12px
  }

  .pill {
    font-size: 9px;
    padding: 7px 12px
  }
}

/* ═══════════════════════════════════════
   CONTACT MODAL + LEAD FORM
   ═══════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible
}

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

.modal-container {
  position: relative;
  width: 94%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 48px 44px;
  transform: translateY(30px) scale(.97);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.15) transparent
}

.modal-overlay.open .modal-container {
  transform: translateY(0) scale(1)
}

.modal-container::-webkit-scrollbar {
  width: 4px
}

.modal-container::-webkit-scrollbar-track {
  background: transparent
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.12);
  border-radius: 2px
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s
}

.modal-close:hover {
  color: var(--pure-white);
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .05)
}

.modal-container .eyebrow {
  color: var(--orange);
  margin-bottom: 16px
}

.modal-container .headline-md {
  color: var(--pure-white);
  margin-bottom: 12px
}

.modal-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 36px
}

/* ── Form Fields ── */
.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

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

.form-group.full {
  margin-bottom: 24px
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 8px
}

.form-group label .req {
  color: var(--orange)
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--pure-white);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 14px 16px;
  outline: none;
  transition: border-color .3s, background .3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .2);
  font-weight: 400
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, .08)
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, .06)
}

.field-error {
  font-size: 11px;
  font-weight: 500;
  color: #e74c3c;
  margin-top: 6px;
  min-height: 16px;
  letter-spacing: .02em
}

/* Select wrapper */
.select-wrap {
  position: relative
}

.select-wrap select {
  width: 100%;
  cursor: pointer;
  padding-right: 36px
}

.select-wrap select option {
  background: var(--blue-dark);
  color: var(--pure-white)
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .35);
  pointer-events: none
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6
}

/* Submit */
.form-submit {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  width: 100%;
  padding: 18px 32px;
  background: var(--orange);
  color: var(--pure-white);
  border: 1px solid var(--orange);
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative
}

.form-submit:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark)
}

.form-submit:disabled {
  opacity: .65;
  cursor: not-allowed
}

.form-submit .btn-loader {
  display: none
}

.form-submit.loading .btn-text {
  opacity: 0
}

.form-submit.loading .btn-loader {
  display: flex;
  position: absolute
}

/* ── Success State ── */
.modal-success-state {
  display: none;
  text-align: center;
  padding: 24px 0
}

.modal-success-state .success-icon {
  margin-bottom: 24px
}

.modal-success-state .headline-md {
  color: var(--pure-white);
  margin-bottom: 12px
}

.modal-success-state .modal-subtitle {
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto
}

/* Body lock when modal open */
body.modal-open {
  overflow: hidden
}

/* ── Modal Responsive ── */
@media (max-width: 768px) {
  .modal-container {
    padding: 36px 24px;
    max-height: 95vh;
    width: 96%
  }

  .lead-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0
  }

  .form-group {
    margin-bottom: 16px
  }

  .modal-container .headline-md {
    font-size: clamp(22px, 6vw, 28px)
  }

  .modal-subtitle {
    font-size: 13px;
    margin-bottom: 28px
  }

  .form-submit {
    padding: 16px 24px
  }
}

@media (max-width: 390px) {
  .modal-container {
    padding: 28px 18px
  }
}