/* ====================================================
   DEYPROM — Maquinados Industriales
   CSS Master Stylesheet
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --clr-bg:        #0a0a0f;
  --clr-surface:   #111118;
  --clr-surface2:  #18181f;
  --clr-border:    #2a2a35;
  --clr-blue:      #00b4d8;
  --clr-blue-dim:  #0077a3;
  --clr-orange:    #ff6b35;
  --clr-orange-dim:#c44e1e;
  --clr-white:     #f0f2f5;
  --clr-muted:     #8a8d9a;
  --clr-steel:     #3a3d4a;

  --font-head:  'Oswald', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;

  --nav-h:      72px;
  --radius:     4px;
  --radius-lg:  8px;
  --trans:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow-blue:  0 0 30px rgba(0,180,216,0.25);
  --shadow-glow-orange: 0 0 30px rgba(255,107,53,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cond); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-blue);
  margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--clr-blue);
}
.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.1;
  letter-spacing: 0.02em;
}
.section-title span { color: var(--clr-orange); }
.section-sub {
  font-size: 1.05rem; color: var(--clr-muted); max-width: 560px;
  margin-top: 14px; font-weight: 300;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-cond);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: var(--radius); transition: var(--trans);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08); opacity: 0; transition: var(--trans);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--clr-orange); color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,53,0.45); }
.btn-secondary {
  background: transparent; color: var(--clr-white);
  border: 1.5px solid var(--clr-border);
}
.btn-secondary:hover { border-color: var(--clr-blue); color: var(--clr-blue); transform: translateY(-2px); }
.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ── Reveal animation ── */
.reveal {
  opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

/* ====================================================
   HEADER / NAV
   ==================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}
.header.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border);
}
.nav {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav__logo-icon {
  width: 36px; height: 36px;
}
.nav__logo-text {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.nav__logo-text .accent { color: var(--clr-orange); }
.nav__logo-sub {
  font-family: var(--font-cond); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clr-muted); line-height: 1;
  display: block;
}
.nav__links {
  display: flex; align-items: center; gap: 4px;
}
.nav__links a {
  font-family: var(--font-cond); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 14px;
  color: var(--clr-muted); transition: color var(--trans);
  border-radius: var(--radius);
}
.nav__links a:hover { color: var(--clr-white); }
.nav__cta {
  padding: 10px 22px; font-family: var(--font-cond); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--clr-orange); color: #fff; border-radius: var(--radius);
  transition: var(--trans);
}
.nav__cta:hover { background: var(--clr-orange-dim); transform: translateY(-1px); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--clr-white);
  transition: var(--trans); border-radius: 2px;
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,15,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border); padding: 24px;
  flex-direction: column; gap: 4px; z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-cond); font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-muted);
  padding: 12px 0; border-bottom: 1px solid var(--clr-border);
  transition: color var(--trans);
}
.nav__mobile a:hover { color: var(--clr-white); }
.nav__mobile .btn-wa {
  margin-top: 12px; justify-content: center;
}

/* ====================================================
   HERO + CAROUSEL
   ==================================================== */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero__carousel {
  position: absolute; inset: 0; z-index: 0;
}
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
  background: var(--clr-bg) center/cover no-repeat;
}
.hero__slide.active { opacity: 1; }
.hero__slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,15,0.92) 0%,
    rgba(10,10,15,0.7) 50%,
    rgba(10,10,15,0.3) 100%
  );
}

