/* -----------------------------
   Base
------------------------------ */
:root{
  --bg: #F6F1E8;
  --ink: #0d0e10;
  --muted: rgba(13,14,16,.65);
  --card: #ffffff;
  --line: rgba(13,14,16,.10);

  --dark: #070709;
  --dark2: #0b0b0d;
  --lightOnDark: rgba(255,255,255,.78);

  --accent: #ff6a00;
  --accent2: #ff7a18;

  --radius-lg: 26px;
  --radius-md: 18px;

  --container: 1160px;

  /* Typography */
  --font-sans: 'Poppins', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: 'Poppins', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: 'Universo Black', 'Universo Sans', 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --echos-overlay-intensity: 1;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
}

/* Titulares en tipografÃƒÆ’Ã‚Â­a display (estilo ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œUniversoÃƒÂ¢Ã¢â€šÂ¬Ã‚Â) */
h1, h2, h3, h4, h5, h6,
.hero__title,
.section-title,
.who__title,
.contact__title,
.mega-logo__text{
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
}

/* a11y */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* helpers */
.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.center{text-align:center}
.section-title{
  margin: 0 0 10px 0;
  font-size: 28px;
  letter-spacing: .6px;
}
.section-title--light{ color:#fff; }
.section-sub{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.section-sub--light{ color: rgba(255,255,255,.65); }

/* -----------------------------
   Buttons
------------------------------ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  padding: 12px 16px;
  letter-spacing: .2px;
  border: 1px solid transparent;
  user-select:none;
}
.btn--orange{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 40px rgba(255,106,0,.25);
}
.btn--orange:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn__icon{
  width: 28px;
  height: 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.echos-arrow-icon{
  width: 18px;
  height: 18px;
  display:block;
  flex-shrink:0;
}
.btn--wide{ padding-inline: 18px; }

/* -----------------------------
   Hero
------------------------------ */
.hero{
  position: relative;
  height: 520px;
  overflow:hidden;
  background: #0b0c10;
}
.hero__viewport{
  position:absolute;
  inset:0;
  z-index: 0;
  display:flex;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero__viewport::-webkit-scrollbar{ display:none; }

.hero__slide{
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
}

.hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 520px at 68% 42%, rgba(255,106,0,.12), transparent 60%),
    linear-gradient(120deg, rgba(0,0,0,.70), rgba(0,0,0,.08)),
    var(--hero-image, linear-gradient(120deg, #182039, #090b12));
  transform: scale(1.02);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__video{
  position:absolute;
  inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index: 1;
}
.hero__video iframe{
  position:absolute;
  top:50%;
  left:50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.18) 40%, rgba(0,0,0,.18));
  pointer-events:none;
  z-index: 1;
}
.topbar{
  position:absolute;
  inset: 0 0 auto 0;
  padding: 16px 0;
  z-index: 5;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.15)
  );
}
.topbar__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 18px;
}
.brand{
  display:flex;
  flex-direction:row;
  gap: 2px;
  text-decoration:none;
  color:#fff;
}
.brand__logo{
  height: 34px;
  width: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.brand__mark{
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 20px;
}
.brand__star{ color: var(--accent); }
.brand__sub{
  font-size: 9px;
  letter-spacing: .9px;
  color: rgba(255,255,255,.60);
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-style: solid;
  border-width: 2px 0;
  border-image-source: linear-gradient(to right, transparent, #d15700, transparent);
  border-image-slice: 1;
  padding: 20px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li {
  margin: 0;
}
.nav a,
.nav .menu-item-label {
  text-decoration: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}
.nav .menu-item-label {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav a:hover,
.nav .menu-item-label:hover,
.nav .current-menu-item > a,
.nav .current-menu-item > .menu-item-label,
.nav .current-menu-parent > a,
.nav .current-menu-parent > .menu-item-label,
.nav .current-menu-ancestor > a,
.nav .current-menu-ancestor > .menu-item-label,
.nav .current-page-ancestor > a,
.nav .current-page-ancestor > .menu-item-label {
  color: var(--accent);
}

.nav__list > li {
  position: relative;
}

.nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 60;
}

.nav__list .sub-menu li {
  margin: 0;
}

.nav__list .sub-menu a {
  display: block;
  padding: 10px 14px;
  white-space: nowrap;
}

.nav__list > li:hover > .sub-menu,
.nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__list .sub-menu li:hover > .sub-menu,
.nav__list .sub-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__list .sub-menu .sub-menu {
  top: -1px;
  left: calc(100% + 8px);
}

.cta{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  background: #fff;
  color: #101114;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.cta__icon{
  width: 28px;
  height: 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: #f1f1f1;
  border-radius: 999px;
}

.hero__content{
  position:relative;
  z-index: 2;
  height: 100%;
  display:flex;
  align-items:center;
}
.hero__copy{
  max-width: 520px;
  margin-top: 40px;
}
.hero__title{
  margin:0 0 14px 0;
  line-height: .95;
  font-size: 46px;
  letter-spacing: .6px;
  color:#fff;
}
.hero__title--accent{ color: var(--accent); }
.hero__desc{
  margin:0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  max-width: 420px;
  line-height: 1.6;
}

/* dots */
.hero__dots{
  position:absolute;
  left:0; right:0; bottom: 18px;
  display:flex;
  justify-content:center;
  gap: 8px;
  z-index: 6;
}
.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.18);
  cursor:pointer;
}
.dot.is-active{
  width: 10px;
  background: rgba(255,255,255,.85);
}

/* -----------------------------
   Clients
------------------------------ */
.clients{
  padding: 34px 0 36px;
}
.clients__row{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap: 34px;
  align-items:center;
  flex-wrap:wrap;
}
.logo{
  height: 30px;
  min-width: 70px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .5px;
  color: #1a1c22;
  opacity: .9;
}
.logo--bcp{
  color: #0f4ccf;
  position:relative;
}
.logo--bcp::before{
  content:">";
  color: var(--accent);
  font-weight: 900;
  margin-right: 6px;
}
.logo--ipsos{
  background: linear-gradient(135deg, #2635c8, #00c2b3);
  color:#fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
}

/* -----------------------------
   Dark blocks (QuiÃƒÆ’Ã‚Â©nes somos / Servicios)
------------------------------ */
.dark-block{
  background:
    radial-gradient(900px 380px at 10% 20%, rgba(255,106,0,.22), transparent 60%),
    radial-gradient(900px 380px at 90% 80%, rgba(255,106,0,.16), transparent 55%),
    linear-gradient(180deg, var(--dark), var(--dark2));
  color:#fff;
  padding: 56px 0;
}
.who{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}
.who__title{
  margin:0 0 10px 0;
  font-size: 26px;
  letter-spacing: .6px;
}
.who__text{
  margin:0 0 16px 0;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  max-width: 440px;
  line-height: 1.7;
}
.photo-card{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 8px;
}
.photo-card__img{
  border-radius: calc(var(--radius-lg) - 8px);
  height: 220px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    radial-gradient(120px 120px at 30% 40%, rgba(255,106,0,.40), transparent 65%),
    radial-gradient(220px 160px at 70% 60%, rgba(60,120,255,.35), transparent 70%),
    linear-gradient(135deg, #101321, #040406);
}

/* -----------------------------
   Projects
------------------------------ */
.projects{
  padding: 44px 0 54px;
}
.projects__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
}
.projects__arrows{
  display:flex;
  gap: 10px;
  margin-top: 6px;
}
.icon-btn{
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}
.icon-btn--prev .echos-arrow-icon{
  transform: rotate(180deg);
}
.icon-btn:hover{ transform: translateY(-1px); }

.projects__rail{
  margin-top: 20px;
  display:flex;
  gap: 16px;
  overflow:auto;
  padding: 4px 2px 10px;
  scroll-behavior:smooth;
  scrollbar-width: none;
}
.projects__rail::-webkit-scrollbar{ display:none; }

.proj-card{
  flex: 0 0 270px;
  border-radius: 20px;
  overflow:hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
  position: relative;
  height: 250px;
}
.proj-card__link{
  display:block;
  height:100%;
  color: inherit;
  text-decoration: none;
}
.proj-card__link:focus-visible{
  outline: 2px solid #111319;
  outline-offset: -2px;
  border-radius: inherit;
}
.proj-card__media{
  position:relative;
  height: 100%;
  border-bottom: 1px solid rgba(0,0,0,.06);
  overflow:hidden;
}
.media{
  background:
    radial-gradient(140px 100px at 30% 35%, rgba(255,255,255,.30), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.00));
}
.media--blue{
  background:
    radial-gradient(220px 170px at 35% 40%, rgba(0,200,255,.55), transparent 65%),
    radial-gradient(200px 150px at 70% 60%, rgba(0,120,255,.35), transparent 70%),
    linear-gradient(135deg, #0b1020, #06070c);
}
.media--red{
  background:
    radial-gradient(220px 160px at 35% 40%, rgba(255,70,70,.55), transparent 65%),
    radial-gradient(220px 160px at 70% 60%, rgba(255,180,0,.35), transparent 70%),
    linear-gradient(135deg, #14060a, #06070c);
}
.media--green{
  background:
    radial-gradient(240px 180px at 40% 45%, rgba(60,230,170,.55), transparent 65%),
    radial-gradient(220px 160px at 70% 55%, rgba(80,180,255,.35), transparent 70%),
    linear-gradient(135deg, #07151a, #06070c);
}
.media--purple{
  background:
    radial-gradient(240px 180px at 40% 45%, rgba(190,120,255,.55), transparent 65%),
    radial-gradient(220px 160px at 70% 55%, rgba(255,120,0,.30), transparent 70%),
    linear-gradient(135deg, #0f0b1b, #06070c);
}
.chip{
  position:absolute;
  top: 10px; left: 10px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #c7ccdf;
  color: #111319;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.08);
}

.proj-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 12px;
  background: #c7ccdf;
  position: absolute;
  bottom: 10px;
  width: 90%;
  left: 5%;
  border-radius: 10px;
}
.proj-card__title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
}
.proj-card__date{
  margin-top: 2px;
  font-size: 11px;
  color: rgba(17,19,25,.55);
  font-weight: 700;
}
.proj-card__go{
  width: 34px; height: 34px;
  border: none;
  background: transparent;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor:pointer;
}
.proj-card__go .echos-arrow-icon{
  transform: rotate(-45deg);
}
.proj-card__go:hover{ background: rgba(17,19,25,.06); }

.projects__cta{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}

/* -----------------------------
   Services
------------------------------ */
.services{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}
.services__right{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.service-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 14px;
  text-decoration:none;
  color:#fff;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.service-item:hover{ background: rgba(255,255,255,.06); transform: translateY(-1px); }
.service-item__thumb{
  width: 64px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.thumb{
  background:
    radial-gradient(60px 50px at 30% 40%, rgba(255,255,255,.22), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,0));
}
.thumb--stage{
  background:
    radial-gradient(80px 60px at 30% 40%, rgba(0,160,255,.45), transparent 60%),
    radial-gradient(80px 60px at 70% 60%, rgba(255,106,0,.35), transparent 65%),
    linear-gradient(135deg, #0b0f1d, #07080c);
}
.thumb--lights{
  background:
    radial-gradient(80px 60px at 30% 40%, rgba(255,0,90,.45), transparent 60%),
    radial-gradient(90px 70px at 70% 60%, rgba(255,210,0,.35), transparent 65%),
    linear-gradient(135deg, #120610, #07080c);
}
.thumb--booth{
  background:
    radial-gradient(80px 60px at 30% 40%, rgba(70,230,170,.45), transparent 60%),
    radial-gradient(90px 70px at 70% 60%, rgba(120,160,255,.35), transparent 65%),
    linear-gradient(135deg, #051217, #07080c);
}
.service-item__label{
  flex:1;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 13px;
}
.service-item__arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  opacity: .9;
}
.service-item__arrow .echos-arrow-icon{
  transform: rotate(-45deg);
}

/* -----------------------------
   Contact
------------------------------ */
.contact{ padding: 54px 0; }
.contact__panel{
  background: #efe7dc;
  border-radius: 32px;
  padding: 36px;
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
}
.contact__title{
  margin:0 0 10px 0;
  font-size: 30px;
  letter-spacing: .6px;
  line-height: 1.05;
}
.contact__text{
  margin:0 0 18px 0;
  color: rgba(13,14,16,.62);
  font-size: 12px;
  line-height: 1.7;
  max-width: 320px;
}
.contact__actions{
  display:flex;
  flex-direction:column;
  gap: 10px;
  max-width: 260px;
}
.pill{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid transparent;
}
.pill--dark{
  background: #0b0b0d;
  color:#fff;
}
.pill__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.12);
}

.form-card{
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(13,14,16,.08);
}
.form-card__hint{
  text-align:center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(13,14,16,.58);
  margin-bottom: 10px;
}
.tabs{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.tab{
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(13,14,16,.12);
  background: #f6f6f7;
  font-weight: 900;
  font-size: 11px;
  cursor:pointer;
  color: rgba(13,14,16,.60);
}
.tab.is-active{
  background: #fff;
  color: #0d0e10;
  border-color: rgba(13,14,16,.22);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.form{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.input, .textarea{
  width:100%;
  border-radius: 10px;
  border: 1px solid rgba(13,14,16,.10);
  background: #f7f7f8;
  padding: 12px 12px;
  font-size: 12px;
  outline: none;
}
.textarea{
  min-height: 86px;
  resize: vertical;
}
.input:focus, .textarea:focus{
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
  background: #fff;
}
.echos-consent{
  display:flex;
  align-items:flex-start;
  gap: 8px;
  margin-top: 2px;
}
.echos-consent__checkbox{
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex: 0 0 auto;
}
.echos-consent__text{
  font-size: 11px;
  line-height: 1.45;
  color: rgba(13,14,16,.68);
}
.echos-consent__text a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.echos-consent__text a:hover{
  color: #0d0e10;
}
.form__footer{
  display:flex;
  justify-content:flex-end;
  margin-top: 4px;
}

/* -----------------------------
   Footer
------------------------------ */
.footer{
  padding: 22px 0 42px;
}
.footer__panel{
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(900px 320px at 12% 18%, rgba(255,106,0,.22), transparent 60%),
    radial-gradient(900px 340px at 88% 78%, rgba(255,106,0,.18), transparent 55%),
    linear-gradient(180deg, #0b0b0d, #060607);
  color:#fff;
}
.footer__top{
  padding: 22px 22px 6px 22px;
  display:flex;
  justify-content:space-between;
  gap: 18px;
}
.footer__label{
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
}
.footer__icons{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}
.soc{
  width: 26px; height: 26px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  text-decoration:none;
  color:#fff;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size: 10px;
}
.soc svg{
  width: 14px;
  height: 14px;
  display:block;
}
.footer__links{
  display:flex;
  gap: 40px;
  flex-wrap: wrap;
}
.col{
  display:flex;
  flex-direction:column;
  gap: 8px;
  min-width: 160px;
}
.col__title{
  font-weight: 900;
  font-size: 11px;
  opacity: .9;
  margin-bottom: 2px;
}
.col a{
  text-decoration:none;
  color: rgba(255,255,255,.60);
  font-size: 11px;
}
.col a:hover{ color:#fff; }

.footer__brand{
  padding: 8px 22px 26px 22px;
  position: relative;
}
.mega-logo{
  height: 120px;
  border-radius: 22px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.15);
}
.mega-logo__text{
  font-size: 96px;
  font-weight: 1000;
  letter-spacing: 1px;
  opacity: .95;
}
.mega-logo__text span{ color: var(--accent); }

.logo-footer{ 
  position: absolute;
  width: 500px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
}

/* -----------------------------
   Responsive
------------------------------ */
@media (max-width: 980px){
  .topbar__inner{ grid-template-columns: 1fr; }
  .nav,
  .cta{ display:none; }
  .who{ grid-template-columns: 1fr; }
  .services{ grid-template-columns: 1fr; }
  .contact__panel{ grid-template-columns: 1fr; padding: 26px; }
  .mega-logo__text{ font-size: 72px; }
  .hero__title{ font-size: 40px; }
  .footer__top {
      padding: 22px 22px 6px 22px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-direction: column;
  }
}

@media (max-width: 520px){
  .hero{ height: 540px; }
  .cta span:first-child{ display:none; }
  .clients__row{ gap: 18px; }
  .proj-card{ flex-basis: 248px; }
  .mega-logo__text{ font-size: 58px; }
  .logo-footer{ 
    position: absolute;
    width: 250px;
    bottom: 5px;
  }
  
}


/* =====================================================
   HOME REFERENCE OVERRIDES (inicio)
   ===================================================== */
body.home {
  --home-bg: #f2efe8;
  --home-ink: #121316;
  --home-muted: rgba(18, 19, 22, 0.62);
  --home-card: #f0ece3;
  --home-dark: #060608;
  --home-dark-soft: #0a0b11;
  --home-border: rgba(255, 255, 255, 0.12);
  --home-line: rgba(18, 19, 22, 0.12);
  --home-accent: #ff6a00;
}

body.home {
  background: var(--home-bg);
  color: var(--home-ink);
}

body.home .container {
  width: min(1240px, calc(100% - 76px));
}

/* Typography closer to visual reference */
body.home .section-title,
body.home .who__title,
body.home .contact__title,
body.home .hero__title {
  font-weight: 800;
  letter-spacing: 0;
}

body.home .section-title {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 0.96;
}

body.home .section-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-muted);
}

/* Shared buttons + arrow model */
body.home .btn {
  min-height: 48px;
  padding: 11px 21px;
  border-radius: 999px;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

body.home .btn--orange {
  background: linear-gradient(180deg, #ff7a08 0%, #ff6600 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(255, 106, 0, 0.28);
}

body.home .btn__icon,
body.home .cta__icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

body.home .echos-arrow-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

body.home .icon-btn--prev .echos-arrow-icon {
  transform: rotate(180deg);
}

body.home .proj-card__go .echos-arrow-icon,
body.home .service-item__arrow .echos-arrow-icon {
  transform: rotate(-45deg);
}

/* Hero + topbar */
body.home .hero {
  height: 660px;
  background: #07080f;
}

body.home .hero__bg {
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.82) 12%, rgba(0, 0, 0, 0.24) 64%),
    radial-gradient(900px 420px at 25% 16%, rgba(255, 106, 0, 0.14), transparent 56%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

body.home .hero__overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.24) 50%, rgba(0, 0, 0, 0.52));
}

body.home .hero__content {
  align-items: flex-end;
  padding-bottom: 176px;
}

body.home .hero__copy {
  max-width: 640px;
  margin-top: 0;
}

body.home .hero__title {
  font-size: clamp(54px, 6.1vw, 76px);
  line-height: 0.89;
  margin-bottom: 14px;
  color: #f4f5f8;
}

body.home .hero__title--accent {
  color: var(--home-accent);
}

body.home .hero__desc {
  color: rgba(255, 255, 255, 0.78);
  max-width: 510px;
  font-size: 14px;
}

body.home .topbar {
  padding-top: 22px;
  background: none;
}

body.home .topbar__inner {
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(11, 12, 18, 0.9), rgba(6, 6, 8, 0.9));
  min-height: 72px;
  padding: 10px 18px 10px 20px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

body.home .brand__logo {
  height: 42px;
}

body.home .nav {
  justify-self: center;
  border: 0;
  height: auto;
  padding: 0;
}

body.home .nav__list {
  gap: 44px;
}

body.home .nav a,
body.home .nav .menu-item-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

body.home .cta {
  justify-self: end;
  min-height: 44px;
  padding: 9px 14px 9px 16px;
  font-size: 13px;
}

body.home .hero__dots {
  bottom: 18px;
}

body.home .dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.35);
  border-color: transparent;
}

body.home .dot.is-active {
  width: 9px;
  background: #fff;
}

/* Clients */
body.home .clients {
  padding: 72px 0 70px;
  background: var(--home-bg);
}

body.home .clients .section-title {
  font-size: clamp(36px, 4.1vw, 56px);
  margin-bottom: 10px;
}

body.home .clients .section-sub {
  max-width: 740px;
  margin-inline: auto;
}

body.home .clients__row {
  margin-top: 46px;
  gap: clamp(28px, 4vw, 52px);
}

body.home .clients__logo {
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.96;
}

body.home .clients__logo--bcp {
  height: 34px;
}

body.home .clients__logo--ipsos {
  height: 48px;
}

/* Dark sections */
body.home .dark-block {
  padding: 84px 0;
  background:
    radial-gradient(680px 330px at 10% 40%, rgba(255, 106, 0, 0.34), transparent 62%),
    radial-gradient(780px 390px at 89% 70%, rgba(255, 106, 0, 0.16), transparent 67%),
    linear-gradient(180deg, #060608 0%, #08090c 100%);
}

body.home .who {
  grid-template-columns: 0.93fr 1.07fr;
  gap: 54px;
}

body.home .who__title {
  font-size: clamp(38px, 4.8vw, 58px);
  margin-bottom: 22px;
}

body.home .who__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.74);
  max-width: 520px;
  margin-bottom: 30px;
}

body.home .photo-card {
  padding: 0;
  border: 1px solid var(--home-border);
  border-radius: 28px;
  overflow: hidden;
}

body.home .photo-card__img {
  height: 312px;
  background-size: cover;
  background-position: center;
  position: relative;
}

body.home .photo-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.26));
}

