/* ============================================================
   Polígono Industrial Belcaire — hoja de estilos principal
   Mismo estilo y plantilla que el sitio hermano egmmezquitalavall.es,
   pero con verde como color de marca (Belcaire) en vez de rosa (Mezquita).
   ============================================================ */

:root {
  --pink-900: #14532d;
  --pink-800: #166534;
  --pink-dark: #15803d;
  --pink: #16a34a;
  --pink-light: #4ade80;
  --pink-100: #dcfce7;

  --blue-600: #16a34a;
  --blue-700: #15803d;
  --blue-400: #4ade80;

  --amber: #F5A623;
  --cyan: #00BCD4;

  --green-700: #15803d;
  --green-600: #16a34a;

  --red-500: #ef4444;

  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-600: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --black: #0a0a0a;
  --white: #ffffff;

  --font-sans: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(3, 7, 18, 0.08);
  --shadow-lg: 0 20px 45px rgba(3, 7, 18, 0.18);
  --transition-base: .3s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---------- Orbes flotantes decorativos (heros) ---------- */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  animation: float-orb 25s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0,0) scale(1) rotate(0); }
  25% { transform: translate(50px,-50px) scale(1.2) rotate(90deg); }
  50% { transform: translate(-30px,30px) scale(.8) rotate(180deg); }
  75% { transform: translate(30px,40px) scale(1.05) rotate(270deg); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 800; line-height: 1.2; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), color var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(22,163,74,.3);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  opacity: 0; transition: opacity var(--transition-base); z-index: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(22,163,74,.4); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.15); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-outline-dark { background: transparent; border-color: var(--pink); color: var(--pink); }
.btn-outline-dark:hover { background: var(--pink); color: var(--white); box-shadow: 0 8px 30px rgba(22,163,74,.3); }
.btn-ghost { background: transparent; color: var(--gray-400); border-color: transparent; }
.btn-ghost:hover { color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* El botón "Contacto" del menú, en verde igual que el resto de la marca */
.nav-cta.btn-primary { background: var(--blue-600); box-shadow: none; border: none; font-family: inherit; }
.nav-cta.btn-primary:hover { background: var(--blue-700); transform: none; }
.nav-cta .caret { font-size: .7em; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  min-width: 180px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .15s ease;
  z-index: 50;
}
.nav-dropdown-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--gray-900); font-weight: 500; font-size: .92rem; }
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--pink); }
.nav-dropdown-menu a.active { color: var(--pink); font-weight: 700; }
@media (max-width: 720px) {
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; display: none; padding: 4px 0 0 12px; }
  .nav-dropdown-menu.open { display: block; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand img { height: 58px; width: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block;
  padding: 10px 16px;
  color: var(--gray-900);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 8px;
  transition: color .15s ease, background-color .15s ease;
}
.main-nav a:hover { color: var(--pink); }
.main-nav a.active { color: var(--pink); font-weight: 700; }
.main-nav a.nav-cta, .main-nav a.nav-cta:hover { color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gray-900); border-radius: 2px; }

/* ---------- Hero (Inicio) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.45));
}
.hero::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(100px);
  opacity: .3;
  top: -10%; right: -8%;
  animation: float-orb 25s ease-in-out infinite;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content .lead { font-size: 1.15rem; font-weight: 300; color: rgba(248,248,248,.85); max-width: 640px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-actions .btn-primary { background: var(--white); color: var(--gray-900); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.hero-actions .btn-primary:hover { transform: translateY(-2px); }

.stats-bar {
  position: relative;
  margin-top: -70px;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(17,24,39,.85);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px 20px;
}
.stat { text-align: center; color: var(--white); }
.stat .stat-number {
  font-size: 2.4rem; font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(248,248,248,.65));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat .stat-label { color: var(--gray-400); font-size: .8rem; margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Secciones genéricas ---------- */
.section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-dark { background: var(--gray-950); color: var(--white); }
.section-header { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-dark .section-header p { color: var(--gray-400); }
.eyebrow {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--pink-light); }

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--gray-900) 60%);
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(90px);
  opacity: .22;
  top: -18%; right: -8%;
  animation: float-orb 25s ease-in-out infinite;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,.75); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* Hero de noticia con imagen destacada como fondo principal */
