/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: #16232b; background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --dark:    #16232b;
  --dark2:   #142027;
  --orange:  #ff5e14;
  --cream:   #f4f4f4;
  --gray:    #606060;
  --border:  #dadada;
  --pad:     clamp(20px, 5vw, 80px);
  --max:     1280px;
  --ease:    cubic-bezier(.16,1,.3,1);
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: inherit; font-size: 14px; font-weight: 700; padding: 16px 32px; cursor: pointer; transition: all .25s var(--ease); border: none; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #e04e08; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--orange); }
.btn-outline { background: transparent; border: 1.5px solid #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn svg { width: 16px; height: 16px; fill: currentColor; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.arrow-icon { width: 38px; height: 38px; background: var(--orange); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s var(--ease), background .25s; }
.arrow-icon svg { width: 16px; height: 16px; fill: #fff; }

/* ── EYEBROW ── */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--orange); flex-shrink: 0; }

/* ── FADE ANIMATION ── */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fu.in { opacity: 1; transform: translateY(0); }
.fu:nth-child(2){transition-delay:.08s} .fu:nth-child(3){transition-delay:.16s} .fu:nth-child(4){transition-delay:.24s}

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.nav { position: fixed; inset: 0 0 auto; z-index: 100; background: var(--dark); height: 80px; transition: box-shadow .3s; }
.nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.4); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); transition: color .2s; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .25s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; }
.mnav { display: none; position: fixed; inset: 80px 0 0; background: var(--dark); z-index: 99; flex-direction: column; padding: 28px var(--pad); }
.mnav.open { display: flex; }
.mnav a { font-size: 18px; font-weight: 700; color: #fff; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s; }
.mnav a:hover { color: var(--orange); }
.mnav .btn { margin-top: 24px; align-self: flex-start; }

/* ════════════════════════════
   HERO — SLIDER
════════════════════════════ */
.hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; }
.hero-slides { position: relative; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s var(--ease); }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-slide img[src*="hero-home"]     { object-position: center top; }
.hero-slide img[src*="hero-mecanica"] { object-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,35,43,.85) 0%, rgba(22,35,43,.50) 40%, rgba(22,35,43,.10) 70%, rgba(22,35,43,0) 100%); }
.hero-content-outer { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-content { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.hero-text { max-width: 640px; }
.hero-text h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-text p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.hero-controls { position: absolute; bottom: 40px; left: 0; right: 0; }
.hero-controls-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: flex; align-items: center; gap: 20px; }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; border: none; }
.hero-dot.active { background: var(--orange); width: 28px; border-radius: 4px; }
.hero-arrows { display: flex; gap: 12px; margin-left: auto; }
.hero-arrow { width: 48px; height: 48px; border: 1.5px solid rgba(255,255,255,.4); background: transparent; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ════════════════════════════
   ABOUT
════════════════════════════ */
.about { padding: clamp(80px,10vw,130px) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card { position: relative; overflow: hidden; border-radius: 4px; }
.about-card img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s var(--ease); }
.about-card:hover img { transform: scale(1.05); }
.about-card-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px; background: linear-gradient(to top, rgba(22,35,43,.8) 0%, transparent 60%); transition: background .3s; }
.about-card-overlay.orange { background: linear-gradient(to top, rgba(255,94,20,.85) 0%, transparent 60%); }
.about-card-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
.about-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 32px; }
.about-worker { display: flex; align-items: center; gap: 16px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.about-worker img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.about-worker-info { font-size: 14px; color: var(--gray); line-height: 1.5; }
.about-worker-info strong { display: block; color: var(--dark); font-size: 16px; font-weight: 700; }

/* ════════════════════════════
   MARQUEE
════════════════════════════ */
.marquee-section { background: var(--orange); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 40px; animation: marquee 20s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 16px; font-size: 15px; font-weight: 700; color: #fff; white-space: nowrap; }
.marquee-star { width: 8px; height: 8px; background: rgba(255,255,255,.6); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════
   SERVICES — ACCORDION
════════════════════════════ */
.services { padding: clamp(80px,10vw,130px) 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 56px; }
.services-left h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.15; }
.services-left p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-top: 16px; }
.accordion { margin-top: 0; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:first-child { border-top: 1px solid var(--border); }
.acc-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; cursor: pointer; gap: 16px; transition: color .2s; }
.acc-header:hover { color: var(--orange); }
.acc-num { font-size: 13px; font-weight: 700; color: var(--orange); margin-right: 4px; }
.acc-title { font-size: 17px; font-weight: 700; flex: 1; }
.acc-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s; }
.acc-icon svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; transition: transform .3s; }
.acc-item.open .acc-icon { background: var(--orange); }
.acc-item.open .acc-icon svg { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body-inner { padding: 0 0 24px; }
.acc-body p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.acc-checks { display: flex; flex-direction: column; gap: 8px; }
.acc-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--dark); }
.acc-check::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.acc-img { display: none; }
.acc-item.open .acc-img { display: block; margin-top: 20px; border-radius: 4px; overflow: hidden; }
.acc-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.acc-item.open .acc-body { max-height: 1200px; }

