/* Mextunel Group — estilos principales */

:root {
  /* Corporativo — alineado al logo (naranja rojizo + índigo) */
  --color-accent: #e13d27;
  --color-accent-mid: #f0553d;
  --color-accent-soft: #ff8a75;
  --color-deep: #36316c;
  --color-deep-dark: #25224d;
  --color-deep-ink: #1e1c3d;
  --rgb-accent: 225, 61, 39;
  --rgb-deep: 54, 49, 108;

  --color-bg: #f4f3f9;
  --color-surface: #ffffff;
  --color-ink: #161428;
  --color-muted: #5c5870;
  --color-line: rgba(var(--rgb-deep), 0.1);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 24px 60px rgba(var(--rgb-deep), 0.14);
  --shadow-card: 0 16px 40px rgba(var(--rgb-deep), 0.09);
  --header-h: 84px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: clamp(5rem, 14vw, 9.5rem);
  --section-pad-compact: clamp(3.5rem, 10vw, 6.5rem);
  --color-surface-muted: #e8e4f2;
  --stack-gap: clamp(2.5rem, 6vw, 4.25rem);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html.reduce-motion [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  overflow-x: hidden;
}

main {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-deep);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.35em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: -0.2em;
}

.wrap {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(252, 251, 254, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition:
    transform 0.35s var(--ease-out),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  opacity: 0;
  background: linear-gradient(
    90deg,
    var(--color-accent) 0%,
    var(--color-deep) 42%,
    rgba(var(--rgb-accent), 0.35) 100%
  );
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(var(--rgb-deep), 0.06);
  box-shadow: 0 10px 40px rgba(var(--rgb-deep), 0.07);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 2rem);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-ink);
  min-width: 0;
  padding: 0.2rem 0;
  border-radius: var(--radius-md);
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.92;
}

