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

:root {
  --navy-950: #04131f;
  --navy-900: #061827;
  --navy-800: #082d4d;
  --blue-700: #075f9b;
  --blue-500: #1593d1;
  --aqua: #22c1d6;
  --orange: #f47b20;
  --graphite: #17232d;
  --steel: #697986;
  --line: #d9e2e8;
  --mist: #eef6fa;
  --white: #fff;
  --warm: #fcfdfe;
  --ink: #0c2232;
  --muted: #587081;
  --shadow-sm: 0 10px 30px rgba(6, 24, 39, .08);
  --shadow-lg: 0 30px 80px rgba(6, 24, 39, .18);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font: 400 16px/1.7 Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 4px; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  padding: 12px 18px; border-radius: 12px; background: var(--white); color: var(--navy-900);
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important;
  margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}
.container { width: var(--container); margin-inline: auto; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 68px 0; }
.section-mist { background: var(--mist); }
.section-dark { color: var(--white); background: var(--navy-900); }
.section-graphite { color: var(--white); background: var(--graphite); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px;
  color: var(--blue-700); font: 700 12px/1.2 Manrope, sans-serif;
  letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); }
.section-dark .eyebrow, .section-graphite .eyebrow { color: #8bddeb; }
h1, h2, h3, h4 { margin: 0 0 .55em; font-family: Manrope, sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.22rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.05rem; letter-spacing: -.02em; }
p { margin: 0 0 1.25em; }
.lead { font-size: clamp(1.03rem, 1.7vw, 1.22rem); color: var(--muted); max-width: 720px; }
.section-dark .lead, .section-graphite .lead { color: #b8c8d2; }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px;
}
.section-head > div:first-child { max-width: 740px; }
.section-head .lead { margin-bottom: 0; }
.btn {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; line-height: 1; transition: .25s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--orange); box-shadow: 0 12px 30px rgba(244, 123, 32, .3); }
.btn-primary:hover { background: #dc6816; }
.btn-blue { color: var(--white); background: var(--blue-700); }
.btn-light { color: var(--navy-900); background: var(--white); }
.btn-outline { color: currentColor; border-color: rgba(105, 121, 134, .35); background: transparent; }
.btn-outline:hover { border-color: var(--blue-500); }
.btn-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-700); font-weight: 700; }
.btn-link::after { content: "↗"; transition: transform .2s ease; }
.btn-link:hover::after { transform: translate(3px, -3px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.icon {
  width: 21px; height: 21px; display: block; flex: 0 0 auto;
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px;
  border: 1px solid var(--line); border-radius: 999px; color: var(--blue-700);
  background: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}

/* Header */
.utility { color: #c4d4de; background: var(--navy-950); font-size: 12px; animation: barDrop .5s both; }
.utility .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-group { display: flex; align-items: center; gap: 22px; }
.utility-group > a,
.utility-group > span { min-height: 24px; display: inline-flex; align-items: center; gap: 7px; line-height: 1; white-space: nowrap; }
.utility-group .icon { width: 15px; height: 15px; }
.utility a { transition: color .2s ease; }
.utility a:hover { color: var(--white); }
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(252, 253, 254, .95);
  border-bottom: 1px solid rgba(217, 226, 232, .8); backdrop-filter: blur(16px); animation: barDrop .58s .08s both;
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 218px; }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center; position: relative;
  color: var(--white); background: linear-gradient(145deg, var(--blue-700), var(--navy-900));
  border-radius: 14px; font: 800 17px/1 Manrope, sans-serif; letter-spacing: -.08em;
}
.brand-mark::after { content: ""; position: absolute; right: -3px; bottom: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); border: 3px solid var(--white); }
.brand-copy { font: 800 17px/1.05 Manrope, sans-serif; letter-spacing: -.04em; }
.brand-copy small { display: block; margin-top: 5px; color: var(--steel); font: 700 9px/1 Inter, sans-serif; letter-spacing: .18em; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav-trigger { min-height: 44px; padding: 0 13px; border: 0; background: transparent; color: #1d3544; font-size: 14px; font-weight: 700; line-height: 1; border-radius: 12px; display: inline-flex; align-items: center; gap: 7px; }
.nav > a:hover, .nav > a.active, .nav-trigger:hover, .nav-trigger[aria-expanded="true"] { color: var(--blue-700); background: var(--mist); }
.nav-trigger::after {
  content: ""; width: 7px; height: 7px; display: block; flex: 0 0 7px; margin-top: -4px;
  border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg); transition: transform .2s ease,margin .2s ease;
}
.nav-trigger[aria-expanded="true"]::after { margin-top: 4px; transform: rotate(225deg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { min-height: 44px; padding-inline: 18px; font-size: 13px; }
.mega {
  position: fixed; z-index: 999; top: 116px; left: 50%; width: min(1080px, calc(100% - 48px));
  padding: 26px; border: 1px solid var(--line); border-radius: 0 0 24px 24px;
  background: rgba(255, 255, 255, .98); box-shadow: var(--shadow-lg); transform: translate(-50%, -16px);
  opacity: 0; visibility: hidden; transition: .2s ease;
}
.mega.open { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr) 1.15fr; gap: 14px; }
.mega-col { padding: 12px; }
.mega-col h4 { margin-bottom: 12px; color: var(--steel); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.mega-col a { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 10px; font-size: 14px; font-weight: 600; }
.mega-col a:hover { color: var(--blue-700); background: var(--mist); }
.mega-feature { padding: 24px; color: var(--white); border-radius: 18px; background: radial-gradient(circle at 80% 20%, rgba(34,193,214,.24), transparent 42%), var(--navy-900); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); place-items: center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; background: var(--navy-900); transition: .2s; }
.menu-toggle span { margin: 4px 0; }
.mobile-drawer { display: none; }

/* Hero */
.hero {
  min-height: 680px; color: var(--white); position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy-950);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .8s ease, visibility .8s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-slide > .container { min-height: 680px; display: flex; align-items: center; }
.hero-media, .hero-media picture, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-slide-water .hero-media img { object-position: 58% center; filter: hue-rotate(17deg) saturate(.92) brightness(.92); transform: scale(1.035); }
.hero-slide-machine .hero-media img { object-position: 73% center; filter: saturate(.78) contrast(1.08) brightness(.78); transform: scale(1.05); }
.hero::before {
  content: ""; position: absolute; z-index: 1; inset: 0;
  background: linear-gradient(90deg, rgba(4,19,31,.98) 0%, rgba(4,19,31,.86) 34%, rgba(4,19,31,.24) 65%, rgba(4,19,31,.1) 100%);
}
.hero::after {
  content: ""; position: absolute; z-index: 1; inset: 0; opacity: .22;
  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: 56px 56px; mask-image: linear-gradient(to right, black, transparent 72%);
}
.hero-content { position: relative; z-index: 2; width: min(670px, 55%); padding: 90px 0; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: #86e4ee; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero-kicker i { width: 30px; height: 1px; background: var(--orange); }
.hero h1, .hero h2 { font-size: clamp(2.5rem, 5.2vw, 4.8rem); max-width: 760px; }
.hero h1 span, .hero h2 span { color: #74dcea; }
.hero p { max-width: 610px; color: #c3d4df; font-size: clamp(1rem, 1.4vw, 1.14rem); }
.hero .actions { margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; color: #dbe7ed; font-size: 13px; font-weight: 600; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 16px var(--aqua); }
.hero-slide.active .hero-kicker { animation: heroReveal .55s .08s both; }
.hero-slide.active h1, .hero-slide.active h2 { animation: heroReveal .7s .16s both; }
.hero-slide.active .hero-content > p { animation: heroReveal .7s .25s both; }
.hero-slide.active .hero-content > .actions { animation: heroReveal .7s .34s both; }
.hero-slide.active .hero-meta { animation: heroReveal .7s .43s both; }
.hero-controls {
  position: absolute; z-index: 5; left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; justify-content: flex-end; align-items: center; gap: 9px; pointer-events: none;
}
.hero-controls button { pointer-events: auto; }
.hero-arrow, .hero-pause {
  width: 42px; height: 42px; display: grid; place-items: center; color: var(--white);
  border: 1px solid rgba(255,255,255,.26); border-radius: 50%; background: rgba(4,19,31,.52);
  backdrop-filter: blur(10px); transition: .2s ease;
}
.hero-arrow:hover, .hero-pause:hover { border-color: var(--aqua); background: rgba(7,95,155,.7); }
.hero-dots { display: flex; gap: 7px; padding: 10px; border-radius: 999px; background: rgba(4,19,31,.48); backdrop-filter: blur(10px); pointer-events: auto; }
.hero-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); transition: width .25s ease, background .25s ease; }
.hero-dots button.active { width: 30px; border-radius: 999px; background: var(--orange); }
.hero-slider::marker { display: none; }

.category-rail-wrap { position: relative; z-index: 8; margin-top: -26px; }
.category-rail {
  display: grid; grid-template-columns: repeat(9, 1fr); overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); animation: railRise .7s .42s both;
}
.category-rail a {
  min-width: 0; min-height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 8px; position: relative; text-align: center; border-right: 1px solid var(--line); transition: .25s ease;
}
.category-rail a:last-child { border-right: 0; }
.category-rail a::after { content: ""; position: absolute; inset: auto 14px 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--orange); transform: scaleX(0); transition: transform .25s ease; }
.category-rail a:hover { color: var(--blue-700); background: var(--mist); transform: translateY(-3px); }
.category-rail a:hover::after { transform: scaleX(1); }
.category-rail strong { margin-top: 8px; font: 800 11px/1.2 Manrope, sans-serif; text-transform: uppercase; }
.category-rail small { margin-top: 4px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .04em; }
.rail-icon { width: 48px; height: 42px; display: grid; place-items: center; color: var(--white); font: 800 10px Manrope; filter: drop-shadow(0 8px 9px rgba(6,24,39,.16)); }
.pipe-mini { height: 18px; margin-block: 12px; border-radius: 9px; background: linear-gradient(#36a9e0,#08699f); box-shadow: 0 8px 0 #0b76ad, 0 -8px 0 #6fc4e9; }
.pipe-mini.ivory { color: var(--ink); background: #e8ddc5; box-shadow: 0 8px 0 #c7bda8,0 -8px 0 #f4eee2; }
.pipe-mini.white { color: var(--ink); background: #eef2f3; box-shadow: 0 8px 0 #c4cdd1,0 -8px 0 #fff; }
.fitting-mini { border-radius: 13px; background: linear-gradient(145deg,#566a76,#1a2c36); font-size: 22px; }
.coil-mini { width: 44px; height: 44px; border: 9px solid #17232d; border-radius: 50%; }
.coil-mini.blue { border-color: #168bc7; }
.coil-mini.green { border-color: #32944f; }
.sink-mini { color: #213540; border: 6px solid #b7c2c8; border-radius: 8px; background: #e9eef0; font-size: 24px; transform: perspective(80px) rotateX(25deg); }
.machine-mini { border-radius: 8px; background: linear-gradient(145deg,#316084,#132934); font-size: 23px; }
.trust-strip { position: relative; z-index: 3; margin-top: -32px; }
.trust-strip { position: relative; z-index: 3; margin-top: -32px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 10px;
  border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg);
}
.trust-item { min-height: 108px; display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue-700); border-radius: 13px; background: var(--mist); }
.trust-item strong { display: block; font: 700 14px Manrope, sans-serif; }
.trust-item small { color: var(--muted); font-size: 12px; }

/* Cards and showroom */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card, .product-card {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover, .product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(6,24,39,.14); }
.category-visual {
  height: 230px; display: grid; place-items: center; position: relative; overflow: hidden;
  background: radial-gradient(circle at 70% 25%, rgba(34,193,214,.2), transparent 30%), linear-gradient(145deg, #e9f5f9, #fafdff);
}
.category-visual.dark { background: radial-gradient(circle at 70% 20%, rgba(21,147,209,.25), transparent 32%), var(--graphite); }
.category-visual.warm { background: radial-gradient(circle at 70% 20%, rgba(244,123,32,.16), transparent 32%), #f5f2ed; }
.category-card .card-body, .product-card .card-body { padding: 26px; }
.category-card p, .product-card p { color: var(--muted); font-size: 14px; }
.category-card .index { position: absolute; top: 20px; left: 20px; color: var(--steel); font: 700 11px Manrope; letter-spacing: .12em; }
.product-art { width: 78%; height: 78%; filter: drop-shadow(0 20px 20px rgba(6,24,39,.2)); transition: transform .35s ease; }
.category-card:hover .product-art, .product-card:hover .product-art { transform: scale(1.04); }
.pipe-art { position: relative; width: 190px; height: 150px; }
.pipe-art span { position: absolute; display: block; height: 34px; border-radius: 20px; background: linear-gradient(#37a8dd, #08689d 55%, #044568); box-shadow: inset 0 3px 4px rgba(255,255,255,.38), 0 14px 20px rgba(6,24,39,.18); transform: rotate(-15deg); }
.pipe-art span::after { content: ""; position: absolute; right: -6px; top: -3px; width: 35px; height: 35px; border: 5px solid #4eb8e8; border-radius: 50%; background: #052d45; }
.pipe-art span:nth-child(1) { width: 155px; top: 35px; left: 8px; }
.pipe-art span:nth-child(2) { width: 125px; top: 75px; left: 38px; }
.pipe-art span:nth-child(3) { width: 92px; top: 110px; left: 68px; }
.coil-art { width: 145px; height: 145px; border: 25px solid #e98b20; border-radius: 50%; box-shadow: inset 0 0 0 6px #f4af45, 0 18px 25px rgba(6,24,39,.18); position: relative; }
.coil-art::after { content: ""; position: absolute; left: 77px; bottom: -29px; width: 78px; height: 22px; background: linear-gradient(#f8aa34,#d06a12); border-radius: 12px; transform: rotate(12deg); }
.sink-art { width: 180px; height: 120px; padding: 13px; border-radius: 10px; background: linear-gradient(145deg,#f6f8fa,#9faeb7 42%,#f7fafc 72%,#8c9aa2); box-shadow: 0 22px 30px rgba(6,24,39,.22); transform: perspective(300px) rotateX(52deg) rotateZ(-8deg); }
.sink-art::before { content: ""; display: block; width: 100%; height: 100%; border: 5px solid #d7e0e4; border-radius: 7px; background: linear-gradient(145deg,#7a8992,#dce4e8); box-shadow: inset 0 8px 20px rgba(4,19,31,.36); }
.machine-art { width: 190px; height: 112px; position: relative; border-radius: 8px 8px 4px 4px; background: linear-gradient(145deg,#365065,#112532); box-shadow: 0 25px 30px rgba(0,0,0,.4); }
.machine-art::before { content: ""; position: absolute; left: 20px; top: -38px; width: 148px; height: 45px; border-radius: 7px 7px 0 0; background: linear-gradient(145deg,#5b7385,#152a38); }
.machine-art::after { content: ""; position: absolute; left: 25px; top: 22px; width: 110px; height: 48px; background: repeating-linear-gradient(90deg,#243c4c 0 3px,#0a1720 3px 9px); border: 4px solid #758b99; box-shadow: 48px -2px 0 -16px var(--orange); }
.showroom {
  padding: 32px; border-radius: 32px; color: var(--white);
  background: radial-gradient(circle at 18% 16%, rgba(34,193,214,.16), transparent 30%), radial-gradient(circle at 80% 80%, rgba(244,123,32,.12), transparent 25%), var(--navy-900);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.showroom::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 54px 54px; }
.showroom-grid { position: relative; display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; }
.showroom-zone {
  min-height: 260px; padding: 28px; display: flex; flex-direction: column; justify-content: end;
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px;
  background: rgba(255,255,255,.055); transition: .3s ease;
}
.showroom-zone:first-child { grid-row: span 2; min-height: 536px; }
.showroom-zone:hover { border-color: rgba(34,193,214,.6); background: rgba(255,255,255,.1); }
.showroom-zone .zone-art { margin: auto; transform: scale(1.2); }
.showroom-zone:first-child .zone-art { transform: scale(1.65); }
.showroom-zone p { margin: 0; color: #b5c7d3; font-size: 13px; }
.showroom-zone .btn-link { color: #7dddea; margin-top: 12px; }
.featured-stage {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px;
}
.stage-main {
  min-height: 590px; position: relative; overflow: hidden; padding: 46px; border-radius: 30px;
  background: radial-gradient(circle at 50% 45%, #d9f2f8, transparent 38%), linear-gradient(145deg,#fff,#e8f1f5);
}
.stage-main .pipe-art { position: absolute; width: 270px; height: 230px; right: 8%; top: 22%; transform: scale(1.45) rotate(4deg); }
.stage-copy { position: absolute; left: 46px; right: 46px; bottom: 44px; z-index: 2; }
.stage-copy p { max-width: 430px; color: var(--muted); }
.stage-side { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mini-stage { min-height: 284px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.mini-stage .category-visual { height: 140px; margin: -24px -24px 20px; }
.mini-stage h3 { font-size: 1.05rem; margin-bottom: 5px; }
.mini-stage p { color: var(--muted); font-size: 12px; margin: 0; }
.mini-stage .actions { margin-top: 14px; }
.mini-stage .btn-link { font-size: 13px; }

/* Layout blocks */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.media-panel {
  min-height: 520px; position: relative; overflow: hidden; border-radius: 30px;
  background: radial-gradient(circle at 65% 30%, rgba(34,193,214,.22), transparent 28%), var(--navy-900);
}
.media-panel .pipe-art { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) scale(2); }
.media-label { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; color: var(--white); background: rgba(6,24,39,.65); backdrop-filter: blur(12px); }
.media-label span { color: #8bddea; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.check-list { display: grid; gap: 14px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list li::before { content: "✓"; flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; color: var(--blue-700); background: #dff3f7; border-radius: 50%; font-weight: 800; font-size: 12px; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 30px; }
.metric { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.metric strong { display: block; font: 800 1.5rem Manrope; color: var(--blue-700); }
.metric span { color: var(--muted); font-size: 12px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.feature-card .trust-icon { margin-bottom: 20px; }
.feature-card p { color: var(--muted); font-size: 14px; margin: 0; }
.industries { display: flex; flex-wrap: wrap; gap: 12px; }
.industry { padding: 12px 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #c8d6df; background: rgba(255,255,255,.05); font-weight: 600; font-size: 13px; }
.process { display: grid; grid-template-columns: repeat(4,1fr); counter-reset: step; }
.process-step { padding: 32px; position: relative; border-top: 1px solid var(--line); }
.process-step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: -17px; left: 32px; padding: 3px 9px; color: var(--blue-700); background: var(--warm); font: 800 12px Manrope; }
.process-step:not(:last-child)::after { content: "→"; position: absolute; right: -8px; top: 24px; color: var(--aqua); font-size: 22px; }
.process-step p { color: var(--muted); font-size: 13px; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 220px; gap: 16px; }
.gallery-item { border: 0; padding: 0; position: relative; overflow: hidden; border-radius: 22px; background: var(--mist); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item .category-visual { width: 100%; height: 100%; }
.gallery-caption { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 12px 14px; color: var(--white); background: rgba(4,19,31,.72); border-radius: 12px; font-size: 13px; text-align: left; backdrop-filter: blur(10px); }

/* Reviews, buyer network, subscription and map */
.reviews-section { overflow: hidden; background: linear-gradient(180deg,#fff,#f3f8fa); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr .82fr; gap: 22px; }
.review-card, .review-callout { margin: 0; padding: 32px; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow-sm); }
.review-card { position: relative; overflow: hidden; }
.review-card::after { content: ""; position: absolute; right: -38px; bottom: -38px; width: 130px; height: 130px; border: 22px solid rgba(34,193,214,.08); border-radius: 50%; }
.quote-mark { height: 38px; color: var(--orange); font: 800 4rem/.8 Georgia, serif; }
.review-card blockquote { margin: 18px 0 28px; color: #29414f; font-size: 15px; line-height: 1.75; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.review-avatar { width: 46px; height: 46px; display: grid; place-items: center; color: var(--white); border-radius: 50%; background: linear-gradient(145deg,var(--blue-700),var(--navy-900)); font: 800 12px Manrope; }
.review-card figcaption strong, .review-card figcaption small { display: block; }
.review-card figcaption small { color: var(--muted); font-size: 12px; }
.review-callout { color: var(--white); background: radial-gradient(circle at 85% 12%,rgba(34,193,214,.24),transparent 30%),var(--navy-900); }
.review-callout p { color: #bed0da; font-size: 14px; }
.review-score { min-width: 150px; text-align: right; }
.review-score strong, .review-score span { display: block; }
.review-score strong { color: var(--blue-700); font: 800 1.4rem Manrope; }
.review-score span { color: var(--muted); font-size: 12px; }
.client-strip-section { border-block: 1px solid var(--line); background: var(--white); }
.client-strip-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.client-strip-head h2 { max-width: 650px; margin: 0; font-size: clamp(1.6rem,3vw,2.5rem); }
.client-logo-rail { display: grid; grid-template-columns: repeat(6,1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.client-logo { min-height: 108px; display: flex; align-items: center; justify-content: center; gap: 11px; padding: 16px; border-right: 1px solid var(--line); filter: grayscale(1); opacity: .65; transition: .25s ease; }
.client-logo:last-child { border-right: 0; }
.client-logo:hover { filter: none; opacity: 1; background: var(--mist); }
.client-logo span { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; color: var(--white); border-radius: 10px; background: var(--navy-900); font: 800 11px/1 Manrope; }
.client-logo strong { font: 700 11px/1.3 Manrope; text-transform: uppercase; }
.newsletter-section { padding-block: 70px; background: var(--navy-950); }
.newsletter-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; color: var(--white); }
.newsletter-panel h2 { margin-bottom: 10px; font-size: clamp(2rem,3.5vw,3.2rem); }
.newsletter-panel p { margin: 0; color: #abc0cc; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.newsletter-form input[type="email"] { min-height: 56px; padding: 0 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: var(--white); background: rgba(255,255,255,.08); }
.newsletter-form input::placeholder { color: #97adb9; }
.newsletter-form .form-status { grid-column: 1/-1; color: #8ee6d0; }
.contact-map-section { background: linear-gradient(145deg,#edf5f8,#fff); }
.contact-map-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: stretch; }
.map-card { min-height: 590px; position: relative; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow-lg); background: var(--line); }
.map-card iframe { width: 100%; height: 100%; min-height: 590px; border: 0; filter: saturate(.65) contrast(1.06); }
.map-label { position: absolute; left: 22px; bottom: 22px; padding: 15px 18px; color: var(--white); border: 1px solid rgba(255,255,255,.24); border-radius: 15px; background: rgba(4,19,31,.82); backdrop-filter: blur(12px); }
.map-label span, .map-label strong { display: block; }
.map-label span { color: #82dce8; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.contact-brief { padding: 32px 0; }
.contact-brief .actions { margin-top: 26px; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes barDrop {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: none; }
}
@keyframes railRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes statusPulse {
  50% { box-shadow: 0 0 0 11px rgba(54,209,141,0); }
}
.cta-panel { padding: 64px; border-radius: 32px; color: var(--white); position: relative; overflow: hidden; background: radial-gradient(circle at 88% 15%, rgba(34,193,214,.24), transparent 30%), var(--navy-900); }
.cta-panel::after { content: ""; position: absolute; right: -80px; bottom: -160px; width: 400px; height: 400px; border: 65px solid rgba(255,255,255,.05); border-radius: 50%; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel p { max-width: 650px; color: #bfd0da; }

/* FAQs, forms, inner pages */
.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; gap: 24px; padding: 24px 0; color: var(--ink); border: 0; background: transparent; text-align: left; font-weight: 700; }
.faq-q::after { content: "+"; color: var(--blue-700); font-size: 22px; transition: .2s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: .25s ease; }
.faq-a > div { overflow: hidden; color: var(--muted); }
.faq-q[aria-expanded="true"] + .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding-bottom: 24px; }
.page-hero { min-height: 430px; display: flex; align-items: end; color: var(--white); position: relative; overflow: hidden; background: radial-gradient(circle at 76% 20%, rgba(34,193,214,.22), transparent 30%), var(--navy-900); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 54px 54px; }
.page-hero .container { position: relative; z-index: 2; padding-block: 90px 60px; }
.page-hero p { max-width: 680px; color: #bdd0db; font-size: 1.1rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; color: #8fdbe6; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumbs span { color: #91a8b7; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font-weight: 700; font-size: 13px; }
.filter-btn.active, .filter-btn:hover { color: var(--white); border-color: var(--blue-700); background: var(--blue-700); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card .category-visual { height: 250px; }
.product-card .pill { margin-bottom: 14px; }
.product-card .actions { justify-content: space-between; align-items: center; }
.product-card[hidden] { display: none; }
.detail-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.product-gallery { position: sticky; top: 110px; }
.gallery-stage { min-height: 510px; display: grid; place-items: center; border-radius: 30px; background: radial-gradient(circle at 50% 40%, #d9f1f7, transparent 35%), linear-gradient(145deg,#fafdff,#e9f1f4); overflow: hidden; }
.gallery-stage .pipe-art { transform: scale(2); }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.gallery-thumb { width: 84px; height: 68px; border: 2px solid transparent; border-radius: 14px; background: var(--mist); display: grid; place-items: center; }
.gallery-thumb.active { border-color: var(--blue-700); }
.product-summary .pill { margin-bottom: 20px; }
.product-summary h1 { font-size: clamp(2.3rem,4vw,4rem); }
.product-summary .lead { margin: 22px 0; }
.spec-list { display: grid; gap: 0; margin: 28px 0; border-top: 1px solid var(--line); }
.spec-list div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-size: 13px; }
.spec-list dd { margin: 0; font-weight: 700; }
.tabs { margin-top: 60px; }
.tab-buttons { display: flex; gap: 4px; border-bottom: 1px solid var(--line); overflow-x: auto; }
.tab-btn { padding: 15px 19px; border: 0; border-bottom: 3px solid transparent; background: transparent; white-space: nowrap; font-weight: 700; }
.tab-btn.active { color: var(--blue-700); border-color: var(--blue-700); }
.tab-panel { padding: 34px 0; max-width: 850px; }
.tab-panel[hidden] { display: none; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 52px; padding: 12px 15px; color: var(--ink);
  border: 1px solid #cbd7de; border-radius: 13px; background: #fbfdfe;
}
.field textarea { min-height: 126px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-500); outline: 3px solid rgba(21,147,209,.12); }
.form-note { color: var(--muted); font-size: 12px; }
.form-status { min-height: 24px; margin: 12px 0 0; color: #0b7444; font-weight: 700; font-size: 13px; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { margin: 0; color: var(--muted); font-size: 14px; }
.contact-card > div { min-width: 0; }
.contact-card a { overflow-wrap: anywhere; }
.legal { max-width: 840px; margin-inline: auto; }
.legal h2 { margin-top: 2em; font-size: 1.65rem; }
.legal h3 { margin-top: 1.7em; font-size: 1.2rem; }
.legal p, .legal li { color: var(--muted); }
.legal address {
  width: fit-content; margin: 18px 0 28px; padding: 20px 24px; color: #29414f;
  border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: 14px;
  background: var(--mist); box-shadow: var(--shadow-sm); font-style: normal; line-height: 1.75;
}
.empty-state { padding: 44px; border: 1px dashed #b6c8d2; border-radius: 22px; text-align: center; background: var(--mist); }

/* Modal and footer */
.modal { position: fixed; z-index: 2000; inset: 0; display: none; place-items: center; padding: 20px; background: rgba(4,19,31,.72); }
.modal.open { display: grid; }
.modal-card { width: min(620px,100%); max-height: 90vh; overflow: auto; padding: 34px; border-radius: 26px; background: var(--white); box-shadow: var(--shadow-lg); }
.modal-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-bottom: 24px; }
.modal-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 22px; }
.lightbox .modal-card { width: min(980px,100%); padding: 16px; background: var(--navy-950); color: var(--white); }
.lightbox-view { min-height: 520px; display: grid; place-items: center; border-radius: 18px; background: radial-gradient(circle at center, #153d55, #061827); }

/* Recognition marquee */
.recognition-strip { overflow: hidden; padding: 48px 0 54px; position: relative; background: linear-gradient(180deg,#fff,#f4f8fa); border-top: 1px solid var(--line); }
.recognition-heading { width: var(--container); margin: 0 auto 30px; text-align: center; }
.recognition-heading .eyebrow { justify-content: center; margin-bottom: 10px; }
.recognition-heading .eyebrow::before { display: none; }
.recognition-heading h2 { margin: 0; font-size: clamp(1.55rem,2.6vw,2.35rem); }
.recognition-marquee {
  overflow: hidden; padding: 8px 0 14px;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
}
.recognition-track { display: flex; width: max-content; animation: recognitionFlow 27s linear infinite; will-change: transform; }
.recognition-marquee:hover .recognition-track { animation-play-state: paused; }
.recognition-group { display: flex; align-items: center; gap: 20px; padding-right: 20px; }
.recognition-card {
  width: 280px; height: 118px; display: grid; place-items: center; flex: 0 0 280px; position: relative; overflow: hidden;
  padding: 16px 20px; border: 1px solid #dbe6ec; border-radius: 18px; background: #fff;
  box-shadow: 0 13px 34px rgba(3,27,53,.08); transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.recognition-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg,#ff6b22,#2471c8,#1da95c); }
.recognition-card:nth-child(2)::before { background: linear-gradient(90deg,#202468,#ff6b22,#1da95c); }
.recognition-card:nth-child(3)::before { background: linear-gradient(90deg,#e3a625,#2b9bd7,#76b841); }
.recognition-card:nth-child(4)::before { background: linear-gradient(90deg,#075295,#2f89c9); }
.recognition-card:hover { transform: translateY(-5px); border-color: #a9d8e7; box-shadow: 0 20px 46px rgba(3,27,53,.13); }
.recognition-card img { width: 100%; height: 100%; display: block; object-fit: contain; }
.recognition-card.recognition-iso { width: 170px; flex-basis: 170px; padding: 12px; }

.site-footer {
  position: relative; overflow: hidden; padding: 78px 0 24px; color: #b9cad4;
  background:
    radial-gradient(circle at 8% 18%,rgba(35,184,226,.16),transparent 23%),
    radial-gradient(circle at 95% 80%,rgba(244,123,32,.12),transparent 24%),
    linear-gradient(145deg,#04131f,#062a43 54%,#041925);
}
.site-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 46px 46px; mask-image: linear-gradient(90deg,#000,transparent 72%);
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-cta {
  display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 58px;
  padding: 0 0 44px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-cta > div:first-child { max-width: 720px; }
.footer-cta h2 { margin: 0; color: var(--white); font-size: clamp(2rem,3.5vw,3.1rem); }
.footer-cta-copy { display: flex; align-items: center; gap: 20px; }
.footer-cta-icon {
  width: 62px; height: 62px; display: grid; place-items: center; flex: 0 0 62px; color: #fff;
  border: 1px solid rgba(255,255,255,.24); border-radius: 18px;
  background: linear-gradient(145deg,rgba(35,184,226,.34),rgba(12,102,161,.14));
  box-shadow: 0 16px 35px rgba(0,0,0,.2),inset 0 0 22px rgba(255,255,255,.08);
}
.footer-cta-icon,
.footer-heading-icon,
.footer-contact-icon,
.footer-social { line-height: 0; }
.footer-cta-icon .icon { width: 29px; height: 29px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
.site-footer .brand { color: var(--white); margin-bottom: 20px; }
.site-footer .brand-mark::after { border-color: var(--navy-950); }
.site-footer p { max-width: 420px; font-size: 14px; }
.site-footer .footer-company-copy { color: #b9cad4; font-size: 12px; line-height: 1.72; }
.site-footer h3 { display: flex; align-items: center; gap: 9px; color: var(--white); font-size: .88rem; letter-spacing: .04em; margin-bottom: 18px; }
.footer-heading-icon {
  width: 31px; height: 31px; display: grid; place-items: center; color: #70d8ef; border-radius: 9px;
  background: rgba(35,184,226,.12); border: 1px solid rgba(112,216,239,.18);
}
.footer-heading-icon .icon { width: 16px; height: 16px; }
.footer-links { display: grid; gap: 10px; font-size: 13px; }
.footer-links a { position: relative; padding-left: 15px; transition: color .2s ease,transform .2s ease; }
.footer-links a::before { content: ""; width: 5px; height: 5px; position: absolute; left: 0; top: .62em; border-radius: 50%; background: #35c4e5; box-shadow: 0 0 0 4px rgba(53,196,229,.08); }
.footer-links a:hover { color: var(--white); transform: translateX(4px); }
.footer-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.footer-status { display: inline-flex; align-items: center; gap: 9px; color: #d5e4eb; font-size: 12px; font-weight: 700; }
.footer-status i { width: 9px; height: 9px; border-radius: 50%; background: #36d18d; box-shadow: 0 0 0 6px rgba(54,209,141,.12); animation: statusPulse 2.2s ease-in-out infinite; }
.footer-mini-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: #d5e4eb; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.04); font-size: 11px; font-weight: 700; }
.footer-mini-chip .icon { width: 14px; height: 14px; color: #70d8ef; }
.footer-contact-list { display: grid; gap: 10px; }
.footer-contact-item {
  display: grid; grid-template-columns: 36px minmax(0,1fr); align-items: center; gap: 10px; min-width: 0;
  padding: 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.035);
  transition: transform .2s ease,border-color .2s ease,background .2s ease;
}
a.footer-contact-item:hover { transform: translateY(-2px); border-color: rgba(112,216,239,.32); background: rgba(255,255,255,.065); }
.footer-contact-icon { width: 36px; height: 36px; display: grid; place-items: center; color: #fff; border-radius: 10px; }
.footer-contact-icon.mail { background: linear-gradient(145deg,#0c66a1,#23b8e2); }
.footer-contact-icon.phone { background: linear-gradient(145deg,#159a61,#35d182); }
.footer-contact-icon.map { background: linear-gradient(145deg,#e45f17,#f7a23b); }
.footer-contact-icon .icon { width: 18px; height: 18px; }
.footer-contact-item small,.footer-contact-item strong { display: block; min-width: 0; }
.footer-contact-item small { margin-bottom: 2px; color: #7fcfe3; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.footer-contact-item strong { overflow-wrap: anywhere; color: #eaf4f8; font-size: 10px; line-height: 1.35; }
.footer-contact-item.is-pending { opacity: .72; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-top: 4px; color: #70d8ef; font-size: 12px; font-weight: 800; }
.footer-contact-link .icon { width: 15px; height: 15px; transition: transform .2s ease; }
.footer-contact-link:hover .icon { transform: translateX(4px); }
.footer-social-panel {
  display: flex; align-items: center; justify-content: center; gap: 44px; margin-top: 50px; padding: 24px;
  border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; background: rgba(255,255,255,.035);
}
.footer-social-panel > div:first-child { text-align: right; }
.footer-social-panel .eyebrow { margin: 0 0 7px; color: #70d8ef; font-size: 9px; }
.footer-social-panel > div:first-child strong { display: block; color: #fff; font: 800 1.05rem Manrope,sans-serif; }
.footer-social-links { display: flex; align-items: center; justify-content: center; gap: 14px; }
.footer-social {
  width: 52px; height: 52px; display: grid; place-items: center; position: relative; color: #fff;
  border: 2px solid rgba(255,255,255,.82); border-radius: 50%; box-shadow: 0 12px 26px rgba(0,0,0,.24);
  animation: socialFloat 3s ease-in-out infinite; transition: transform .25s ease,box-shadow .25s ease;
}
.footer-social:nth-child(2) { animation-delay: .18s; }
.footer-social:nth-child(3) { animation-delay: .36s; }
.footer-social:nth-child(4) { animation-delay: .54s; }
.footer-social:nth-child(5) { animation-delay: .72s; }
.footer-social:hover { transform: translateY(-7px) rotate(5deg) scale(1.09); box-shadow: 0 19px 34px rgba(0,0,0,.32); }
.footer-social .icon { width: 24px; height: 24px; }
.footer-social > span {
  position: absolute; left: 50%; bottom: -31px; padding: 5px 8px; color: #eaf5f8; border-radius: 6px;
  background: rgba(1,14,24,.94); font-size: 9px; font-weight: 800; white-space: nowrap;
  opacity: 0; transform: translate(-50%,5px); pointer-events: none; transition: .2s ease;
}
.footer-social:hover > span,.footer-social:focus-visible > span { opacity: 1; transform: translate(-50%,0); }
.social-facebook { background: #1877f2; }
.social-facebook .icon { fill: currentColor; stroke: none; }
.social-instagram { background: radial-gradient(circle at 30% 105%,#ffd600 0 18%,#ff7a00 30%,#ff0169 52%,#d300c5 72%,#7638fa 100%); }
.social-google { background: conic-gradient(from -35deg,#4285f4,#34a853 30%,#fbbc05 57%,#ea4335 79%,#4285f4); }
.social-x { background: #090909; }
.social-x .icon { fill: currentColor; stroke: none; }
.social-whatsapp { background: #25d366; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.sticky-actions { display: none; }
.universal-contact-actions { position: fixed; z-index: 1250; right: 22px; bottom: 24px; display: grid; gap: 11px; }
.universal-contact-btn { display: flex; align-items: center; justify-content: flex-end; gap: 10px; color: #fff; line-height: 1; filter: drop-shadow(0 10px 20px rgba(4,19,31,.24)); }
.universal-contact-btn > span {
  width: 56px; height: 56px; display: grid; place-items: center; flex: 0 0 56px; order: 2; position: relative;
  padding: 0; color: #fff; border: 2px solid #fff; border-radius: 50%; box-sizing: border-box; line-height: 0;
  animation: contactFloat 2.4s ease-in-out infinite;
}
.universal-contact-btn > span::before { content: ""; position: absolute; inset: -7px; border: 1px solid currentColor; border-radius: inherit; opacity: .45; animation: contactRing 2s ease-out infinite; }
.universal-contact-btn .icon { width: 22px; height: 22px; overflow: visible; }
.universal-contact-btn strong { display: flex; align-items: center; min-height: 32px; padding: 8px 11px; border-radius: 8px; background: rgba(4,25,38,.84); backdrop-filter: blur(8px); font-size: 11px; line-height: 1; opacity: 0; transform: translateX(8px); transition: .2s ease; }
.universal-contact-btn:hover strong,.universal-contact-btn:focus-visible strong { opacity: 1; transform: none; }
.universal-contact-btn.whatsapp > span { background: #25d366; }
.universal-contact-btn.call > span { background: #0c66a1; animation-delay: .25s; }
.universal-contact-btn.call > span::before { animation-delay: .25s; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes contactRing { 0% { transform: scale(.86); opacity: .65; } 80%,100% { transform: scale(1.36); opacity: 0; } }
@keyframes contactFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes recognitionFlow { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes socialFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -5px; } }

@media (max-width: 1050px) {
  .utility { font-size: 11px; }
  .utility-group { gap: 12px; }
  .utility-group:first-child > span { display: none; }
  .nav, .nav-actions .btn-outline { display: none; }
  .menu-toggle { display: grid; }
  .mobile-drawer {
    display: block; position: fixed; z-index: 1500; inset: 0 0 0 auto; width: min(420px, 92vw);
    padding: 24px; background: var(--white); transform: translateX(105%); transition: .25s ease; box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  .mobile-drawer.open { transform: none; }
  .drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
  .drawer-nav { display: grid; }
  .drawer-nav > a, .drawer-accordion > button { padding: 15px 6px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; font-weight: 700; }
  .drawer-accordion > button { width: 100%; display: flex; justify-content: space-between; }
  .drawer-sub { display: none; padding: 10px 0 10px 16px; }
  .drawer-sub.open { display: grid; }
  .drawer-sub a { padding: 9px; color: var(--muted); font-size: 14px; }
  .drawer-actions { display: grid; gap: 10px; margin-top: 24px; }
  .mega { display: none; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .card-grid, .product-grid { grid-template-columns: repeat(2,1fr); }
  .showroom-grid { grid-template-columns: 1fr 1fr; }
  .showroom-zone:first-child { grid-row: auto; min-height: 300px; grid-column: 1/-1; }
  .featured-stage { grid-template-columns: 1fr; }
  .stage-main { min-height: 500px; }
  .split { gap: 42px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1/-1; }
  .footer-cta { align-items: start; flex-direction: column; }
  .category-rail { grid-template-columns: repeat(5,1fr); overflow: visible; }
  .category-rail a:nth-child(5) { border-right: 0; }
  .category-rail a:nth-child(n+6) { border-top: 1px solid var(--line); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-callout { grid-column: 1/-1; }
  .client-logo-rail { grid-template-columns: repeat(3,1fr); }
  .client-logo:nth-child(3) { border-right: 0; }
  .client-logo:nth-child(n+4) { border-top: 1px solid var(--line); }
  .contact-map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 680px); --radius: 20px; }
  .section { padding: 72px 0; }
  .section-sm { padding: 54px 0; }
  .utility { display: none; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 70px; }
  .brand { min-width: 0; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy { font-size: 14px; }
  .nav-actions .btn-primary { display: none; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .btn { margin-top: 20px; }
  .hero { min-height: 710px; align-items: end; }
  .hero-slide > .container { min-height: 710px; align-items: end; }
  .hero-media img { object-position: 67% center; }
  .hero::before { background: linear-gradient(180deg, rgba(4,19,31,.28), rgba(4,19,31,.7) 42%, rgba(4,19,31,.98) 72%); }
  .hero-content { width: 100%; padding: 230px 0 75px; }
  .hero h1, .hero h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .hero p { font-size: .98rem; }
  .hero-meta { gap: 10px 20px; margin-top: 30px; }
  .hero-controls { bottom: 18px; justify-content: center; }
  .hero-arrow { display: none; }
  .hero-pause { width: 38px; height: 38px; }
  .category-rail-wrap { margin-top: 0; padding-block: 14px 0; background: var(--white); }
  .category-rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; border-radius: 18px; }
  .category-rail a { flex: 0 0 122px; min-height: 116px; scroll-snap-align: start; border-top: 0 !important; border-right: 1px solid var(--line) !important; }
  .trust-strip { margin-top: 0; padding-top: 14px; background: var(--white); }
  .trust-grid { grid-template-columns: 1fr 1fr; border-radius: 18px; box-shadow: var(--shadow-sm); }
  .trust-item { min-height: 92px; padding: 14px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: 0; }
  .trust-icon { width: 36px; height: 36px; flex-basis: 36px; }
  .trust-item small { display: none; }
  .card-grid, .product-grid, .feature-grid { grid-template-columns: 1fr; }
  .category-visual, .product-card .category-visual { height: 220px; }
  .showroom { margin-inline: -14px; padding: 20px 14px; border-radius: 0; }
  .showroom-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .showroom-zone, .showroom-zone:first-child { flex: 0 0 84vw; min-height: 380px; grid-column: auto; scroll-snap-align: center; }
  .showroom-zone:first-child .zone-art, .showroom-zone .zone-art { transform: scale(1.35); }
  .stage-main { min-height: 520px; padding: 28px; }
  .stage-main .pipe-art { right: -5%; top: 18%; transform: scale(1.15) rotate(4deg); }
  .stage-copy { left: 28px; right: 28px; bottom: 28px; }
  .stage-side { grid-template-columns: 1fr; }
  .split, .detail-layout { grid-template-columns: 1fr; gap: 38px; }
  .split.reverse > :first-child { order: 0; }
  .media-panel { min-height: 400px; }
  .metric-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-top: 0; border-left: 1px solid var(--line); margin-left: 15px; }
  .process-step::before { left: -18px; top: 32px; }
  .process-step:not(:last-child)::after { content: "↓"; right: auto; left: -8px; top: auto; bottom: -12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gallery-item:first-child { grid-row: auto; grid-column: 1/-1; }
  .cta-panel { padding: 38px 26px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-callout { grid-column: auto; }
  .review-score { text-align: left; margin-top: 18px; }
  .client-strip-head { display: block; }
  .client-logo-rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .client-logo { flex: 0 0 180px; min-height: 96px; border-top: 0 !important; border-right: 1px solid var(--line) !important; scroll-snap-align: start; }
  .newsletter-panel { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form .btn { width: 100%; }
  .map-card, .map-card iframe { min-height: 440px; }
  .contact-brief { padding-bottom: 0; }
  .page-hero { min-height: 350px; }
  .page-hero .container { padding-block: 80px 46px; }
  .product-gallery { position: static; }
  .gallery-stage { min-height: 380px; }
  .spec-list div { grid-template-columns: 110px 1fr; }
  .form-card { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .recognition-strip { padding: 38px 0 42px; }
  .recognition-heading { margin-bottom: 20px; padding-inline: 10px; }
  .recognition-card { width: 230px; height: 100px; flex-basis: 230px; padding: 13px 16px; border-radius: 15px; }
  .recognition-card.recognition-iso { width: 138px; flex-basis: 138px; }
  .recognition-track { animation-duration: 22s; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1/-1; }
  .footer-social-panel { flex-direction: column; gap: 18px; margin-top: 40px; padding: 22px 16px 28px; }
  .footer-social-panel > div:first-child { text-align: center; }
  .footer-social-panel .eyebrow { justify-content: center; }
  .footer-social-links { gap: 11px; }
  .footer-social { width: 48px; height: 48px; }
  .footer-social .icon { width: 22px; height: 22px; }
  .footer-social > span { display: none; }
  .footer-bottom { display: block; padding-bottom: 58px; }
  .footer-cta { margin-bottom: 42px; padding-bottom: 34px; }
  .footer-cta-copy { align-items: flex-start; }
  .footer-cta-icon { width: 50px; height: 50px; flex-basis: 50px; border-radius: 14px; }
  .footer-cta-icon .icon { width: 23px; height: 23px; }
  .universal-contact-actions { right: 14px; bottom: 84px; }
  .universal-contact-btn > span { width: 50px; height: 50px; flex-basis: 50px; }
  .universal-contact-btn strong { display: none; }
  .sticky-actions {
    position: fixed; z-index: 1200; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: 1fr 1fr;
    padding: 7px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.95); box-shadow: 0 15px 40px rgba(4,19,31,.22); backdrop-filter: blur(14px);
  }
  .sticky-actions .btn { min-height: 45px; padding-inline: 12px; gap: 7px; font-size: 12px; }
  .sticky-actions .icon { width: 16px; height: 16px; }
}

@media (max-width: 390px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .trust-item:last-child { border-bottom: 0 !important; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > * { grid-column: auto !important; }
}

@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; }
  .hero-slide.active > * { animation: none !important; }
  .recognition-track { animation: none !important; transform: none; }
}
