:root {
  --ink: #101820;
  --ink-soft: #26323b;
  --paper: #f5f3ee;
  --white: #fff;
  --line: rgba(16, 24, 32, .14);
  --orange: #ed5b24;
  --orange-dark: #c84416;
  --green: #25d366;
  --muted: #667078;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shadow: 0 24px 80px rgba(8, 15, 22, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); line-height: 1.65; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; font-family: var(--display); line-height: .98; }
h2 { font-size: clamp(3rem, 6vw, 5.6rem); letter-spacing: -.035em; text-transform: uppercase; }
h3 { font-size: 1.72rem; letter-spacing: -.01em; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 118px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 16px; color: #fff; background: var(--ink); transform: translateY(-160%); transition: .2s; }
.skip-link:focus { transform: translateY(0); }

.topbar { color: #fff; background: #0a1015; border-bottom: 1px solid rgba(255,255,255,.09); }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(37,211,102,.12); }
.topbar-link { padding: 0; color: #fff; background: none; border: 0; cursor: pointer; }
.topbar-link:hover { color: var(--green); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245,243,238,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; }
.brand img { width: 150px; max-height: 60px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); font-size: .83rem; font-weight: 700; }
.main-nav > a { position: relative; padding: 28px 0; }
.main-nav > a::after { content: ""; position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; padding: 28px 0; font-size: .83rem; font-weight: 700; background: none; border: 0; cursor: pointer; }
.dropdown-menu { position: absolute; top: calc(100% - 10px); left: -24px; width: 280px; padding: 10px; visibility: hidden; opacity: 0; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(10px); transition: .2s; }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 2px; font-size: .77rem; }
.dropdown-menu a:hover { color: #fff; background: var(--ink); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: none; border: 1px solid var(--line); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 22px; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; border: 1px solid transparent; border-radius: 1px; cursor: pointer; transition: transform .2s, background .2s, border-color .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.button-ghost { color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }
.button-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--orange); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-outline:hover { color: #fff; background: var(--ink); }
.button-whatsapp { color: #fff; background: #128c4b; }
.button-whatsapp:hover { background: #08753b; }
.button-small { min-height: 42px; padding: 10px 17px; font-size: .68rem; }
.button-large { min-height: 58px; padding-inline: 30px; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: rgba(255,255,255,.72); font-size: .69rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: var(--orange); }
.eyebrow-dark { color: var(--muted); }
.hero { position: relative; min-height: calc(100vh - 118px); overflow: hidden; display: flex; align-items: center; background: #111b22; }
.hero-media { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,17,23,.96) 0%, rgba(10,17,23,.84) 43%, rgba(10,17,23,.25) 78%), url("assets/service-industrial.jpg") 68% center/cover no-repeat; filter: saturate(.75); }
.hero-grid { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg,#000,transparent 75%); }
.hero::after { content: ""; position: absolute; top: 0; bottom: 0; left: max(24px, calc((100vw - 1180px)/2)); width: 1px; background: rgba(255,255,255,.12); }
.hero-content { position: relative; z-index: 2; padding: 96px 0 86px; }
.hero h1 { max-width: 830px; font-size: clamp(4.2rem, 9vw, 8.6rem); letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 610px; margin: 30px 0; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { width: min(720px, 100%); display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-proof div { display: flex; flex-direction: column; padding-right: 28px; }
.hero-proof div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-proof strong { font-family: var(--display); font-size: 2.7rem; line-height: 1; }
.hero-proof span { color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.scroll-cue { position: absolute; right: 38px; bottom: 36px; z-index: 3; display: flex; align-items: center; gap: 12px; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue span { width: 28px; height: 1px; background: #fff; }

.trust-strip { color: #fff; background: var(--orange); }
.trust-grid { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: .13em; }
.trust-grid i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.6); }

.section-heading { margin-bottom: 60px; }
.section-heading h2 { max-width: 800px; }
.heading-row { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: end; gap: 80px; }
.heading-row > p { max-width: 470px; margin: 0 0 8px; color: var(--muted); }
.center-heading { max-width: 800px; margin-right: auto; margin-left: auto; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading > p:last-child { max-width: 650px; margin: 24px auto 0; color: var(--muted); }

.solution-cards { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--line); border: 1px solid var(--line); gap: 1px; }
.solution-card { position: relative; min-height: 500px; padding: 38px; background: #fff; transition: transform .3s, box-shadow .3s; }
.solution-card:hover { z-index: 2; box-shadow: var(--shadow); transform: translateY(-8px); }
.solution-card-featured { color: #fff; background: var(--orange); }
.card-number { position: absolute; top: 27px; right: 28px; color: var(--muted); font-family: var(--display); font-size: 1rem; }
.solution-card-featured .card-number { color: rgba(255,255,255,.65); }
.card-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 58px; color: var(--orange); border: 1px solid currentColor; border-radius: 50%; font-family: var(--display); font-size: 1.2rem; font-weight: 700; }
.solution-card-featured .card-icon { color: #fff; }
.solution-card h3 { max-width: 280px; margin-bottom: 18px; font-size: 2.05rem; text-transform: uppercase; }
.solution-card p { color: var(--muted); font-size: .91rem; }
.solution-card-featured p { color: rgba(255,255,255,.78); }
.solution-card ul { margin: 22px 0 30px; padding: 0; list-style: none; font-size: .77rem; font-weight: 700; text-transform: uppercase; }
.solution-card li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.solution-card-featured li { border-color: rgba(255,255,255,.22); }
.text-link { display: inline-flex; align-items: center; gap: 13px; padding: 0 0 6px; color: var(--ink); background: none; border: 0; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.solution-card-featured .text-link { color: #fff; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.products { background: #ece9e2; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { min-height: 300px; padding: 34px; background: #f8f7f3; border: 1px solid transparent; transition: .25s; }
.product-card:hover { background: #fff; border-color: var(--orange); transform: translateY(-4px); }
.product-tag { display: inline-block; margin-bottom: 50px; padding: 5px 9px; color: #fff; background: #e53935; border-radius: 2px; font-size: .64rem; font-weight: 800; letter-spacing: .08em; }
.product-tag-blue { background: #234f8b; }
.product-card h3 { margin-bottom: 15px; text-transform: uppercase; }
.product-card p { min-height: 74px; color: var(--muted); font-size: .86rem; }
.center-action { margin-top: 38px; text-align: center; }

.service-showcase { padding: 120px 0; overflow: hidden; }
.showcase-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.showcase-image { position: relative; min-height: 720px; }
.showcase-image::before { content: ""; position: absolute; top: -40px; left: -40px; width: 120px; height: 120px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.showcase-image img { width: 100%; height: 720px; object-fit: cover; object-position: 57% center; filter: saturate(.72) contrast(1.08); }
.image-badge { position: absolute; right: -28px; bottom: 34px; width: 270px; padding: 24px; color: var(--ink); background: #fff; box-shadow: var(--shadow); }
.image-badge strong, .image-badge span { display: block; }
.image-badge strong { font-family: var(--display); font-size: 1.35rem; text-transform: uppercase; }
.image-badge span { margin-top: 5px; color: var(--muted); font-size: .72rem; }
.showcase-content h2 { margin-bottom: 42px; }
.service-list article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.16); }
.service-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.service-index { color: var(--orange); font-family: var(--display); font-size: .9rem; }
.service-list h3 { margin-bottom: 9px; color: #fff; text-transform: uppercase; }
.service-list p { color: rgba(255,255,255,.62); font-size: .86rem; }
.text-link-light { color: #fff; }

.brands { background: #fff; }
.brand-heading { margin-bottom: 48px; }
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-card { min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; padding: 30px; background: #fff; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; transition: .25s; }
.brand-card:hover { background: var(--paper); }
.brand-card img { width: 150px; height: 115px; object-fit: contain; filter: grayscale(1); transition: .25s; }
.brand-card:hover img { filter: grayscale(0); transform: scale(1.04); }
.brand-card span { font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 86px; align-items: center; }
.about-copy h2 { margin-bottom: 30px; }
.large-copy { font-size: 1.1rem; font-weight: 600; }
.about-copy > p { color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 38px 0; }
.values-grid article { padding-top: 22px; border-top: 2px solid var(--ink); }
.values-grid span { color: var(--orange); font-family: var(--display); font-size: .8rem; }
.values-grid h3 { margin: 10px 0; text-transform: uppercase; }
.values-grid p { color: var(--muted); font-size: .8rem; }
.about-visual { position: relative; padding: 0 0 70px 45px; }
.about-visual::before { content: ""; position: absolute; inset: 55px 48px 0 0; background: var(--orange); }
.about-visual img { position: relative; width: 100%; min-height: 560px; object-fit: cover; }
.quote-card { position: absolute; right: -20px; bottom: 0; width: min(380px, 88%); padding: 32px; background: #fff; box-shadow: var(--shadow); }
.quote-mark { position: absolute; top: 10px; right: 26px; color: rgba(237,91,36,.18); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }
.quote-card p { position: relative; font-family: var(--display); font-size: 1.6rem; line-height: 1.15; text-transform: uppercase; }
.quote-card strong { color: var(--orange); font-size: .67rem; letter-spacing: .1em; }

.sectors { padding: 110px 0; background: linear-gradient(135deg,#111b22,#1f2d36); }
.light-heading h2 { margin-inline: auto; }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.sector-grid article { min-height: 340px; padding: 40px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.sector-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 70px; color: var(--orange); border: 1px solid currentColor; border-radius: 50%; font-family: var(--display); font-weight: 700; }
.sector-grid h3 { margin-bottom: 12px; color: #fff; font-size: 2rem; text-transform: uppercase; }
.sector-grid p { min-height: 84px; color: rgba(255,255,255,.6); font-size: .85rem; }

.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; counter-reset: steps; }
.process-grid li { min-height: 285px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid span { display: block; margin-bottom: 70px; color: var(--orange); font-family: var(--display); }
.process-grid h3 { margin-bottom: 12px; text-transform: uppercase; }
.process-grid p { color: var(--muted); font-size: .82rem; }

.rental { position: relative; overflow: hidden; padding: 110px 0; color: #fff; background: var(--orange); }
.rental::before { content: "RENTAL"; position: absolute; right: -20px; bottom: -80px; color: rgba(255,255,255,.08); font-family: var(--display); font-size: 20rem; font-weight: 800; line-height: .7; }
.rental-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.rental-copy { position: sticky; top: 130px; }
.rental-copy h2 { margin-bottom: 26px; }
.rental-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.rental-copy .button-primary { margin-top: 18px; color: var(--ink); background: #fff; }
.rental-copy .button-primary:hover { color: #fff; background: var(--ink); }
.equipment-list { border-top: 1px solid rgba(255,255,255,.3); }
.equipment-list button { width: 100%; min-height: 78px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px; padding: 16px 6px; color: #fff; text-align: left; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.3); cursor: pointer; transition: padding .2s, background .2s; }
.equipment-list button:hover { padding-left: 16px; background: rgba(255,255,255,.1); }
.equipment-list span { font-family: var(--display); font-size: .75rem; opacity: .7; }
.equipment-list i { font-style: normal; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro h2 { margin-bottom: 24px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; font-family: var(--display); font-size: 1.35rem; font-weight: 700; text-transform: uppercase; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--orange); font-family: var(--body); font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 680px; padding: 0 35px 25px 0; color: var(--muted); font-size: .88rem; }

.contact-cta { padding: 105px 0; background: var(--ink); }
.contact-cta-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.contact-cta h2 { color: #fff; }
.contact-cta-copy p { color: rgba(255,255,255,.65); }
.contact-cta-copy .button { margin-top: 14px; }

.locations { padding: 70px 0; background: #0a1015; color: #fff; border-top: 1px solid rgba(255,255,255,.12); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 0; }
.location-grid > article { padding: 10px 42px; border-right: 1px solid rgba(255,255,255,.16); }
.location-grid > article:first-child { padding-left: 0; }
.location-grid > article:last-child { padding-right: 0; border: 0; }
.location-label { color: var(--orange); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.location-grid h3 { margin: 8px 0 16px; color: #fff; font-size: 1.7rem; text-transform: uppercase; }
.location-grid article > p:not(.location-label) { color: rgba(255,255,255,.6); font-size: .79rem; }
.location-actions { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 22px; }
.location-actions .text-link { color: #fff; font-size: .62rem; }
.hours-card div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: .72rem; }
.hours-card span { color: rgba(255,255,255,.55); }

.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.62); background: #070b0e; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .8fr .8fr 1.2fr; gap: 60px; }
.footer-brand img { width: 160px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 350px; font-size: .78rem; }
.footer-grid h3 { margin-bottom: 18px; color: #fff; font-family: var(--body); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a:not(.button) { display: block; margin-bottom: 9px; font-size: .76rem; }
.footer-grid a:hover { color: #fff; }
.social-link { margin-top: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); font-size: .65rem; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 22px; z-index: 90; min-width: 58px; height: 58px; display: flex; align-items: center; gap: 10px; padding: 0 19px 0 12px; color: #fff; background: #128c4b; border: 0; border-radius: 40px; box-shadow: 0 12px 34px rgba(0,0,0,.25); cursor: pointer; transition: .2s; }
.floating-whatsapp:hover { background: #08753b; transform: translateY(-3px); }
.wa-symbol { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: #128c4b; background: #fff; border-radius: 50%; font-size: .66rem; font-weight: 900; letter-spacing: -.03em; }
.floating-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; }

.whatsapp-modal[hidden] { display: none; }
.whatsapp-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 22px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,11,15,.78); backdrop-filter: blur(5px); }
.modal-panel { position: relative; z-index: 1; width: min(470px, 100%); padding: 38px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.34); animation: modal-in .25s ease both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.modal-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 1.3rem; cursor: pointer; }
.modal-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.modal-brand .wa-symbol { color: #fff; background: #128c4b; }
.modal-brand small, .modal-brand strong { display: block; }
.modal-brand small { color: #128c4b; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.modal-brand strong { font-family: var(--display); font-size: 1.35rem; text-transform: uppercase; }
.modal-panel > p { color: var(--muted); font-size: .83rem; }
.wa-options { margin-top: 24px; border-top: 1px solid var(--line); }
.wa-options a { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 8px; border-bottom: 1px solid var(--line); transition: .2s; }
.wa-options a:hover { padding-left: 16px; color: #fff; background: #128c4b; }
.wa-options b, .wa-options small { display: block; }
.wa-options b { font-family: var(--display); font-size: 1.1rem; text-transform: uppercase; }
.wa-options small { color: var(--muted); font-size: .69rem; }
.wa-options a:hover small { color: rgba(255,255,255,.7); }
.wa-options i { font-style: normal; }
.modal-note { display: block; margin-top: 18px; color: #8a9297; font-size: .65rem; text-align: center; }

@media (max-width: 1050px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 10px 24px 24px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 18px 35px rgba(0,0,0,.12); }
  .main-nav.open { display: block; }
  .main-nav > a, .nav-dropdown-toggle { width: 100%; display: flex; padding: 15px 2px; border-bottom: 1px solid var(--line); }
  .main-nav > a::after { display: none; }
  .nav-dropdown-toggle { justify-content: space-between; }
  .dropdown-menu { position: static; width: 100%; display: none; padding: 7px 0 7px 15px; visibility: visible; opacity: 1; background: transparent; border: 0; box-shadow: none; transform: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 9px 10px; }
  .nav-cta { width: 100%; margin-top: 14px; }
  .solution-card { padding: 30px; }
  .showcase-grid, .about-grid { gap: 50px; }
  .showcase-image, .showcase-image img { min-height: 650px; height: 650px; }
  .rental-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 86px 0; }
  .container { width: min(100% - 36px, 1180px); }
  .hero { min-height: auto; }
  .hero-media { background: linear-gradient(90deg, rgba(10,17,23,.95), rgba(10,17,23,.64)), url("assets/service-industrial.jpg") 58% center/cover; }
  .hero-content { padding: 82px 0 65px; }
  .hero-proof { margin-top: 50px; }
  .scroll-cue { display: none; }
  .trust-grid { flex-wrap: wrap; justify-content: center; padding: 20px 0; }
  .heading-row { grid-template-columns: 1fr; gap: 24px; }
  .solution-cards { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
  .card-icon { margin-bottom: 35px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid, .about-grid, .rental-grid, .faq-grid, .contact-cta-inner { grid-template-columns: 1fr; }
  .showcase-image, .showcase-image img { min-height: 520px; height: 520px; }
  .showcase-image { max-width: 600px; }
  .about-visual { max-width: 600px; }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-grid article { min-height: 280px; }
  .sector-icon { margin-bottom: 35px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .rental-copy, .faq-intro { position: static; }
  .rental::before { font-size: 12rem; }
  .location-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .location-grid > article:nth-child(2) { border-right: 0; }
  .location-grid > article:last-child { grid-column: 1 / -1; padding-left: 0; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 76px; }
  h2 { font-size: clamp(2.7rem, 15vw, 4rem); }
  .container { width: min(100% - 28px, 1180px); }
  .topbar-inner { min-height: 32px; justify-content: center; }
  .topbar p { display: none; }
  .header-inner { min-height: 72px; }
  .brand img { width: 128px; }
  .hero h1 { font-size: clamp(3.55rem, 19vw, 5.2rem); }
  .hero-media { background-position: 62% center; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 18px; }
  .hero-proof div, .hero-proof div + div { padding: 0 0 15px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .trust-grid { font-size: .8rem; }
  .trust-grid i:nth-of-type(even), .trust-grid span:nth-of-type(n+4) { display: none; }
  .product-grid, .values-grid, .process-grid, .location-grid { grid-template-columns: 1fr; }
  .product-card p { min-height: auto; }
  .showcase-image, .showcase-image img { min-height: 430px; height: 430px; }
  .image-badge { right: -6px; width: 245px; }
  .about-visual { padding-left: 20px; }
  .about-visual img { min-height: 440px; }
  .quote-card { right: 0; padding: 24px; }
  .quote-card p { font-size: 1.35rem; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card { min-height: 210px; padding: 20px; }
  .brand-card img { width: 115px; height: 90px; }
  .process-grid span { margin-bottom: 35px; }
  .process-grid li { min-height: 235px; }
  .location-grid > article, .location-grid > article:first-child, .location-grid > article:last-child { grid-column: auto; padding: 0 0 30px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .location-grid > article:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 56px; min-width: 56px; padding: 0; justify-content: center; }
  .floating-label { display: none; }
  .modal-panel { padding: 30px 22px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* Ajuste de fidelidad visual con respecto a sericsa.mx */
.topbar { background: #050505; }
.topbar .container,
.site-header .container { width: min(1380px, calc(100% - 40px)); }
.topbar-inner { min-height: 32px; justify-content: space-between; font-size: 11px; letter-spacing: 0; text-transform: none; }
.topbar-contact { font-weight: 700; }
.topbar-contact span { margin-right: 4px; }
.topbar-contact b { margin-left: 20px; }
.site-header { background: #fff; backdrop-filter: none; }
.header-inner { min-height: 80px; }
.brand img { width: 125px; max-height: 64px; }
.main-nav { gap: clamp(15px, 1.45vw, 27px); color: #5f5f5f; font-size: 13px; font-weight: 600; }
.main-nav > a { padding: 30px 0; white-space: nowrap; }
.main-nav > a::after { bottom: 0; height: 3px; background: #2e9bff; }
.main-nav > a:first-child { color: #ef6d22; }
.nav-dropdown-toggle { padding: 30px 0; color: #5f5f5f; font-size: 13px; white-space: nowrap; }
.nav-contact { padding: 30px 0; color: #5f5f5f; background: transparent; border: 0; font-size: 13px; font-weight: 600; cursor: pointer; }
.nav-contact:hover { color: #ef6d22; }

.dropdown-menu.mega-menu {
  left: 0;
  top: calc(100% - 2px);
  width: 660px;
  min-height: 250px;
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 0;
  background: #fff;
  border: 0;
  border-top: 3px solid #2e9bff;
  box-shadow: 0 12px 22px rgba(0,0,0,.16);
}
.mega-groups { padding: 18px 0; border-right: 1px solid #eee; }
.mega-tab { width: 100%; display: flex; justify-content: space-between; gap: 10px; padding: 15px 25px; color: #666; text-align: left; background: #fff; border: 0; cursor: pointer; }
.mega-tab.active, .mega-tab:hover { color: #333; background: #f6f6f6; }
.mega-links { display: none; padding: 20px; }
.mega-links.active { display: block; }
.dropdown-menu .mega-links a { padding: 12px 20px; color: #666; border-bottom: 1px solid #f1f1f1; border-radius: 0; font-size: 13px; }
.dropdown-menu .mega-links a:hover { color: #333; background: #f5f5f5; }

.hero.reference-hero {
  position: relative;
  min-height: 755px;
  overflow: hidden;
  display: block;
  color: #161616;
  background: #e7e4e0;
}
.reference-hero .hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/hero-banner.png") center center / cover no-repeat;
  filter: none;
}
.reference-hero::after { display: none; }
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1600px, 100%);
  min-height: 755px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(410px, 1fr);
  margin: 0 auto;
}
.hero-copy { align-self: center; padding: 70px 50px 70px max(70px, calc((100vw - 1580px) / 2 + 70px)); }
.hero-copy h1 {
  max-width: 830px;
  margin-bottom: 34px;
  padding-left: 24px;
  color: #222;
  border-left: 9px solid #ff7624;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(45px, 4.3vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.8px;
  text-transform: none;
}
.hero-copy h2 {
  margin-bottom: 22px;
  color: #050505;
  font-family: Inter, Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.hero-copy p {
  max-width: 800px;
  margin-bottom: 56px;
  color: #050505;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
.hero-cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  padding: 14px 28px;
  color: #fff;
  background: #ff7624;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: .2s;
}
.hero-cta:hover { background: #e65c0b; transform: translateY(-2px); }
.hero-services {
  min-height: 755px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 48px;
  color: #fff;
  background: rgba(37, 65, 104, .78);
}
.hero-services h2 {
  margin: 0 0 34px;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.6px;
  text-transform: none;
}
.hero-services a {
  min-height: 99px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: .2s;
}
.hero-services a:hover { padding-left: 8px; background: rgba(255,255,255,.08); }
.hero-services strong { font-family: Inter, Arial, sans-serif; font-size: 16px; line-height: 1.35; }
.rail-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid rgba(255,255,255,.9);
  font-family: Arial, sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}
.rail-diamond { border: 0; font-size: 58px; }

.trust-strip { background: #f37727; }
.solutions-overview { padding-top: 100px; }

.detailed-services { padding: 115px 0; background: #fff; }
.detailed-services .section-heading { margin-bottom: 70px; }
.detail-service {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 430px;
  margin-bottom: 36px;
  background: #f4f4f4;
  box-shadow: 0 18px 48px rgba(11,23,35,.09);
}
.detail-service.reverse { grid-template-columns: .92fr 1.08fr; }
.detail-service.reverse img { grid-column: 2; }
.detail-service.reverse > div { grid-column: 1; grid-row: 1; }
.detail-service img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.detail-service > div { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 52px; border-top: 5px solid #f37727; }
.detail-service > div > span { margin-bottom: 24px; color: #f37727; font-family: Inter, Arial, sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .18em; }
.detail-service h3 { margin-bottom: 20px; color: #202936; font-size: clamp(30px, 3vw, 46px); line-height: 1.04; text-transform: none; }
.detail-service p { margin-bottom: 28px; color: #616a72; font-size: 15px; }
.detail-service .button { align-self: flex-start; }

.brand-grid { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1260px) {
  .main-nav { gap: 13px; font-size: 12px; }
  .nav-dropdown-toggle, .nav-contact { font-size: 12px; }
  .hero-shell { grid-template-columns: minmax(0, 2fr) minmax(370px, 1fr); }
  .hero-services { padding: 50px 32px; }
}
@media (max-width: 1050px) {
  .topbar .container, .site-header .container { width: min(100% - 32px, 1380px); }
  .nav-contact { width: 100%; padding: 15px 2px; text-align: left; border-bottom: 1px solid var(--line); }
  .dropdown-menu.mega-menu { width: 100%; min-height: 0; display: none; grid-template-columns: 1fr; border-top: 0; box-shadow: none; }
  .nav-dropdown.open .dropdown-menu.mega-menu { display: grid; }
  .mega-groups { border-right: 0; border-bottom: 1px solid #ddd; }
  .mega-links { padding: 8px 0 8px 18px; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy { min-height: 620px; padding: 70px 7vw; }
  .hero-services { min-height: auto; display: grid; grid-template-columns: repeat(2,1fr); padding: 48px 7vw; }
  .hero-services h2 { grid-column: 1 / -1; }
  .hero-services a { min-height: 90px; padding-right: 20px; }
}
@media (max-width: 820px) {
  .reference-hero .hero-media { background-position: 42% center; }
  .detail-service, .detail-service.reverse { grid-template-columns: 1fr; }
  .detail-service.reverse img, .detail-service.reverse > div { grid-column: auto; grid-row: auto; }
  .detail-service > div { padding: 38px; }
  .brand-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .topbar-contact b, .topbar-contact b + * { display: none; }
  .hero-copy { min-height: 600px; padding: 65px 24px; background: rgba(255,255,255,.38); }
  .hero-copy h1 { padding-left: 16px; border-left-width: 6px; font-size: 44px; letter-spacing: -1.8px; }
  .hero-copy h2 { font-size: 17px; }
  .hero-copy p { font-size: 15px; }
  .hero-cta { width: 100%; justify-content: center; padding-inline: 16px; letter-spacing: .12em; text-align: center; }
  .hero-services { grid-template-columns: 1fr; padding: 40px 22px; }
  .hero-services h2 { grid-column: auto; }
  .detail-service > div { padding: 30px 24px 36px; }
  .detail-service img { min-height: 300px; }
}
.specialty-gallery { background: #eef0f2; }
.specialty-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.specialty-card { min-height: 250px; display: flex; flex-direction: column; padding: 0; overflow: hidden; color: #202936; text-align: left; background: #fff; border: 0; cursor: pointer; box-shadow: 0 10px 30px rgba(16,24,32,.08); transition: .25s; }
.specialty-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(16,24,32,.15); }
.specialty-card img { width: 100%; height: 195px; padding: 24px; object-fit: contain; background: #fff; }
.specialty-card span { display: flex; justify-content: space-between; gap: 18px; padding: 18px 20px; border-top: 1px solid #eee; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.specialty-card b { color: #f37727; }
.specialty-wide { grid-column: span 2; grid-row: span 2; }
.specialty-wide img { flex: 1; min-height: 460px; padding: 0; object-fit: cover; }
.specialty-photo { grid-column: span 2; }
.specialty-photo img { padding: 0; object-fit: cover; }
@media (max-width: 820px) {
  .specialty-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .specialty-grid { grid-template-columns: 1fr; }
  .specialty-wide, .specialty-photo { grid-column: auto; grid-row: auto; }
  .specialty-wide img { min-height: 270px; }
}

/* Correcciones finales de desbordamiento móvil */
html, body { max-width: 100%; overflow-x: hidden; }
.hero-shell, .hero-copy, .hero-services { min-width: 0; }
@media (max-width: 560px) {
  .header-inner { width: calc(100% - 28px) !important; }
  .menu-toggle { position: relative; z-index: 5; flex: 0 0 44px; margin-left: auto; }
  .hero-copy { width: 100%; min-height: 560px; padding: 52px 24px; overflow: hidden; }
  .hero-copy h1 { max-width: 100%; font-size: 39px; line-height: 1.08; overflow-wrap: anywhere; }
  .hero-copy h2 { max-width: 100%; font-size: 15px; line-height: 1.35; }
  .hero-copy p { max-width: 100%; margin-bottom: 38px; font-size: 14px; line-height: 1.65; }
  .hero-copy p br { display: none; }
  .hero-cta { max-width: 100%; min-height: 62px; padding: 14px 12px; font-size: 9px; line-height: 1.4; white-space: normal; }
}