:root {
  --ink: #101820;
  --navy: #09283d;
  --navy-2: #0e3852;
  --steel: #60717c;
  --muted: #667681;
  --line: #dbe1e5;
  --paper: #f4f5f5;
  --white: #ffffff;
  --orange: #f47b35;
  --orange-dark: #c85016;
  --yellow: #ffbf3f;
  --green: #25d366;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(6, 27, 42, .14);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.15;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.7rem, 5.3vw, 5.35rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.55rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
p { margin: 0 0 20px; color: var(--muted); }
.container { width: var(--container); margin-inline: auto; }
.container--narrow { max-width: 840px; }
.section { padding: 120px 0; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 9999; transform: translateY(-160%);
  padding: 10px 16px; border-radius: 6px; background: var(--white); color: var(--ink);
}
.skip-link:focus { transform: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  color: var(--orange-dark); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.eyebrow--light { color: #ffb27e; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px;
  padding: 14px 24px; border: 1px solid var(--orange); border-radius: 9px;
  color: var(--ink); background: var(--orange); font-weight: 800; line-height: 1; text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #ff8d4a; border-color: #ff8d4a; }
.button--small { min-height: 44px; padding: 12px 18px; font-size: .9rem; }
.button--ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.45); }
.button--ghost:hover { background: rgba(255,255,255,.09); border-color: var(--white); }
.button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { background: var(--navy); border-color: var(--navy); }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--navy); font-weight: 800; text-decoration: none; }
.text-link span { color: var(--orange); font-size: 1.3em; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.topbar { color: #ccdae3; background: #061d2c; font-size: .78rem; }
.topbar__inner { min-height: 37px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(16,24,32,.08); transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(7,28,42,.09); }
.site-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand__mark {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 11px;
  color: var(--white); background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  font-family: Inter, "Avenir Next", sans-serif; font-size: 1.5rem; font-weight: 800;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.08; }
.brand__text strong { max-width: 230px; overflow: hidden; font-family: Inter, "Avenir Next", sans-serif; font-size: 1.04rem; text-overflow: ellipsis; white-space: nowrap; }
.brand__text small { margin-top: 6px; color: var(--steel); font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.custom-logo-link { display: flex; }
.custom-logo { width: auto; max-height: 54px; }
.primary-nav { display: flex; align-items: center; gap: 25px; }
.primary-nav__list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.primary-nav__list a { position: relative; font-size: .92rem; font-weight: 700; text-decoration: none; }
.primary-nav__list a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav__list a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px 9px; border: 0; border-radius: 8px; background: var(--navy); }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 4px 0; background: var(--white); }

.hero { position: relative; overflow: hidden; padding: 96px 0 0; color: var(--white); background: var(--navy); }
.hero::before {
  position: absolute; inset: 0; content: ""; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero__backdrop { position: absolute; top: -20%; right: -12%; width: 65vw; height: 65vw; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero__backdrop::before, .hero__backdrop::after { position: absolute; inset: 10%; content: ""; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.hero__backdrop::after { inset: 24%; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.hero__content { padding-bottom: 65px; }
.hero__content h1 { max-width: 770px; margin-bottom: 26px; }
.hero__content > p { max-width: 650px; color: #c5d4dc; font-size: 1.08rem; }
.hero__actions { display: flex; gap: 13px; margin: 34px 0 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 15px 24px; color: #d5e0e6; font-size: .84rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--orange); font-style: normal; font-weight: 900; }
.hero__visual { position: relative; min-height: 550px; align-self: end; }
.hero-card { overflow: hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow); }
.hero-card--main { position: absolute; right: 0; bottom: 0; width: 88%; height: 510px; border-radius: 120px 20px 0 0; background: #d9dee1; }
.hero-card--main::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(6,27,42,.28), transparent 45%); }
.hero-card--main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--abrasive { position: absolute; z-index: 2; top: 54px; left: -35px; width: 225px; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); }
.hero-card--abrasive img { width: 100%; height: 120px; object-fit: contain; }
.hero-card--abrasive div { display: flex; flex-direction: column; padding: 8px 4px 3px; color: var(--ink); }
.hero-card--abrasive span { color: var(--muted); font-size: .78rem; }
.hero-badge { position: absolute; z-index: 3; right: -20px; bottom: 48px; width: 150px; height: 150px; display: grid; align-content: center; padding: 20px; border-radius: 50%; color: var(--ink); background: var(--orange); text-align: center; box-shadow: 0 18px 42px rgba(0,0,0,.25); }
.hero-badge strong { font-family: Inter, "Avenir Next", sans-serif; font-size: 1.15rem; }
.hero-badge span { font-size: .75rem; line-height: 1.3; }
.hero-stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.hero-stats > div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,.16); }
.hero-stats > div:first-child { border-left: 1px solid rgba(255,255,255,.16); }
.hero-stats strong { font-family: Inter, "Avenir Next", sans-serif; font-size: 1.6rem; }
.hero-stats span { color: #9fb4c0; font-size: .77rem; }

.intro { overflow: hidden; background: var(--white); }
.intro__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: center; }
.intro__content p { max-width: 600px; }
.intro__visual { position: relative; min-height: 580px; }
.steel-panel { position: absolute; top: 0; right: 0; width: 84%; height: 540px; overflow: hidden; border-radius: 20px 120px 20px 20px; background: #dfe3e5; box-shadow: var(--shadow); }
.steel-panel img { width: 100%; height: 100%; object-fit: cover; }
.feature-card { position: absolute; bottom: 0; left: 0; width: 290px; padding: 28px; border-radius: 18px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.feature-card__icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 10px; color: var(--ink); background: var(--orange); font-weight: 900; }
.feature-card strong { display: block; margin-bottom: 7px; font-family: Inter, "Avenir Next", sans-serif; font-size: 1.15rem; }
.feature-card p { margin: 0; color: #bad0dc; font-size: .87rem; }
.logo-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); }
.logo-strip .container { min-height: 110px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: 20px; }
.logo-strip span { color: #71808a; font-size: .77rem; font-weight: 800; letter-spacing: .09em; text-align: center; text-transform: uppercase; }

.products { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 470px; margin-bottom: 5px; }
.section-heading--center { display: block; max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card { position: relative; overflow: hidden; min-height: 650px; display: flex; flex-direction: column; border-radius: var(--radius); }
.product-card--orange { color: var(--ink); background: var(--orange); }
.product-card--blue { color: var(--white); background: var(--navy-2); }
.product-card--steel { grid-column: span 2; min-height: 540px; display: grid; grid-template-columns: 1.05fr .95fr; color: var(--ink); background: #cfd6da; }
.product-card__number { position: absolute; z-index: 2; top: 22px; right: 24px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .78rem; font-weight: 900; opacity: .7; }
.product-card__image { height: 290px; overflow: hidden; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__image--art { display: grid; place-items: center; padding: 30px; background: rgba(255,255,255,.12); }
.product-card__image--art img { object-fit: contain; }
.product-card__image--roll { background: rgba(0,0,0,.14); }
.product-card--steel .product-card__image { height: 100%; min-height: 540px; }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 34px; }
.product-card__body > span { margin-bottom: 8px; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; opacity: .7; }
.product-card__body h3 { font-size: clamp(1.8rem, 3vw, 2.65rem); }
.product-card__body p { color: inherit; opacity: .76; }
.product-card__body ul { display: grid; gap: 8px; margin: 0 0 30px; padding: 0; list-style: none; }
.product-card__body li { position: relative; padding-left: 24px; font-size: .9rem; }
.product-card__body li::before { position: absolute; left: 0; content: "✓"; font-weight: 900; }
.product-card__body .button { align-self: flex-start; margin-top: auto; }

.capabilities { color: var(--white); background: #071e2d; }
.capabilities__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.capabilities__media { position: relative; min-height: 620px; }
.capabilities__image { position: absolute; inset: 0 45px 0 0; overflow: hidden; border-radius: 100px 20px 20px; }
.capabilities__image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(7,30,45,.48), transparent 60%); }
.capabilities__image img { width: 100%; height: 100%; object-fit: cover; }
.capabilities__stamp { position: absolute; right: 0; bottom: 45px; width: 170px; height: 170px; display: grid; place-content: center; border: 10px solid #071e2d; border-radius: 50%; color: var(--ink); background: var(--orange); text-align: center; }
.capabilities__stamp strong { font-family: Inter, "Avenir Next", sans-serif; font-size: 2rem; line-height: 1; }
.capabilities__stamp span { font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.capabilities__content > p { color: #a9bec9; }
.capability-list { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.14); }
.capability-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: center; min-height: 74px; border-bottom: 1px solid rgba(255,255,255,.14); }
.capability-list span { color: var(--orange); font-size: .76rem; font-weight: 900; }
.capability-list strong { font-size: .98rem; }

.specification { background: var(--white); }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 65px; background: var(--line); border: 1px solid var(--line); }
.spec-card { min-height: 245px; padding: 34px 27px; background: var(--white); }
.spec-card > span { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 10px; color: var(--white); background: var(--navy); font-size: .75rem; font-weight: 900; }
.spec-card strong { display: block; margin-bottom: 10px; font-family: Inter, "Avenir Next", sans-serif; font-size: 1.1rem; }
.spec-card p { margin: 0; font-size: .86rem; }

.process { color: var(--white); background: var(--navy-2); }
.process__heading { max-width: 770px; margin-bottom: 55px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { min-height: 260px; padding: 29px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.035); }
.process-card > strong { display: block; margin-bottom: 48px; color: var(--orange); font-size: .85rem; }
.process-card h3 { font-size: 1.2rem; }
.process-card p { margin: 0; color: #b2c4ce; font-size: .87rem; }

.insights { background: var(--paper); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { overflow: hidden; border-radius: 17px; background: var(--white); box-shadow: 0 12px 35px rgba(6,27,42,.07); }
.insight-card__image { height: 220px; display: grid; place-items: center; overflow: hidden; color: rgba(255,255,255,.85); background: linear-gradient(145deg, var(--navy-2), var(--steel)); font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.insight-card__image img { width: 100%; height: 100%; object-fit: cover; }
.insight-card__body { padding: 28px; }
.insight-card__body time { display: block; margin-bottom: 12px; color: var(--orange-dark); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.insight-card__body h3 { font-size: 1.25rem; }
.insight-card__body h3 a { text-decoration: none; }
.insight-card__body p { font-size: .88rem; }

.cta-section { padding: 90px 0; color: var(--white); background: linear-gradient(115deg, rgba(6,29,44,.98), rgba(14,56,82,.92)), url('../images/cylinder-liner.webp') center/cover; }
.cta-section__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.cta-section__inner h2 { max-width: 720px; }
.cta-section__inner p { max-width: 620px; color: #b8cbd5; }
.cta-section__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.cta-section__actions small { width: 100%; color: #9fb5c1; text-align: right; }

.site-footer { padding: 80px 0 24px; color: #d2dce2; background: #051722; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .9fr; gap: 80px; padding-bottom: 60px; }
.brand--footer { color: var(--white); }
.footer-brand p { max-width: 430px; margin-top: 24px; color: #8ea5b2; font-size: .88rem; }
.footer-title { margin-bottom: 22px; color: var(--white); font-size: .9rem; letter-spacing: .04em; }
.footer-links, .footer-contact { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #91a8b5; font-size: .88rem; }
.footer-links a, .footer-contact a { text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #758e9b; font-size: .75rem; }
.whatsapp-float { position: fixed; z-index: 999; right: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 9px; padding: 10px 15px 10px 10px; border-radius: 999px; color: var(--white); background: var(--green); font-size: .8rem; font-weight: 800; text-decoration: none; box-shadow: 0 12px 34px rgba(0,0,0,.24); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }

.content-area { min-height: 70vh; padding: 100px 0; background: var(--paper); }
.elementor-landing { width: 100%; min-height: 60vh; overflow: clip; }
.elementor-landing .elementor { width: 100%; }
.ib2b-elementor-home .elementor-landing p { color: inherit; }
.ib2b-elementor-home .elementor-landing h1,
.ib2b-elementor-home .elementor-landing h2,
.ib2b-elementor-home .elementor-landing h3,
.ib2b-elementor-home .elementor-landing h4,
.ib2b-elementor-home .elementor-landing h5,
.ib2b-elementor-home .elementor-landing h6 { margin-top: 0; }
.archive-header { max-width: 760px; margin-bottom: 55px; }
.post-list { display: grid; gap: 28px; }
.post-card { display: grid; grid-template-columns: 330px 1fr; gap: 35px; padding: 24px; border-radius: 18px; background: var(--white); }
.post-card__image { overflow: hidden; border-radius: 12px; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.post-card time, .entry-header time { color: var(--orange-dark); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.post-card h2 { margin-top: 8px; font-size: 1.7rem; }
.post-card h2 a { text-decoration: none; }
.entry-content { padding: 55px; border-radius: 20px; background: var(--white); }
.entry-header { margin-bottom: 45px; }
.entry-featured { margin: 0 0 40px; overflow: hidden; border-radius: 16px; }
.entry-content h2, .entry-content h3 { margin-top: 42px; }
.entry-content a { color: var(--orange-dark); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .section { padding: 95px 0; }
  .primary-nav__list { gap: 18px; }
  .primary-nav { gap: 18px; }
  .hero__grid { gap: 35px; }
  .hero__visual { min-height: 500px; }
  .hero-card--abrasive { left: -10px; width: 190px; }
  .hero-badge { right: 0; }
  .intro__grid, .capabilities__grid { gap: 55px; }
  .process-card { padding: 22px; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 32px, 760px); }
  .topbar__inner span:first-child { display: none; }
  .topbar__inner { justify-content: center; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed; top: 119px; right: 0; bottom: 0; left: 0; display: flex; visibility: hidden;
    flex-direction: column; align-items: stretch; gap: 28px; padding: 35px 24px; opacity: 0;
    background: var(--white); transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .primary-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav__list li { border-bottom: 1px solid var(--line); }
  .primary-nav__list a { display: block; padding: 17px 0; font-size: 1.05rem; }
  .primary-nav .button { align-self: stretch; }
  .hero { padding-top: 72px; }
  .hero__grid, .intro__grid, .capabilities__grid, .cta-section__inner { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 20px; }
  .hero__visual { width: min(100%, 600px); margin-inline: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.16); }
  .intro__grid { gap: 65px; }
  .logo-strip .container { grid-template-columns: repeat(3, 1fr); padding-block: 28px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .product-card--steel { grid-template-columns: 1fr; }
  .product-card--steel .product-card__image { min-height: 360px; height: 360px; }
  .capabilities__media { min-height: 540px; }
  .spec-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { display: grid; grid-template-columns: 260px 1fr; }
  .insight-card__image { height: 100%; min-height: 260px; }
  .cta-section__actions { justify-content: flex-start; }
  .cta-section__actions small { text-align: left; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:last-child { grid-column: span 2; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 560px); --radius: 18px; }
  body { font-size: 15px; }
  .section { padding: 76px 0; }
  .topbar { font-size: .69rem; }
  .site-header__inner { min-height: 72px; }
  .primary-nav { top: 109px; }
  .brand__mark { width: 41px; height: 41px; }
  .brand__text strong { max-width: 180px; font-size: .9rem; }
  .hero { padding-top: 58px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__trust { display: grid; gap: 10px; }
  .hero__visual { min-height: 420px; }
  .hero-card--main { width: 92%; height: 400px; border-radius: 70px 16px 0 0; }
  .hero-card--abrasive { top: 30px; left: 0; width: 150px; padding: 10px; }
  .hero-card--abrasive img { height: 82px; }
  .hero-card--abrasive strong { font-size: .76rem; }
  .hero-card--abrasive span { font-size: .65rem; }
  .hero-badge { right: -5px; bottom: 22px; width: 115px; height: 115px; border-width: 6px; }
  .hero-badge strong { font-size: .9rem; }
  .hero-stats > div { min-height: 100px; padding: 17px; }
  .hero-stats strong { font-size: 1.2rem; }
  .hero-stats span { line-height: 1.35; }
  .intro__visual { min-height: 460px; }
  .steel-panel { width: 94%; height: 410px; border-radius: 16px 70px 16px 16px; }
  .feature-card { width: 245px; padding: 22px; }
  .logo-strip .container { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card--steel { grid-column: auto; }
  .product-card { min-height: 0; }
  .product-card__image { height: 240px; }
  .product-card__body { padding: 27px; }
  .capabilities__media { min-height: 440px; }
  .capabilities__image { right: 22px; border-radius: 70px 15px 15px; }
  .capabilities__stamp { bottom: 25px; width: 125px; height: 125px; border-width: 7px; }
  .capabilities__stamp strong { font-size: 1.5rem; }
  .spec-grid, .process-grid { grid-template-columns: 1fr; }
  .spec-card { min-height: 210px; }
  .process-card { min-height: 220px; }
  .insight-card { display: block; }
  .insight-card__image { height: 200px; min-height: 0; }
  .cta-section__actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; gap: 6px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 10px; }
  .entry-content { padding: 28px 22px; }
  .post-card { grid-template-columns: 1fr; }
  .post-card__image { height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