/* Projects */
body.home .projects {
  padding: 88px 0 94px;
}

body.home .projects__head {
  align-items: center;
  margin-bottom: 26px;
}

body.home .projects__head .section-title {
  margin-bottom: 12px;
  font-size: clamp(38px, 4.8vw, 62px);
}

body.home .projects__arrows {
  gap: 14px;
}

body.home .icon-btn {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #191c21;
}

body.home .projects__rail {
  gap: 18px;
  padding-bottom: 12px;
}

body.home .proj-card {
  flex: 0 0 clamp(292px, 24vw, 330px);
  height: 338px;
  border-radius: 18px;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

body.home .proj-card__media {
  position: absolute;
  inset: 0;
  height: auto;
  border-bottom: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--media-image);
}

body.home .media::before {
  content: "";
  position: absolute;
  inset: 0;
}

body.home .media--blue::before {
  background: linear-gradient(180deg, rgba(7, 26, 66, 0.28), rgba(6, 7, 10, 0.2));
}

body.home .media--red::before {
  background: linear-gradient(180deg, rgba(63, 8, 8, 0.28), rgba(8, 9, 12, 0.22));
}

body.home .media--green::before {
  background: linear-gradient(180deg, rgba(8, 56, 38, 0.24), rgba(7, 9, 13, 0.24));
}

