:root {
  /* Paleta sobria tipo industrial */
  --color-bg: #f5f7fa;
  --color-surface: #ffffff;
  --color-header: #0f172a;
  --color-header-accent: #1e293b;
  --color-footer: #020617;
  --color-primary: #1d4ed8;
  --color-primary-dark: #1e40af;
  --color-accent: #38bdf8;
  --color-text: #0f172a;
  --color-muted: #6b7280;

  --radius-base: 10px;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.12);
  --max-width: 1120px;
}

/* RESET BÁSICO */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "League Spartan", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: linear-gradient(
    135deg,
    #e5e7eb 0%,
    #f9fafb 24%,
    #e5e7eb 48%,
    #f9fafb 72%,
    #e5e7eb 100%
  );
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* FONDO CON LÍNEAS Y CUADROS */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      135deg,
      rgba(148, 163, 184, 0.06) 25%,
      transparent 25%,
      transparent 50%,
      rgba(148, 163, 184, 0.06) 50%,
      rgba(148, 163, 184, 0.06) 75%,
      transparent 75%,
      transparent
    ),
    linear-gradient(
      135deg,
      rgba(148, 163, 184, 0.04) 25%,
      transparent 25%,
      transparent 50%,
      rgba(148, 163, 184, 0.04) 50%,
      rgba(148, 163, 184, 0.04) 75%,
      transparent 75%,
      transparent
    );
  background-size: 32px 32px, 64px 64px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -2;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(59, 130, 246, 0.09) 0,
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.08) 0,
      transparent 55%
    );
  pointer-events: none;
  z-index: -1;
}

/* HEADER + MENÚ HAMBURGUESA */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    to right,
    var(--color-header),
    var(--color-header-accent)
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  color: #e5e7eb;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #cbd5f5;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  color: #e5e7eb;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* BOTONES GENERALES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #f9fafb;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.85);
}

/* BURGER */
.burger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.burger-lines {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: relative;
}

.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.burger-lines::before {
  top: -6px;
}

.burger-lines::after {
  top: 6px;
}

.burger.is-open .burger-lines {
  background: transparent;
}

.burger.is-open .burger-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.burger.is-open .burger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* MENÚ MÓVIL */
.nav-mobile {
  display: none;
  background: #020617;
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile a {
  color: #e5e7eb;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.nav-mobile a:hover {
  color: var(--color-accent);
}

/* RESPONSIVE HEADER */
@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .nav-cta span.label {
    display: none;
  }

  .btn {
    padding-inline: 0.9rem;
  }
}

/* HERO HOME (PÁGINA PRINCIPAL) */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-card-surface {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-copy h1 span.accent {
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 1.3rem;
}

.hero-text {
  font-size: 0.98rem;
  max-width: 34rem;
  margin-bottom: 1.8rem;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-secondary-link {
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-primary);
}

.hero-tagline {
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4b5563;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #020617;
  min-height: 260px;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-pill {
  position: absolute;
  inset-inline: auto 1.2rem;
  bottom: 1.2rem;
  background: rgba(15, 23, 42, 0.84);
  color: #e5e7eb;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }
}

/* HERO PÁGINAS INTERNAS */
.hero-page {
  padding: 3rem 0 2rem;
}

.hero-page-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-page-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-page-heading {
  font-size: clamp(2rem, 3vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-page-heading.center {
  text-align: center;
}

.hero-page-sub {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.8rem;
}

.hero-page-sub.center {
  text-align: center;
}

.hero-page-text {
  font-size: 0.96rem;
  color: var(--color-muted);
  max-width: 38rem;
}

.hero-page-text.center {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.hero-page-gallery {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .hero-page-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #020617;
}

.hero-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* SECCIONES GENERALES */
main {
  padding-bottom: 3rem;
}

section {
  padding: 3rem 0;
}

section.section {
  padding: 1rem 0 0;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.section-heading {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.section-heading.center {
  text-align: center;
}

.section-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1.4rem;
}

.section-hr {
  width: 60px;
  height: 2px;
  border-radius: 999px;
  border: none;
  margin: 1rem auto 2.4rem;
  background: linear-gradient(
    to right,
    var(--color-primary),
    var(--color-accent)
  );
}

.section-hr.center {
  margin: 1rem auto 2.4rem;
}

/* Servicios */
#servicios .section-heading {
  margin-bottom: 0.5rem;
}

#servicios .section-subtext {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 0.93rem;
  color: var(--color-muted);
}

/* CTA texto */
.cta-wide {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 22px;
  padding: 2.1rem 1.8rem;
  box-shadow: var(--shadow-soft);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cta-wide::before {
  content: "";
  position: absolute;
  inset-inline: -80px auto;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 0.18),
    transparent 70%
  );
  opacity: 0.7;
}

.cta-wide h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  color: var(--color-text);
}

.cta-wide p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* TEXT BLOCK */
.text-block {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  color: var(--color-muted);
}

.text-block p + p {
  margin-top: 0.7rem;
}

/* Misión / Visión / Objetivo */
.mv-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .mv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mv-card .card-title {
  font-size: 0.95rem;
}

/* CARDS / GRIDS */
.cards-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .cards-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-base);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset-inline: auto -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at center,
    rgba(56, 189, 248, 0.15),
    transparent 70%
  );
  opacity: 0.7;
  pointer-events: none;
}

