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

:root {
  --red:       #E02020;
  --red-dark:  #B81818;
  --red-dim:   rgba(224, 32, 32, 0.18);
  --red-glow:  rgba(224, 32, 32, 0.25);
  --bg:        #09090B;
  --bg2:       #0F0F12;
  --bg3:       #17171C;
  --surface:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --text:      #F1F1F3;
  --muted:     #71717A;
  --muted2:    #A1A1AA;
  --font:      'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ──────────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 68px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s;
  background: rgba(9,9,11,0);
  border-bottom: 1px solid transparent;
}

#nav.solid {
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border);
}

.logo img { height: 30px; display: block; }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
  background: var(--red-dark);
  box-shadow: 0 0 24px var(--red-glow);
}

/* ─── HERO ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/aerial-view-industrial-park.jpg') center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.16); }
}

.hero-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,9,11,0.92) 0%, rgba(9,9,11,0.55) 60%, rgba(9,9,11,0.80) 100%),
    linear-gradient(to top, rgba(9,9,11,0.70) 0%, transparent 50%);
}

.hero-redglow {
  position: absolute;
  left: -300px; top: 20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(224,32,32,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 148px 56px 96px;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,32,32,0.1);
  border: 1px solid rgba(224,32,32,0.28);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF7070;
  margin-bottom: 32px;
  animation: up 0.9s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.5); }
}

.hero-h1 {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  max-width: 860px;
  margin-bottom: 28px;
  animation: up 0.9s 0.08s ease both;
}
.hero-h1 mark {
  background: none;
  color: var(--red);
}

.hero-p {
  font-size: 17px;
  color: var(--muted2);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 400;
  animation: up 0.9s 0.16s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  animation: up 0.9s 0.24s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 32px var(--red-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: rgba(255,255,255,0.22);
}

.scroll-cue {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: up 1s 0.8s ease both;
}
.scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ─── TICKER ───────────────────────────────────────── */
#ticker {
  background: var(--red);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.ticker-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS ────────────────────────────────────────── */
#stats {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.stats-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat:last-child { border-right: none; }
.stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat:hover::after { transform: scaleX(1); }
.stat:hover { background: rgba(255,255,255,0.018); }
.stat-lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.stat-val {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-val b { color: var(--red); font-weight: 900; }
.stat-note {
  font-size: 13px;
  color: var(--muted2);
}

/* ─── SHARED ───────────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.tag::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

h2.sh {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 16.5px;
  color: var(--muted2);
  line-height: 1.78;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ─── ABOUT ────────────────────────────────────────── */
#about {
  padding: 112px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.about-img img {
  width: 100%; height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  pointer-events: none;
}
.about-chip {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.chip-icon {
  width: 38px; height: 38px;
  background: var(--red-dim);
  border: 1px solid rgba(224,32,32,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chip-icon svg { width: 18px; height: 18px; color: var(--red); }
.chip-text strong { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 2px; }
.chip-text span { font-size: 12px; color: var(--muted2); }

.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted2);
  transition: all 0.2s;
}
.pill:hover {
  border-color: rgba(224,32,32,0.4);
  color: var(--text);
  background: rgba(224,32,32,0.06);
}

/* ─── SERVICES ─────────────────────────────────────── */
#services {
  padding: 112px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  top: -250px; right: -250px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(224,32,32,0.07) 0%, transparent 65%);
}
.srv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.srv-card {
  background: var(--bg2);
  padding: 40px 36px;
  transition: background 0.25s;
  position: relative;
}
.srv-card:hover { background: var(--bg3); }
.srv-ico {
  width: 48px; height: 48px;
  background: var(--red-dim);
  border: 1px solid rgba(224,32,32,0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.srv-card:hover .srv-ico {
  background: rgba(224,32,32,0.22);
  border-color: rgba(224,32,32,0.45);
  box-shadow: 0 0 22px rgba(224,32,32,0.18);
}
.srv-ico svg { width: 22px; height: 22px; color: var(--red); }
.srv-name { font-size: 16.5px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.srv-desc { font-size: 13.5px; color: var(--muted2); line-height: 1.65; }

/* ─── LOCATION ─────────────────────────────────────── */
#location {
  padding: 112px 0;
  background: var(--bg);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.loc-points { margin-top: 40px; }
.loc-pt {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.loc-pt:last-child { border-bottom: none; }
.loc-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--red-dim);
  border: 1px solid rgba(224,32,32,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  margin-top: 3px;
}
.loc-pt strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.loc-pt span { font-size: 13.5px; color: var(--muted2); line-height: 1.6; }

.map-wrap {
  position: relative;
  height: 500px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
  border-radius: 14px;
}
.map-expand-btn {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(9,9,11,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  z-index: 10;
  font-family: var(--font);
}
.map-expand-btn:hover {
  background: rgba(224,32,32,0.18);
  border-color: rgba(224,32,32,0.45);
  box-shadow: 0 0 18px rgba(224,32,32,0.2);
}

/* ─── MAP MODAL ─────────────────────────────────────── */
#map-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#map-modal.open {
  opacity: 1;
  pointer-events: all;
}
.map-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.map-modal-inner {
  position: relative;
  z-index: 1;
  width: 90vw;
  height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
#map-modal.open .map-modal-inner {
  transform: scale(1);
}
.map-modal-inner iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.map-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font);
}
.map-modal-close:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}