/* Slides with CSS fallback when no images */
.hero__slide:nth-child(1) { background-color: #0d1117; background-image: url('../images/hero/hero1.jpg'); }
.hero__slide:nth-child(2) { background-color: #0a0f1a; background-image: url('../images/hero/hero2.jpg'); }
.hero__slide:nth-child(3) { background-color: #0f0d17; background-image: url('../images/hero/hero3.jpg'); }
.hero__slide:nth-child(4) { background-color: #0d1117; background-image: url('../images/hero/hero4.jpg'); }
.hero__slide:nth-child(5) { background-color: #0a0f1a; background-image: url('../images/hero/hero5.jpg'); }

/* Decorative lines */
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 4px; background: linear-gradient(to bottom, transparent, var(--clr-orange), transparent);
  z-index: 2;
}

.hero__content {
  position: relative; z-index: 2; max-width: 760px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cond); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clr-blue);
  border: 1px solid rgba(0,180,216,0.35); padding: 6px 14px;
  border-radius: 2px; margin-bottom: 24px; background: rgba(0,180,216,0.07);
}
.hero__badge::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--clr-blue); border-radius: 50%;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.4; transform: scale(0.7); }
}
.hero__title {
  font-family: var(--font-head); font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.0;
  letter-spacing: 0.01em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .accent { color: var(--clr-orange); }
.hero__title .stroke {
  -webkit-text-stroke: 1.5px rgba(240,242,245,0.35);
  color: transparent;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(240,242,245,0.75);
  max-width: 520px; margin: 20px 0 36px; font-weight: 300; line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 0; background: rgba(17,17,24,0.85);
  backdrop-filter: blur(12px); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.hero__stat {
  padding: 16px 32px; text-align: center; border-right: 1px solid var(--clr-border);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  color: var(--clr-orange); line-height: 1;
}
.hero__stat-label {
  display: block; font-family: var(--font-cond); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--clr-muted);
  margin-top: 4px;
}

/* Carousel controls */
.hero__arrows {
  position: absolute; bottom: 50%; transform: translateY(50%);
  z-index: 3; width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; pointer-events: none;
}
.hero__arrow {
  pointer-events: all; width: 46px; height: 46px;
  border: 1.5px solid rgba(240,242,245,0.25);
  background: rgba(10,10,15,0.6); backdrop-filter: blur(8px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--clr-white); transition: var(--trans); cursor: pointer;
}
.hero__arrow:hover {
  border-color: var(--clr-orange); background: var(--clr-orange);
  transform: scale(1.1);
}
.hero__dots {
  position: absolute; bottom: 24px; right: 32px; z-index: 3;
  display: flex; gap: 8px; align-items: center;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(240,242,245,0.3); border: none; cursor: pointer;
  transition: var(--trans); padding: 0;
}
.hero__dot.active { background: var(--clr-orange); transform: scale(1.3); }

/* ====================================================
   SERVICES
   ==================================================== */
.services {
  padding: 100px 0; background: var(--clr-bg);
  position: relative;
}
.services::before {
  content: 'SERVICIOS'; position: absolute; top: 60px; right: -20px;
  font-family: var(--font-head); font-size: 10rem; font-weight: 700;
  text-transform: uppercase; color: rgba(255,255,255,0.02);
  pointer-events: none; line-height: 1; letter-spacing: 0.05em;
  white-space: nowrap;
}
.services__head { margin-bottom: 60px; }
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px;
}
.service-card {
  background: var(--clr-surface); padding: 36px 32px;
  border: 1px solid var(--clr-border); position: relative;
  overflow: hidden; transition: var(--trans);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--clr-orange), var(--clr-blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { background: var(--clr-surface2); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px; background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: var(--trans);
}
.service-card:hover .service-card__icon {
  background: rgba(255,107,53,0.12); border-color: rgba(255,107,53,0.3);
}
.service-card__icon svg { width: 26px; height: 26px; stroke: var(--clr-blue); transition: var(--trans); }
.service-card:hover .service-card__icon svg { stroke: var(--clr-orange); }
.service-card__num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-head); font-size: 3rem; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1; transition: var(--trans);
}
.service-card:hover .service-card__num { color: rgba(255,107,53,0.08); }
.service-card__title {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.92rem; color: var(--clr-muted); line-height: 1.7; margin-bottom: 20px;
}
.service-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service-card__tag {
  font-family: var(--font-cond); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
  background: rgba(0,180,216,0.08); border: 1px solid rgba(0,180,216,0.15);
  color: var(--clr-blue);
}

/* ====================================================
   MACHINES
   ==================================================== */
