:root {
  --ink: #070a17;
  --ink-soft: #0e1530;
  --navy: #11194a;
  --blue: #2369ff;
  --cyan: #36d6dc;
  --violet: #7a35e7;
  --magenta: #ec3d99;
  --white: #f8f7fc;
  --muted: #a9aec5;
  --line: rgba(255, 255, 255, 0.13);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 550;
  letter-spacing: -0.025em;
}
.shell {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.section-pad {
  padding-top: 118px;
  padding-bottom: 118px;
}

.site-header {
  height: 92px;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  background: rgba(7, 10, 23, 0.96);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
}
.brand-logo {
  position: relative;
  display: block;
  width: 96px;
  height: 96px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.brand-logo img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.brand-word {
  font-size: 21px;
  letter-spacing: 0.34em;
  line-height: 1;
}
.wave-mark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 44px;
}
.wave-mark i {
  width: 2px;
  display: block;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    var(--cyan),
    var(--violet) 55%,
    var(--magenta)
  );
}
.main-nav {
  display: flex;
  gap: 38px;
  align-items: center;
}
.main-nav a {
  position: relative;
  font-size: 14px;
  color: #c9ccda;
  padding: 10px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transition: right 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}
.site-header > .button {
  justify-self: end;
}
.button {
  display: inline-flex;
  width: max-content;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  color: white;
  font-weight: 650;
  font-size: 14px;
  background: linear-gradient(95deg, #1765e8 0%, #7434df 55%, #e440aa 100%);
  box-shadow: 0 12px 35px rgba(102, 49, 229, 0.28);
}
.button-small {
  min-height: 42px;
  padding-inline: 20px;
}
.button-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
  margin-top: 44px;
}
.button-light {
  color: #151231;
  background: white;
  box-shadow: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  font-size: 14px;
}
.text-link span {
  font-size: 20px;
  color: var(--cyan);
}
.eyebrow {
  color: #66dbe0;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.21em;
}

