@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --orange: #eb6b1d;
  --orange-dark: #c9520e;
  --orange-soft: #fff3ea;
  --graphite: #1c1a17;
  --charcoal: #11100f;
  --warm-gray: #6d665f;
  --border: #ece7e1;
  --offwhite: #faf8f5;
  --white: #ffffff;
  --green: #168c52;
  --shadow-sm: 0 10px 30px rgba(17, 16, 15, .08);
  --shadow-lg: 0 24px 70px rgba(17, 16, 15, .18);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 32px));
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--graphite);
  background: var(--white);
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 88px 0; }
.section--soft { background: var(--offwhite); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-label::before { content: ''; width: 36px; height: 3px; border-radius: 99px; background: var(--orange); }
.section-title {
  margin: 10px 0 14px;
  max-width: 830px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.07;
  letter-spacing: -.045em;
  font-weight: 900;
}
.section-title em { color: var(--orange); font-style: normal; }
.section-copy { max-width: 760px; margin: 0; color: var(--warm-gray); font-size: 1.03rem; }
.section-heading--center { text-align: center; margin-inline: auto; }
.section-heading--center .section-title, .section-heading--center .section-copy { margin-inline: auto; }
.section-heading--center .section-label::before { display: none; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 9999; padding: 10px 16px;
  color: var(--white); background: var(--charcoal); border-radius: 8px; transition: .2s;
}
.skip-link:focus { top: 12px; }

.topbar { background: var(--charcoal); color: #beb8b0; font-size: .78rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.socials { display: flex; align-items: center; gap: 8px; }
.social-link {
  width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; color: var(--white); font-size: .65rem; font-weight: 800; transition: .2s ease;
}
.social-link:hover, .social-link:focus-visible { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

.site-header {
  position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236,231,225,.9);
}
.site-header__inner { min-height: var(--header-height); display: grid; grid-template-columns: 265px 1fr 215px; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; }
.logo img { width: 250px; max-height: 74px; object-fit: contain; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2vw, 30px); }
.main-nav a { position: relative; padding: 14px 0; font-size: .86rem; font-weight: 700; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 7px; height: 3px; border-radius: 3px; background: var(--orange); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after, .main-nav a:focus-visible::after { right: 0; }
.header-contact { display: flex; align-items: center; gap: 11px; justify-self: end; }
.header-contact__icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 1.1rem; font-weight: 900; }
.header-contact small { display: block; color: var(--warm-gray); font-weight: 600; }
.header-contact strong { display: block; font-size: .82rem; line-height: 1.35; white-space: nowrap; }

.mobile-header {
  position: sticky; top: 0; z-index: 90; display: none; min-height: 76px; background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(17,16,15,.06);
}
.mobile-header__inner { width: min(100% - 24px, 1180px); min-height: 76px; margin: auto; display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; }
.mobile-header__logo { justify-self: center; }
.mobile-header__logo img { width: 210px; max-height: 62px; object-fit: contain; }
.menu-toggle { width: 58px; padding: 8px 5px; border: 0; background: transparent; color: var(--graphite); font-size: .64rem; font-weight: 800; letter-spacing: .12em; }
.menu-toggle span { display: block; width: 28px; height: 2px; margin: 5px auto; background: currentColor; transition: .25s; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 85; padding: 28px 24px 90px; background: rgba(17,16,15,.98);
  color: white; transform: translateX(-105%); transition: transform .3s ease; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: grid; gap: 4px; max-width: 560px; margin: 0 auto; }
.mobile-menu nav a { padding: 16px 6px; border-bottom: 1px solid #2c2926; font-weight: 700; font-size: 1.08rem; }
.mobile-menu__contact { max-width: 560px; margin: 28px auto 0; padding: 22px; background: #201e1b; border-radius: 16px; color: #beb8b0; }
.mobile-menu__contact strong { display: block; margin-bottom: 8px; color: white; }

.hero {
  position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; color: white;
  background: var(--charcoal) url('../assets/images/placeholders/hero-industrial-warehouse.png') center/cover no-repeat fixed;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,16,15,.95) 0%, rgba(17,16,15,.86) 42%, rgba(17,16,15,.26) 78%, rgba(17,16,15,.42) 100%); }
.hero__inner { position: relative; z-index: 2; min-height: 720px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); align-items: center; gap: 32px; padding: 90px 0 118px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #f0be98; font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero__eyebrow::before { content: ''; width: 42px; height: 3px; background: var(--orange); border-radius: 99px; }
.hero h1 { margin: 0 0 22px; max-width: 790px; font-size: clamp(2.8rem, 6.3vw, 6rem); line-height: .99; letter-spacing: -.06em; font-weight: 900; }
.hero h1 span { color: var(--orange); }
.hero p { max-width: 650px; margin: 0 0 34px; color: #ded9d3; font-size: clamp(1rem, 1.7vw, 1.16rem); }
.hero__product { align-self: end; margin-bottom: 20px; filter: drop-shadow(0 28px 30px rgba(0,0,0,.4)); }
.hero__product img { width: 100%; max-height: 520px; object-fit: contain; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 12px 18px 12px 24px;
  border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: .2s ease;
}
.btn__arrow { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--orange); font-size: 1.15rem; }
.btn--primary { background: var(--orange); color: white; }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(235,107,29,.28); }
.btn--dark { background: var(--charcoal); color: white; }
.btn--outline { border-color: var(--border); background: white; color: var(--graphite); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--whatsapp { background: var(--green); color: white; }

.highlight-strip { position: relative; z-index: 5; margin-top: -70px; }
.highlight-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.highlight-item { display: flex; align-items: center; gap: 16px; min-height: 138px; padding: 26px 30px; border-right: 1px solid var(--border); }
.highlight-item:last-child { border-right: 0; }
.highlight-item__icon { flex: 0 0 56px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-size: 1.55rem; font-weight: 900; }
.highlight-item small { display: block; color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.highlight-item strong { display: block; margin-top: 3px; font-size: 1rem; line-height: 1.35; }

.areas-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 52px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-sm); }
.area-card { position: relative; min-height: 410px; overflow: hidden; isolation: isolate; }
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.area-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 20%, rgba(17,16,15,.1) 48%, rgba(17,16,15,.95) 100%); }
.area-card__content { position: absolute; inset: auto 22px 24px; z-index: 2; color: white; }
.area-card__content small { color: #f0be98; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.area-card__content h3 { margin: 6px 0 12px; font-size: 1.18rem; line-height: 1.25; }
.area-card__link { display: inline-flex; gap: 8px; align-items: center; color: white; font-size: .77rem; font-weight: 700; }
.area-card:hover img { transform: scale(1.07); }
.areas-cta { margin-top: 34px; text-align: center; }
.areas-cta .btn img { width: 32px; height: 32px; object-fit: contain; }

.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.reason-card { min-height: 280px; padding: 30px 26px; background: white; border: 1px solid var(--border); border-radius: var(--radius); transition: .22s ease; }
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: #f0be98; }
.reason-card__icon { width: 76px; height: 76px; display: grid; place-items: center; margin-bottom: 24px; border: 1px dashed #f0be98; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-size: 1.8rem; font-weight: 900; }
.reason-card__icon img { width: 48px; height: 48px; object-fit: contain; }
.reason-card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.reason-card p { margin: 0; color: var(--warm-gray); font-size: .9rem; }

.services-section { overflow: hidden; }
.services-shell { position: relative; margin-top: 46px; padding: 38px; background: var(--charcoal); border-radius: var(--radius-lg); }
.services-track-viewport { overflow: hidden; }
.services-track { display: flex; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.service-slide { flex: 0 0 100%; padding: 0 10px; }
.service-card { height: 100%; overflow: hidden; background: white; border-radius: 20px; }
.service-card__image { position: relative; height: 225px; background: #2c2926; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; }
.service-card__icon { position: absolute; left: 24px; bottom: -28px; width: 58px; height: 58px; display: grid; place-items: center; border: 5px solid white; border-radius: 50%; background: var(--orange); color: white; font-weight: 900; }
.service-card__body { min-height: 280px; display: flex; flex-direction: column; padding: 46px 25px 26px; }
.service-card__body h3 { margin: 0 0 12px; font-size: 1.1rem; line-height: 1.35; }
.service-card__body p { margin: 0 0 24px; color: var(--warm-gray); font-size: .88rem; }
.service-card__body .btn { margin-top: auto; align-self: flex-start; min-height: 46px; padding: 9px 14px 9px 19px; font-size: .82rem; }
.carousel-btn { position: absolute; top: 50%; z-index: 5; width: 46px; height: 46px; border: 0; border-radius: 10px; background: var(--orange); color: white; font-size: 1.3rem; transform: translateY(-50%); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.carousel-btn--prev { left: 14px; }
.carousel-btn--next { right: 14px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dot { width: 9px; height: 9px; border: 0; border-radius: 99px; background: #625d57; padding: 0; transition: .2s; }
.carousel-dot.active { width: 28px; background: var(--orange); }

.video-wrap { display: grid; grid-template-columns: 1fr minmax(280px, 440px); gap: 70px; align-items: center; }
.video-frame { position: relative; width: min(100%, 420px); aspect-ratio: 9/16; justify-self: center; overflow: hidden; background: var(--charcoal); border-radius: 28px; box-shadow: var(--shadow-lg); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-points { display: grid; gap: 18px; margin-top: 30px; }
.video-point { display: flex; gap: 14px; align-items: flex-start; }
.video-point__mark { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-weight: 900; }
.video-point strong { display: block; }
.video-point span { color: var(--warm-gray); font-size: .9rem; }

.about-grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: 78px; align-items: center; }
.about-collage { position: relative; min-height: 670px; }
.about-dots { position: absolute; top: 0; left: 0; width: 180px; height: 180px; opacity: .6; background-image: radial-gradient(var(--orange) 2px, transparent 2px); background-size: 18px 18px; }
.about-main { position: absolute; top: 48px; right: 0; width: 84%; height: 430px; overflow: hidden; border-radius: 8px 32px 8px 8px; box-shadow: var(--shadow-lg); }
.about-main img { width: 100%; height: 100%; object-fit: cover; }
.about-secondary { position: absolute; left: 6%; bottom: 0; width: 48%; height: 355px; overflow: hidden; border: 10px solid white; border-radius: 8px 8px 8px 30px; box-shadow: var(--shadow-lg); }
.about-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: var(--warm-gray); font-size: .95rem; }
.about-copy .brand-line { color: var(--orange); font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.distribution { margin-top: 76px; display: grid; grid-template-columns: minmax(260px,.8fr) 1.2fr; gap: 64px; align-items: center; padding: 44px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.distribution img { max-height: 420px; margin: auto; object-fit: contain; }
.distribution h3 { margin: 0 0 16px; font-size: clamp(1.8rem,4vw,3rem); line-height: 1.1; }
.distribution p { color: var(--warm-gray); }

.clients-section { padding: 54px 0; background: white; border-block: 1px solid var(--border); overflow: hidden; }
.clients-label { margin-bottom: 28px; text-align: center; font-weight: 800; color: var(--warm-gray); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.clients-marquee { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.clients-marquee:hover { animation-play-state: paused; }
.clients-set { display: flex; align-items: center; }
.client-logo { width: 220px; height: 88px; padding: 18px 34px; display: grid; place-items: center; }
.client-logo img { max-width: 100%; max-height: 55px; object-fit: contain; filter: grayscale(1); opacity: .66; transition: .2s; }
.client-logo:hover img { filter: none; opacity: 1; transform: scale(1.04); }
@keyframes marquee { to { transform: translateX(-50%); } }

.site-footer { background: var(--charcoal); color: #beb8b0; }
.footer-main { padding: 74px 0 48px; display: grid; grid-template-columns: 1.5fr .7fr 1.15fr; gap: 60px; }
.footer-logo { width: min(100%, 310px); padding: 10px; background: white; border-radius: 12px; }
.footer-brand p { max-width: 430px; font-size: .9rem; }
.footer-socials { margin-top: 22px; }
.footer-title { margin: 0 0 20px; color: white; font-size: 1rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: .9rem; transition: .2s; }
.footer-links a:hover { color: var(--orange); transform: translateX(3px); }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: grid; grid-template-columns: 36px 1fr; gap: 11px; align-items: start; font-size: .85rem; }
.contact-item__icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #2c2926; color: var(--orange); font-size: .78rem; font-weight: 900; }
.footer-bottom { padding: 22px 0; border-top: 1px solid #2c2926; color: #918c86; text-align: center; font-size: .78rem; }

.floating-btn { position: fixed; z-index: 75; bottom: 20px; width: 54px; height: 54px; display: grid; place-items: center; border: 0; border-radius: 50%; box-shadow: 0 12px 28px rgba(17,16,15,.26); font-weight: 900; transition: .2s; }
.floating-btn:hover { transform: translateY(-4px); }
.back-to-top { left: 20px; background: var(--charcoal); color: white; opacity: 0; pointer-events: none; transform: translateY(12px); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-float { right: 20px; background: var(--green); color: white; font-size: .73rem; }

/* Internal pages */
.internal-hero { padding: 86px 0 54px; background: var(--offwhite); border-bottom: 1px solid var(--border); }
.internal-hero h1 { margin: 8px 0 12px; font-size: clamp(2.5rem,7vw,5.2rem); line-height: 1; letter-spacing: -.05em; }
.internal-hero p { max-width: 760px; margin: 0; color: var(--warm-gray); }
.breadcrumbs { color: var(--orange); font-size: .78rem; font-weight: 700; }

.catalog-toolbar { position: sticky; top: 76px; z-index: 20; padding: 22px 0; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.catalog-search { position: relative; }
.catalog-search input { width: 100%; min-height: 54px; padding: 14px 20px 14px 50px; border: 1px solid var(--border); border-radius: 999px; outline: none; background: white; }
.catalog-search input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(235,107,29,.1); }
.catalog-search::before { content: '⌕'; position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--orange); font-size: 1.4rem; }
.catalog-toggle { display: inline-grid; grid-template-columns: 1fr 1fr; margin-top: 16px; padding: 4px; border-radius: 999px; background: var(--offwhite); border: 1px solid var(--border); }
.catalog-toggle button { min-height: 42px; padding: 8px 18px; border: 0; border-radius: 999px; background: transparent; color: var(--warm-gray); font-weight: 700; }
.catalog-toggle button.active { background: var(--charcoal); color: white; }
.filter-chips { display: flex; gap: 10px; margin-top: 18px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; }
.filter-chip { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 7px 15px; border: 1px solid var(--border); border-radius: 999px; background: white; color: var(--graphite); font-size: .77rem; font-weight: 700; }
.filter-chip img { width: 27px; height: 27px; object-fit: contain; }
.filter-chip.active, .filter-chip:hover { border-color: var(--orange); background: var(--orange-soft); color: var(--orange-dark); }
.catalog-status { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin: 34px 0 20px; color: var(--warm-gray); font-size: .9rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-card { display: flex; flex-direction: column; min-height: 225px; padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: 0 6px 24px rgba(17,16,15,.04); }
.catalog-card__line { color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.catalog-card h2 { margin: 10px 0 18px; font-size: 1.03rem; line-height: 1.42; }
.catalog-card .btn { margin-top: auto; align-self: flex-start; min-height: 44px; padding: 8px 14px 8px 18px; font-size: .77rem; }
.catalog-empty { padding: 60px 20px; text-align: center; border: 1px dashed #d8d0c8; border-radius: 18px; color: var(--warm-gray); grid-column: 1/-1; }

.service-detail-layout { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.5fr); gap: 54px; align-items: start; }
.service-form-card { position: sticky; top: 100px; padding: 28px; border-radius: 22px; background: var(--charcoal); color: white; box-shadow: var(--shadow-lg); }
.service-form-card h2 { margin: 0 0 8px; font-size: 1.45rem; }
.service-form-card > p { margin: 0 0 22px; color: #beb8b0; font-size: .88rem; }
.form-group { display: grid; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: .77rem; font-weight: 700; }
.form-group input, .form-group textarea { width: 100%; border: 1px solid #3b3732; border-radius: 10px; background: #201e1b; color: white; outline: none; padding: 12px 13px; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(235,107,29,.14); }
.form-status { min-height: 22px; margin: 12px 0 0; font-size: .82rem; }
.service-content { min-width: 0; }
.service-cover { height: 430px; overflow: hidden; border-radius: 24px; background: #2c2926; box-shadow: var(--shadow-sm); }
.service-cover img { width: 100%; height: 100%; object-fit: cover; }
.content-block { margin-top: 40px; }
.content-block h2 { margin: 0 0 14px; font-size: clamp(1.7rem,4vw,2.65rem); line-height: 1.12; }
.content-block h3 { margin: 28px 0 10px; font-size: 1.25rem; }
.content-block p, .content-block li { color: var(--warm-gray); }
.content-block ul { padding-left: 22px; }
.content-block strong { color: var(--graphite); }
.content-badge { display: inline-block; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-size: .73rem; font-weight: 800; }
.content-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.content-gallery img { width: 100%; height: 290px; object-fit: cover; border-radius: 16px; }
.content-gallery img:nth-child(3n) { grid-column: span 2; }
.table-wrap { overflow-x: auto; margin: 22px 0; border: 1px solid var(--border); border-radius: 14px; }
.content-table { width: 100%; border-collapse: collapse; min-width: 660px; font-size: .82rem; }
.content-table th { background: var(--charcoal); color: white; text-align: left; }
.content-table th, .content-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.content-table tr:last-child td { border-bottom: 0; }
.pending-block { padding: 38px; border: 2px dashed #d8d0c8; border-radius: 20px; background: var(--offwhite); text-align: center; }
.pending-block strong { color: var(--orange); }

.blog-placeholder { max-width: 800px; margin: 0 auto; padding: 70px 32px; border: 2px dashed var(--border); border-radius: 24px; text-align: center; background: var(--offwhite); }

@media (min-width: 760px) {
  .service-slide { flex-basis: 50%; }
}
@media (min-width: 1080px) {
  .service-slide { flex-basis: 33.3333%; }
}
@media (max-width: 1120px) {
  .site-header__inner { grid-template-columns: 220px 1fr 175px; gap: 15px; }
  .logo img { width: 210px; }
  .main-nav { gap: 15px; }
  .header-contact strong { font-size: .72rem; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .area-card:nth-child(4), .area-card:nth-child(5) { min-height: 340px; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  :root { --container: min(100% - 28px, 1180px); }
  .topbar, .site-header { display: none; }
  .mobile-header { display: block; }
  .hero { min-height: auto; background-attachment: scroll; }
  .hero__inner { min-height: 740px; grid-template-columns: 1fr; padding: 84px 0 130px; }
  .hero__product { position: absolute; right: -8%; bottom: 38px; width: 52%; opacity: .72; }
  .hero__copy { position: relative; z-index: 2; }
  .highlight-strip { margin-top: -55px; }
  .highlight-strip__grid { grid-template-columns: 1fr; }
  .highlight-item { min-height: 105px; border-right: 0; border-bottom: 1px solid var(--border); }
  .highlight-item:last-child { border-bottom: 0; }
  .about-grid, .video-wrap, .distribution, .service-detail-layout { grid-template-columns: 1fr; }
  .about-collage { min-height: 610px; }
  .video-wrap { gap: 42px; }
  .video-frame { order: 2; }
  .service-form-card { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .section { padding: 68px 0; }
  .hero__inner { min-height: 700px; }
  .hero h1 { font-size: clamp(2.7rem, 15vw, 4.3rem); }
  .hero__product { width: 68%; right: -22%; bottom: 50px; }
  .areas-grid { grid-template-columns: 1fr; border-radius: 18px; }
  .area-card { min-height: 330px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .services-shell { padding: 24px 16px 28px; border-radius: 22px; }
  .carousel-btn { top: auto; bottom: 16px; transform: none; width: 40px; height: 40px; }
  .carousel-btn--prev { left: 18px; }
  .carousel-btn--next { right: 18px; }
  .carousel-dots { padding-inline: 45px; }
  .about-collage { min-height: 500px; }
  .about-main { width: 90%; height: 330px; }
  .about-secondary { width: 56%; height: 280px; }
  .distribution { padding: 26px; gap: 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-toggle { width: 100%; }
  .catalog-toggle button { padding-inline: 8px; font-size: .75rem; }
  .content-gallery { grid-template-columns: 1fr; }
  .content-gallery img, .content-gallery img:nth-child(3n) { grid-column: auto; height: 240px; }
  .service-cover { height: 310px; }
  .mobile-header__logo img { width: 180px; }
}
@media (max-width: 460px) {
  .topbar__inner { font-size: .68rem; }
  .hero__product { display: none; }
  .highlight-item { padding: 22px; }
  .section-title { font-size: 2.15rem; }
  .catalog-status { align-items: flex-start; flex-direction: column; gap: 5px; }
  .client-logo { width: 180px; padding-inline: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .clients-marquee { animation: none; }
}
.internal-page .mobile-header { display: block; }
.internal-page .mobile-menu { top: 76px; }