.machines {
  padding: 100px 0; background: var(--clr-surface);
  position: relative; overflow: hidden;
}
.machines::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}
.machines__head { margin-bottom: 60px; }
.machine-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--clr-border); margin-bottom: 32px;
  overflow: hidden; background: var(--clr-surface2);
}
.machine-block:nth-child(even) { direction: rtl; }
.machine-block:nth-child(even) > * { direction: ltr; }
.machine-block__img {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--clr-bg);
}
.machine-block__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.machine-block:hover .machine-block__img img { transform: scale(1.04); }
.machine-block__img-badge {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-cond); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: #fff; background: var(--clr-orange);
  padding: 5px 12px; border-radius: 2px; font-weight: 600;
}
.machine-block__body {
  padding: 40px;
}
.machine-block__label {
  font-family: var(--font-cond); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--clr-blue); margin-bottom: 10px;
}
.machine-block__title {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 10px; line-height: 1.1;
}
.machine-block__model {
  font-family: var(--font-cond); color: var(--clr-muted); font-size: 0.9rem;
  margin-bottom: 24px;
}
.machine-block__specs {
  width: 100%; border-collapse: collapse;
}
.machine-block__specs tr {
  border-bottom: 1px solid var(--clr-border);
}
.machine-block__specs tr:last-child { border-bottom: none; }
.machine-block__specs td {
  padding: 8px 0; font-size: 0.87rem; vertical-align: top;
}
.machine-block__specs td:first-child {
  color: var(--clr-muted); width: 55%; padding-right: 12px;
}
.machine-block__specs td:last-child {
  color: var(--clr-white); font-weight: 500; font-family: var(--font-cond); font-size: 0.9rem;
}

/* ====================================================
   GALLERY
   ==================================================== */
.gallery {
  padding: 100px 0; background: var(--clr-bg);
}
.gallery__head { margin-bottom: 48px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.gallery__item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--clr-surface);
}
.gallery__item:nth-child(1) {
  grid-column: span 2; grid-row: span 2;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  aspect-ratio: 1;
  background: var(--clr-surface2);
}
.gallery__item:nth-child(1) img {
  aspect-ratio: unset; height: 100%; min-height: 340px;
}
.gallery__item:hover img { transform: scale(1.06); filter: brightness(0.75); }
.gallery__item-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4); opacity: 0; transition: opacity 0.3s ease;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay svg { width: 36px; height: 36px; stroke: #fff; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95); display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
  border: 1px solid var(--clr-border);
}
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-cond); font-size: 1.8rem;
  color: #fff; cursor: pointer; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  transition: background var(--trans);
}
.lightbox__close:hover { background: var(--clr-orange); }
.lightbox__prev,
.lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; background: rgba(255,255,255,0.1);
  border-radius: 50%; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans); cursor: pointer;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--clr-orange); }

/* ====================================================
   WHY US
   ==================================================== */
.why {
  padding: 100px 0; background: var(--clr-surface);
  position: relative; overflow: hidden;
}
.why::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why__head { margin-bottom: 60px; }
.why__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
  padding: 36px 28px; background: var(--clr-surface2);
  border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  position: relative; overflow: hidden; transition: var(--trans);
}
.why-card:hover {
  border-color: var(--clr-orange); transform: translateY(-6px);
  box-shadow: var(--shadow-glow-orange);
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--clr-orange), var(--clr-blue));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card__num {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 700;
  color: rgba(255,107,53,0.12); line-height: 1; margin-bottom: -12px;
}
.why-card__icon {
  width: 48px; height: 48px; margin-bottom: 20px;
}
.why-card__icon svg { width: 100%; height: 100%; stroke: var(--clr-orange); }
.why-card__title {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px;
}
.why-card__text { font-size: 0.9rem; color: var(--clr-muted); line-height: 1.7; }

/* ====================================================
   CONTACT
   ==================================================== */
