: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-x: clip;
  overflow-y: visible;
}
.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; }

/* Elementor-native landing page (template v1.2). */
.elementor-landing .ib2b-e-section { padding: 105px 20px; }
.elementor-landing .ib2b-e-section > .elementor-container { max-width: 1180px; }
.elementor-landing .ib2b-e-section .elementor-widget { margin-bottom: 0; }
.elementor-landing .ib2b-e-title .elementor-heading-title { color: var(--ink); font-size: clamp(2rem, 3.8vw, 3.55rem); line-height: 1.15; letter-spacing: -.035em; }
.elementor-landing .ib2b-e-title-light .elementor-heading-title { color: var(--white); }
.elementor-landing .ib2b-e-copy { margin-top: 22px; }
.elementor-landing .ib2b-e-copy p { margin-bottom: 17px; color: var(--muted); }
.elementor-landing .ib2b-e-copy-light p { color: #b8cbd5; }
.elementor-landing .ib2b-e-eyebrow { margin-bottom: 17px; }
.elementor-landing .ib2b-e-eyebrow .elementor-heading-title { display: flex; align-items: center; gap: 10px; color: var(--orange-dark); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.elementor-landing .ib2b-e-eyebrow .elementor-heading-title::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.elementor-landing .ib2b-e-eyebrow-light .elementor-heading-title { color: #ffb27e; }
.elementor-landing .ib2b-e-center { text-align: center; }
.elementor-landing .ib2b-e-center .elementor-heading-title { justify-content: center; }
.elementor-landing .ib2b-e-btn { margin-top: 18px; }
.elementor-landing .ib2b-e-btn .elementor-button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border: 1px solid var(--orange); border-radius: 9px; color: var(--ink); background: var(--orange); font-weight: 800; text-decoration: none; }
.elementor-landing .ib2b-e-btn-ghost .elementor-button { color: var(--white); background: transparent; border-color: rgba(255,255,255,.45); }
.elementor-landing .ib2b-e-btn-dark .elementor-button { color: var(--white); background: var(--ink); border-color: var(--ink); }
.elementor-landing .ib2b-e-link-btn { margin-top: 8px; }
.elementor-landing .ib2b-e-link-btn .elementor-button { padding: 0; color: var(--navy); background: transparent; font-weight: 800; }

.elementor-landing .ib2b-e-hero { overflow: hidden; padding-top: 92px; padding-bottom: 0; color: var(--white); background: var(--navy); }
.elementor-landing .ib2b-e-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; }
.elementor-landing .ib2b-e-hero > .elementor-container { position: relative; gap: 55px; align-items: center; }
.elementor-landing .ib2b-e-hero-content > .elementor-widget-wrap { align-content: center; padding: 0 0 62px; }
.elementor-landing .ib2b-e-hero-title .elementor-heading-title { max-width: 720px; color: var(--white); font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.08; letter-spacing: -.045em; }
.elementor-landing .ib2b-e-hero-copy { margin-top: 26px; }
.elementor-landing .ib2b-e-hero-copy p { max-width: 650px; color: #c5d4dc; font-size: 1.08rem; }
.elementor-landing .ib2b-e-button-row { width: 100%; padding: 0; background: transparent; }
.elementor-landing .ib2b-e-button-row > .elementor-container { max-width: 420px; gap: 13px; margin-left: 0; }
.elementor-landing .ib2b-e-button-row .elementor-column > .elementor-widget-wrap { padding: 0; }
.elementor-landing .ib2b-e-button-row .elementor-button { width: 100%; }
.elementor-landing .ib2b-e-trust { margin-top: 27px; }
.elementor-landing .ib2b-e-trust p { display: flex; flex-wrap: wrap; gap: 12px 22px; color: #d5e0e6; font-size: .84rem; }
.elementor-landing .ib2b-e-hero-media { min-height: 555px; }
.elementor-landing .ib2b-e-hero-media > .elementor-widget-wrap { position: relative; align-content: flex-end; padding: 0; }
.elementor-landing .ib2b-e-hero-image { width: 88%; margin-left: auto; }
.elementor-landing .ib2b-e-hero-image img { width: 100%; height: 510px; object-fit: cover; border-radius: 120px 20px 0 0; box-shadow: var(--shadow); }
.elementor-landing .ib2b-e-abrasive-float { position: absolute; z-index: 2; top: 52px; left: -20px; width: 210px; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.elementor-landing .ib2b-e-abrasive-float img { height: 130px; object-fit: contain; }
.elementor-landing .ib2b-e-round-badge { position: absolute; z-index: 3; right: -12px; bottom: 45px; width: 150px; height: 150px; display: grid; place-items: center; padding: 20px; border-radius: 50%; background: var(--orange); text-align: center; box-shadow: 0 18px 42px rgba(0,0,0,.25); }
.elementor-landing .ib2b-e-round-badge .elementor-heading-title { color: var(--ink); font-size: 1.15rem; line-height: 1.25; }
.elementor-landing .ib2b-e-round-badge small { font-size: .72rem; font-weight: 500; }

.elementor-landing .ib2b-e-stats { padding-top: 0; padding-bottom: 0; color: var(--white); background: var(--navy); }
.elementor-landing .ib2b-e-stats > .elementor-container { border-top: 1px solid rgba(255,255,255,.16); }
.elementor-landing .ib2b-e-stat > .elementor-widget-wrap { min-height: 128px; align-content: center; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.16); }
.elementor-landing .ib2b-e-stat:first-child > .elementor-widget-wrap { border-left: 1px solid rgba(255,255,255,.16); }
.elementor-landing .ib2b-e-stat .ib2b-e-card-num .elementor-heading-title { color: var(--white); font-size: 1.55rem; }
.elementor-landing .ib2b-e-stat .ib2b-e-card-title .elementor-heading-title { margin-top: 4px; color: #9fb4c0; font-size: .83rem; }
.elementor-landing .ib2b-e-stat .ib2b-e-card-copy p { margin: 3px 0 0; color: #78909e; font-size: .72rem; line-height: 1.35; }

.elementor-landing .ib2b-e-intro { background: var(--white); }
.elementor-landing .ib2b-e-intro > .elementor-container { gap: 80px; align-items: center; }
.elementor-landing .ib2b-e-intro-content > .elementor-widget-wrap { padding: 0; }
.elementor-landing .ib2b-e-intro-media { min-height: 580px; }
.elementor-landing .ib2b-e-intro-media > .elementor-widget-wrap { position: relative; padding: 0; }
.elementor-landing .ib2b-e-intro-image { width: 84%; margin-left: auto; }
.elementor-landing .ib2b-e-intro-image img { width: 100%; height: 540px; object-fit: cover; border-radius: 20px 120px 20px 20px; box-shadow: var(--shadow); }
.elementor-landing .ib2b-e-mini-num, .elementor-landing .ib2b-e-mini-title, .elementor-landing .ib2b-e-mini-copy { position: absolute; z-index: 2; left: 0; width: 290px; padding-inline: 28px; background: var(--navy); }
.elementor-landing .ib2b-e-mini-num { bottom: 130px; padding-top: 26px; border-radius: 18px 18px 0 0; }
.elementor-landing .ib2b-e-mini-num .elementor-heading-title { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 10px; color: var(--ink); background: var(--orange); font-size: .85rem; }
.elementor-landing .ib2b-e-mini-title { bottom: 83px; }
.elementor-landing .ib2b-e-mini-title .elementor-heading-title { color: var(--white); font-size: 1.15rem; }
.elementor-landing .ib2b-e-mini-copy { bottom: 0; min-height: 83px; border-radius: 0 0 18px 18px; }
.elementor-landing .ib2b-e-mini-copy p { color: #bad0dc; font-size: .87rem; line-height: 1.5; }

.elementor-landing .ib2b-e-segments { padding-top: 25px; padding-bottom: 25px; border-block: 1px solid var(--line); background: var(--paper); }
.elementor-landing .ib2b-e-segments .elementor-column > .elementor-widget-wrap { padding: 15px 8px; }
.elementor-landing .ib2b-e-segment .elementor-heading-title { color: #71808a; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }

.elementor-landing .ib2b-e-products-head { padding-bottom: 45px; background: var(--paper); }
.elementor-landing .ib2b-e-products { padding-top: 0; background: var(--paper); }
.elementor-landing .ib2b-e-products > .elementor-container { gap: 22px; align-items: stretch; }
.elementor-landing .ib2b-e-product > .elementor-widget-wrap { height: 100%; overflow: hidden; align-content: flex-start; padding: 0 32px 34px; border-radius: 24px; }
.elementor-landing .ib2b-e-product-orange > .elementor-widget-wrap { color: var(--ink); background: var(--orange); }
.elementor-landing .ib2b-e-product-blue > .elementor-widget-wrap { color: var(--white); background: var(--navy-2); }
.elementor-landing .ib2b-e-product-steel > .elementor-widget-wrap { color: var(--ink); background: #cfd6da; }
.elementor-landing .ib2b-e-product-num { position: absolute; z-index: 3; top: 20px; right: 20px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.elementor-landing .ib2b-e-product-num .elementor-heading-title { font-size: .76rem; }
.elementor-landing .ib2b-e-product-image { width: calc(100% + 64px); margin: 0 -32px 28px; background: rgba(255,255,255,.12); }
.elementor-landing .ib2b-e-product-image img { width: 100%; height: 260px; padding: 24px; object-fit: contain; }
.elementor-landing .ib2b-e-product-steel .ib2b-e-product-image img { padding: 0; object-fit: cover; }
.elementor-landing .ib2b-e-product-label .elementor-heading-title { opacity: .7; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.elementor-landing .ib2b-e-product-title { margin-top: 9px; }
.elementor-landing .ib2b-e-product-title .elementor-heading-title { color: inherit; font-size: 2rem; }
.elementor-landing .ib2b-e-product-copy { min-height: 245px; margin-top: 13px; }
.elementor-landing .ib2b-e-product-copy p { color: inherit; opacity: .76; }
.elementor-landing .ib2b-e-product-copy ul { display: grid; gap: 7px; margin: 20px 0; padding-left: 19px; font-size: .88rem; }

.elementor-landing .ib2b-e-capabilities { color: var(--white); background: #071e2d; }
.elementor-landing .ib2b-e-capabilities > .elementor-container { gap: 75px; align-items: center; }
.elementor-landing .ib2b-e-cap-media { min-height: 600px; }
.elementor-landing .ib2b-e-cap-media > .elementor-widget-wrap { position: relative; padding: 0 40px 0 0; }
.elementor-landing .ib2b-e-cap-image img { width: 100%; height: 600px; object-fit: cover; border-radius: 100px 20px 20px; }
.elementor-landing .ib2b-e-cap-badge { position: absolute; right: 0; bottom: 40px; width: 160px; height: 160px; display: grid; place-items: center; border: 9px solid #071e2d; border-radius: 50%; background: var(--orange); text-align: center; }
.elementor-landing .ib2b-e-cap-badge .elementor-heading-title { color: var(--ink); font-size: 1.8rem; line-height: 1; }
.elementor-landing .ib2b-e-cap-badge small { font-size: .65rem; text-transform: uppercase; }
.elementor-landing .ib2b-e-cap-content > .elementor-widget-wrap { padding: 0; }
.elementor-landing .ib2b-e-cap-list { margin-top: 30px; }
.elementor-landing .ib2b-e-cap-list ol { margin: 0; padding: 0; list-style: none; counter-reset: cap; border-top: 1px solid rgba(255,255,255,.14); }
.elementor-landing .ib2b-e-cap-list li { min-height: 70px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.14); counter-increment: cap; font-weight: 700; }
.elementor-landing .ib2b-e-cap-list li::before { content: "0" counter(cap); color: var(--orange); font-size: .76rem; }

.elementor-landing .ib2b-e-info-head { padding-bottom: 42px; }
.elementor-landing .ib2b-e-info-grid { padding-top: 0; }
.elementor-landing .ib2b-e-info-grid > .elementor-container { border: 1px solid var(--line); }
.elementor-landing .ib2b-e-info-card > .elementor-widget-wrap { min-height: 250px; align-content: flex-start; padding: 30px 26px; border-right: 1px solid var(--line); }
.elementor-landing .ib2b-e-info-card:last-child > .elementor-widget-wrap { border-right: 0; }
.elementor-landing .ib2b-e-info-card .ib2b-e-card-num .elementor-heading-title { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 10px; color: var(--white); background: var(--navy); font-size: .75rem; }
.elementor-landing .ib2b-e-card-title .elementor-heading-title { color: inherit; font-size: 1.1rem; }
.elementor-landing .ib2b-e-card-copy { margin-top: 10px; }
.elementor-landing .ib2b-e-card-copy p { color: inherit; opacity: .72; font-size: .86rem; }

.elementor-landing .ib2b-e-process-head { padding-bottom: 40px; color: var(--white); background: var(--navy-2); }
.elementor-landing .ib2b-e-process-grid { padding-top: 0; color: var(--white); background: var(--navy-2); }
.elementor-landing .ib2b-e-process-grid > .elementor-container { gap: 15px; }
.elementor-landing .ib2b-e-process-card > .elementor-widget-wrap { min-height: 260px; align-content: flex-start; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.035); }
.elementor-landing .ib2b-e-process-card .ib2b-e-card-num .elementor-heading-title { margin-bottom: 45px; color: var(--orange); font-size: .84rem; }

.elementor-landing .ib2b-e-insight-head { padding-bottom: 42px; background: var(--paper); }
.elementor-landing .ib2b-e-insights { padding-top: 0; background: var(--paper); }
.elementor-landing .ib2b-e-insights > .elementor-container { gap: 22px; }
.elementor-landing .ib2b-e-insight-card > .elementor-widget-wrap { height: 100%; align-content: flex-start; padding: 30px; border-radius: 17px; background: var(--white); box-shadow: 0 12px 35px rgba(6,27,42,.07); }
.elementor-landing .ib2b-e-insight-label .elementor-heading-title { margin-bottom: 18px; color: var(--orange-dark); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.elementor-landing .ib2b-e-insight-title .elementor-heading-title { color: var(--ink); font-size: 1.3rem; }

.elementor-landing .ib2b-e-cta { padding-top: 85px; padding-bottom: 85px; color: var(--white); background: linear-gradient(115deg, rgba(6,29,44,.98), rgba(14,56,82,.92)), url('../images/cylinder-liner.webp') center/cover; }
.elementor-landing .ib2b-e-cta > .elementor-container { gap: 65px; align-items: center; }
.elementor-landing .ib2b-e-cta-actions > .elementor-widget-wrap { justify-content: flex-end; padding: 0; }
.elementor-landing .ib2b-e-cta-actions .ib2b-e-btn { width: auto; margin-left: 10px; }
.elementor-landing .ib2b-e-cta-small { width: 100%; margin-top: 12px; text-align: right; }
.elementor-landing .ib2b-e-cta-small p { color: #9fb5c1; font-size: .75rem; }

/* Elementor 3.x Flexbox Container compatibility.
 * Elementor converts legacy section/column templates to .e-con markup on
 * import. These rules mirror the legacy layout above without relying on the
 * removed .elementor-container and .elementor-widget-wrap wrappers.
 */
.elementor-landing .ib2b-e-section.e-con { --padding-top: 105px; --padding-right: 20px; --padding-bottom: 105px; --padding-left: 20px; }
.elementor-landing .ib2b-e-section.e-con > .e-con-inner { width: 100%; max-width: 1180px; margin-inline: auto; }
.elementor-landing .ib2b-e-section.e-con .elementor-widget { margin-bottom: 0; }

.elementor-landing .ib2b-e-hero.e-con { --padding-top: 92px; --padding-bottom: 0px; }
.elementor-landing .ib2b-e-hero.e-con > .e-con-inner { position: relative; display: flex; flex-flow: row nowrap; gap: 55px; align-items: center; }
.elementor-landing .ib2b-e-hero-content.e-con { width: calc(56% - 28px); flex: 0 0 calc(56% - 28px); align-content: center; padding: 0 0 62px; }
.elementor-landing .ib2b-e-hero-media.e-con { position: relative; width: calc(44% - 27px); min-height: 555px; flex: 0 0 calc(44% - 27px); align-content: flex-end; padding: 0; }
.elementor-landing .ib2b-e-button-row.e-con { width: 100%; max-width: 420px; display: flex; flex-flow: row nowrap; gap: 13px; align-items: stretch; justify-content: flex-start; margin: 0; padding: 0; }
.elementor-landing .ib2b-e-button-row.e-con > .e-con { width: auto !important; flex: 0 0 auto !important; padding: 0; }
.elementor-landing .ib2b-e-button-row.e-con .elementor-button { width: auto; }

.elementor-landing .ib2b-e-stats.e-con { --padding-top: 0px; --padding-bottom: 0px; }
.elementor-landing .ib2b-e-stats.e-con > .e-con-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.elementor-landing .ib2b-e-stat.e-con { width: auto; min-height: 128px; align-content: center; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.16); }
.elementor-landing .ib2b-e-stat.e-con:first-child { border-left: 1px solid rgba(255,255,255,.16); }

.elementor-landing .ib2b-e-intro.e-con > .e-con-inner { display: flex; flex-flow: row nowrap; gap: 80px; align-items: center; }
.elementor-landing .ib2b-e-intro-content.e-con { width: calc(50% - 40px); flex: 0 0 calc(50% - 40px); padding: 0; }
.elementor-landing .ib2b-e-intro-media.e-con { position: relative; width: calc(50% - 40px); min-height: 580px; flex: 0 0 calc(50% - 40px); padding: 0; }

.elementor-landing .ib2b-e-segments.e-con { --padding-top: 25px; --padding-bottom: 25px; }
.elementor-landing .ib2b-e-segments.e-con > .e-con-inner { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0; }
.elementor-landing .ib2b-e-segment.e-con { width: auto; padding: 15px 8px; }

.elementor-landing .ib2b-e-products-head.e-con,
.elementor-landing .ib2b-e-info-head.e-con,
.elementor-landing .ib2b-e-insight-head.e-con { --padding-bottom: 42px; }
.elementor-landing .ib2b-e-products.e-con,
.elementor-landing .ib2b-e-info-grid.e-con,
.elementor-landing .ib2b-e-process-grid.e-con,
.elementor-landing .ib2b-e-insights.e-con { --padding-top: 0px; }
.elementor-landing .ib2b-e-products.e-con > .e-con-inner,
.elementor-landing .ib2b-e-insights.e-con > .e-con-inner { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.elementor-landing .ib2b-e-product.e-con { position: relative; width: auto; height: 100%; overflow: hidden; align-content: flex-start; padding: 0 32px 34px; border-radius: 24px; }
.elementor-landing .ib2b-e-product-orange.e-con { color: var(--ink); background: var(--orange); }
.elementor-landing .ib2b-e-product-blue.e-con { color: var(--white); background: var(--navy-2); }
.elementor-landing .ib2b-e-product-steel.e-con { color: var(--ink); background: #cfd6da; }

.elementor-landing .ib2b-e-capabilities.e-con > .e-con-inner { display: flex; flex-flow: row nowrap; gap: 75px; align-items: center; }
.elementor-landing .ib2b-e-cap-media.e-con { position: relative; width: calc(50% - 38px); min-height: 600px; flex: 0 0 calc(50% - 38px); padding: 0 40px 0 0; }
.elementor-landing .ib2b-e-cap-content.e-con { width: calc(50% - 37px); flex: 0 0 calc(50% - 37px); padding: 0; }

.elementor-landing .ib2b-e-info-grid.e-con > .e-con-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); }
.elementor-landing .ib2b-e-info-card.e-con { width: auto; min-height: 250px; align-content: flex-start; padding: 30px 26px; border-right: 1px solid var(--line); }
.elementor-landing .ib2b-e-info-card.e-con:last-child { border-right: 0; }

.elementor-landing .ib2b-e-process-head.e-con { --padding-bottom: 40px; }
.elementor-landing .ib2b-e-process-grid.e-con > .e-con-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.elementor-landing .ib2b-e-process-card.e-con { width: auto; min-height: 260px; align-content: flex-start; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.035); }

.elementor-landing .ib2b-e-insight-card.e-con { width: auto; height: 100%; align-content: flex-start; padding: 30px; border-radius: 17px; background: var(--white); box-shadow: 0 12px 35px rgba(6,27,42,.07); }

.elementor-landing .ib2b-e-cta.e-con { --padding-top: 85px; --padding-bottom: 85px; }
.elementor-landing .ib2b-e-cta.e-con > .e-con-inner { display: flex; flex-flow: row nowrap; gap: 65px; align-items: center; }
.elementor-landing .ib2b-e-cta.e-con > .e-con-inner > .e-con { width: calc(50% - 33px); flex: 0 0 calc(50% - 33px); }
.elementor-landing .ib2b-e-cta-actions.e-con { display: flex; flex-flow: row wrap; justify-content: flex-end; padding: 0; }

/* Elementor 3.30+ can flatten imported legacy sections in two different ways.
 * Keep the hero stable in both editor and public rendering, even when the
 * generated Elementor document CSS has not been rebuilt yet.
 */
.elementor-landing .ib2b-e-hero.e-con > .ib2b-e-hero-content,
.elementor-landing .ib2b-e-hero.e-con > .e-con-inner > .ib2b-e-hero-content {
  width: calc(56% - 28px) !important;
  max-width: calc(56% - 28px) !important;
  flex: 0 0 calc(56% - 28px) !important;
}
.elementor-landing .ib2b-e-hero.e-con > .ib2b-e-hero-media,
.elementor-landing .ib2b-e-hero.e-con > .e-con-inner > .ib2b-e-hero-media {
  width: calc(44% - 27px) !important;
  max-width: calc(44% - 27px) !important;
  flex: 0 0 calc(44% - 27px) !important;
}
.elementor-landing .ib2b-e-hero-title .elementor-heading-title {
  font-size: clamp(2.7rem, 3.8vw, 4rem) !important;
}
.elementor-landing .ib2b-e-button-row,
.elementor-landing .ib2b-e-button-row.e-con {
  width: 100% !important;
  max-width: 430px !important;
  display: flex !important;
  flex-flow: row wrap !important;
  gap: 13px !important;
  justify-content: flex-start !important;
}
.elementor-landing .ib2b-e-button-row > .elementor-element,
.elementor-landing .ib2b-e-button-row > .e-con-inner > .elementor-element {
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
}

/* Asset fallback for Elementor image widgets affected by lazy loading or an
 * empty generated image URL. The normal editable image remains on top. */
.elementor-landing .ib2b-e-hero-media { isolation: isolate; }
.elementor-landing .ib2b-e-hero-media::before {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  height: 510px;
  content: "";
  border-radius: 120px 20px 0 0;
  background: #d9dee1 url('../images/cylinder-liner.webp') center / cover no-repeat;
  box-shadow: var(--shadow);
}
.elementor-landing .ib2b-e-hero-image {
  position: relative;
  z-index: 1;
}
.elementor-landing .ib2b-e-abrasive-float {
  background: rgba(255,255,255,.96) url('../images/abrasive-roll.svg') center / calc(100% - 28px) auto no-repeat;
}
.elementor-landing .ib2b-e-abrasive-float img { position: relative; z-index: 1; }

@media (min-width: 1081px) {
  .elementor-landing .ib2b-e-hero.e-con:not(:has(> .e-con-inner)) {
    padding-right: max(20px, calc((100vw - 1360px) / 2)) !important;
    padding-left: max(20px, calc((100vw - 1360px) / 2)) !important;
  }
}
.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; }
  .elementor-landing .ib2b-e-section > .elementor-container { flex-wrap: wrap; }
  .elementor-landing .ib2b-e-hero-content, .elementor-landing .ib2b-e-hero-media,
  .elementor-landing .ib2b-e-intro-content, .elementor-landing .ib2b-e-intro-media,
  .elementor-landing .ib2b-e-cap-media, .elementor-landing .ib2b-e-cap-content,
  .elementor-landing .ib2b-e-cta > .elementor-container > .elementor-column { width: 100%; }
  .elementor-landing .ib2b-e-stat, .elementor-landing .ib2b-e-info-card, .elementor-landing .ib2b-e-process-card { width: 50%; }
  .elementor-landing .ib2b-e-product, .elementor-landing .ib2b-e-insight-card { width: calc(50% - 12px); }
  .elementor-landing .ib2b-e-product:last-child, .elementor-landing .ib2b-e-insight-card:last-child { width: 100%; }
  .elementor-landing .ib2b-e-segments .elementor-column { width: 33.333%; }
  .elementor-landing .ib2b-e-hero-media { width: min(100%, 620px); margin-inline: auto; }
  .elementor-landing .ib2b-e-cta-actions > .elementor-widget-wrap { justify-content: flex-start; }
  .elementor-landing .ib2b-e-cta-actions .ib2b-e-btn { margin-left: 0; margin-right: 10px; }
  .elementor-landing .ib2b-e-cta-small { text-align: left; }
  .elementor-landing .ib2b-e-hero.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-intro.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-capabilities.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-cta.e-con > .e-con-inner { flex-wrap: wrap; }
  .elementor-landing .ib2b-e-hero-content.e-con,
  .elementor-landing .ib2b-e-hero-media.e-con,
  .elementor-landing .ib2b-e-intro-content.e-con,
  .elementor-landing .ib2b-e-intro-media.e-con,
  .elementor-landing .ib2b-e-cap-media.e-con,
  .elementor-landing .ib2b-e-cap-content.e-con,
  .elementor-landing .ib2b-e-cta.e-con > .e-con-inner > .e-con { width: 100%; flex-basis: 100%; }
  .elementor-landing .ib2b-e-stats.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-info-grid.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-process-grid.e-con > .e-con-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elementor-landing .ib2b-e-products.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-insights.e-con > .e-con-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elementor-landing .ib2b-e-product.e-con:last-child,
  .elementor-landing .ib2b-e-insight-card.e-con:last-child { grid-column: 1 / -1; }
  .elementor-landing .ib2b-e-segments.e-con > .e-con-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .elementor-landing .ib2b-e-cta-actions.e-con { justify-content: flex-start; }
  .elementor-landing .ib2b-e-hero.e-con > .ib2b-e-hero-content,
  .elementor-landing .ib2b-e-hero.e-con > .ib2b-e-hero-media,
  .elementor-landing .ib2b-e-hero.e-con > .e-con-inner > .ib2b-e-hero-content,
  .elementor-landing .ib2b-e-hero.e-con > .e-con-inner > .ib2b-e-hero-media {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
  .elementor-landing .ib2b-e-hero-media.e-con {
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    margin-inline: auto;
  }
}

@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; }
  .elementor-landing .ib2b-e-section { padding: 74px 14px; }
  .elementor-landing .ib2b-e-hero { padding-top: 58px; padding-bottom: 0; }
  .elementor-landing .ib2b-e-button-row > .elementor-container { flex-direction: column; }
  .elementor-landing .ib2b-e-button-row .elementor-column { width: 100%; }
  .elementor-landing .ib2b-e-trust p { display: grid; gap: 9px; }
  .elementor-landing .ib2b-e-hero-media { min-height: 420px; }
  .elementor-landing .ib2b-e-hero-media::before { width: 92%; height: 400px; border-radius: 70px 16px 0 0; }
  .elementor-landing .ib2b-e-hero-image img { height: 400px; border-radius: 70px 16px 0 0; }
  .elementor-landing .ib2b-e-abrasive-float { top: 28px; left: 0; width: 145px; padding: 9px; }
  .elementor-landing .ib2b-e-abrasive-float img { height: 85px; }
  .elementor-landing .ib2b-e-round-badge { right: -4px; bottom: 22px; width: 112px; height: 112px; }
  .elementor-landing .ib2b-e-stats { padding: 0 14px; }
  .elementor-landing .ib2b-e-stat, .elementor-landing .ib2b-e-info-card, .elementor-landing .ib2b-e-process-card,
  .elementor-landing .ib2b-e-product, .elementor-landing .ib2b-e-insight-card,
  .elementor-landing .ib2b-e-product:last-child, .elementor-landing .ib2b-e-insight-card:last-child { width: 100%; }
  .elementor-landing .ib2b-e-stat > .elementor-widget-wrap { min-height: 108px; border-left: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
  .elementor-landing .ib2b-e-intro > .elementor-container, .elementor-landing .ib2b-e-capabilities > .elementor-container { gap: 55px; }
  .elementor-landing .ib2b-e-intro-media { min-height: 460px; }
  .elementor-landing .ib2b-e-intro-image img { height: 410px; border-radius: 16px 70px 16px 16px; }
  .elementor-landing .ib2b-e-mini-num, .elementor-landing .ib2b-e-mini-title, .elementor-landing .ib2b-e-mini-copy { width: 245px; padding-inline: 22px; }
  .elementor-landing .ib2b-e-segments { padding-top: 22px; padding-bottom: 22px; }
  .elementor-landing .ib2b-e-segments .elementor-column { width: 50%; }
  .elementor-landing .ib2b-e-product-copy { min-height: 0; }
  .elementor-landing .ib2b-e-cap-media { min-height: 440px; }
  .elementor-landing .ib2b-e-cap-image img { height: 440px; border-radius: 70px 15px 15px; }
  .elementor-landing .ib2b-e-info-card > .elementor-widget-wrap { border-right: 0; border-bottom: 1px solid var(--line); }
  .elementor-landing .ib2b-e-cta-actions .ib2b-e-btn { width: 100%; margin-right: 0; }
  .elementor-landing .ib2b-e-cta-actions .elementor-button { width: 100%; }
  .elementor-landing .ib2b-e-section.e-con { --padding-top: 74px; --padding-right: 14px; --padding-bottom: 74px; --padding-left: 14px; }
  .elementor-landing .ib2b-e-hero.e-con { --padding-top: 58px; --padding-bottom: 0px; }
  .elementor-landing .ib2b-e-button-row,
  .elementor-landing .ib2b-e-button-row.e-con { max-width: none !important; flex-direction: column !important; }
  .elementor-landing .ib2b-e-button-row > .elementor-element,
  .elementor-landing .ib2b-e-button-row > .e-con-inner > .elementor-element,
  .elementor-landing .ib2b-e-button-row.e-con > .e-con { width: 100% !important; flex-basis: auto !important; }
  .elementor-landing .ib2b-e-button-row.e-con .elementor-button { width: 100%; }
  .elementor-landing .ib2b-e-stats.e-con { --padding-top: 0px; --padding-bottom: 0px; }
  .elementor-landing .ib2b-e-stats.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-products.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-info-grid.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-process-grid.e-con > .e-con-inner,
  .elementor-landing .ib2b-e-insights.e-con > .e-con-inner { grid-template-columns: 1fr; }
  .elementor-landing .ib2b-e-segments.e-con > .e-con-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elementor-landing .ib2b-e-product.e-con:last-child,
  .elementor-landing .ib2b-e-insight-card.e-con:last-child { grid-column: auto; }
  .elementor-landing .ib2b-e-stat.e-con { min-height: 108px; border-left: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
  .elementor-landing .ib2b-e-info-card.e-con { border-right: 0; border-bottom: 1px solid var(--line); }
  .elementor-landing .ib2b-e-cta-actions.e-con { flex-direction: column; }
}

@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; }
}

/* Elementor 3.30+ hardening (v1.2.3).
 * Imported legacy columns can be flattened into direct Flexbox children.
 * Elementor then adds width variables to every converted element, including
 * decorative badges. Keep both possible DOM shapes visually identical. */
.site-header,
.site-header.is-scrolled {
  background: #fff !important;
  opacity: 1;
  backdrop-filter: none;
}

.elementor-landing .ib2b-e-section.e-con {
  width: 100%;
  max-width: none;
}

/* Direct-child layout produced by Elementor's automatic converter. */
.elementor-landing .ib2b-e-intro.e-con > .ib2b-e-intro-content,
.elementor-landing .ib2b-e-intro.e-con > .ib2b-e-intro-media {
  width: calc(50% - 40px) !important;
  max-width: calc(50% - 40px) !important;
  flex: 0 0 calc(50% - 40px) !important;
}
.elementor-landing .ib2b-e-intro.e-con > .ib2b-e-intro-media {
  position: relative !important;
  min-height: 580px;
}
.elementor-landing .ib2b-e-capabilities.e-con > .ib2b-e-cap-media,
.elementor-landing .ib2b-e-capabilities.e-con > .ib2b-e-cap-content {
  width: calc(50% - 38px) !important;
  max-width: calc(50% - 38px) !important;
  flex: 0 0 calc(50% - 38px) !important;
}
.elementor-landing .ib2b-e-capabilities.e-con > .ib2b-e-cap-media {
  position: relative !important;
  min-height: 600px;
}
.elementor-landing .ib2b-e-cta.e-con > .ib2b-e-cta-actions,
.elementor-landing .ib2b-e-cta.e-con > .e-con:not(.ib2b-e-cta-actions) {
  width: calc(50% - 33px) !important;
  max-width: calc(50% - 33px) !important;
  flex: 0 0 calc(50% - 33px) !important;
}

.elementor-landing .ib2b-e-stat.e-con {
  width: 25% !important;
  max-width: 25% !important;
  flex: 0 0 25% !important;
}
.elementor-landing .ib2b-e-segment.e-con {
  width: 16.6667% !important;
  max-width: 16.6667% !important;
  flex: 0 0 16.6667% !important;
}
.elementor-landing .ib2b-e-product.e-con,
.elementor-landing .ib2b-e-insight-card.e-con {
  width: calc(33.3333% - 15px) !important;
  max-width: calc(33.3333% - 15px) !important;
  flex: 1 1 calc(33.3333% - 15px) !important;
}
.elementor-landing .ib2b-e-info-card.e-con,
.elementor-landing .ib2b-e-process-card.e-con {
  width: calc(25% - 12px) !important;
  max-width: calc(25% - 12px) !important;
  flex: 1 1 calc(25% - 12px) !important;
}

/* Do not let Elementor's --width:100% stretch floating decorations. */
.elementor-landing .ib2b-e-round-badge,
.elementor-landing .ib2b-e-round-badge.e-con {
  position: absolute !important;
  z-index: 4 !important;
  right: -12px !important;
  bottom: 45px !important;
  left: auto !important;
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
  height: 150px !important;
  min-height: 150px !important;
  flex: 0 0 150px !important;
  margin: 0 !important;
  padding: 20px !important;
  border-radius: 50% !important;
  --width: 150px !important;
  --min-height: 150px !important;
}
.elementor-landing .ib2b-e-product-num,
.elementor-landing .ib2b-e-product-num.e-con {
  position: absolute !important;
  z-index: 5 !important;
  top: 20px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  flex: 0 0 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid currentColor !important;
  border-radius: 50% !important;
  --width: 48px !important;
  --min-height: 48px !important;
}
.elementor-landing .ib2b-e-product-num .elementor-widget-container,
.elementor-landing .ib2b-e-product-num .elementor-heading-title,
.elementor-landing .ib2b-e-round-badge .elementor-widget-container {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0 !important;
  text-align: center;
}

.elementor-landing .ib2b-e-abrasive-float,
.elementor-landing .ib2b-e-abrasive-float.e-con {
  position: absolute !important;
  z-index: 3 !important;
  top: 52px !important;
  right: auto !important;
  bottom: auto !important;
  left: -20px !important;
  width: 210px !important;
  min-width: 210px !important;
  max-width: 210px !important;
  flex: 0 0 210px !important;
  margin: 0 !important;
  padding: 14px !important;
  border-radius: 18px !important;
  --width: 210px !important;
}
.elementor-landing .ib2b-e-hero-image,
.elementor-landing .ib2b-e-hero-image.e-con {
  position: relative !important;
  z-index: 1;
  width: 88% !important;
  min-width: 0 !important;
  max-width: 88% !important;
  margin: auto 0 0 auto !important;
  --width: 88% !important;
}

/* Restore the image-and-card composition in the introduction section. */
.elementor-landing .ib2b-e-intro-image,
.elementor-landing .ib2b-e-intro-image.e-con {
  width: 84% !important;
  max-width: 84% !important;
  margin: 0 0 0 auto !important;
  --width: 84% !important;
}
.elementor-landing .ib2b-e-mini-num,
.elementor-landing .ib2b-e-mini-title,
.elementor-landing .ib2b-e-mini-copy {
  position: absolute !important;
  z-index: 4 !important;
  left: 0 !important;
  right: auto !important;
  width: 290px !important;
  min-width: 290px !important;
  max-width: 290px !important;
  margin: 0 !important;
  padding-right: 28px !important;
  padding-left: 28px !important;
  --width: 290px !important;
}
.elementor-landing .ib2b-e-mini-num { top: auto !important; bottom: 130px !important; }
.elementor-landing .ib2b-e-mini-title { top: auto !important; bottom: 83px !important; }
.elementor-landing .ib2b-e-mini-copy { top: auto !important; bottom: 0 !important; }

/* Keep product media as a rectangular image area, not a stretched ellipse. */
.elementor-landing .ib2b-e-product.e-con { position: relative !important; overflow: hidden !important; }
.elementor-landing .ib2b-e-product-image,
.elementor-landing .ib2b-e-product-image.e-con {
  position: relative !important;
  width: calc(100% + 64px) !important;
  max-width: none !important;
  min-height: 260px !important;
  flex: 0 0 260px !important;
  margin: 0 -32px 28px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  --width: calc(100% + 64px) !important;
  --min-height: 260px !important;
}
.elementor-landing .ib2b-e-product-image .elementor-widget-container {
  width: 100%;
  height: 260px;
}
.elementor-landing .ib2b-e-product-image img {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 260px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}
.elementor-landing .ib2b-e-product-orange .ib2b-e-product-image,
.elementor-landing .ib2b-e-product-blue .ib2b-e-product-image {
  background: rgba(255,255,255,.12) url('../images/abrasive-roll.svg') center / 74% auto no-repeat !important;
}
.elementor-landing .ib2b-e-product-steel .ib2b-e-product-image {
  background: #d7dde0 url('../images/cylinder-liner.webp') center / cover no-repeat !important;
}
.elementor-landing .ib2b-e-product-steel .ib2b-e-product-image img {
  padding: 0 !important;
  object-fit: cover !important;
}

/* The second circular badge uses the same anti-stretch treatment. */
.elementor-landing .ib2b-e-cap-badge,
.elementor-landing .ib2b-e-cap-badge.e-con {
  position: absolute !important;
  z-index: 4 !important;
  right: 0 !important;
  bottom: 40px !important;
  left: auto !important;
  width: 160px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  height: 160px !important;
  min-height: 160px !important;
  flex: 0 0 160px !important;
  margin: 0 !important;
  padding: 18px !important;
  border: 9px solid #071e2d !important;
  border-radius: 50% !important;
  --width: 160px !important;
  --min-height: 160px !important;
}

@media (max-width: 900px) {
  .elementor-landing .ib2b-e-intro.e-con > .ib2b-e-intro-content,
  .elementor-landing .ib2b-e-intro.e-con > .ib2b-e-intro-media,
  .elementor-landing .ib2b-e-capabilities.e-con > .ib2b-e-cap-media,
  .elementor-landing .ib2b-e-capabilities.e-con > .ib2b-e-cap-content,
  .elementor-landing .ib2b-e-cta.e-con > .ib2b-e-cta-actions,
  .elementor-landing .ib2b-e-cta.e-con > .e-con:not(.ib2b-e-cta-actions) {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
  .elementor-landing .ib2b-e-stat.e-con,
  .elementor-landing .ib2b-e-info-card.e-con,
  .elementor-landing .ib2b-e-process-card.e-con {
    width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    flex-basis: calc(50% - 8px) !important;
  }
  .elementor-landing .ib2b-e-segment.e-con {
    width: 33.3333% !important;
    max-width: 33.3333% !important;
    flex-basis: 33.3333% !important;
  }
  .elementor-landing .ib2b-e-product.e-con,
  .elementor-landing .ib2b-e-insight-card.e-con {
    width: calc(50% - 11px) !important;
    max-width: calc(50% - 11px) !important;
    flex-basis: calc(50% - 11px) !important;
  }
}

@media (max-width: 640px) {
  .elementor-landing .ib2b-e-round-badge,
  .elementor-landing .ib2b-e-round-badge.e-con {
    right: -4px !important;
    bottom: 22px !important;
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
    height: 112px !important;
    min-height: 112px !important;
    flex-basis: 112px !important;
    padding: 14px !important;
    --width: 112px !important;
    --min-height: 112px !important;
  }
  .elementor-landing .ib2b-e-abrasive-float,
  .elementor-landing .ib2b-e-abrasive-float.e-con {
    top: 28px !important;
    left: 0 !important;
    width: 145px !important;
    min-width: 145px !important;
    max-width: 145px !important;
    flex-basis: 145px !important;
    padding: 9px !important;
    --width: 145px !important;
  }
  .elementor-landing .ib2b-e-mini-num,
  .elementor-landing .ib2b-e-mini-title,
  .elementor-landing .ib2b-e-mini-copy {
    width: 245px !important;
    min-width: 245px !important;
    max-width: 245px !important;
    padding-right: 22px !important;
    padding-left: 22px !important;
    --width: 245px !important;
  }
  .elementor-landing .ib2b-e-stat.e-con,
  .elementor-landing .ib2b-e-info-card.e-con,
  .elementor-landing .ib2b-e-process-card.e-con,
  .elementor-landing .ib2b-e-product.e-con,
  .elementor-landing .ib2b-e-insight-card.e-con {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
  .elementor-landing .ib2b-e-segment.e-con {
    width: 50% !important;
    max-width: 50% !important;
    flex-basis: 50% !important;
  }
}
