:root {
  --ink-950: #0c1022;
  --ink-900: #11162c;
  --ink-800: #1b2340;
  --ink-700: #283252;
  --blue-700: #244cbb;
  --blue-600: #315ee8;
  --blue-500: #4c73ff;
  --coral: #ff604a;
  --coral-deep: #e94b37;
  --mint: #c9f5e7;
  --mint-deep: #9be6d0;
  --sand: #eee8dc;
  --paper: #f7f5ef;
  --paper-2: #efede7;
  --white: #fff;
  --ink: #151927;
  --muted: #687080;
  --line: rgba(17, 22, 44, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 14px 40px rgba(12, 16, 34, 0.09);
  --shadow-lg: 0 32px 100px rgba(12, 16, 34, 0.16);
  --font-heading: "Archivo", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1480px;
  --header-height: 92px;
  --ease-out: cubic-bezier(.2, .72, .22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
button, input, select, textarea { font: inherit; }
svg { width: 1em; height: 1em; flex: 0 0 auto; }
::selection { color: var(--white); background: var(--coral); }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--ink-900);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.055em;
}
p { margin: 0 0 1rem; }
address { margin: 0; font-style: normal; }
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(22px, 3vw, 54px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink-950);
  transform: translateY(-170%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

.section-space { padding: clamp(96px, 9vw, 160px) 0; }
.section-space--soft { background: var(--paper); }
.section-kicker,
.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-700);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-kicker { margin-bottom: 26px; }
.section-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}
.section-kicker--light,
.meta-label--light { color: #c7d1ed; }

.btn {
  display: inline-flex;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.1;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), background-color .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary,
.btn-accent {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 12px 32px rgba(255, 96, 74, .25);
}
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-accent:hover,
.btn-accent:focus-visible {
  color: var(--white);
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  box-shadow: 0 18px 44px rgba(233, 75, 55, .3);
}
.btn-secondary {
  color: var(--ink-900);
  background: transparent;
  border-color: rgba(17, 22, 44, .36);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--white);
  background: var(--ink-900);
  border-color: var(--ink-900);
}
.btn-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}
.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  color: var(--ink-900);
  background: var(--white);
  border-color: var(--white);
}
.button-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.button-stack { display: grid; gap: 12px; }
.text-link,
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: .84rem;
  font-weight: 700;
}
.text-link svg,
.hero-text-link svg { transition: transform .22s ease; }
.text-link:hover svg,
.hero-text-link:hover svg { transform: translateX(5px); }
.text-link--muted { color: var(--muted); }
.text-link--light { color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.4);
  transition: box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  border-color: var(--line);
  box-shadow: 0 10px 42px rgba(12, 16, 34, .08);
}
.navbar { min-height: var(--header-height); padding: 10px 0; }
.site-header__inner { display: flex; gap: 24px; align-items: center; }
.navbar-brand { flex: 0 0 auto; padding: 0; }
.navbar-brand img { width: clamp(184px, 15vw, 232px); max-height: 62px; object-fit: contain; object-position: left center; }
.site-header__desktop-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 255px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.45;
}
.site-header__desktop-meta span { letter-spacing: .08em; text-transform: uppercase; }
.site-header__desktop-meta a { color: var(--ink-900); font-weight: 600; }
.navbar-nav { gap: 2px; }
.nav-link {
  position: relative;
  padding: 13px 12px !important;
  color: #32394b;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  background: var(--coral);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav-link:hover,
.nav-link.active { color: var(--ink-950); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-item--quote { margin-left: 12px; }
.nav-item--quote .btn { min-height: 46px; padding: 13px 19px; }
.navbar-toggler {
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 11px;
  color: var(--ink-900);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler svg { width: 24px; height: 24px; }
.navbar-toggler__close { display: none; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler__open { display: none; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler__close { display: inline-block; }
.mobile-nav-contact { display: grid; gap: 12px; padding-top: 22px; margin-top: 14px; border-top: 1px solid var(--line); }
.mobile-nav-contact a { display: flex; gap: 9px; align-items: center; color: var(--muted); font-size: .82rem; }

/* Home hero */
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--ink-900);
  isolation: isolate;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .38;
  background:
    radial-gradient(circle at 12% 15%, rgba(76, 115, 255, .38), transparent 32%),
    radial-gradient(circle at 88% 85%, rgba(201, 245, 231, .12), transparent 28%);
}
.hero-ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-ambient--one {
  top: -270px;
  right: 31%;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 95px rgba(255, 255, 255, .022), 0 0 0 190px rgba(255, 255, 255, .012);
}
.hero-ambient--two {
  bottom: -220px;
  left: -170px;
  width: 420px;
  height: 420px;
  background: rgba(255, 96, 74, .14);
  filter: blur(60px);
}
.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr);
  gap: clamp(60px, 7vw, 130px);
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(72px, 8vh, 110px);
  padding-bottom: clamp(84px, 9vh, 130px);
  align-items: center;
}
.home-hero__content { position: relative; z-index: 4; }
.hero-overline {
  display: flex;
  max-width: 570px;
  margin-bottom: clamp(28px, 4vh, 48px);
  justify-content: space-between;
  gap: 24px;
  color: #c6cdea;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.home-hero h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(4rem, 6.6vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.075em;
}
.home-hero h1 span { color: var(--mint); }
.home-hero__lead {
  max-width: 660px;
  margin: 34px 0 36px;
  color: #c8cee2;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}
.button-row--hero { gap: 24px; }
.hero-text-link { color: var(--white); }
.hero-text-link span { border-bottom: 1px solid rgba(255, 255, 255, .38); }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 680px;
  margin-top: clamp(48px, 7vh, 80px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-proof div { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; }
.hero-proof strong { color: var(--coral); font-size: .7rem; letter-spacing: .12em; }
.hero-proof span { color: #aeb7d0; font-size: .79rem; line-height: 1.55; }
.home-hero__visual {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  justify-self: end;
  will-change: transform;
}
.home-hero__image-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 48% 28px 28px / 15% 15% 28px 28px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.7deg);
}
.home-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(12, 16, 34, .34));
  pointer-events: none;
}
.home-hero__image-wrap img {
  width: 100%;
  min-height: 690px;
  max-height: 820px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out);
}
.page-loaded .home-hero__image-wrap img { transform: scale(1); }
.hero-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit--outer {
  top: -68px;
  right: -72px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(201, 245, 231, .35);
  animation: orbitSpin 22s linear infinite;
}
.hero-orbit--outer::before,
.hero-orbit--inner::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 96, 74, .12);
}
.hero-orbit--outer::before { top: 22px; left: 52px; }
.hero-orbit--inner {
  right: 11%;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 1px dashed rgba(255, 255, 255, .22);
  animation: orbitSpin 16s linear reverse infinite;
}
.hero-orbit--inner::before { right: 23px; bottom: 28px; background: var(--mint); box-shadow: 0 0 0 8px rgba(201, 245, 231, .1); }
.hero-floating-card {
  position: absolute;
  z-index: 4;
  min-width: 205px;
  padding: 18px 21px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(12, 16, 34, .22);
  backdrop-filter: blur(14px);
}
.hero-floating-card span { display: block; margin-bottom: 3px; color: var(--blue-700); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-floating-card strong { font-family: var(--font-heading); font-size: .96rem; }
.hero-floating-card--top { top: 14%; left: -76px; transform: rotate(-4deg); animation: floatY 5.8s ease-in-out infinite; }
.hero-floating-card--bottom { right: -40px; bottom: 10%; transform: rotate(3deg); animation: floatY 6.8s ease-in-out infinite reverse; }
.hero-image-index {
  position: absolute;
  right: -23px;
  bottom: -36px;
  z-index: 2;
  color: rgba(255, 255, 255, .12);
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: clamp(22px, 3vw, 54px);
  display: flex;
  gap: 12px;
  align-items: center;
  color: #8f99b8;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-scroll-cue span { position: relative; width: 34px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .25); }
.hero-scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--coral); animation: scrollCue 1.8s ease-in-out infinite; }