.home-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #090e22;
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(56%, 850px);
  background-image: url("brand/home-hero-virtual.png");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.06) contrast(1.02) brightness(1.12);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #080c1d 0%,
      #0a0f27 40%,
      rgba(10, 15, 39, 0.58) 58%,
      rgba(10, 15, 39, 0.06) 88%
    ),
    linear-gradient(0deg, rgba(7, 10, 23, 0.66), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 122px;
}
.hero-content h1 {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.99;
}
.hero-content h1 span {
  color: transparent;
  background: linear-gradient(90deg, #50e1dd, #6986ff 44%, #e65aa9);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy {
  max-width: 590px;
  margin-top: 31px;
  font-size: 19px;
  line-height: 1.7;
  color: #d1d3df;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}
.hero-proof {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.hero-proof div {
  padding: 26px 30px 31px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-proof div + div {
  padding-left: 30px;
}
.hero-proof div:last-child {
  border-right: 0;
}
.hero-proof strong {
  font-size: 15px;
}
.hero-proof span {
  font-size: 13px;
  color: #adb2c7;
}

.intro-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: start;
}
.section-heading h2,
.journey-panel h2,
.why-title h2,
.service-intro h2,
.delivery-grid h2 {
  font-size: clamp(39px, 4vw, 58px);
  line-height: 1.08;
  margin-top: 18px;
}
.intro-copy {
  display: grid;
  gap: 24px;
  color: #abb0c3;
  font-size: 17px;
  line-height: 1.7;
}
.intro-copy .lead {
  color: #eef0f6;
  font-size: 22px;
  line-height: 1.55;
}

.institutional-section {
  padding: 118px 0;
  background:
    radial-gradient(
      circle at 8% 85%,
      rgba(39, 171, 219, 0.13),
      transparent 33%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(191, 54, 165, 0.12),
      transparent 29%
    ),
    #0b0f23;
  border-block: 1px solid var(--line);
}
.institutional-grid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 100px;
}
.institutional-title h2 {
  margin-top: 18px;
  font-size: clamp(39px, 4vw, 58px);
  line-height: 1.08;
}
.institutional-title > p:last-child {
  max-width: 450px;
  margin-top: 26px;
  color: #a8aec2;
  font-size: 17px;
  line-height: 1.7;
}
.institutional-list {
  border-top: 1px solid var(--line);
}
.institutional-list article {
  display: block;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.institutional-list article > span {
  display: none;
}
.institutional-list h3 {
  font-size: 22px;
}
.institutional-list p {
  margin-top: 9px;
  color: #a5aabd;
  font-size: 14px;
  line-height: 1.65;
}

.journey-section {
  min-height: 730px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: #0b0f23;
}
.journey-image {
  min-height: 730px;
  background:
    linear-gradient(90deg, transparent 70%, #0b0f23),
    url("/brand/eckos-016.png") center/cover no-repeat;
}
.journey-panel {
  padding: 100px 70px 80px 40px;
  align-self: center;
}
.journey-panel > p:not(.eyebrow) {
  margin-top: 23px;
  font-size: 16px;
  line-height: 1.7;
  color: #acb1c5;
}
.compact-steps {
  list-style: none;
  padding: 0;
  margin: 35px 0 26px;
  border-top: 1px solid var(--line);
}
.compact-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 53px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.compact-steps span {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.services-preview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}
.compact-heading p:last-child {
  margin-top: 25px;
  color: #9fa5bc;
  font-size: 16px;
  line-height: 1.7;
}
.service-lines {
  border-top: 0;
}
.service-lines article {
  display: block;
  padding: 28px 30px;
  border: 1px solid rgba(94, 138, 255, 0.65);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 15% -10%,
      rgba(38, 84, 180, 0.2),
      transparent 52%
    ),
    #0a0f24;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.service-lines article + article {
  margin-top: 12px;
}
.service-lines article > span {
  display: none;
}
.service-lines h3 {
  font-size: 21px;
}
.service-lines p {
  color: #9fa5bb;
  margin-top: 8px;
  line-height: 1.55;
  font-size: 14px;
}
.services-preview > .button {
  grid-column: 2;
}

.why-section {
  position: relative;
  padding: 118px 0;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(20, 186, 205, 0.19),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(195, 49, 127, 0.18),
      transparent 35%
    ),
    #111432;
  border-block: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 100px;
}
.why-title > p:last-child {
  color: #a5aabd;
  margin-top: 25px;
  line-height: 1.7;
  font-size: 17px;
}
.why-list {
  border-top: 1px solid var(--line);
}
.why-list article {
  display: block;
  padding: 28px 0 28px 22px;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
}
.why-list article:nth-child(2) {
  border-left-color: #6986ff;
}
.why-list article:nth-child(3) {
  border-left-color: #e65aa9;
}
.why-list article > span {
  display: none;
}
.why-list h3 {
  font-size: 22px;
}
.why-list p {
  margin-top: 9px;
  color: #a5aabd;
  font-size: 14px;
  line-height: 1.6;
}

.sectors {
  width: 100%;
  max-width: none;
  padding: 86px max(32px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 6% 72%, rgba(43, 72, 119, 0.44), transparent 45%),
    radial-gradient(
      circle at 100% 92%,
      rgba(159, 98, 70, 0.35),
      transparent 42%
    ),
    linear-gradient(115deg, #2d214c 0%, #121523 48%, #32201d 100%);
  overflow: hidden;
}
.sector-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  column-gap: 46px;
  row-gap: 28px;
  width: min(1180px, 100%);
  margin: 42px auto 0;
}
.sector-list span {
  display: block;
  color: var(--white);
  font-family: inherit;
  font-size: clamp(24px, 2.25vw, 31px) !important;
  font-weight: 600 !important;
  line-height: 1.16;
  letter-spacing: -0.025em !important;
}
.sector-arbitraje,
.sector-organismos {
  color: #6ee0dc !important;
}
.sector-mediacion,
.sector-privado {
  color: #ad9bff !important;
}
.sector-comparecencias {
  color: var(--white) !important;
}
.sector-litigio,
.sector-corporativo {
  color: #ee8bc6 !important;
}

.cta-section {
  padding: 90px 0;
  background: linear-gradient(100deg, #12259c 0%, #4d24b9 52%, #cb2e8e 100%);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.cta-inner .eyebrow {
  color: #aef7f2;
}
.cta-inner h2 {
  max-width: 790px;
  margin-top: 14px;
  font-size: clamp(35px, 4vw, 55px);
  line-height: 1.08;
}
.footer {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr;
  gap: 80px;
  padding: 72px 0 85px;
  color: #8f96ad;
  font-size: 13px;
}
.footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer .footer-brand {
  gap: 19px;
}
.footer-brand-logo {
  width: 214px;
  height: 214px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  box-shadow: none;
}
.footer-label {
  color: white;
  font-weight: 700;
  margin-bottom: 7px;
}
.social-label {
  margin-top: 14px;
  margin-bottom: 0;
}
.footer-logo {
  color: white;
}
.footer-logo .wave-mark {
  transform: scale(0.8);
  transform-origin: left center;
}
.footer a:hover {
  color: white;
}

/* Servicios */
.services-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}
.services-hero-image {
  position: absolute;
  inset: 0;
  background: url("brand/services-hero-woman.png") left center / cover no-repeat;
  filter: saturate(0.95) contrast(1.03);
}
.services-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 9, 27, 0.12),
      rgba(8, 9, 27, 0.65) 50%,
      rgba(8, 9, 27, 0.98)
    ),
    linear-gradient(0deg, rgba(8, 9, 27, 0.62), transparent 56%);
}
.services-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 132px;
  padding-left: 47%;
}
.services-hero h1 {
  max-width: 630px;
  font-size: clamp(50px, 5.3vw, 74px);
  line-height: 1.02;
  margin-top: 20px;
}
.services-hero-content > p:not(.eyebrow) {
  max-width: 570px;
  color: #c1c5d5;
  font-size: 18px;
  line-height: 1.7;
  margin: 27px 0 34px;
}
.service-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 110px;
  align-items: end;
}
.service-intro > p {
  color: #abb0c3;
  font-size: 18px;
  line-height: 1.7;
  padding-bottom: 7px;
}
.service-groups {
  padding-bottom: 120px;
}
.service-group {
  padding: 75px 0;
  border-top: 1px solid var(--line);
  --service-accent: #55ded8;
  --service-wash: rgba(66, 211, 205, 0.09);
}
.service-group:nth-child(2) {
  --service-accent: #8494ff;
  --service-wash: rgba(112, 132, 255, 0.11);
}
.service-group:nth-child(3) {
  --service-accent: #eb82c3;
  --service-wash: rgba(232, 106, 178, 0.1);
}
.service-group:last-child {
  border-bottom: 1px solid var(--line);
}
.group-head {
  display: grid;
  grid-template-columns: 160px 0.8fr;
  gap: 30px;
  margin-bottom: 45px;
}
.phase-label {
  width: max-content;
  height: max-content;
  padding: 10px 18px;
  border-radius: 999px;
  color: #8be9e7;
  border: 1px solid rgba(78, 219, 217, 0.38);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
}
.group-head h2 {
  font-size: 38px;
}
.group-head p {
  color: #9da3b8;
  margin-top: 12px;
  line-height: 1.6;
}
.service-image {
  position: relative;
  min-height: 340px;
  margin: 0 0 38px 190px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 26px 30px;
  border: 1px solid rgba(145, 227, 228, 0.22);
  border-radius: 5px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}