.brand:focus-visible {
  outline-offset: 4px;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: min(210px, 52vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav-rail {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
  padding: 0.35rem 0.45rem;
  background: rgba(var(--rgb-deep), 0.05);
  border: 1px solid rgba(var(--rgb-deep), 0.08);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 1px 2px rgba(var(--rgb-deep), 0.04);
}

.nav-rail a {
  text-decoration: none;
  color: var(--color-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-rail a:hover {
  color: var(--color-deep);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 12px rgba(var(--rgb-deep), 0.08);
}

.nav-rail a:focus-visible {
  outline-offset: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: end;
}

.btn--header-secondary {
  padding: 0.62rem 1.1rem;
  font-size: 0.8125rem;
  border-width: 1.5px;
  background: rgba(255, 255, 255, 0.5);
}

.btn--header-primary {
  padding: 0.62rem 1.2rem;
  font-size: 0.8125rem;
  box-shadow: 0 8px 28px rgba(var(--rgb-accent), 0.32);
}

.btn--header-primary:hover {
  box-shadow: 0 12px 32px rgba(var(--rgb-accent), 0.42);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(var(--rgb-deep), 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, rgba(var(--rgb-deep), 0.04) 100%);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--color-deep);
  box-shadow: 0 2px 8px rgba(var(--rgb-deep), 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(var(--rgb-accent), 0.35);
  color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(var(--rgb-accent), 0.12);
}

.nav-toggle .material-symbols-outlined {
  font-size: 1.5rem;
}

.nav-panel {
  display: none;
}

@media (max-width: 1060px) {
  .nav-rail a {
    padding: 0.45rem 0.55rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .nav-desktop {
    display: none;
  }

  .header-cta .btn--header-secondary {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    padding: 0 0 2rem;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      transform 0.35s var(--ease-out);
    background: linear-gradient(180deg, #ffffff 0%, #f6f4fb 55%, #f0ecf8 100%);
    box-shadow: 0 28px 80px rgba(var(--rgb-deep), 0.14);
    border-top: 1px solid rgba(var(--rgb-deep), 0.06);
    overflow-y: auto;
  }

  .nav-panel::before {
    content: '';
    display: block;
    height: 3px;
    margin: 0 1.5rem 0.5rem;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-deep));
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel > a {
    text-decoration: none;
    color: var(--color-ink);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    margin: 0 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition:
      background 0.2s ease,
      border-color 0.2s ease;
  }

  .nav-panel > a:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(var(--rgb-deep), 0.06);
  }

  .nav-panel .btn--primary {
    margin: 1rem 1.5rem 0;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 44px;
    max-width: min(200px, 62vw);
  }

  .btn--header-primary {
    padding: 0.58rem 1rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 400px) {
  .brand-logo {
    height: 40px;
    max-width: min(180px, 58vw);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-mid));
  color: #fff;
  box-shadow: 0 12px 32px rgba(var(--rgb-accent), 0.38);
}

.btn--primary:hover {
  color: #fff;
  box-shadow: 0 16px 40px rgba(var(--rgb-accent), 0.48);
}

.btn--ghost {
  background: transparent;
  color: var(--color-deep);
  border: 1.5px solid rgba(var(--rgb-deep), 0.22);
}

.btn--ghost:hover {
  background: rgba(var(--rgb-deep), 0.06);
  color: var(--color-deep);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  padding-top: var(--header-h);
  color: #fff;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.05);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    125deg,
    rgba(var(--rgb-deep), 0.94) 0%,
    rgba(var(--rgb-deep), 0.58) 40%,
    rgba(var(--rgb-accent), 0.36) 100%
  );
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
  padding-block: clamp(3rem, 12vh, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  animation: hero-fade-up 0.9s var(--ease-out) both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 6vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0;
  animation: hero-fade-up 0.9s var(--ease-out) 0.08s both;
}

.hero__title em {
  font-style: normal;
  color: var(--color-accent-soft);
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  animation: hero-fade-up 0.9s var(--ease-out) 0.16s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: hero-fade-up 0.9s var(--ease-out) 0.24s both;
}

.hero__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: hero-fade-up 0.9s var(--ease-out) 0.32s both;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section--alt {
  background: var(--color-surface);
  box-shadow: 0 1px 0 rgba(var(--rgb-deep), 0.04);
}

.section--muted {
  background: linear-gradient(
    165deg,
    var(--color-surface-muted) 0%,
    rgba(244, 243, 249, 0.92) 55%,
    var(--color-bg) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 1px 0 rgba(var(--rgb-deep), 0.05);
}

.section--compact {
  padding-block: var(--section-pad-compact);
}

.section--deep {
  background: linear-gradient(165deg, var(--color-deep) 0%, var(--color-deep-ink) 100%);
  color: #e8ecf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section--tail {
  padding-bottom: clamp(5.5rem, 14vw, 10rem);
}

.section--deep .section__eyebrow {
  color: var(--color-accent-soft);
}

.section--deep h2,
.section--deep h3 {
  color: #fff;
}

.section--deep p,
.section--deep .muted {
  color: rgba(232, 236, 244, 0.82);
}

.section__head {
  max-width: 720px;
  margin-bottom: var(--stack-gap);
}

.section__head--wide {
  max-width: min(52rem, 100%);
}

.stack-below-head {
  margin-top: var(--stack-gap);
}

.stack-loose {
  margin-top: clamp(3rem, 8vw, 5.5rem);
}

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.section__head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.muted {
  color: var(--color-muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.stagger > [data-reveal]:nth-child(1) {
  transition-delay: 0s;
}
.stagger > [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger > [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
.stagger > [data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}
.stagger > [data-reveal]:nth-child(5) {
  transition-delay: 0.32s;
}
.stagger > [data-reveal]:nth-child(6) {
  transition-delay: 0.4s;
}

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.round-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(var(--rgb-deep), 0.06);
  aspect-ratio: 4/3;
  background: rgba(var(--rgb-deep), 0.04);
}

.round-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  opacity: 0.5;
}

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

.round-image:hover img {
  transform: scale(1.045);
}

.media-caption {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 42ch;
}

.section--deep .media-caption {
  color: rgba(232, 236, 244, 0.65);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(var(--rgb-deep), 0.09);
  color: var(--color-deep);
}

.section--deep .pill-list li {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(var(--rgb-deep), 0.13);
  border-color: rgba(var(--rgb-accent), 0.28);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--rgb-deep), 0.12), rgba(var(--rgb-accent), 0.14));
  color: var(--color-deep);
}

.service-card__icon .material-symbols-outlined {
  font-size: 1.6rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-muted);
  flex: 1;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.feature-banner {
  display: grid;
  gap: 0;
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

@media (min-width: 800px) {
  .feature-banner {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }
}

.feature-banner__img {
  min-height: clamp(240px, 32vw, 340px);
  position: relative;
}

.feature-banner__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(255, 255, 255, 0.12) 100%);
  pointer-events: none;
}

@media (max-width: 799px) {
  .feature-banner__img::after {
    background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.2) 100%);
  }
}

.feature-banner__img img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.feature-banner__body {
  padding: clamp(1.75rem, 4.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-banner__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
  background: rgba(var(--rgb-deep), 0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}

.section--deep .timeline li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline .step {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(var(--rgb-accent), 0.16);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
}

.section--deep .timeline .step {
  background: rgba(var(--rgb-accent), 0.22);
  color: #ffd4c4;
}

.cta-band {
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.25rem);
  background: linear-gradient(135deg, var(--color-accent) 0%, #c72f22 46%, var(--color-deep-dark) 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 24px 60px rgba(var(--rgb-deep), 0.28);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
  max-width: 46ch;
}

.cta-band .btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sectors-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: var(--stack-gap);
}

@media (max-width: 768px) {
  .sectors-showcase {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.sectors-showcase figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.sectors-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out);
}

.sectors-showcase figure:hover img {
  transform: scale(1.04);
}

.sectors-showcase figcaption {
  padding: 0.65rem 0.9rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(30, 28, 61, 0.55), rgba(30, 28, 61, 0.85));
}

.site-footer {
  background: linear-gradient(180deg, var(--color-deep-dark) 0%, var(--color-deep-ink) 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3.25rem, 8vw, 4.5rem) 0 2rem;
  margin-top: 0;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--color-accent-soft);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: min(240px, 85vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  margin: 0 0 1rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.site-footer h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.85rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.75);
}

.credit-line {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.credit-line a {
  color: rgba(255, 255, 255, 0.55);
}