/* Product marquee */
.product-marquee {
  overflow: hidden;
  color: var(--ink-900);
  background: var(--mint);
  border-bottom: 1px solid rgba(17, 22, 44, .1);
}
.product-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.product-marquee:hover .product-marquee__track { animation-play-state: paused; }
.product-marquee a {
  display: inline-flex;
  min-height: 76px;
  padding: 0 38px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(17, 22, 44, .13);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}
.product-marquee a span { color: var(--coral-deep); font-size: 1.05rem; }

/* Intro */
.intro-section { position: relative; overflow: hidden; }
.intro-section::before {
  content: "OADECO";
  position: absolute;
  top: 5%;
  right: -3%;
  z-index: -1;
  color: rgba(17, 22, 44, .025);
  font-family: var(--font-heading);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 800;
  letter-spacing: -.09em;
  pointer-events: none;
}
.intro-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, .72fr);
  gap: clamp(70px, 9vw, 170px);
  align-items: end;
}
.intro-section__statement h2 { max-width: 830px; font-size: clamp(3.3rem, 6vw, 7rem); }
.intro-signature { max-width: 480px; margin-top: 34px; color: var(--muted); font-size: .84rem; }
.intro-section__copy { padding-bottom: 16px; }
.intro-lead { color: var(--ink-900); font-family: var(--font-heading); font-size: clamp(1.35rem, 2.1vw, 2rem); font-weight: 600; line-height: 1.38; letter-spacing: -.035em; }
.intro-section__copy > p:not(.intro-lead) { max-width: 620px; color: var(--muted); }
.intro-section__copy .text-link { margin-top: 12px; }
.intro-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, .52fr);
  gap: 0;
  margin-top: clamp(70px, 9vw, 130px);
  align-items: end;
}
.intro-media__image {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 32px 32px 120px 32px;
  will-change: transform;
}
.intro-media__image img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; transform: scale(1.08); }
.intro-media__note {
  position: relative;
  z-index: 2;
  margin: 0 0 34px -72px;
  padding: 46px 42px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 28px 28px 28px 5px;
  box-shadow: var(--shadow-lg);
}
.intro-media__note span { display: block; margin-bottom: 15px; color: var(--mint); font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.intro-media__note strong { font-family: var(--font-heading); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.25; letter-spacing: -.03em; }

/* Section headings */
.section-heading { margin-bottom: clamp(56px, 7vw, 100px); }
.section-heading--split,
.section-heading--editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(60px, 8vw, 130px);
  align-items: end;
}
.section-heading h2,
.process-section h2,
.applications-section h2,
.company-story h2,
.approach-section h2,
.values-section h2,
.service-scope h2,
.requirements-section h2,
.catalog-help h2,
.product-info h2,
.quote-checklist h2,
.contact-form-wrap h2,
.map-section h2,
.final-cta h2 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}
.section-heading__aside,
.section-heading--split > p { color: var(--muted); }
.section-heading__aside .text-link { margin-top: 12px; }