.page-hero.noticia-hero {
  position: relative;
  background-color: var(--gray-950);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.page-hero.noticia-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,.92) 0%, rgba(21,128,61,.55) 55%, rgba(10,10,10,.35) 100%);
}
.page-hero.noticia-hero .container { position: relative; z-index: 1; padding-bottom: 20px; }

/* ---------- Tarjetas de servicios ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.icon-badge {
  width: 44px; height: 44px;
  background: var(--pink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transform: rotate(45deg);
  border-radius: 8px;
}
.icon-badge svg { width: 20px; height: 20px; transform: rotate(-45deg); }

.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--gray-600); font-size: .95rem; margin-bottom: 0; }

.section-cta-link { text-align: center; margin-top: 44px; }

/* ---------- Empresas ---------- */
.filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 44px;
}
.filter-bar select, .filter-bar input[type="search"] {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
}
.filter-bar input[type="search"] { min-width: 260px; }

.empresa-card { display: flex; flex-direction: column; gap: 10px; }
.empresa-card .top-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.empresa-card h3 { font-size: 1.05rem; margin-bottom: 0; }
.badge-activa {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-700); background: #f0fdf4; border: 1px solid #bbf7d0;
  font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
}
.badge-activa::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); }
.sector-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--pink);
  padding: 4px 14px;
  border-radius: 999px;
  align-self: flex-start;
}
.empresa-card p { color: var(--gray-600); font-size: .9rem; margin-bottom: 4px; }
.empresa-meta { font-size: .85rem; color: var(--gray-600); }
.empresa-meta a { color: var(--pink-dark); font-weight: 600; }
.section-dark .empresa-card p, .section-dark .empresa-meta { color: var(--gray-400); }

.stats-inline { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; margin: 40px 0 0; }
.stats-inline .stat .stat-number { -webkit-text-fill-color: initial; background: none; color: var(--pink); }
.stats-inline .stat .stat-label { color: var(--gray-600); text-transform: none; letter-spacing: normal; }
.page-hero .stats-inline .stat .stat-number { color: var(--white); }
.page-hero .stats-inline .stat .stat-label { color: rgba(255,255,255,.7); }

/* ---------- Noticias ---------- */
.category-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; justify-content: center; }
.category-filters a {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-600);
}
.category-filters a.active, .category-filters a:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }

.noticia-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.noticia-card .noticia-img { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--gray-100); }
.noticia-card .noticia-img img { width: 100%; height: 100%; object-fit: cover; }
.noticia-card .destacada-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--amber); color: #fff; font-size: .75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.noticia-card .noticia-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.noticia-card .noticia-meta { display: flex; gap: 12px; align-items: center; font-size: .82rem; color: var(--gray-600); }
.noticia-card h3 { font-size: 1.1rem; }
.noticia-card p { color: var(--gray-600); font-size: .92rem; }
.noticia-card .leer-mas { color: var(--pink-dark); font-weight: 700; font-size: .9rem; margin-top: auto; }