/* ─── INVESTMENT ────────────────────────────────────── */
#investment {
  padding: 112px 0;
  background: var(--bg2);
}
.inv-head {
  text-align: center;
  margin-bottom: 72px;
}
.inv-head .tag { justify-content: center; }
.inv-head .lead { max-width: 500px; margin: 0 auto; }
.inv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.inv-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.inv-card:hover {
  border-color: rgba(224,32,32,0.3);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.inv-card.ft {
  background: linear-gradient(145deg, rgba(224,32,32,0.1) 0%, var(--bg3) 55%);
  border-color: rgba(224,32,32,0.32);
}
.inv-card.ft::after {
  content: 'Recomendado';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.inv-ico {
  width: 52px; height: 52px;
  background: var(--red-dim);
  border: 1px solid rgba(224,32,32,0.22);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.inv-ico svg { width: 24px; height: 24px; color: var(--red); }
.inv-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.inv-card p { font-size: 14px; color: var(--muted2); line-height: 1.65; }

/* ─── GALLERY ───────────────────────────────────────── */
#gallery {
  padding: 112px 0;
  background: var(--bg);
}
.gal-head { text-align: center; margin-bottom: 56px; }
.gal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
  border-radius: 16px;
  overflow: hidden;
}
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gal-item:first-child { grid-row: 1 / 3; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.48) 0%, transparent 55%);
}

/* ─── CTA BAND ─────────────────────────────────────── */
#cta-band {
  padding: 104px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 450px;
  background: radial-gradient(ellipse, rgba(224,32,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-h {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
}
.cta-sub {
  font-size: 17px;
  color: var(--muted2);
  margin-bottom: 48px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.72;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 52px;
}
.price-box {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.price-from {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-num {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}
.price-num b { color: var(--red); font-weight: 900; }
.price-note { font-size: 13px; color: var(--muted2); }

/* ─── CONTACT ───────────────────────────────────────── */
#contact {
  padding: 112px 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.contact-copy .lead { max-width: 100%; margin-bottom: 48px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.ci {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.ci-ico {
  width: 44px; height: 44px;
  background: var(--red-dim);
  border: 1px solid rgba(224,32,32,0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-ico svg { width: 19px; height: 19px; color: var(--red); }
.ci strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.ci span { font-size: 13.5px; color: var(--muted2); }

.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}
.form-ttl { font-size: 20px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.form-sub { font-size: 13.5px; color: var(--muted2); margin-bottom: 32px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted2); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(224, 32, 32, 0.55); }
.fg textarea { height: 110px; resize: none; }
.fg select option { background: var(--bg3); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 28px var(--red-glow);
}

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 56px 40px;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand img { height: 28px; margin-bottom: 18px; opacity: 0.85; display: block; }
.footer-brand p { font-size: 13.5px; color: var(--muted2); line-height: 1.65; max-width: 280px; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--muted2);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-col p { font-size: 13.5px; color: var(--muted2); margin-bottom: 8px; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 12.5px; color: var(--muted); }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-body, .wrap { padding-left: 24px; padding-right: 24px; }
  .stats-wrap { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .about-grid, .loc-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .inv-cards { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item:first-child { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 24px 48px; }
  footer { padding: 48px 0 32px; }
}
@media (max-width: 640px) {
  .srv-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 42px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .fg-row { grid-template-columns: 1fr; }
  .srv-head { flex-direction: column; gap: 24px; align-items: flex-start; }
  .contact-form { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; }
}