body.home .media--purple::before {
  background: linear-gradient(180deg, rgba(39, 18, 74, 0.24), rgba(7, 9, 13, 0.24));
}

body.home .chip {
  top: 12px;
  right: 12px;
  left: auto;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  font-size: 11px;
  font-weight: 700;
}

body.home .proj-card__meta {
  left: 8px;
  right: 8px;
  width: auto;
  bottom: 8px;
  border-radius: 14px;
  background: rgba(232, 236, 244, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

body.home .proj-card__title {
  font-size: 15px;
  font-weight: 700;
}

body.home .proj-card__date {
  font-size: 12px;
  font-weight: 500;
}

body.home .proj-card__go {
  width: 36px;
  height: 36px;
  color: #111318;
}

body.home .projects__cta {
  margin-top: 26px;
}

/* Services */
body.home .dark-block--services {
  padding-top: 92px;
  padding-bottom: 96px;
}

body.home .services {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

body.home .services .section-title {
  font-size: clamp(38px, 4.8vw, 58px);
  margin-bottom: 20px;
}

body.home .services .section-sub {
  max-width: 430px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

body.home .services__right {
  gap: 12px;
}

body.home .service-item {
  min-height: 96px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(95deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.02));
  padding: 10px 14px 10px 10px;
}

body.home .service-item__thumb {
  width: 112px;
  height: 74px;
  border-radius: 14px;
  border: 0;
  background-image: var(--thumb-image);
  background-size: cover;
  background-position: center;
  position: relative;
}

body.home .service-item__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

body.home .thumb--stage::after {
  background: linear-gradient(180deg, rgba(11, 24, 68, 0.18), rgba(7, 10, 16, 0.22));
}

body.home .thumb--lights::after {
  background: linear-gradient(180deg, rgba(80, 8, 15, 0.18), rgba(7, 10, 16, 0.22));
}

body.home .thumb--booth::after {
  background: linear-gradient(180deg, rgba(10, 63, 51, 0.18), rgba(7, 10, 16, 0.22));
}

body.home .service-item__label {
  font-size: 26px;
  font-weight: 500;
}

body.home .service-item__arrow {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
}

/* Contact */
body.home .contact {
  padding: 86px 0 36px;
}

body.home .contact__panel {
  background: #e8e3d9;
  border-radius: 34px;
  padding: 58px 64px;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  gap: 44px;
}

body.home .contact__title {
  font-size: clamp(44px, 4.8vw, 44px);
  line-height: 0.95;
  margin-bottom: 22px;
}

body.home .contact__text {
  max-width: 410px;
  font-size: 15px;
  margin-bottom: 24px;
}

body.home .contact__actions {
  max-width: 290px;
}

body.home .pill {
  justify-content: space-between;
  min-height: 48px;
  padding: 9px 10px 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

body.home .pill__icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}

body.home .pill__icon svg {
  width: 15px;
  height: 15px;
}

body.home .form-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

body.home .form-card__hint {
  text-align: left;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(18, 19, 22, 0.88);
}

body.home .tabs {
  --tab-count: 1;
  --tab-index: 0;
  --tab-gap: 3px;
  --tab-slot-width: calc((100% - (var(--tab-gap) * 2)) / var(--tab-count));
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 12px;
  border: 1px solid rgba(18, 19, 22, 0.18);
  border-radius: 999px;
  padding: var(--tab-gap);
  display: inline-flex;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

body.home .tabs::before {
  content: "";
  position: absolute;
  top: var(--tab-gap);
  left: var(--tab-gap);
  width: var(--tab-slot-width);
  height: calc(100% - (var(--tab-gap) * 2));
  border-radius: 999px;
  background: #f7f4ed;
  transform: translateX(calc(var(--tab-index) * 100%));
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
  z-index: 0;
}

body.home .tab {
  min-width: 104px;
  border: 0;
  background: transparent;
  color: rgba(18, 19, 22, 0.62);
  font-weight: 500;
  position: relative;
  z-index: 1;
  border-radius: 999px;
  transition: color .22s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.home .tab.is-active {
  background: transparent;
  box-shadow: none;
  color: #111318;
}

body.home .tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(17, 19, 24, 0.28);
}

body.home .input,
body.home .textarea {
  border-radius: 10px;
  border: 0;
  background: #f7f6f2;
  font-size: 13px;
  color: #22252b;
}

body.home .input::placeholder,
body.home .textarea::placeholder {
  color: rgba(34, 37, 43, 0.45);
}

body.home .textarea {
  min-height: 92px;
}

body.home .form__footer {
  margin-top: 8px;
}

/* Footer style alignment */
body.home .footer {
  padding-top: 0;
  padding-bottom: 30px;
}

body.home .footer__panel {
  border-radius: 34px;
  border: 0;
  background:
    radial-gradient(720px 300px at 15% 10%, rgba(255, 106, 0, 0.18), transparent 62%),
    radial-gradient(780px 370px at 88% 88%, rgba(255, 106, 0, 0.24), transparent 60%),
    linear-gradient(180deg, #0a0b10 0%, #090b12 100%);
}

body.home .footer__top {
  padding: 34px 36px 14px;
  align-items: flex-start;
}

body.home .footer__label {
  font-size: 21px;
  color: #fff;
  line-height: 1.15;
}

body.home .footer__icons {
  gap: 14px;
}

body.home .soc {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  font-size: 16px;
  opacity: 0.9;
  padding: 0;
}

body.home .footer__links {
  gap: 84px;
}

body.home .col__title {
  font-size: 14px;
}

body.home .col a {
  font-size: 13px;
}

body.home .footer__brand {
  padding: 0 36px 26px;
}

body.home .mega-logo {
  height: 220px;
  border-radius: 26px;
  background: transparent;
}

body.home .logo-footer {
  width: min(86%, 880px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
  body.home .container {
    width: min(1240px, calc(100% - 54px));
  }

  body.home .hero {
    height: 620px;
  }

  body.home .who {
    gap: 28px;
  }

  body.home .services {
    gap: 24px;
  }

  body.home .service-item__label {
    font-size: 22px;
  }
}

@media (max-width: 980px) {
  body.home .container {
    width: min(1240px, calc(100% - 34px));
  }

  body.home .hero {
    height: 560px;
  }

  body.home .topbar {
    padding-top: 14px;
  }

  body.home .topbar__inner {
    grid-template-columns: 1fr;
    min-height: 64px;
    border-radius: 20px;
    padding: 10px 14px;
  }

  body.home .brand {
    justify-content: center;
  }

  body.home .hero__content {
    padding-bottom: 100px;
  }

  body.home .hero__title {
    font-size: clamp(34px, 34px, 34px);
  }

  body.home .clients {
    padding: 54px 0;
  }

  body.home .clients__row {
    margin-top: 28px;
    gap: 24px;
  }

  body.home .dark-block,
  body.home .projects,
  body.home .contact {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  body.home .who,
  body.home .services,
  body.home .contact__panel {
    grid-template-columns: 1fr;
  }

  body.home .contact__panel {
    padding: 30px 24px;
  }

  body.home .tabs {
    width: 100%;
    justify-content: flex-start;
  }

  body.home .tab {
    min-width: 0;
    flex: 1;
  }

  body.home .projects__head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.home .projects__arrows {
    margin-top: 8px;
  }

  body.home .proj-card {
    flex-basis: min(82vw, 330px);
  }

  body.home .footer__top {
    flex-direction: column;
    gap: 28px;
  }

  body.home .footer__links {
    gap: 40px;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
  }

  body.home .mega-logo {
    height: 160px;
  }

  body.home .logo-footer {
    width: min(92%, 620px);
  }
}

@media (max-width: 640px) {
  body.home .btn {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 12px;
  }

  body.home .hero {
    height: 520px;
  }

  body.home .hero__desc {
    font-size: 13px;
  }

  body.home .section-title,
  body.home .who__title,
  body.home .contact__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  body.home .photo-card__img {
    height: 230px;
  }

  body.home .service-item {
    min-height: 78px;
  }

  body.home .service-item__thumb {
    width: 84px;
    height: 58px;
  }

  body.home .service-item__label {
    font-size: 18px;
  }

  body.home .contact__actions {
    max-width: none;
  }

  body.home .footer__top,
  body.home .footer__brand {
    padding-left: 22px;
    padding-right: 22px;
  }

  body.home .mega-logo {
    height: 120px;
  }

  body.home .logo-footer {
    width: min(94%, 420px);
    bottom: 8px;
  }
}


/* =====================================================
   HOME TYPOGRAPHY CALIBRATION (Universo + Poppins)
   ===================================================== */
body.home {
  font-family: var(--font-sans);
}

body.home .hero__title,
body.home .section-title,
body.home .who__title,
body.home .contact__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.004em;
}

body.home .hero__title {
  font-weight: 900;
  font-size: clamp(36px, 36px, 36px);
  line-height: 0.9;
}

body.home .section-title,
body.home .who__title,
body.home .contact__title {
  font-weight: 700;
}

body.home .section-title {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 0.97;
}

body.home .clients .section-title,
body.home .projects__head .section-title,
body.home .services .section-title {
  font-size: clamp(32px, 4vw, 56px);
}

body.home .contact__title {
  font-size: clamp(40px, 4.5vw, 40px);
  line-height: 0.94;
}

body.home .section-sub,
body.home .hero__desc,
body.home .who__text,
body.home .contact__text,
body.home .proj-card__date,
body.home .form-card__hint,
body.home .input,
body.home .textarea,
body.home .col a,
body.home .soc {
  font-family: var(--font-sans);
  font-weight: 400;
}

body.home .section-sub {
  font-size: 13px;
  line-height: 1.6;
}

body.home .hero__desc {
  font-size: 13.5px;
  line-height: 1.55;
}

body.home .who__text,
body.home .contact__text {
  font-size: 14px;
  line-height: 1.65;
}

body.home .nav a,
body.home .nav .menu-item-label,
body.home .cta,
body.home .btn,
body.home .pill,
body.home .tab,
body.home .proj-card__title,
body.home .chip,
body.home .service-item__label,
body.home .col__title {
  font-family: var(--font-sans);
}

body.home .nav a,
body.home .nav .menu-item-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

body.home .cta,
body.home .btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

body.home .btn {
  min-height: 46px;
}

body.home .proj-card__title {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
}

body.home .proj-card__date {
  font-size: 11px;
}

body.home .chip {
  font-size: 10px;
  font-weight: 500;
}

body.home .service-item__label {
  font-size: clamp(21px, 2.35vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
}

body.home .pill {
  font-size: 12px;
  font-weight: 500;
}

body.home .form-card__hint {
  font-size: 13px;
  font-weight: 500;
}

body.home .tab {
  font-size: 11px;
  font-weight: 500;
}

body.home .input,
body.home .textarea {
  font-size: 12px;
}

body.home .footer__label {
  font-family: var(--font-sans);
  font-size: clamp(21px, 21px, 21px);
  font-weight: 500;
  line-height: 1.12;
}

body.home .col__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.home .col a {
  font-size: 12px;
}

@media (max-width: 980px) {
  body.home .hero__title {
    font-size: clamp(40px, 9.5vw, 58px);
  }

  body.home .section-title,
  body.home .who__title,
  body.home .contact__title {
    font-size: clamp(32px, 8vw, 42px);
  }

  body.home .service-item__label {
    font-size: clamp(18px, 4.8vw, 24px);
  }
}

@media (max-width: 640px) {
  body.home .hero__desc,
  body.home .section-sub,
  body.home .who__text,
  body.home .contact__text {
    font-size: 12px;
  }

  body.home .footer__label {
    font-size: clamp(21px, 21px, 21px);
  }
  body.home .clients__logo--bcp {
    width: 20%;
    height: auto !important;
  }
}

/* =====================================================
   STANDARD HEADER/FOOTER OVERRIDES (match Nosotros)
   ===================================================== */
body .topbar.topbar--static,
body .topbar.topbar--srv {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 16px 0;
  z-index: 5;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.15)
  );
}

body.home .topbar {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 16px 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.15)
  );
}

body.home .topbar__inner {
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  border-radius: 0;
  border: 0;
  background: transparent;
  min-height: auto;
  padding: 0;
  box-shadow: none;
}

body.home .brand {
  justify-content: flex-start;
}

body.home .brand__logo {
  height: 34px;
}

body.home .nav {
  justify-content: center;
  align-items: center;
  height: 100%;
  border-style: solid;
  border-width: 2px 0;
  border-image-source: linear-gradient(to right, transparent, #d15700, transparent);
  border-image-slice: 1;
  padding: 20px;
}

body.home .nav__list {
  gap: 26px;
}

body.home .nav a,
body.home .nav .menu-item-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}

body.home .cta {
  min-height: auto;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  color: #101114;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

body.home .cta__icon {
  width: 28px;
  height: 28px;
  background: #f1f1f1;
  border-radius: 999px;
}

body.home .footer {
  padding: 22px 0 42px;
}

body.home .footer__panel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(900px 320px at 12% 18%, rgba(255, 106, 0, 0.22), transparent 60%),
    radial-gradient(900px 340px at 88% 78%, rgba(255, 106, 0, 0.18), transparent 55%),
    linear-gradient(180deg, #0b0b0d, #060607);
  color: #fff;
}

body.home .footer__top {
    padding: 22px 22px 6px 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: stretch;
}

body.home .footer__label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

body.home .footer__icons {
  gap: 10px;
  margin-top: 10px;
}

body.home .soc {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  padding: 0;
  opacity: 1;
}

body.home .footer__links {
  gap: 40px;
  flex-wrap: nowrap;
}

body.home .col__title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

body.home .col a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

body.home .footer__brand {
  padding: 8px 22px 26px 22px;
}

body.home .mega-logo {
  height: 120px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.15);
}

body.home .logo-footer {
  width: 500px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
}

@media (max-width: 980px) {
  body.home .topbar__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.home .logo-footer {
    width: 250px;
    bottom: 5px;
  }
}

/* =====================================================
   FOOTER TYPOGRAPHY CALIBRATION
   ===================================================== */
.footer__label,
body.home .footer__label {
  font-family: var(--font-sans);
  font-size: clamp(21px, 21px, 21px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.col__title,
body.home .col__title {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.02vw, 19px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.col a,
body.home .col a {
  font-family: var(--font-sans);
  font-size: clamp(15px, .88vw, 16px);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .footer__label,
  body.home .footer__label {
    font-size: clamp(21px, 21px, 21px);
  }

  .col__title,
  body.home .col__title {
    font-size: 15px;
  }

  .col a,
  body.home .col a {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .footer__label,
  body.home .footer__label {
    font-size: clamp(20px, 20px, 20px);
    line-height: 1.25;
  }

  .col__title,
  body.home .col__title {
    font-size: 14px;
  }

  .col a,
  body.home .col a {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* =====================================================
   HOME FONT MAPPING (reference image)
   ===================================================== */
body.home .hero__desc {
  font-family: var(--font-sans);
  font-weight: 400;
}

body.home .nav a,
body.home .nav .menu-item-label,
body.home .cta {
  font-family: var(--font-sans);
  font-weight: 600;
}

/* =====================================================
   HOME TYPOGRAPHY LOCK (Desktop - 14 (1).svg)
   ===================================================== */
body.home {
  --home-font-display: 'Universo Sans', 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --home-font-ui: 'Poppins', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Hero */
body.home .hero__title {
  font-family: var(--home-font-display);
  font-weight: 900;
  font-size: clamp(58px, 5.55vw, 70px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

body.home .hero__desc {
  font-family: var(--home-font-ui);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
}

body.home .nav a,
body.home .nav .menu-item-label {
  font-family: var(--home-font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

body.home .cta {
  font-family: var(--home-font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

/* Shared section heading style */
body.home .section-title,
body.home .who__title,
body.home .contact__title {
  font-family: var(--home-font-display);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.94;
}

/* Clients */
body.home .clients .section-title {
  font-size: clamp(44px, 3.9vw, 56px);
}

body.home .clients .section-sub {
  font-family: var(--home-font-display);
  font-size: 14px;
  line-height: 1.6;
}

/* About */
body.home .who__title {
  font-size: clamp(42px, 3.9vw, 54px);
}

body.home .who__text {
  font-family: var(--home-font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

/* Projects */
body.home .projects__head .section-title {
  font-size: clamp(44px, 4.1vw, 58px);
}

body.home .projects .section-sub {
  font-family: var(--home-font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

body.home .proj-card__title {
  font-family: var(--home-font-ui);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

body.home .proj-card__date {
  font-family: var(--home-font-ui);
  font-size: 12px;
  font-weight: 400;
}

body.home .chip {
  font-family: var(--home-font-ui);
  font-size: 11px;
  font-weight: 500;
}

/* Services */
body.home .services .section-title {
  font-size: clamp(42px, 3.8vw, 54px);
}

body.home .services .section-sub {
  font-family: var(--home-font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

body.home .service-item__label {
  font-family: var(--home-font-ui);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  letter-spacing: 0;
}

/* Contact */
body.home .contact__title {
  font-size: clamp(44px, 4vw, 46px);
}

body.home .contact__text {
  font-family: var(--home-font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

body.home .form-card__hint {
  font-family: var(--home-font-ui);
  font-size: 13px;
  font-weight: 600;
}

body.home .tab {
  font-family: var(--home-font-ui);
  font-size: 11px;
  font-weight: 500;
}

body.home .input,
body.home .textarea,
body.home .input::placeholder,
body.home .textarea::placeholder {
  font-family: var(--home-font-ui);
  font-size: 12px;
  font-weight: 400;
}

body.home .btn,
body.home .pill {
  font-family: var(--home-font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

/* Footer */
body.home .footer__label {
  font-family: var(--home-font-ui);
  font-size: clamp(21px, 21px, 21px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

body.home .col__title {
  font-family: var(--home-font-ui);
  font-size: clamp(17px, 1.02vw, 19px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

body.home .col a,
body.home .soc {
  font-family: var(--home-font-ui);
  font-size: clamp(15px, .88vw, 16px);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 980px) {
  body.home .hero__title {
    font-size: clamp(32px, 32px, 32px);
  }

  body.home .clients .section-title,
  body.home .projects__head .section-title,
  body.home .services .section-title,
  body.home .who__title,
  body.home .contact__title {
    font-size: clamp(32px, 8vw, 44px);
  }

  body.home .service-item__label {
    font-size: clamp(18px, 4.8vw, 24px);
  }
}

@media (max-width: 640px) {
  body.home .hero__desc,
  body.home .clients .section-sub,
  body.home .projects .section-sub,
  body.home .services .section-sub,
  body.home .who__text,
  body.home .contact__text {
    font-size: 12px;
  }

  body.home .footer__label {
    font-size: clamp(20px, 20px, 20px);
    line-height: 1.25;
  }

  body.home .col__title {
    font-size: 14px;
  }

  body.home .col a,
  body.home .soc {
    font-size: 13px;
    line-height: 1.55;
  }
}