/* Product mosaic */
.catalog-section { overflow: hidden; }
.product-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 3.6vw, 58px);
  align-items: start;
}
.product-tile {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-width: 0;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .3s var(--ease-out);
}
.product-tile--1 { grid-column: 1 / span 7; }
.product-tile--2 { grid-column: 9 / span 4; margin-top: 120px; }
.product-tile--3 { grid-column: 1 / span 4; margin-top: 50px; }
.product-tile--4 { grid-column: 5 / span 5; margin-top: -20px; }
.product-tile--5 { grid-column: 10 / span 3; margin-top: 100px; }
.product-tile--6 { grid-column: 3 / span 8; margin-top: 24px; }
.product-tile__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(12, 16, 34, .08);
}
.product-tile--1 .product-tile__image { aspect-ratio: 1.42 / 1; border-radius: 34px 34px 100px 34px; }
.product-tile--2 .product-tile__image { aspect-ratio: .86 / 1; border-radius: 90px 28px 28px 28px; }
.product-tile--3 .product-tile__image { aspect-ratio: .92 / 1; border-radius: 28px 82px 28px 28px; }
.product-tile--4 .product-tile__image { aspect-ratio: 1.18 / 1; border-radius: 28px 28px 28px 90px; }
.product-tile--5 .product-tile__image { aspect-ratio: .82 / 1; border-radius: 28px 28px 84px 28px; }
.product-tile--6 .product-tile__image { aspect-ratio: 1.55 / 1; border-radius: 110px 34px 34px 34px; }
.product-tile__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(12, 16, 34, .28));
  opacity: .4;
  transition: opacity .3s ease;
}
.product-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .5s ease;
}
.product-tile:hover .product-tile__image img { transform: scale(1.055); filter: saturate(1.06); }
.product-tile:hover .product-tile__image::after { opacity: .7; }
.product-tile__index {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink-900);
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.product-tile__arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  transform: translateY(8px) rotate(-8deg);
  opacity: 0;
  transition: transform .3s var(--ease-out), opacity .3s ease;
}
.product-tile:hover .product-tile__arrow { transform: translateY(0) rotate(0); opacity: 1; }
.product-tile__body { padding: 25px 4px 0; }
.product-tile h3 { margin: 11px 0 13px; font-size: clamp(1.65rem, 2.45vw, 3rem); line-height: 1.02; }
.product-tile h3 a:hover { color: var(--coral-deep); }
.product-tile p { max-width: 620px; color: var(--muted); font-size: .89rem; }
.product-tile__links { display: flex; justify-content: space-between; gap: 18px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); }

/* Process */
.process-section { overflow: hidden; background: var(--white); }
.process-layout { display: grid; grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr); gap: clamp(70px, 10vw, 170px); align-items: start; }
.process-section__header { position: sticky; top: calc(var(--header-height) + 50px); }
.process-section__header h2 { max-width: 690px; }
.process-section__header p { max-width: 540px; margin: 28px 0 30px; color: var(--muted); }
.process-track { position: relative; display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }
.process-track::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 37px;
  width: 1px;
  background: linear-gradient(var(--coral), rgba(49, 94, 232, .28));
}
.process-track li {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 32px;
  min-height: 190px;
  padding: 10px 0 44px;
}
.process-track li:nth-child(even) { margin-left: 70px; }
.process-track__number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--white);
  background: var(--ink-900);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
}
.process-track li:nth-child(2) .process-track__number,
.process-track li:nth-child(4) .process-track__number { background: var(--blue-600); }
.process-track h3 { margin: 8px 0 10px; font-size: clamp(1.8rem, 2.7vw, 3.1rem); }
.process-track p { max-width: 530px; color: var(--muted); font-size: .9rem; }