/* ════════════════════════════
   PROJECTS
════════════════════════════ */
.projects { padding: clamp(80px,10vw,130px) 0; }
.projects-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 40px; }
.projects-header h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.15; max-width: 480px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--border); }
.project-item { background: #fff; overflow: hidden; position: relative; }
.project-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s var(--ease); }
.project-item:hover img { transform: scale(1.06); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,35,43,.8) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; opacity: 0; transition: opacity .3s; }
.project-item:hover .project-overlay { opacity: 1; }
.project-cat { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.project-title { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; }
.project-arrow { position: absolute; top: 20px; right: 20px; }

/* ════════════════════════════
   FEATURES — SCROLLING CARDS
════════════════════════════ */
.features { padding: clamp(80px,10vw,130px) 0; background: var(--dark); }
.features-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.features-header h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: #fff; line-height: 1.15; }
.features-header p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8; margin-top: 16px; }
.features-track { display: flex; gap: 0; justify-content: center; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.features-track::-webkit-scrollbar { display: none; }
.feat-card { flex: 1 1 25%; min-width: 220px; max-width: 360px; }
.feat-card { flex: 0 0 280px; position: relative; overflow: hidden; cursor: pointer; }
.feat-card img { width: 100%; height: 380px; object-fit: cover; object-position: center center; filter: brightness(.5); transition: filter .4s; }
.feat-card img[src*="feat-acompanamiento"] { object-position: center 20%; }
.feat-card img[src*="feat-modelado3d"] { object-position: center 25%; }
.feat-card img[src*="feat-marcas"] { object-position: center 15%; }
.feat-card:hover img { filter: brightness(.35); }
.feat-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.feat-card-label { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.4; }
a.feat-card { display: block; text-decoration: none; color: inherit; }
.feat-card-arrow { margin-top: 12px; opacity: 1; transform: translateX(0); transition: all .3s; }
.feat-card:hover .feat-card-arrow { opacity: 1; transform: translateX(4px); }

/* ════════════════════════════
   SOLUTIONS
════════════════════════════ */
.solutions { padding: clamp(80px,10vw,130px) 0; }
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solutions-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.solutions-images img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 4px; }
.solutions-images img:first-child { margin-top: 40px; }
.solutions-text h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.solutions-text p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 40px; }
.sol-items { display: flex; flex-direction: column; gap: 24px; }
.sol-item { display: flex; gap: 20px; align-items: flex-start; }
.sol-icon { width: 52px; height: 52px; background: var(--cream); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sol-icon img { width: 28px; height: 28px; }
.sol-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.sol-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ════════════════════════════
   BLOG
════════════════════════════ */
.blog { padding: clamp(80px,10vw,130px) 0; background: var(--cream); }
.blog-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.blog-header h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.15; }
.blog-header p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-top: 16px; }
.blog-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 24px; }
.blog-card { background: #fff; overflow: hidden; transition: box-shadow .3s; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(22,35,43,.12); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-img { overflow: hidden; }
.blog-card-body { padding: 24px; }
.blog-date { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 12px; transition: color .2s; }
.blog-card:hover .blog-title { color: var(--orange); }
.blog-excerpt { font-size: 13px; color: var(--gray); line-height: 1.7; }
.blog-card-arrow { display: flex; justify-content: flex-end; padding: 0 24px 20px; }

/* ════════════════════════════
   CTA BANNER
════════════════════════════ */
.cta-banner { background: var(--dark); padding: clamp(60px,8vw,100px) var(--pad); text-align: center; }
.cta-banner h2 { font-size: clamp(28px,4vw,52px); font-weight: 800; color: #fff; margin-bottom: 32px; }
.cta-banner h2 span { color: var(--orange); }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer { background: var(--dark2); padding: 80px var(--pad) 0; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 30px; width: auto; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 28px; }
.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.footer-contact-icon { width: 40px; height: 40px; background: rgba(255,94,20,.15); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.footer-contact-icon img { width: 18px; height: 18px; }
.footer-contact-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.footer-contact-val { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5; }
.footer-col-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.06); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-socials { display: flex; gap: 12px; }
.footer-soc { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all .2s; }
.footer-soc:hover { background: var(--orange); border-color: var(--orange); }
.footer-soc svg { width: 14px; height: 14px; fill: rgba(255,255,255,.5); }
.footer-soc:hover svg { fill: #fff; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid, .solutions-grid { grid-template-columns: 1fr; }
  .about-cards { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links, .nav .btn-dark { display: none; }
  .nav-burger { display: flex; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .projects-header { flex-direction: column; align-items: flex-start; }
  .solutions-images { display: none; }
  .solutions-grid { grid-template-columns: 1fr; }
}

/* ── PF BENCHMARK PRO ── */
@font-face {
  font-family: 'PF Benchmark Pro';
  src: url('../fonts/PF Benchmark Pro Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PF Benchmark Pro';
  src: url('../fonts/PF Benchmark Pro Black.woff') format('woff');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

/* Aplicar PF Benchmark a todos los títulos */
h1, h2, h3, h4,
.hero-text h1,
.about-text h2,
.services-left h2,
.projects-header h2,
.features-header h2,
.solutions-text h2,
.blog-header h2,
.cta-banner h2,
.about-card-title,
.project-title,
.feat-card-label,
.sol-title,
.blog-title,
.acc-title,
.footer-col-title {
  font-family: 'PF Benchmark Pro', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

/* ════════════════════════════
   CLIENTS — LOGO GRID
════════════════════════════ */
.clients { padding: clamp(80px,10vw,130px) 0; background: #fff; }
.clients-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.clients-header h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.15; }
.clients-header p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-top: 16px; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.client-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 40px;
  height: 120px;
  transition: background .2s;
}
.client-item:hover { background: var(--cream); }
.client-item img {
  max-height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(50%);
  transition: filter .3s;
}
.client-item:hover img { filter: grayscale(100%) opacity(75%); }

@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-item { padding: 28px 24px; }
}

/* ════════════════════════════
   BRANDS
════════════════════════════ */
.brands { padding: clamp(80px,10vw,130px) 0; background: var(--dark); }
.brands-header { max-width: 640px; margin-bottom: 56px; }
.brands-header h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 700; color: #fff; line-height: 1.15; }
.brands-header p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8; margin-top: 16px; }
.brands-header .eyebrow { color: var(--orange); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.brand-card {
  background: var(--dark);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .25s;
}
.brand-card:hover { background: rgba(255,255,255,.04); }
.brand-logo-wrap {
  height: 48px;
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 0;
}
.brand-logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .25s;
}
.brand-card:hover .brand-logo { opacity: 1; }
.brand-logo[alt="AIGNEP"]        { height: 26px; }
.brand-logo[alt="EATON"]         { height: 28px; }
.brand-logo[alt="Carlo Gavazzi"] { height: 30px; }
.brand-logo[alt="SIRENA"]        { height: 28px; }
.brand-logo[alt="TOSHIBA"]       { height: 21px; }
.brand-logo[alt="DORNER"]        { height: 24px; }
.brand-logo[alt="REER"]          { height: 26px; }
.brand-logo[alt="FLEXPIPE"]      { height: 31px; }
.brand-logo[alt="SIEMENS"]       { height: 21px; }
.brand-card p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  flex: 1;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: gap .25s;
  margin-top: auto;
}
.brand-link:hover { gap: 12px; }
.brand-link svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .brands-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   CONTACT
════════════════════════════ */
.contact { background: var(--dark); padding: clamp(80px,10vw,130px) 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }

/* Form side */
.contact-form-side h2 { font-size: clamp(24px,3vw,38px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  padding: 16px 20px;
  outline: none;
  transition: border-color .25s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form select { color: rgba(255,255,255,.35); cursor: pointer; }
.contact-form select option { background: var(--dark); color: #fff; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }
.form-success { display: none; color: #4caf50; font-size: 14px; font-weight: 600; margin-top: 8px; }
.form-success.show { display: block; }

/* Info side */
.contact-info-side { display: flex; flex-direction: column; gap: 32px; padding-top: 80px; }
.contact-info-block { display: flex; gap: 20px; align-items: flex-start; }
.contact-info-icon {
  width: 48px; height: 48px; background: rgba(255,94,20,.15);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.contact-info-val { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.6; text-decoration: none; transition: color .2s; }
a.contact-info-val:hover { color: var(--orange); }
.contact-socials { display: flex; gap: 12px; margin-top: 8px; }
.contact-soc {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.contact-soc:hover { background: var(--orange); border-color: var(--orange); }
.contact-soc svg { width: 16px; height: 16px; fill: rgba(255,255,255,.6); }
.contact-soc:hover svg { fill: #fff; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info-side { padding-top: 0; }
  .form-row { grid-template-columns: 1fr; }
}