.contact {
  padding: 100px 0; background: var(--clr-bg);
}
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact__head { margin-bottom: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: var(--font-cond); font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--clr-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-surface); border: 1.5px solid var(--clr-border);
  color: var(--clr-white); padding: 13px 16px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none; -webkit-appearance: none;
}
.form-group select { background-image: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-blue); box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--clr-surface2); }
.form-success {
  display: none; padding: 18px 24px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-lg); color: #25D366;
  font-family: var(--font-cond); font-size: 0.95rem; letter-spacing: 0.05em;
  align-items: center; gap: 12px;
}
.form-success.show { display: flex; }
.contact__info { }
.contact__info-title {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 600;
  text-transform: uppercase; margin-bottom: 28px;
}
.contact__detail {
  display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start;
}
.contact__detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.contact__detail-icon svg { width: 20px; height: 20px; stroke: var(--clr-blue); }
.contact__detail-label {
  font-family: var(--font-cond); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--clr-muted); margin-bottom: 3px;
}
.contact__detail-val {
  font-size: 0.95rem; color: var(--clr-white); line-height: 1.5;
}
.contact__detail-val a { transition: color var(--trans); }
.contact__detail-val a:hover { color: var(--clr-blue); }
.contact__map {
  margin-top: 32px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--clr-border);
}
.contact__social {
  display: flex; gap: 12px; margin-top: 28px;
}
.social-link {
  width: 42px; height: 42px; background: var(--clr-surface2);
  border: 1px solid var(--clr-border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); color: var(--clr-muted);
}
.social-link:hover {
  background: #1877f2; border-color: #1877f2; color: #fff; transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* ====================================================
   WHATSAPP FLOAT BUTTON
   ==================================================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover {
  transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.65);
}
.wa-float::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-ring 2s ease infinite;
}
@keyframes wa-ring {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--clr-surface); border-top: 1px solid var(--clr-border);
  padding: 60px 0 28px;
}
.footer__main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid var(--clr-border);
}
.footer__brand { }
.footer__logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer__logo-text {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.footer__tagline {
  font-size: 0.9rem; color: var(--clr-muted); line-height: 1.65; max-width: 280px;
}
.footer__col-title {
  font-family: var(--font-cond); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--clr-white); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem; color: var(--clr-muted); transition: color var(--trans);
}
.footer__links a:hover { color: var(--clr-blue); }
.footer__bottom {
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__copy {
  font-size: 0.82rem; color: var(--clr-muted);
}
.footer__copy span { color: var(--clr-orange); }
.footer__bottom-links {
  display: flex; gap: 20px;
}
.footer__bottom-links a {
  font-size: 0.82rem; color: var(--clr-muted); transition: color var(--trans);
}
.footer__bottom-links a:hover { color: var(--clr-white); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .machine-block { grid-template-columns: 1fr; direction: ltr; }
  .machine-block:nth-child(even) { direction: ltr; }
  .machine-block__img { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__stats {
    width: calc(100% - 48px);
    flex-wrap: wrap;
  }
  .hero__stat { flex: 1; min-width: 100px; }

  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(1) { grid-column: span 2; }

  .why__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__arrows { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .machine-block__body { padding: 28px 20px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item:nth-child(1) { grid-column: span 1; }
}

/* ====================================================
   COOKIE BANNER
   ==================================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(17,17,24,0.97); backdrop-filter: blur(16px);
  border-top: 1px solid var(--clr-border);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-banner__text p {
  font-size: 0.88rem; color: var(--clr-muted); line-height: 1.6; margin: 0;
}
.cookie-banner__text a {
  color: var(--clr-blue); text-decoration: underline;
  transition: color var(--trans);
}
.cookie-banner__text a:hover { color: var(--clr-orange); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-cond); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: var(--radius);
  cursor: pointer; border: none; transition: var(--trans);
}
.cookie-btn--reject {
  background: transparent; color: var(--clr-muted);
  border: 1.5px solid var(--clr-border);
}
.cookie-btn--reject:hover { border-color: var(--clr-white); color: var(--clr-white); }
.cookie-btn--accept {
  background: var(--clr-orange); color: #fff;
}
.cookie-btn--accept:hover { background: var(--clr-orange-dim); }

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── Decorative metallic line separator ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--clr-border) 20%, var(--clr-steel) 50%, var(--clr-border) 80%, transparent 100%);
}