/* Pillars */
.pillars-section {
  position: relative;
  min-height: 840px;
  padding: clamp(120px, 11vw, 190px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-950);
  isolation: isolate;
}
.pillars-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12, 16, 34, .96) 0%, rgba(12, 16, 34, .9) 42%, rgba(12, 16, 34, .7) 100%); }
.pillars-backdrop { position: absolute; inset: -8% -5%; z-index: -2; will-change: transform; }
.pillars-backdrop img { width: 100%; height: 116%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.05); }
.pillars-section__grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr); gap: clamp(80px, 10vw, 170px); align-items: center; }
.pillars-section__intro h2 { max-width: 780px; color: var(--white); font-size: clamp(3rem, 5.5vw, 6.4rem); }
.pillars-section__intro p { max-width: 480px; margin-top: 30px; color: #acb5cf; }
.pillars-grid { display: grid; gap: 16px; }
.pillars-grid article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding: 28px 30px;
  align-items: start;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  transition: transform .3s var(--ease-out), background-color .3s ease;
}
.pillars-grid article:nth-child(even) { margin-left: 64px; }
.pillars-grid article:hover { transform: translateX(-7px); background: rgba(255, 255, 255, .11); }
.pillar-number { color: var(--coral); font-family: var(--font-heading); font-size: .72rem; font-weight: 700; }
.pillars-grid h3 { margin-bottom: 8px; color: var(--white); font-size: 1.35rem; letter-spacing: -.035em; }
.pillars-grid p { margin: 0; color: #aeb7d0; font-size: .84rem; }

/* Applications */
.applications-section__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(430px, .85fr); gap: clamp(70px, 9vw, 150px); align-items: center; }
.applications-section__visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 40px 140px 40px 40px;
  background: var(--paper);
  will-change: transform;
}
.applications-section__visual img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; transform: scale(1.06); }
.applications-section__tag {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 12px 17px;
  color: var(--white);
  background: rgba(17, 22, 44, .86);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.applications-section__content > p { max-width: 560px; margin: 28px 0 36px; color: var(--muted); }
.applications-list { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none; }
.applications-list li {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 16px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: .79rem;
  font-weight: 650;
  transition: transform .22s ease, color .22s ease, background-color .22s ease, border-color .22s ease;
}
.applications-list li:hover { color: var(--white); background: var(--blue-600); border-color: var(--blue-600); transform: translateY(-3px); }
.applications-list span { color: var(--coral-deep); font-size: .62rem; }
.applications-list li:hover span { color: var(--mint); }

/* CTA */
.final-cta { padding: clamp(80px, 8vw, 130px) 0; }
.final-cta--home { padding: 20px 0 clamp(100px, 10vw, 160px); }
.final-cta__box {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
  padding: clamp(48px, 6vw, 88px);
  overflow: hidden;
  background: var(--paper);
  border-radius: 36px;
}
.final-cta__box--dark { color: var(--white); background: var(--ink-900); border-radius: 42px 120px 42px 42px; }
.final-cta__box--dark h2 { color: var(--white); }
.final-cta__box--dark p { color: #bbc4dc; }
.final-cta__content { position: relative; z-index: 2; max-width: 870px; }
.final-cta h2 { max-width: 900px; }
.final-cta p { max-width: 680px; margin-top: 22px; color: var(--muted); }
.final-cta__actions { position: relative; z-index: 2; display: flex; flex-direction: column; flex: 0 0 auto; gap: 12px; min-width: 250px; }
.final-cta__actions .btn { width: 100%; }
.final-cta__orb {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(201, 245, 231, .38), rgba(49, 94, 232, .28) 38%, transparent 70%);
  filter: blur(2px);
}

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-900);
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -55%;
  right: -9%;
  z-index: -1;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(201, 245, 231, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, .02), 0 0 0 200px rgba(255, 255, 255, .012);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 41%;
  bottom: -220px;
  z-index: -2;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(49, 94, 232, .24);
  filter: blur(60px);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, .55fr);
  gap: clamp(70px, 10vw, 170px);
  min-height: 520px;
  padding-top: clamp(90px, 9vw, 145px);
  padding-bottom: clamp(90px, 9vw, 145px);
  align-items: end;
}
.page-hero h1 { max-width: 980px; color: var(--white); font-size: clamp(3.6rem, 7vw, 8rem); }
.page-hero__grid > p { max-width: 520px; margin: 0; color: #bbc4dc; font-size: 1rem; }
.page-hero--compact .page-hero__grid { min-height: 420px; }
.breadcrumb-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: #8e99b7; font-size: .7rem; }
.breadcrumb-nav a:hover { color: var(--coral); }
.breadcrumb-nav--dark { margin-bottom: 40px; color: var(--muted); }

/* Generic inner sections */
.company-story__grid,
.approach-section__grid,
.values-section__grid,
.service-scope__grid,
.requirements-section__grid,
.catalog-help__grid,
.quote-checklist__grid,
.contact-section__grid,
.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .78fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}
.company-story__grid { grid-template-columns: minmax(0, 1.05fr) minmax(430px, .75fr); align-items: center; }
.company-story__image { position: relative; margin: 0; min-height: 560px; overflow: hidden; border-radius: 36px 120px 36px 36px; }
.company-story__image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.company-story p,
.approach-section p,
.service-scope p,
.requirements-section p,
.catalog-help p,
.quote-checklist p { color: var(--muted); }
.company-story h2,
.approach-section h2,
.values-section h2,
.service-scope h2,
.requirements-section h2,
.catalog-help h2,
.quote-checklist h2 { margin-bottom: 28px; }

.quote-checklist__grid > ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.quote-checklist__grid > ol > li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  min-height: 82px;
  padding: 18px 0;
  align-items: center;
  color: var(--ink-900);
  border-bottom: 1px solid var(--line);
}
.quote-checklist__grid > ol > li:first-child { border-top: 1px solid var(--line); }
.quote-checklist__grid > ol > li > span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--coral-deep);
  background: rgba(219, 55, 11, .08);
  border: 1px solid rgba(219, 55, 11, .2);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.definition-list { display: grid; gap: 10px; margin: 0; }