/* ---------- Infraestructura ---------- */
.infra-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.infra-row:last-child { margin-bottom: 0; }
.infra-row.reverse .infra-text { order: 2; }
.infra-row.reverse .infra-image { order: 1; }
.infra-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.infra-list { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.infra-list li { display: flex; gap: 16px; align-items: flex-start; }
.infra-list .icon-badge { width: 44px; height: 44px; flex-shrink: 0; margin-bottom: 0; }
.infra-list .icon-badge svg { width: 20px; height: 20px; }
.infra-list h4 { margin-bottom: 2px; font-size: 1rem; }
.infra-list p { margin-bottom: 0; color: var(--gray-400); font-size: .9rem; }

/* ---------- CTA final ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; }
.cta-section .btn-primary, .section-cta-link .btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}

/* ---------- Formularios ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: .9rem; }
.form-group label .req { color: var(--red-500); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--gray-50);
  color: var(--gray-900);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; background: var(--white); border-color: var(--pink); box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--gray-600); }
.form-check input { margin-top: 4px; accent-color: var(--pink); }
.form-check a { text-decoration: underline; color: var(--gray-900); }
.form-note { font-size: .8rem; color: var(--gray-400); margin-top: 8px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Selector de categorías (Incidencias) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.cat-label { display: block; cursor: pointer; }
.cat-input { position: absolute; opacity: 0; width: 0; height: 0; }
.cat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 16px 10px; border: 1.5px solid var(--gray-200); border-radius: 14px;
  font-size: .8rem; font-weight: 600; color: var(--gray-600); transition: all .15s ease; background: var(--white);
}
.cat-card img { width: 26px; height: 26px; }
.cat-input:checked + .cat-card { border-color: var(--pink); background: var(--pink-100); color: var(--pink-dark); box-shadow: 0 0 0 1px var(--pink); }
.cat-label:hover .cat-card { border-color: var(--pink-light); }
@media (max-width: 720px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--pink-100); color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-item h4 { font-size: .85rem; margin-bottom: 3px; color: var(--gray-900); font-weight: 700; }
.contact-info-item p, .contact-info-item a { margin-bottom: 0; color: var(--gray-600); font-size: .92rem; }
.contact-cta-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 13px 24px;
  background: var(--pink); color: var(--white); border-radius: 10px; font-weight: 600; font-size: .9rem;
}
.contact-cta-btn:hover { background: var(--pink-dark); }
.map-frame { border-radius: var(--radius); overflow: hidden; margin-top: 24px; border: 1px solid var(--gray-100); }
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

.alert { padding: 16px 20px; border-radius: 10px; margin-bottom: 28px; font-weight: 600; font-size: .92rem; }
.alert-success { background: #f0fdf4; color: var(--green-700); border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---------- Valores / RSC ---------- */
.value-card { text-align: center; }
.value-card .icon-badge { margin: 0 auto 20px; }

.pilar-list li { padding: 8px 0 8px 26px; position: relative; color: var(--gray-600); }
.pilar-list li::before { content: '✓'; position: absolute; left: 0; color: var(--pink); font-weight: 800; }

.ods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.ods-item { padding: 30px 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); }
.ods-item .emoji { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.ods-item p { margin: 0; font-weight: 700; font-size: .92rem; }

/* ---------- Legal ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2em; }
.legal-content p { color: var(--gray-600); }
.legal-content .updated { color: var(--gray-400); font-size: .9rem; margin-bottom: 40px; }
.back-home { display: inline-block; margin-top: 40px; color: var(--pink-dark); font-weight: 700; }

/* ---------- Footer ---------- */
.grant-banner { background: linear-gradient(135deg, #f8f9fa, #fff); border-top: 3px solid var(--pink); padding: 48px 0; }
.grant-banner-inner { display: flex; gap: 28px; align-items: center; justify-content: center; text-align: center; flex-direction: column; }
.grant-logo { max-width: 400px; width: 100%; height: auto; flex-shrink: 0; }
@media (max-width: 768px) { .grant-logo { max-width: 280px; } }
.grant-banner-inner p { color: #333; font-size: .85rem; margin: 0; line-height: 1.8; max-width: 900px; }
.grant-banner-inner p strong { color: var(--pink-dark); }

.site-footer { background: var(--gray-800); color: var(--gray-400); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .9; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: .9rem; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 11px 14px; border-radius: 8px; border: 1px solid var(--gray-600);
  background: var(--gray-900); color: var(--white); font-family: inherit;
}
.newsletter-form button {
  padding: 11px 18px; border-radius: 8px; border: none; background: var(--blue-600); color: var(--white);
  font-weight: 700; cursor: pointer;
}
.newsletter-form button:hover { background: var(--blue-700); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; margin-top: 10px; text-align: center; font-size: .85rem; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--gray-900); color: var(--gray-200);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: .85rem; max-width: 700px; }
.cookie-banner-inner a { color: var(--pink-light); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .infra-row { grid-template-columns: 1fr; gap: 30px; }
  .infra-row.reverse .infra-text, .infra-row.reverse .infra-image { order: initial; }
  .ods-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 20px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; box-shadow: var(--shadow); }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .main-nav a { padding: 16px; font-size: 1.05rem; }
  .main-nav a.nav-cta { text-align: center; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-bar input[type="search"] { min-width: 0; }
  .ods-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
}