.card-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 0.75rem;
  background: #0f172a;
}

.card-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-text {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.card-body {
  padding: 1.1rem 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.card-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

/* GRIDS 3 COLUMNAS (SERVICIOS / GALERÍAS) */
.grid-3 {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* GALERÍAS */
.gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item,
.img-card,
.media-card,
.wide-img,
.wide-image,
.wide-image img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #020617;
}

.gallery-item img,
.img-card img,
.media-card img,
.wide-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* LAYOUTS ESPECÍFICOS DE PÁGINAS */
.media-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .media-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.media-left {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .media-left {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.media-right {
  display: grid;
  gap: 0.75rem;
}

/* BADGE ALIADOS */
.badge-ally {
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #e5e7eb;
  font-size: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.badge-ally img {
  width: 72px;
  height: auto;
  border-radius: 9px;
  background: #0f172a;
  padding: 0.25rem;
}

.badge-ally span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* WIDE IMAGES / GALERÍAS AMPLIAS */
.wide-image {
  margin: 2rem 0 0;
}

.wide-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wide-gallery {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

@media (min-width: 700px) {
  .wide-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* SUBSECCIONES */
.subsection {
  margin-top: 2.4rem;
}

/* VIDEOS EN FILA (SINO / MAG / MAQUINADOS ETC.) */
.video-row {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  align-items: center;
}

@media (min-width: 900px) {
  .video-row {
    grid-template-columns: minmax(0, 1.4fr) auto minmax(0, 1.4fr);
  }
}

.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #020617;
}

.video-wrapper video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.badge-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.badge-sep img {
  width: 100px;
  height: auto;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
}

/* CONTACTO */
.contact {
  padding-bottom: 1.5rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.contact-block {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-base);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.contact-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.contact-block p {
  font-size: 0.93rem;
  color: var(--color-muted);
  margin-bottom: 0.8rem;
}

.contact-info label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4b5563;
  display: block;
  margin-top: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-info a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #0f172a;
  min-height: 260px;
  position: relative;
}

.contact-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.btn-map {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: #22c55e;
  color: #022c22;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

/* SUSCRIPCIÓN */
.subscribe {
  text-align: center;
}

.subscribe-inner {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.subscribe p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1.4rem;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.input {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.65rem 1rem;
  min-width: 0;
  flex: 1 1 220px;
  font-size: 0.9rem;
  outline: none;
}

.input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}

/* PARTNERS – CARRUSEL INFINITO */
.partners-bar {
  padding: 1.75rem 0 0.5rem;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: partners-marquee 25s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.partner-logo img {
  height: 46px;
  width: auto;
  filter: grayscale(0.1);
}

/* SECCIÓN SINERGIA */
.synergy {
  padding: 3rem 0;
}

.synergy-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .synergy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .synergy-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.synergy-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-base);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--color-primary);
}

.synergy-card::before {
  content: "";
  position: absolute;
  inset-inline: auto -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at center,
    rgba(29, 78, 216, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.synergy-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.synergy-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.synergy-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  min-height: 2.6rem;
}

.synergy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.synergy-list li {
  font-size: 0.88rem;
  color: var(--color-muted);
  padding-left: 1.2rem;
  position: relative;
}

.synergy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  margin-top: auto;
  padding: 1.8rem 0 2rem;
  font-size: 0.8rem;
  color: #9ca3af;
  background: var(--color-footer);
  border-top: 1px solid rgba(31, 41, 55, 0.8);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.footer-cols {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .footer-cols {
    grid-template-columns: 2fr 1.4fr 1.4fr;
  }
}

.footer-cols h4,
.footer-cols h3 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
}

.footer-cols p,
.footer-cols li {
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-cols ul {
  list-style: none;
  padding: 0;
}

.footer-cols li + li {
  margin-top: 0.2rem;
}

.footer-cols a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #e5e7eb;
}

.social-links a svg {
  width: 28px;
  height: 28px;
  color: #e5e7eb;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-links a:hover svg {
  opacity: 1;
  transform: translateY(-1px);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  inset-inline: 1.5rem;
  bottom: 1.5rem;
  background: #0f172a;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  z-index: 50;
  max-width: 480px;
  margin-inline: auto;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.cookie-banner p {
  font-size: 0.8rem;
  color: #e5e7eb;
  flex: 1 1 220px;
}

.cookie-banner .btn {
  font-size: 0.8rem;
  padding-block: 0.5rem;
}

@media (max-width: 600px) {
  .cookie-banner {
    inset-inline: 0.75rem;
    bottom: 0.75rem;
  }

  .hero-page {
    padding-top: 2.2rem;
  }
}