.definition-list > div,
.requirements-table > div {
  display: grid;
  grid-template-columns: minmax(150px, .38fr) 1fr;
  gap: 30px;
  padding: 23px 24px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(17, 22, 44, .1);
  border-radius: 18px;
}
.definition-list dt,
.requirements-table span { color: var(--ink-900); font-family: var(--font-heading); font-size: .9rem; font-weight: 700; }
.definition-list dd,
.requirements-table p { margin: 0; color: var(--muted); font-size: .86rem; }
.values-list,
.service-list { display: grid; gap: 14px; }
.values-list article,
.service-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 26px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.values-list > article > span,
.service-list > li > span { color: var(--coral-deep); font-family: var(--font-heading); font-size: .72rem; font-weight: 700; }
.values-list h3,
.service-list h3 { margin-bottom: 8px; font-size: 1.45rem; }
.values-list p,
.service-list p { margin: 0; color: var(--muted); font-size: .86rem; }
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.process-rail li { min-height: 300px; padding: 30px; background: var(--paper); border-radius: 24px; }
.process-rail li:nth-child(even) { margin-top: 44px; background: var(--mint); }
.process-rail span { display: block; margin-bottom: 80px; color: var(--coral-deep); font-family: var(--font-heading); font-size: .72rem; font-weight: 700; }
.process-rail h3 { margin-bottom: 14px; font-size: 1.55rem; }
.process-rail p { color: var(--muted); font-size: .85rem; }

/* Catalog page */
.catalog-tools {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) 1fr;
  gap: 30px;
  margin-bottom: 70px;
  align-items: center;
}
.catalog-search { display: flex; min-height: 58px; padding: 0 20px; align-items: center; gap: 12px; background: var(--paper); border: 1px solid transparent; border-radius: 999px; }
.catalog-search:focus-within { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(49, 94, 232, .1); }
.catalog-search svg { color: var(--muted); }
.catalog-search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-button { min-height: 44px; padding: 10px 16px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: .74rem; font-weight: 700; }
.filter-button:hover,
.filter-button.active { color: var(--white); background: var(--ink-900); border-color: var(--ink-900); }
.catalog-page__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.catalog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 300px;
  overflow: hidden;
  background: var(--paper);
  border-radius: 26px;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.catalog-row:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.catalog-row[hidden] { display: none; }
.catalog-row__image { overflow: hidden; }
.catalog-row__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.catalog-row:hover .catalog-row__image img { transform: scale(1.05); }
.catalog-row__content { padding: 30px 28px 18px; }
.catalog-row__content h2 { margin: 10px 0 13px; font-size: clamp(1.55rem, 2vw, 2.35rem); }
.catalog-row__content p { color: var(--muted); font-size: .86rem; }
.catalog-row__notice { color: var(--blue-700); font-size: .7rem; font-weight: 700; }
.catalog-row__actions { grid-column: 2; display: flex; gap: 18px; padding: 0 28px 26px; align-items: center; }
.catalog-row__actions .btn { min-height: 44px; padding: 11px 17px; }
.catalog-empty { padding: 40px; color: var(--muted); background: var(--paper); border-radius: 22px; text-align: center; }
.catalog-help__grid { align-items: center; }

/* Product detail */
.product-detail { background: var(--white); }
.product-detail__grid { grid-template-columns: minmax(0, 1.08fr) minmax(430px, .72fr); }
.product-gallery__main { min-height: 690px; overflow: hidden; background: var(--paper); border-radius: 38px 120px 38px 38px; }
.product-gallery__main img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; transition: opacity .25s ease, transform .6s var(--ease-out); }
.product-gallery__main:hover img { transform: scale(1.02); }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 14px; }
.gallery-thumb { padding: 0; overflow: hidden; background: var(--paper); border: 2px solid transparent; border-radius: 14px; }
.gallery-thumb.active { border-color: var(--coral); }
.gallery-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-detail__summary { position: sticky; top: calc(var(--header-height) + 40px); padding-top: 28px; }
.product-detail__summary h1 { margin: 12px 0 26px; font-size: clamp(3rem, 5.2vw, 6.2rem); }
.product-lead { color: var(--muted); font-size: 1rem; }
.technical-notice { margin: 28px 0; padding: 20px 22px; color: #37405b; background: var(--mint); border-radius: 18px; font-size: .82rem; }
.download-link { display: flex; gap: 15px; margin-top: 25px; padding-top: 24px; align-items: center; border-top: 1px solid var(--line); }
.download-link svg { width: 24px; height: 24px; color: var(--coral-deep); }
.download-link span { display: grid; }
.download-link strong { font-size: .85rem; }
.download-link small { color: var(--muted); font-size: .7rem; }
.product-info__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(50px, 8vw, 130px); }
.checked-list { display: grid; gap: 14px; padding: 0; margin: 28px 0 0; list-style: none; }
.checked-list li { display: flex; gap: 13px; padding-bottom: 14px; align-items: flex-start; border-bottom: 1px solid var(--line); color: var(--muted); }
.checked-list svg { margin-top: 4px; color: var(--blue-600); }
.related-products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-products article { padding-bottom: 20px; }
.related-products__image { display: block; margin-bottom: 20px; overflow: hidden; border-radius: 22px 60px 22px 22px; }
.related-products__image img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .6s var(--ease-out); }
.related-products article:hover img { transform: scale(1.05); }
.related-products h3 { margin: 10px 0 14px; font-size: 1.55rem; }