.service-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.8), rgba(8, 12, 31, 0.2) 72%),
    linear-gradient(0deg, rgba(5, 8, 23, 0.92), transparent 57%);
  pointer-events: none;
}
.service-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.service-image span {
  position: relative;
  z-index: 1;
  color: #d9ffff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.service-image-preparacion {
  background-image: url("brand/servicio-preparacion.png");
}
.service-image-audiencia {
  background-image: url("brand/servicio-audiencia.png");
}
.service-image-entrega {
  background-image: url("brand/servicio-entrega.png");
}
.group-services {
  margin-left: 190px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
}
.service-detail {
  display: block;
  padding: 12px 0 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.service-detail::before {
  display: none;
}
.service-detail + .service-detail {
  border-left: 0;
  padding-left: 0;
}
.service-detail > span {
  display: none;
}
.service-detail h3 {
  color: var(--white);
  font-size: 24px;
}
.service-detail p {
  color: #9da3b8;
  line-height: 1.65;
  font-size: 14px;
  margin: 11px 0 20px;
}
.service-detail a {
  color: #71dede;
  font-size: 12px;
  font-weight: 650;
}
.delivery-section {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 85% 40%,
      rgba(219, 45, 139, 0.2),
      transparent 36%
    ),
    radial-gradient(
      circle at 15% 60%,
      rgba(21, 186, 205, 0.22),
      transparent 40%
    ),
    linear-gradient(104deg, #112b48 0%, #171634 52%, #321637 100%);
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 96px;
}
.delivery-grid h2 {
  max-width: 680px;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.04;
}
.delivery-points {
  border-top: 1px solid var(--line);
}
.delivery-points p {
  display: block;
  padding: 21px 0 21px 22px;
  border-left: 2px solid var(--cyan);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  color: #f2eff9;
}
.delivery-points p:nth-child(2) {
  border-left-color: #6986ff;
}
.delivery-points p:nth-child(3) {
  border-left-color: #b67eff;
}
.delivery-points p:nth-child(4) {
  border-left-color: #e65aa9;
}
.delivery-points span {
  display: none;
}
.modes {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
  align-items: start;
}
.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 0;
}
.mode-grid article {
  padding: 28px;
  border: 1px solid rgba(135, 164, 255, 0.16);
  border-top: 3px solid var(--cyan);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(33, 211, 207, 0.08),
    rgba(10, 15, 35, 0.3)
  );
}
.mode-grid article + article {
  border-left: 1px solid rgba(135, 164, 255, 0.16);
  padding-left: 28px;
}
.mode-grid article:nth-child(2) {
  border-top-color: #6986ff;
  background: linear-gradient(
    145deg,
    rgba(87, 128, 255, 0.1),
    rgba(10, 15, 35, 0.3)
  );
}
.mode-grid article:nth-child(3) {
  border-top-color: #e65aa9;
  background: linear-gradient(
    145deg,
    rgba(228, 86, 194, 0.1),
    rgba(10, 15, 35, 0.3)
  );
}
.mode-grid span {
  display: none;
}
.mode-grid h3 {
  font-size: 21px;
  margin-top: 22px;
}
.mode-grid p {
  color: #9fa5b9;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Contacto */
.contact-hero {
  min-height: calc(100vh - 92px);
  padding: 118px 0;
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(24, 168, 211, 0.22),
      transparent 33%
    ),
    radial-gradient(
      circle at 92% 84%,
      rgba(220, 53, 155, 0.23),
      transparent 32%
    ),
    #090d20;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 110px;
  align-items: start;
}
.contact-hero h1 {
  max-width: 570px;
  margin-top: 21px;
  font-size: clamp(50px, 5.2vw, 75px);
  line-height: 1.03;
}
.contact-lede {
  max-width: 500px;
  margin-top: 24px;
  color: #d9dcec;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.45;
}
.contact-display {
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(68px, 10vw, 150px) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.07em !important;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), #7095ff 48%, #e65aa9);
  -webkit-background-clip: text;
  background-clip: text;
}
.contact-hero > .shell > div > p:not(.eyebrow) {
  max-width: 485px;
  margin-top: 26px;
  color: #b4b9cd;
  font-size: 19px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-top: 45px;
  color: #aeb4c7;
  font-size: 14px;
}
.contact-details a {
  color: #7fe9e6;
}
.contact-form {
  display: grid;
  gap: 22px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 15, 35, 0.58);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.22);
}
.contact-form label {
  display: grid;
  gap: 10px;
  color: #eef0f7;
  font-size: 13px;
  font-weight: 650;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  background: rgba(6, 9, 23, 0.58);
  color: white;
  font: inherit;
  padding: 14px 15px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(16, 27, 55, 0.82);
}
.contact-form .button {
  border: 0;
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-note {
  color: #82e7e6;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand spacer cta" "nav nav nav";
    height: auto;
    min-height: 92px;
    gap: 0 18px;
    padding: 7px 22px 0;
  }
  .brand-logo {
    grid-area: brand;
    width: 84px;
    height: 84px;
  }
  .main-nav {
    grid-area: nav;
    display: flex;
    width: 100%;
    gap: 22px;
    overflow-x: auto;
    padding: 9px 0 11px;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar {
    display: none;
  }
  .main-nav a {
    flex: 0 0 auto;
    padding: 7px 0;
    font-size: 13px;
    white-space: nowrap;
  }
  .site-header .button {
    font-size: 12px;
    min-height: 38px;
    padding-inline: 14px;
  }
  .shell,
  .footer {
    width: min(100% - 38px, 680px);
  }
  .home-hero {
    min-height: 780px;
  }
  .hero-photo {
    inset: 0;
    width: 100%;
    background-position: 62% center;
    filter: saturate(1.02) contrast(1.02) brightness(0.98);
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 9, 23, 0.9), rgba(8, 11, 29, 0.55)),
      linear-gradient(0deg, rgba(7, 9, 23, 0.88), transparent 48%);
  }
  .hero-content {
    padding-top: 92px;
  }
  .hero-content h1 {
    font-size: 49px;
  }
  .hero-copy {
    font-size: 16px;
    max-width: 500px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }
  .hero-proof div,
  .hero-proof div + div {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section-pad {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .intro-section,
  .institutional-grid,
  .services-preview,
  .why-grid,
  .service-intro,
  .delivery-grid,
  .modes,
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .journey-section {
    grid-template-columns: 1fr;
  }
  .journey-image {
    min-height: 440px;
    background-image:
      linear-gradient(0deg, #0b0f23, transparent 42%),
      url("/brand/eckos-016.png");
  }
  .journey-panel {
    padding: 15px 22px 80px;
  }
  .services-preview > .button {
    grid-column: auto;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .services-hero {
    min-height: 640px;
  }
  .services-hero-image {
    background-position: 28% center;
  }
  .services-hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 9, 24, 0.96), rgba(7, 9, 24, 0.56)),
      linear-gradient(90deg, rgba(7, 9, 24, 0.48), rgba(7, 9, 24, 0.88));
  }
  .services-hero-content {
    padding: 260px 0 70px;
  }
  .services-hero h1 {
    font-size: 46px;
  }
  .contact-hero {
    padding: 80px 0;
  }
  .group-head {
    grid-template-columns: 1fr;
  }
  .service-image {
    min-height: 300px;
    margin-left: 0;
  }
  .group-services {
    margin-left: 0;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .service-detail + .service-detail {
    border-left: 0;
    border-top: 0;
    padding-left: 0;
    padding-top: 16px;
  }
  .sectors {
    padding: 76px 19px;
  }
  .sector-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 25px;
    margin-top: 44px;
  }
  .sector-list span {
    grid-column: auto !important;
    font-size: clamp(24px, 6.4vw, 39px) !important;
    font-weight: 500;
    letter-spacing: -0.04em !important;
  }
  .sector-litigio,
  .sector-cumplimiento,
  .sector-organismos,
  .sector-investigaciones,
  .sector-privado {
    font-size: clamp(20px, 5vw, 30px) !important;
    letter-spacing: 0.01em !important;
  }
  .mode-grid {
    grid-template-columns: 1fr;
  }
  .mode-grid article + article {
    border-left: 1px solid rgba(135, 164, 255, 0.16);
    border-top: 3px solid var(--cyan);
    padding-left: 28px;
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 76px;
    height: 76px;
  }
  .hero-proof strong {
    font-size: 22px;
  }
  .hero-proof span {
    font-size: 14px;
  }
  .footer-brand-logo {
    width: 190px;
    height: 190px;
  }
  .brand-word {
    font-size: 17px;
  }
  .wave-mark {
    transform: scale(0.78);
    transform-origin: left center;
    margin-right: -9px;
  }
  .site-header > .button {
    display: inline-flex;
    min-height: 36px;
    padding-inline: 14px;
    font-size: 11px;
  }
  .home-hero {
    min-height: 840px;
  }
  .hero-content h1 {
    font-size: 43px;
  }
  .journey-image {
    min-height: 330px;
  }
  .group-head h2 {
    font-size: 32px;
  }
  .service-detail {
    grid-template-columns: 36px 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 27px 22px;
  }
  .sector-list {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .sector-list span,
  .sector-litigio,
  .sector-cumplimiento,
  .sector-organismos,
  .sector-investigaciones,
  .sector-privado {
    font-size: clamp(26px, 8.7vw, 37px) !important;
    letter-spacing: -0.04em !important;
  }
}