/* Contact */
.contact-section__grid { grid-template-columns: minmax(330px, .58fr) minmax(0, 1.1fr); gap: 0; overflow: hidden; border-radius: 38px; box-shadow: var(--shadow-sm); }
.contact-panel { padding: clamp(48px, 5vw, 76px); color: var(--white); background: var(--ink-900); }
.contact-panel h2 { margin-bottom: 40px; color: var(--white); font-size: clamp(2.3rem, 3.4vw, 4rem); }
.contact-panel dl { display: grid; gap: 0; margin: 0 0 36px; }
.contact-panel dl div { padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.contact-panel dt { margin-bottom: 5px; color: #8994b3; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel dd { margin: 0; color: var(--white); font-size: .9rem; }
.contact-panel__note { color: #aeb7d0; font-size: .8rem; }
.contact-form-wrap { padding: clamp(48px, 6vw, 88px); background: var(--paper); }
.form-intro { color: var(--muted); }
.contact-form { margin-top: 40px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
.form-field { display: grid; gap: 8px; margin-bottom: 20px; }
.form-field label { color: var(--ink-900); font-size: .75rem; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 22, 44, .16);
  border-radius: 14px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(49, 94, 232, .1); }
.field-help { color: var(--muted); font-size: .7rem; }
.field-error { min-height: 1em; color: #a22d2d; font-size: .7rem; }
.privacy-check { display: grid; grid-template-columns: 18px 1fr; gap: 12px; margin: 10px 0 20px; align-items: start; color: var(--muted); font-size: .76rem; }
.privacy-check input { margin-top: 5px; }
.privacy-check a { color: var(--blue-700); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; }
.form-alert { display: grid; gap: 4px; margin: 28px 0; padding: 18px 20px; border-radius: 14px; }
.form-alert--success { color: #135534; background: #dff4e8; }
.form-alert--error { color: #7b2323; background: #fae4e4; }
.map-frame { overflow: hidden; border-radius: 34px 100px 34px 34px; box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; height: 580px; border: 0; }

/* Legal and 404 */
.legal-content__inner { max-width: 900px; }
.legal-updated { color: var(--muted); }
.legal-content h2 { margin: 48px 0 15px; font-size: clamp(1.6rem, 2.6vw, 2.5rem); }
.legal-content p { color: var(--muted); }
.legal-content strong { color: var(--ink-900); }
.legal-content a { color: var(--blue-700); text-decoration: underline; }
.error-page { min-height: 70vh; display: flex; align-items: center; }
.error-page__grid { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.error-code { display: block; margin-bottom: 18px; color: var(--coral); font-family: var(--font-heading); font-size: 1rem; font-weight: 800; letter-spacing: .15em; }
.error-page h1 { max-width: 900px; font-size: clamp(3.2rem, 7vw, 7rem); }
.error-page p { max-width: 650px; margin: 24px 0 30px; color: var(--muted); }
.error-page__mark { display: grid; width: 280px; height: 280px; place-items: center; background: var(--mint); border-radius: 50%; }
.error-page__mark img { width: 150px; }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 150px) 0 28px;
  color: var(--white);
  background: var(--ink-950);
  border-radius: 64px 64px 0 0;
  isolation: isolate;
}
.site-footer__glow {
  position: absolute;
  top: -230px;
  right: -180px;
  z-index: -1;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 94, 232, .42), transparent 67%);
  filter: blur(10px);
}
.footer-conversation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  padding-bottom: clamp(70px, 8vw, 120px);
  align-items: end;
  border-bottom: 1px solid var(--line-light);
}
.footer-conversation h2 { max-width: 980px; color: var(--white); font-size: clamp(3rem, 6vw, 7rem); }
.footer-conversation__action {
  display: inline-flex;
  width: 190px;
  height: 190px;
  padding: 25px;
  color: var(--ink-900);
  background: var(--mint);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transform: rotate(-5deg);
  transition: transform .35s var(--ease-out), background-color .25s ease;
}
.footer-conversation__action svg { width: 28px; height: 28px; align-self: flex-end; }
.footer-conversation__action:hover { background: var(--coral); transform: rotate(0) scale(1.04); }
.site-footer__main {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(360px, .92fr) minmax(300px, .72fr);
  gap: clamp(60px, 8vw, 130px);
  padding: clamp(70px, 7vw, 110px) 0;
}
.footer-logo { display: inline-flex; width: min(100%, 300px); padding: 0; background: transparent; }
.footer-logo img { width: 100%; max-height: 72px; object-fit: contain; object-position: left center; }
.site-footer__brand p { max-width: 410px; margin: 28px 0 20px; color: #aeb7d0; }
.site-footer__brand address { color: #7f8aa9; font-size: .82rem; }
.site-footer__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-heading { display: block; margin-bottom: 22px; color: #7f8aa9; font-family: var(--font-body); font-size: .66rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-list { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
.footer-list a { color: #d5daea; font-size: .83rem; }
.footer-list a:hover { color: var(--mint); }
.site-footer__contact { display: grid; align-content: start; }
.footer-contact-link { display: grid; gap: 5px; padding: 21px 0; border-bottom: 1px solid var(--line-light); }
.footer-contact-link small { color: #7f8aa9; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact-link strong { color: var(--white); font-family: var(--font-heading); font-size: clamp(1rem, 1.45vw, 1.35rem); letter-spacing: -.02em; overflow-wrap: anywhere; }
.footer-contact-link:hover strong { color: var(--mint); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; color: #6e7897; font-size: .7rem; }
.site-footer__bottom a:hover { color: var(--white); }
.site-footer__credit strong { color: #d5daea; font-weight: 700; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1150;
  display: inline-flex;
  min-height: 54px;
  padding: 0 20px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: #1fad5b;
  border-radius: 999px;
  box-shadow: 0 15px 36px rgba(14, 94, 47, .28);
  font-size: .76rem;
  font-weight: 700;
  transition: transform .25s ease;
}
.whatsapp-float:hover { color: var(--white); transform: translateY(-4px); }
.whatsapp-float svg { width: 21px; height: 21px; }

/* Motion */
.js.motion-ready .reveal-item { opacity: 0; transform: translateY(42px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js.motion-ready .reveal-item.reveal-left { transform: translateX(-45px); }
.js.motion-ready .reveal-item.reveal-right { transform: translateX(45px); }
.js.motion-ready .reveal-item.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.js.motion-ready .reveal-item[data-reveal-delay="1"] { transition-delay: .08s; }
.js.motion-ready .reveal-item[data-reveal-delay="2"] { transition-delay: .16s; }
.js.motion-ready .reveal-item[data-reveal-delay="3"] { transition-delay: .24s; }
.js.motion-ready .reveal-item[data-reveal-delay="4"] { transition-delay: .32s; }

@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -13px; } }
@keyframes scrollCue { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Responsive */
@media (max-width: 1399.98px) {
  :root { --container: 1320px; }
  .site-header__desktop-meta { display: none !important; }
  .home-hero__grid { grid-template-columns: minmax(0, .9fr) minmax(460px, 1fr); gap: 70px; }
  .home-hero__image-wrap img { min-height: 620px; }
  .product-tile--2 { grid-column: 9 / span 4; }
}

@media (max-width: 1199.98px) {
  :root { --header-height: 84px; }
  .navbar { min-height: var(--header-height); }
  .home-hero__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .home-hero h1 { font-size: clamp(3.7rem, 6.6vw, 6rem); }
  .hero-floating-card--top { left: -30px; }
  .hero-floating-card--bottom { right: -12px; }
  .intro-section__grid,
  .section-heading--split,
  .section-heading--editorial,
  .company-story__grid,
  .approach-section__grid,
  .values-section__grid,
  .service-scope__grid,
  .requirements-section__grid,
  .catalog-help__grid,
  .quote-checklist__grid,
  .product-detail__grid { gap: 70px; }
  .product-tile--2 { margin-top: 70px; }
  .process-layout { gap: 70px; }
  .pillars-section__grid { grid-template-columns: .82fr 1.18fr; gap: 70px; }
  .applications-section__grid { gap: 70px; }
  .catalog-page__list { grid-template-columns: 1fr; }
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .site-footer__contact { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 991.98px) {
  .navbar-collapse { margin-top: 12px; padding: 20px 0 26px; border-top: 1px solid var(--line); }
  .navbar-nav { align-items: stretch !important; }
  .nav-link { padding: 13px 0 !important; }
  .nav-link::after { right: auto; left: 0; width: 36px; }
  .nav-item--quote { margin: 14px 0 0; }
  .nav-item--quote .btn { width: 100%; }
  .home-hero { min-height: auto; }
  .home-hero__grid { grid-template-columns: 1fr; min-height: auto; padding-top: 76px; padding-bottom: 105px; }
  .home-hero__content { max-width: 860px; }
  .home-hero__visual { width: min(100%, 760px); margin-top: 20px; justify-self: center; }
  .home-hero__image-wrap img { min-height: 600px; }
  .hero-scroll-cue { display: none; }
  .intro-section__grid,
  .section-heading--split,
  .section-heading--editorial,
  .process-layout,
  .pillars-section__grid,
  .applications-section__grid,
  .company-story__grid,
  .approach-section__grid,
  .values-section__grid,
  .service-scope__grid,
  .requirements-section__grid,
  .catalog-help__grid,
  .quote-checklist__grid,
  .contact-section__grid,
  .product-detail__grid { grid-template-columns: 1fr; }
  .intro-media { grid-template-columns: 1fr; }
  .intro-media__note { width: min(620px, 82%); margin: -78px 0 0 auto; }
  .product-tile--1,
  .product-tile--2,
  .product-tile--3,
  .product-tile--4,
  .product-tile--5,
  .product-tile--6 { grid-column: span 6; margin-top: 0; }
  .product-tile--2,
  .product-tile--4,
  .product-tile--6 { margin-top: 70px; }
  .process-section__header { position: static; }
  .process-track li:nth-child(even) { margin-left: 70px; }
  .pillars-section { min-height: auto; }
  .pillars-section__intro { max-width: 800px; }
  .applications-section__visual,
  .applications-section__visual img { min-height: 560px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 35px; min-height: 430px; }
  .page-hero__grid > p { max-width: 700px; }
  .process-rail { grid-template-columns: repeat(2, 1fr); }
  .catalog-tools { grid-template-columns: 1fr; }
  .product-detail__summary { position: static; padding-top: 0; }
  .product-gallery__main,
  .product-gallery__main img { min-height: 580px; }
  .contact-section__grid { gap: 0; }
  .contact-panel,
  .contact-form-wrap { padding: 52px; }
  .footer-conversation { grid-template-columns: 1fr; align-items: start; }
  .footer-conversation__action { width: 160px; height: 160px; }
}

@media (max-width: 767.98px) {
  body { font-size: 15px; }
  :root { --header-height: 76px; }
  .section-space { padding: 82px 0; }
  .navbar-brand img { width: 188px; max-height: 54px; }
  .home-hero__grid { padding-top: 58px; padding-bottom: 84px; }
  .hero-overline { margin-bottom: 28px; }
  .home-hero h1 { font-size: clamp(3.25rem, 15vw, 5.2rem); }
  .home-hero__lead { margin: 27px 0 30px; }
  .hero-proof { grid-template-columns: 1fr; gap: 17px; margin-top: 46px; }
  .home-hero__visual { margin-top: 30px; }
  .home-hero__image-wrap { border-radius: 46% 46% 24px 24px / 12% 12% 24px 24px; }
  .home-hero__image-wrap img { min-height: 470px; max-height: 600px; }
  .hero-floating-card { min-width: 170px; padding: 14px 16px; }
  .hero-floating-card--top { top: 8%; left: -5px; }
  .hero-floating-card--bottom { right: -3px; bottom: 6%; }
  .hero-orbit--outer { width: 220px; height: 220px; }
  .hero-orbit--inner { width: 150px; height: 150px; }
  .product-marquee a { min-height: 64px; padding: 0 25px; font-size: .78rem; }
  .intro-section__statement h2,
  .section-heading h2,
  .process-section h2,
  .applications-section h2,
  .company-story h2,
  .approach-section h2,
  .values-section h2,
  .service-scope h2,
  .requirements-section h2,
  .catalog-help h2,
  .product-info h2,
  .quote-checklist h2,
  .contact-form-wrap h2,
  .map-section h2,
  .final-cta h2 { font-size: clamp(2.6rem, 11vw, 4.2rem); }
  .intro-section__grid { gap: 48px; }
  .intro-media { margin-top: 60px; }
  .intro-media__image,
  .intro-media__image img { min-height: 340px; }
  .intro-media__note { width: 92%; margin-top: -50px; padding: 32px 28px; }
  .product-mosaic { grid-template-columns: 1fr; gap: 62px; }
  .product-tile--1,
  .product-tile--2,
  .product-tile--3,
  .product-tile--4,
  .product-tile--5,
  .product-tile--6 { grid-column: auto; margin-top: 0; }
  .product-tile__image { border-radius: 25px 25px 70px 25px !important; }
  .product-tile__arrow { opacity: 1; transform: none; }
  .process-track::before { left: 30px; }
  .process-track li,
  .process-track li:nth-child(even) { grid-template-columns: 62px 1fr; gap: 22px; margin-left: 0; min-height: 170px; }
  .process-track__number { width: 62px; height: 62px; border-width: 6px; }
  .pillars-section { padding: 92px 0; }
  .pillars-grid article,
  .pillars-grid article:nth-child(even) { grid-template-columns: 46px 1fr; margin-left: 0; padding: 24px 22px; }
  .applications-section__visual,
  .applications-section__visual img { min-height: 400px; }
  .applications-section__visual { border-radius: 28px 80px 28px 28px; }
  .final-cta--home { padding-bottom: 92px; }
  .final-cta__box { display: grid; padding: 38px 28px; border-radius: 28px; }
  .final-cta__box--dark { border-radius: 28px 70px 28px 28px; }
  .final-cta__actions { width: 100%; min-width: 0; }
  .page-hero__grid { min-height: 380px; padding-top: 74px; padding-bottom: 74px; }
  .page-hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .company-story__image,
  .company-story__image img { min-height: 400px; }
  .definition-list > div,
  .requirements-table > div { grid-template-columns: 1fr; gap: 8px; }
  .process-rail { grid-template-columns: 1fr; }
  .process-rail li,
  .process-rail li:nth-child(even) { min-height: 230px; margin-top: 0; }
  .process-rail span { margin-bottom: 52px; }
  .catalog-row { grid-template-columns: 145px 1fr; min-height: 260px; }
  .catalog-row__content { padding: 22px 20px 14px; }
  .catalog-row__content h2 { font-size: 1.3rem; }
  .catalog-row__actions { grid-column: 1 / -1; padding: 0 20px 22px; }
  .product-gallery__main,
  .product-gallery__main img { min-height: 430px; }
  .product-info__grid { grid-template-columns: 1fr; }
  .related-products__grid { grid-template-columns: 1fr; }
  .contact-panel,
  .contact-form-wrap { padding: 38px 26px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .map-frame iframe { height: 420px; }
  .footer-conversation h2 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .site-footer { border-radius: 40px 40px 0 0; }
  .site-footer__main { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__links { grid-template-columns: repeat(2, 1fr); }
  .site-footer__contact { grid-column: auto; grid-template-columns: 1fr; gap: 0; }
  .site-footer__bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; min-height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 479.98px) {
  .container { padding-inline: 18px; }
  .home-hero h1 { font-size: 3.15rem; }
  .button-row--hero { align-items: flex-start; }
  .hero-floating-card--top { top: 4%; }
  .hero-floating-card--bottom { bottom: 4%; }
  .home-hero__image-wrap img { min-height: 390px; }
  .hero-image-index { display: none; }
  .intro-media__image,
  .intro-media__image img { min-height: 280px; }
  .catalog-row { grid-template-columns: 1fr; }
  .catalog-row__image { aspect-ratio: 1.4 / 1; }
  .catalog-row__actions { grid-column: 1; }
  .product-gallery__main,
  .product-gallery__main img { min-height: 350px; }
  .product-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
  .contact-section__grid { border-radius: 24px; }
  .site-footer__links { grid-template-columns: 1fr; }
  .footer-conversation__action { width: 145px; height: 145px; font-size: .88rem; }
  .error-page__grid { grid-template-columns: 1fr; }
  .error-page__mark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .js.motion-ready .reveal-item { opacity: 1; transform: none; }
}
